blob: 9ea0cde3fa9e0ffe7aebc28940293c422ae75a63 [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>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040040
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040041#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070042#include "xattr.h"
43#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040044#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070045
Theodore Ts'o9bffad12009-06-17 11:48:11 -040046#include <trace/events/ext4.h>
47
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040048#define MPAGE_DA_EXTENT_TAIL 0x01
49
Darrick J. Wong814525f2012-04-29 18:31:10 -040050static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
51 struct ext4_inode_info *ei)
52{
53 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
54 __u16 csum_lo;
55 __u16 csum_hi = 0;
56 __u32 csum;
57
58 csum_lo = raw->i_checksum_lo;
59 raw->i_checksum_lo = 0;
60 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
61 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
62 csum_hi = raw->i_checksum_hi;
63 raw->i_checksum_hi = 0;
64 }
65
66 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
67 EXT4_INODE_SIZE(inode->i_sb));
68
69 raw->i_checksum_lo = csum_lo;
70 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
71 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
72 raw->i_checksum_hi = csum_hi;
73
74 return csum;
75}
76
77static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
78 struct ext4_inode_info *ei)
79{
80 __u32 provided, calculated;
81
82 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
83 cpu_to_le32(EXT4_OS_LINUX) ||
84 !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
85 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
86 return 1;
87
88 provided = le16_to_cpu(raw->i_checksum_lo);
89 calculated = ext4_inode_csum(inode, raw, ei);
90 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
91 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
92 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
93 else
94 calculated &= 0xFFFF;
95
96 return provided == calculated;
97}
98
99static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
100 struct ext4_inode_info *ei)
101{
102 __u32 csum;
103
104 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
105 cpu_to_le32(EXT4_OS_LINUX) ||
106 !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
107 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
108 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
Alex Tomas64769242008-07-11 19:27:31 -0400134static void ext4_invalidatepage(struct page *page, unsigned long offset);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400135static int __ext4_journalled_writepage(struct page *page, unsigned int len);
136static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Eric Sandeen5f163cc2012-01-04 22:33:28 -0500137static int ext4_discard_partial_page_buffers_no_lock(handle_t *handle,
138 struct inode *inode, struct page *page, loff_t from,
139 loff_t length, int flags);
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{
Mingming Cao617ba132006-10-11 01:20:53 -0700146 int ea_blocks = EXT4_I(inode)->i_file_acl ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700147 (inode->i_sb->s_blocksize >> 9) : 0;
148
149 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
150}
151
152/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700153 * Restart the transaction associated with *handle. This does a commit,
154 * so before we call here everything must be consistently dirtied against
155 * this transaction.
156 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500157int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -0400158 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700159{
Jan Kara487caee2009-08-17 22:17:20 -0400160 int ret;
161
162 /*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400163 * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
Jan Kara487caee2009-08-17 22:17:20 -0400164 * moment, get_block can be called only for blocks inside i_size since
165 * page cache has been already dropped and writes are blocked by
166 * i_mutex. So we can safely drop the i_data_sem here.
167 */
Frank Mayhar03901312009-01-07 00:06:22 -0500168 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700169 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400170 up_write(&EXT4_I(inode)->i_data_sem);
Amir Goldstein8e8eaab2011-02-27 23:32:12 -0500171 ret = ext4_journal_restart(handle, nblocks);
Jan Kara487caee2009-08-17 22:17:20 -0400172 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500173 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400174
175 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700176}
177
178/*
179 * Called at the last iput() if i_nlink is zero.
180 */
Al Viro0930fcc2010-06-07 13:16:22 -0400181void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700182{
183 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400184 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700185
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500186 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400187
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400188 ext4_ioend_wait(inode);
189
Al Viro0930fcc2010-06-07 13:16:22 -0400190 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400191 /*
192 * When journalling data dirty buffers are tracked only in the
193 * journal. So although mm thinks everything is clean and
194 * ready for reaping the inode might still have some pages to
195 * write in the running transaction or waiting to be
196 * checkpointed. Thus calling jbd2_journal_invalidatepage()
197 * (via truncate_inode_pages()) to discard these buffers can
198 * cause data loss. Also even if we did not discard these
199 * buffers, we would have no way to find them after the inode
200 * is reaped and thus user could see stale data if he tries to
201 * read them before the transaction is checkpointed. So be
202 * careful and force everything to disk here... We use
203 * ei->i_datasync_tid to store the newest transaction
204 * containing inode's data.
205 *
206 * Note that directories do not have this problem because they
207 * don't use page cache.
208 */
209 if (ext4_should_journal_data(inode) &&
210 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode))) {
211 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
212 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
213
214 jbd2_log_start_commit(journal, commit_tid);
215 jbd2_log_wait_commit(journal, commit_tid);
216 filemap_write_and_wait(&inode->i_data);
217 }
Al Viro0930fcc2010-06-07 13:16:22 -0400218 truncate_inode_pages(&inode->i_data, 0);
219 goto no_delete;
220 }
221
Christoph Hellwig907f4552010-03-03 09:05:06 -0500222 if (!is_bad_inode(inode))
Christoph Hellwig871a2932010-03-03 09:05:07 -0500223 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500224
Jan Kara678aaf42008-07-11 19:27:31 -0400225 if (ext4_should_order_data(inode))
226 ext4_begin_ordered_truncate(inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700227 truncate_inode_pages(&inode->i_data, 0);
228
229 if (is_bad_inode(inode))
230 goto no_delete;
231
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200232 /*
233 * Protect us against freezing - iput() caller didn't have to have any
234 * protection against it
235 */
236 sb_start_intwrite(inode->i_sb);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500237 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
238 ext4_blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700239 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400240 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241 /*
242 * If we're going to skip the normal cleanup, we still need to
243 * make sure that the in-core orphan linked list is properly
244 * cleaned up.
245 */
Mingming Cao617ba132006-10-11 01:20:53 -0700246 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200247 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700248 goto no_delete;
249 }
250
251 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500252 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700253 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400254 err = ext4_mark_inode_dirty(handle, inode);
255 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500256 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400257 "couldn't mark inode dirty (err %d)", err);
258 goto stop_handle;
259 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700260 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700261 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400262
263 /*
264 * ext4_ext_truncate() doesn't reserve any slop when it
265 * restarts journal transactions; therefore there may not be
266 * enough credits left in the handle to remove the inode from
267 * the orphan list and set the dtime field.
268 */
Frank Mayhar03901312009-01-07 00:06:22 -0500269 if (!ext4_handle_has_enough_credits(handle, 3)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400270 err = ext4_journal_extend(handle, 3);
271 if (err > 0)
272 err = ext4_journal_restart(handle, 3);
273 if (err != 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500274 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400275 "couldn't extend journal (err %d)", err);
276 stop_handle:
277 ext4_journal_stop(handle);
Theodore Ts'o45388212010-07-29 15:06:10 -0400278 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200279 sb_end_intwrite(inode->i_sb);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400280 goto no_delete;
281 }
282 }
283
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700284 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700285 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700286 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700287 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700288 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700289 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700290 * (Well, we could do this if we need to, but heck - it works)
291 */
Mingming Cao617ba132006-10-11 01:20:53 -0700292 ext4_orphan_del(handle, inode);
293 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294
295 /*
296 * One subtle ordering requirement: if anything has gone wrong
297 * (transaction abort, IO errors, whatever), then we can still
298 * do these next steps (the fs will already have been marked as
299 * having errors), but we can't free the inode if the mark_dirty
300 * fails.
301 */
Mingming Cao617ba132006-10-11 01:20:53 -0700302 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700303 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400304 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700305 else
Mingming Cao617ba132006-10-11 01:20:53 -0700306 ext4_free_inode(handle, inode);
307 ext4_journal_stop(handle);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200308 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700309 return;
310no_delete:
Al Viro0930fcc2010-06-07 13:16:22 -0400311 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312}
313
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300314#ifdef CONFIG_QUOTA
315qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100316{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300317 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100318}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300319#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500320
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400321/*
322 * Calculate the number of metadata blocks need to reserve
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500323 * to allocate a block located at @lblock
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400324 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -0500325static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400326{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400327 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500328 return ext4_ext_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400329
Amir Goldstein8bb2b242011-06-27 17:10:28 -0400330 return ext4_ind_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400331}
332
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500333/*
334 * Called with i_data_sem down, which is important since we can call
335 * ext4_discard_preallocations() from here.
336 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500337void ext4_da_update_reserve_space(struct inode *inode,
338 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400339{
340 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500341 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400342
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500343 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400344 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500345 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500346 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400347 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500348 __func__, inode->i_ino, used,
349 ei->i_reserved_data_blocks);
350 WARN_ON(1);
351 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400352 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400353
Brian Foster97795d22012-07-22 23:59:40 -0400354 if (unlikely(ei->i_allocated_meta_blocks > ei->i_reserved_meta_blocks)) {
Theodore Ts'o01a523e2013-02-14 15:51:58 -0500355 ext4_warning(inode->i_sb, "ino %lu, allocated %d "
356 "with only %d reserved metadata blocks "
357 "(releasing %d blocks with reserved %d data blocks)",
358 inode->i_ino, ei->i_allocated_meta_blocks,
359 ei->i_reserved_meta_blocks, used,
360 ei->i_reserved_data_blocks);
Brian Foster97795d22012-07-22 23:59:40 -0400361 WARN_ON(1);
362 ei->i_allocated_meta_blocks = ei->i_reserved_meta_blocks;
363 }
364
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500365 /* Update per-inode reservations */
366 ei->i_reserved_data_blocks -= used;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500367 ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks;
Theodore Ts'o57042652011-09-09 18:56:51 -0400368 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400369 used + ei->i_allocated_meta_blocks);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500370 ei->i_allocated_meta_blocks = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500371
372 if (ei->i_reserved_data_blocks == 0) {
373 /*
374 * We can release all of the reserved metadata blocks
375 * only when we have written all of the delayed
376 * allocation blocks.
377 */
Theodore Ts'o57042652011-09-09 18:56:51 -0400378 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400379 ei->i_reserved_meta_blocks);
Theodore Ts'oee5f4d92010-01-01 02:36:15 -0500380 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500381 ei->i_da_metadata_calc_len = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500382 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400383 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100384
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400385 /* Update quota subsystem for data blocks */
386 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400387 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400388 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500389 /*
390 * We did fallocate with an offset that is already delayed
391 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400392 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500393 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400394 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500395 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400396
397 /*
398 * If we have done all the pending block allocations and if
399 * there aren't any writers on the inode, we can discard the
400 * inode's preallocations.
401 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500402 if ((ei->i_reserved_data_blocks == 0) &&
403 (atomic_read(&inode->i_writecount) == 0))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400404 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400405}
406
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400407static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400408 unsigned int line,
409 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400410{
Theodore Ts'o24676da2010-05-16 21:00:00 -0400411 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
412 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400413 ext4_error_inode(inode, func, line, map->m_pblk,
414 "lblock %lu mapped to illegal pblock "
415 "(length %d)", (unsigned long) map->m_lblk,
416 map->m_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400417 return -EIO;
418 }
419 return 0;
420}
421
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400422#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400423 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400424
Mingming Caof5ab0d12008-02-25 15:29:55 -0500425/*
Theodore Ts'o1f945332009-09-30 22:57:41 -0400426 * Return the number of contiguous dirty pages in a given inode
427 * starting at page frame idx.
Theodore Ts'o55138e02009-09-29 13:31:31 -0400428 */
429static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx,
430 unsigned int max_pages)
431{
432 struct address_space *mapping = inode->i_mapping;
433 pgoff_t index;
434 struct pagevec pvec;
435 pgoff_t num = 0;
436 int i, nr_pages, done = 0;
437
438 if (max_pages == 0)
439 return 0;
440 pagevec_init(&pvec, 0);
441 while (!done) {
442 index = idx;
443 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
444 PAGECACHE_TAG_DIRTY,
445 (pgoff_t)PAGEVEC_SIZE);
446 if (nr_pages == 0)
447 break;
448 for (i = 0; i < nr_pages; i++) {
449 struct page *page = pvec.pages[i];
450 struct buffer_head *bh, *head;
451
452 lock_page(page);
453 if (unlikely(page->mapping != mapping) ||
454 !PageDirty(page) ||
455 PageWriteback(page) ||
456 page->index != idx) {
457 done = 1;
458 unlock_page(page);
459 break;
460 }
Theodore Ts'o1f945332009-09-30 22:57:41 -0400461 if (page_has_buffers(page)) {
462 bh = head = page_buffers(page);
463 do {
464 if (!buffer_delay(bh) &&
465 !buffer_unwritten(bh))
466 done = 1;
467 bh = bh->b_this_page;
468 } while (!done && (bh != head));
469 }
Theodore Ts'o55138e02009-09-29 13:31:31 -0400470 unlock_page(page);
471 if (done)
472 break;
473 idx++;
474 num++;
Eric Sandeen659c6002010-10-27 21:30:03 -0400475 if (num >= max_pages) {
476 done = 1;
Theodore Ts'o55138e02009-09-29 13:31:31 -0400477 break;
Eric Sandeen659c6002010-10-27 21:30:03 -0400478 }
Theodore Ts'o55138e02009-09-29 13:31:31 -0400479 }
480 pagevec_release(&pvec);
481 }
482 return num;
483}
484
485/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400486 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400487 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500488 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500489 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
490 * and store the allocated blocks in the result buffer head and mark it
491 * mapped.
492 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400493 * If file type is extents based, it will call ext4_ext_map_blocks(),
494 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500495 * based files
496 *
497 * On success, it returns the number of blocks being mapped or allocate.
498 * if create==0 and the blocks are pre-allocated and uninitialized block,
499 * the result buffer head is unmapped. If the create ==1, it will make sure
500 * the buffer head is mapped.
501 *
502 * It returns 0 if plain look up failed (blocks have not been allocated), in
Tao Madf3ab172011-10-08 15:53:49 -0400503 * that case, buffer head is unmapped
Mingming Caof5ab0d12008-02-25 15:29:55 -0500504 *
505 * It returns the error in case of allocation failure.
506 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400507int ext4_map_blocks(handle_t *handle, struct inode *inode,
508 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500509{
Zheng Liud100eef2013-02-18 00:29:59 -0500510 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500511 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500512
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400513 map->m_flags = 0;
514 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
515 "logical block %lu\n", inode->i_ino, flags, map->m_len,
516 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500517
518 /* Lookup extent status tree firstly */
519 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
520 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
521 map->m_pblk = ext4_es_pblock(&es) +
522 map->m_lblk - es.es_lblk;
523 map->m_flags |= ext4_es_is_written(&es) ?
524 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
525 retval = es.es_len - (map->m_lblk - es.es_lblk);
526 if (retval > map->m_len)
527 retval = map->m_len;
528 map->m_len = retval;
529 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
530 retval = 0;
531 } else {
532 BUG_ON(1);
533 }
534 goto found;
535 }
536
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500537 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400538 * Try to see if we can get the block without requesting a new
539 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500540 */
Zheng Liu729f52c2012-07-09 16:29:29 -0400541 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
542 down_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400543 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400544 retval = ext4_ext_map_blocks(handle, inode, map, flags &
545 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500546 } else {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400547 retval = ext4_ind_map_blocks(handle, inode, map, flags &
548 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500549 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500550 if (retval > 0) {
551 int ret;
552 unsigned long long status;
553
554 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
555 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
556 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
557 ext4_find_delalloc_range(inode, map->m_lblk,
558 map->m_lblk + map->m_len - 1))
559 status |= EXTENT_STATUS_DELAYED;
560 ret = ext4_es_insert_extent(inode, map->m_lblk,
561 map->m_len, map->m_pblk, status);
562 if (ret < 0)
563 retval = ret;
564 }
Zheng Liu729f52c2012-07-09 16:29:29 -0400565 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
566 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500567
Zheng Liud100eef2013-02-18 00:29:59 -0500568found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400569 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Zheng Liuf7fec032013-02-18 00:28:47 -0500570 int ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400571 if (ret != 0)
572 return ret;
573 }
574
Mingming Caof5ab0d12008-02-25 15:29:55 -0500575 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400576 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500577 return retval;
578
579 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500580 * Returns if the blocks have already allocated
581 *
582 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400583 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500584 * with buffer head unmapped.
585 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400586 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Mingming Caof5ab0d12008-02-25 15:29:55 -0500587 return retval;
588
589 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500590 * Here we clear m_flags because after allocating an new extent,
591 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400592 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500593 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400594
595 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500596 * New blocks allocate and/or writing to uninitialized extent
597 * will possibly result in updating i_data, so we take
598 * the write lock of i_data_sem, and call get_blocks()
599 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500600 */
601 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -0400602
603 /*
604 * if the caller is from delayed allocation writeout path
605 * we have already reserved fs blocks for allocation
606 * let the underlying get_block() function know to
607 * avoid double accounting
608 */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400609 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Theodore Ts'of2321092011-01-10 12:12:36 -0500610 ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500611 /*
612 * We need to check for EXT4 here because migrate
613 * could have changed the inode type in between
614 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400615 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400616 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500617 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400618 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400619
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400620 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400621 /*
622 * We allocated new blocks which will result in
623 * i_data's format changing. Force the migrate
624 * to fail by clearing migrate flags
625 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500626 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400627 }
Mingming Caod2a17632008-07-14 17:52:37 -0400628
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500629 /*
630 * Update reserved blocks/metadata blocks after successful
631 * block allocation which had been deferred till now. We don't
632 * support fallocate for non extent files. So we can update
633 * reserve space here.
634 */
635 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500636 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500637 ext4_da_update_reserve_space(inode, retval, 1);
638 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500639 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Theodore Ts'of2321092011-01-10 12:12:36 -0500640 ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400641
Zheng Liuf7fec032013-02-18 00:28:47 -0500642 if (retval > 0) {
643 int ret;
644 unsigned long long status;
645
646 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
647 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
648 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
649 ext4_find_delalloc_range(inode, map->m_lblk,
650 map->m_lblk + map->m_len - 1))
651 status |= EXTENT_STATUS_DELAYED;
652 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
653 map->m_pblk, status);
654 if (ret < 0)
655 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -0400656 }
657
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500658 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400659 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400660 int ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400661 if (ret != 0)
662 return ret;
663 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500664 return retval;
665}
666
Mingming Caof3bd1f32008-08-19 22:16:03 -0400667/* Maximum number of blocks we map for direct IO at once. */
668#define DIO_MAX_BLOCKS 4096
669
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400670static int _ext4_get_block(struct inode *inode, sector_t iblock,
671 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700672{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -0800673 handle_t *handle = ext4_journal_current_handle();
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400674 struct ext4_map_blocks map;
Jan Kara7fb54092008-02-10 01:08:38 -0500675 int ret = 0, started = 0;
Mingming Caof3bd1f32008-08-19 22:16:03 -0400676 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700677
Tao Ma46c7f252012-12-10 14:04:52 -0500678 if (ext4_has_inline_data(inode))
679 return -ERANGE;
680
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400681 map.m_lblk = iblock;
682 map.m_len = bh->b_size >> inode->i_blkbits;
683
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500684 if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
Jan Kara7fb54092008-02-10 01:08:38 -0500685 /* Direct IO write... */
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400686 if (map.m_len > DIO_MAX_BLOCKS)
687 map.m_len = DIO_MAX_BLOCKS;
688 dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500689 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
690 dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -0500691 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 ret = PTR_ERR(handle);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400693 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700694 }
Jan Kara7fb54092008-02-10 01:08:38 -0500695 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700696 }
697
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400698 ret = ext4_map_blocks(handle, inode, &map, flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500699 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400700 map_bh(bh, inode->i_sb, map.m_pblk);
701 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
702 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500703 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700704 }
Jan Kara7fb54092008-02-10 01:08:38 -0500705 if (started)
706 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700707 return ret;
708}
709
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400710int ext4_get_block(struct inode *inode, sector_t iblock,
711 struct buffer_head *bh, int create)
712{
713 return _ext4_get_block(inode, iblock, bh,
714 create ? EXT4_GET_BLOCKS_CREATE : 0);
715}
716
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717/*
718 * `handle' can be NULL if create is zero
719 */
Mingming Cao617ba132006-10-11 01:20:53 -0700720struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500721 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700722{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400723 struct ext4_map_blocks map;
724 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700725 int fatal = 0, err;
726
727 J_ASSERT(handle != NULL || create == 0);
728
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400729 map.m_lblk = block;
730 map.m_len = 1;
731 err = ext4_map_blocks(handle, inode, &map,
732 create ? EXT4_GET_BLOCKS_CREATE : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700733
Carlos Maiolino90b0a972012-09-17 23:39:12 -0400734 /* ensure we send some value back into *errp */
735 *errp = 0;
736
Theodore Ts'o0f70b402013-02-15 03:35:57 -0500737 if (create && err == 0)
738 err = -ENOSPC; /* should never happen */
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400739 if (err < 0)
740 *errp = err;
741 if (err <= 0)
742 return NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400743
744 bh = sb_getblk(inode->i_sb, map.m_pblk);
Wang Shilongaebf0242013-01-12 16:28:47 -0500745 if (unlikely(!bh)) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -0500746 *errp = -ENOMEM;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400747 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700748 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400749 if (map.m_flags & EXT4_MAP_NEW) {
750 J_ASSERT(create != 0);
751 J_ASSERT(handle != NULL);
752
753 /*
754 * Now that we do not always journal data, we should
755 * keep in mind whether this should always journal the
756 * new buffer as metadata. For now, regular file
757 * writes use ext4_get_block instead, so it's not a
758 * problem.
759 */
760 lock_buffer(bh);
761 BUFFER_TRACE(bh, "call get_create_access");
762 fatal = ext4_journal_get_create_access(handle, bh);
763 if (!fatal && !buffer_uptodate(bh)) {
764 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
765 set_buffer_uptodate(bh);
766 }
767 unlock_buffer(bh);
768 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
769 err = ext4_handle_dirty_metadata(handle, inode, bh);
770 if (!fatal)
771 fatal = err;
772 } else {
773 BUFFER_TRACE(bh, "not a new buffer");
774 }
775 if (fatal) {
776 *errp = fatal;
777 brelse(bh);
778 bh = NULL;
779 }
780 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700781}
782
Mingming Cao617ba132006-10-11 01:20:53 -0700783struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500784 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700785{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400786 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700787
Mingming Cao617ba132006-10-11 01:20:53 -0700788 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700789 if (!bh)
790 return bh;
791 if (buffer_uptodate(bh))
792 return bh;
Christoph Hellwig65299a32011-08-23 14:50:29 +0200793 ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700794 wait_on_buffer(bh);
795 if (buffer_uptodate(bh))
796 return bh;
797 put_bh(bh);
798 *err = -EIO;
799 return NULL;
800}
801
Tao Maf19d5872012-12-10 14:05:51 -0500802int ext4_walk_page_buffers(handle_t *handle,
803 struct buffer_head *head,
804 unsigned from,
805 unsigned to,
806 int *partial,
807 int (*fn)(handle_t *handle,
808 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700809{
810 struct buffer_head *bh;
811 unsigned block_start, block_end;
812 unsigned blocksize = head->b_size;
813 int err, ret = 0;
814 struct buffer_head *next;
815
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400816 for (bh = head, block_start = 0;
817 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400818 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700819 next = bh->b_this_page;
820 block_end = block_start + blocksize;
821 if (block_end <= from || block_start >= to) {
822 if (partial && !buffer_uptodate(bh))
823 *partial = 1;
824 continue;
825 }
826 err = (*fn)(handle, bh);
827 if (!ret)
828 ret = err;
829 }
830 return ret;
831}
832
833/*
834 * To preserve ordering, it is essential that the hole instantiation and
835 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700836 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700837 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700838 * prepare_write() is the right place.
839 *
Jan Kara36ade452013-01-28 09:30:52 -0500840 * Also, this function can nest inside ext4_writepage(). In that case, we
841 * *know* that ext4_writepage() has generated enough buffer credits to do the
842 * whole page. So we won't block on the journal in that case, which is good,
843 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700844 *
Mingming Cao617ba132006-10-11 01:20:53 -0700845 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700846 * quota file writes. If we were to commit the transaction while thus
847 * reentered, there can be a deadlock - we would be holding a quota
848 * lock, and the commit would never complete if another thread had a
849 * transaction open and was blocking on the quota lock - a ranking
850 * violation.
851 *
Mingming Caodab291a2006-10-11 01:21:01 -0700852 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700853 * will _not_ run commit under these circumstances because handle->h_ref
854 * is elevated. We'll still have enough credits for the tiny quotafile
855 * write.
856 */
Tao Maf19d5872012-12-10 14:05:51 -0500857int do_journal_get_write_access(handle_t *handle,
858 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859{
Jan Kara56d35a42010-08-05 14:41:42 -0400860 int dirty = buffer_dirty(bh);
861 int ret;
862
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 if (!buffer_mapped(bh) || buffer_freed(bh))
864 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -0400865 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +0200866 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -0400867 * the dirty bit as jbd2_journal_get_write_access() could complain
868 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +0200869 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -0400870 * the bit before releasing a page lock and thus writeback cannot
871 * ever write the buffer.
872 */
873 if (dirty)
874 clear_buffer_dirty(bh);
875 ret = ext4_journal_get_write_access(handle, bh);
876 if (!ret && dirty)
877 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
878 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879}
880
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500881static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
882 struct buffer_head *bh_result, int create);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700883static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400884 loff_t pos, unsigned len, unsigned flags,
885 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700886{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400887 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400888 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700889 handle_t *handle;
890 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400891 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400892 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400893 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700894
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400895 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400896 /*
897 * Reserve one block more for addition to orphan list in case
898 * we allocate blocks but write fails for some reason
899 */
900 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400901 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400902 from = pos & (PAGE_CACHE_SIZE - 1);
903 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700904
Tao Maf19d5872012-12-10 14:05:51 -0500905 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
906 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
907 flags, pagep);
908 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500909 return ret;
910 if (ret == 1)
911 return 0;
Tao Maf19d5872012-12-10 14:05:51 -0500912 }
913
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500914 /*
915 * grab_cache_page_write_begin() can take a long time if the
916 * system is thrashing due to memory pressure, or if the page
917 * is being written back. So grab it first before we start
918 * the transaction handle. This also allows us to allocate
919 * the page (if needed) without using GFP_NOFS.
920 */
921retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -0800922 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500923 if (!page)
924 return -ENOMEM;
925 unlock_page(page);
926
927retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500928 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700929 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500930 page_cache_release(page);
931 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -0400932 }
Tao Maf19d5872012-12-10 14:05:51 -0500933
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500934 lock_page(page);
935 if (page->mapping != mapping) {
936 /* The page got truncated from under us */
937 unlock_page(page);
938 page_cache_release(page);
Jan Karacf108bc2008-07-11 19:27:31 -0400939 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500940 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -0400941 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500942 wait_on_page_writeback(page);
Jan Karacf108bc2008-07-11 19:27:31 -0400943
Jiaying Zhang744692d2010-03-04 16:14:02 -0500944 if (ext4_should_dioread_nolock(inode))
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200945 ret = __block_write_begin(page, pos, len, ext4_get_block_write);
Jiaying Zhang744692d2010-03-04 16:14:02 -0500946 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200947 ret = __block_write_begin(page, pos, len, ext4_get_block);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700948
949 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -0500950 ret = ext4_walk_page_buffers(handle, page_buffers(page),
951 from, to, NULL,
952 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700953 }
Nick Pigginbfc1af62007-10-16 01:25:05 -0700954
955 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400956 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400957 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200958 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400959 * outside i_size. Trim these off again. Don't need
960 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400961 *
962 * Add inode to orphan list in case we crash before
963 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400964 */
Jan Karaffacfa72009-07-13 16:22:22 -0400965 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400966 ext4_orphan_add(handle, inode);
967
968 ext4_journal_stop(handle);
969 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -0500970 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400971 /*
Jan Karaffacfa72009-07-13 16:22:22 -0400972 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400973 * still be on the orphan list; we need to
974 * make sure the inode is removed from the
975 * orphan list in that case.
976 */
977 if (inode->i_nlink)
978 ext4_orphan_del(NULL, inode);
979 }
Nick Pigginbfc1af62007-10-16 01:25:05 -0700980
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500981 if (ret == -ENOSPC &&
982 ext4_should_retry_alloc(inode->i_sb, &retries))
983 goto retry_journal;
984 page_cache_release(page);
985 return ret;
986 }
987 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988 return ret;
989}
990
Nick Pigginbfc1af62007-10-16 01:25:05 -0700991/* For write_end() in data=journal mode */
992static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700993{
994 if (!buffer_mapped(bh) || buffer_freed(bh))
995 return 0;
996 set_buffer_uptodate(bh);
Frank Mayhar03901312009-01-07 00:06:22 -0500997 return ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998}
999
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001000static int ext4_generic_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001001 struct address_space *mapping,
1002 loff_t pos, unsigned len, unsigned copied,
1003 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001004{
1005 int i_size_changed = 0;
1006 struct inode *inode = mapping->host;
1007 handle_t *handle = ext4_journal_current_handle();
1008
Tao Maf19d5872012-12-10 14:05:51 -05001009 if (ext4_has_inline_data(inode))
1010 copied = ext4_write_inline_data_end(inode, pos, len,
1011 copied, page);
1012 else
1013 copied = block_write_end(file, mapping, pos,
1014 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001015
1016 /*
1017 * No need to use i_size_read() here, the i_size
1018 * cannot change under us because we hold i_mutex.
1019 *
1020 * But it's important to update i_size while still holding page lock:
1021 * page writeout could otherwise come in and zero beyond i_size.
1022 */
1023 if (pos + copied > inode->i_size) {
1024 i_size_write(inode, pos + copied);
1025 i_size_changed = 1;
1026 }
1027
1028 if (pos + copied > EXT4_I(inode)->i_disksize) {
1029 /* We need to mark inode dirty even if
1030 * new_i_size is less that inode->i_size
1031 * bu greater than i_disksize.(hint delalloc)
1032 */
1033 ext4_update_i_disksize(inode, (pos + copied));
1034 i_size_changed = 1;
1035 }
1036 unlock_page(page);
1037 page_cache_release(page);
1038
1039 /*
1040 * Don't mark the inode dirty under page lock. First, it unnecessarily
1041 * makes the holding time of page lock longer. Second, it forces lock
1042 * ordering of page lock and transaction start for journaling
1043 * filesystems.
1044 */
1045 if (i_size_changed)
1046 ext4_mark_inode_dirty(handle, inode);
1047
1048 return copied;
1049}
1050
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001051/*
1052 * We need to pick up the new inode size which generic_commit_write gave us
1053 * `file' can be NULL - eg, when called from page_symlink().
1054 *
Mingming Cao617ba132006-10-11 01:20:53 -07001055 * ext4 never places buffers on inode->i_mapping->private_list. metadata
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001056 * buffers are managed internally.
1057 */
Nick Pigginbfc1af62007-10-16 01:25:05 -07001058static int ext4_ordered_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001059 struct address_space *mapping,
1060 loff_t pos, unsigned len, unsigned copied,
1061 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001062{
Mingming Cao617ba132006-10-11 01:20:53 -07001063 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001064 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 int ret = 0, ret2;
1066
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001067 trace_ext4_ordered_write_end(inode, pos, len, copied);
Jan Kara678aaf42008-07-11 19:27:31 -04001068 ret = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001069
1070 if (ret == 0) {
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001071 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001072 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001073 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001074 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001075 /* if we have allocated more blocks and copied
1076 * less. We will have blocks allocated outside
1077 * inode->i_size. So truncate them
1078 */
1079 ext4_orphan_add(handle, inode);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001080 if (ret2 < 0)
1081 ret = ret2;
Akira Fujita09e08342011-10-20 18:56:10 -04001082 } else {
1083 unlock_page(page);
1084 page_cache_release(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001085 }
Akira Fujita09e08342011-10-20 18:56:10 -04001086
Mingming Cao617ba132006-10-11 01:20:53 -07001087 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001088 if (!ret)
1089 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001090
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001091 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001092 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001093 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001094 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001095 * on the orphan list; we need to make sure the inode
1096 * is removed from the orphan list in that case.
1097 */
1098 if (inode->i_nlink)
1099 ext4_orphan_del(NULL, inode);
1100 }
1101
1102
Nick Pigginbfc1af62007-10-16 01:25:05 -07001103 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001104}
1105
Nick Pigginbfc1af62007-10-16 01:25:05 -07001106static int ext4_writeback_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001107 struct address_space *mapping,
1108 loff_t pos, unsigned len, unsigned copied,
1109 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001110{
Mingming Cao617ba132006-10-11 01:20:53 -07001111 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001112 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001113 int ret = 0, ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001114
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001115 trace_ext4_writeback_write_end(inode, pos, len, copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001116 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001117 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001118 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001119 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001120 /* if we have allocated more blocks and copied
1121 * less. We will have blocks allocated outside
1122 * inode->i_size. So truncate them
1123 */
1124 ext4_orphan_add(handle, inode);
1125
Roel Kluinf8a87d82008-04-29 22:01:18 -04001126 if (ret2 < 0)
1127 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001128
Mingming Cao617ba132006-10-11 01:20:53 -07001129 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001130 if (!ret)
1131 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001132
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001133 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001134 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001135 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001136 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001137 * on the orphan list; we need to make sure the inode
1138 * is removed from the orphan list in that case.
1139 */
1140 if (inode->i_nlink)
1141 ext4_orphan_del(NULL, inode);
1142 }
1143
Nick Pigginbfc1af62007-10-16 01:25:05 -07001144 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001145}
1146
Nick Pigginbfc1af62007-10-16 01:25:05 -07001147static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001148 struct address_space *mapping,
1149 loff_t pos, unsigned len, unsigned copied,
1150 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151{
Mingming Cao617ba132006-10-11 01:20:53 -07001152 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001153 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154 int ret = 0, ret2;
1155 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001156 unsigned from, to;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001157 loff_t new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001158
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001159 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001160 from = pos & (PAGE_CACHE_SIZE - 1);
1161 to = from + len;
1162
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001163 BUG_ON(!ext4_handle_valid(handle));
1164
Tao Ma3fdcfb62012-12-10 14:05:57 -05001165 if (ext4_has_inline_data(inode))
1166 copied = ext4_write_inline_data_end(inode, pos, len,
1167 copied, page);
1168 else {
1169 if (copied < len) {
1170 if (!PageUptodate(page))
1171 copied = 0;
1172 page_zero_new_buffers(page, from+copied, to);
1173 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001174
Tao Ma3fdcfb62012-12-10 14:05:57 -05001175 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1176 to, &partial, write_end_fn);
1177 if (!partial)
1178 SetPageUptodate(page);
1179 }
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001180 new_i_size = pos + copied;
1181 if (new_i_size > inode->i_size)
Nick Pigginbfc1af62007-10-16 01:25:05 -07001182 i_size_write(inode, pos+copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001183 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001184 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001185 if (new_i_size > EXT4_I(inode)->i_disksize) {
1186 ext4_update_i_disksize(inode, new_i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001187 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001188 if (!ret)
1189 ret = ret2;
1190 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001191
Jan Karacf108bc2008-07-11 19:27:31 -04001192 unlock_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001193 page_cache_release(page);
Jan Karaffacfa72009-07-13 16:22:22 -04001194 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001195 /* if we have allocated more blocks and copied
1196 * less. We will have blocks allocated outside
1197 * inode->i_size. So truncate them
1198 */
1199 ext4_orphan_add(handle, inode);
1200
Mingming Cao617ba132006-10-11 01:20:53 -07001201 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202 if (!ret)
1203 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001204 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001205 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001206 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001207 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001208 * on the orphan list; we need to make sure the inode
1209 * is removed from the orphan list in that case.
1210 */
1211 if (inode->i_nlink)
1212 ext4_orphan_del(NULL, inode);
1213 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001214
1215 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001216}
Mingming Caod2a17632008-07-14 17:52:37 -04001217
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001218/*
Aditya Kali7b415bf2011-09-09 19:04:51 -04001219 * Reserve a single cluster located at lblock
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001220 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -05001221static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -04001222{
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001223 int retries = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01001224 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001225 struct ext4_inode_info *ei = EXT4_I(inode);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001226 unsigned int md_needed;
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001227 int ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001228 ext4_lblk_t save_last_lblock;
1229 int save_len;
Mingming Caod2a17632008-07-14 17:52:37 -04001230
Mingming Cao60e58e02009-01-22 18:13:05 +01001231 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001232 * We will charge metadata quota at writeout time; this saves
1233 * us from metadata over-estimation, though we may go over by
1234 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001235 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001236 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001237 if (ret)
1238 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001239
1240 /*
1241 * recalculate the amount of metadata blocks to reserve
1242 * in order to allocate nrblocks
1243 * worse case is one extent per block
1244 */
1245repeat:
1246 spin_lock(&ei->i_block_reservation_lock);
1247 /*
1248 * ext4_calc_metadata_amount() has side effects, which we have
1249 * to be prepared undo if we fail to claim space.
1250 */
1251 save_len = ei->i_da_metadata_calc_len;
1252 save_last_lblock = ei->i_da_metadata_calc_last_lblock;
1253 md_needed = EXT4_NUM_B2C(sbi,
1254 ext4_calc_metadata_amount(inode, lblock));
1255 trace_ext4_da_reserve_space(inode, md_needed);
1256
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001257 /*
1258 * We do still charge estimated metadata to the sb though;
1259 * we cannot afford to run out of free blocks.
1260 */
Theodore Ts'oe7d5f312011-09-09 19:14:51 -04001261 if (ext4_claim_free_clusters(sbi, md_needed + 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001262 ei->i_da_metadata_calc_len = save_len;
1263 ei->i_da_metadata_calc_last_lblock = save_last_lblock;
1264 spin_unlock(&ei->i_block_reservation_lock);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001265 if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
1266 yield();
1267 goto repeat;
1268 }
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001269 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001270 return -ENOSPC;
1271 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001272 ei->i_reserved_data_blocks++;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001273 ei->i_reserved_meta_blocks += md_needed;
1274 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001275
Mingming Caod2a17632008-07-14 17:52:37 -04001276 return 0; /* success */
1277}
1278
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001279static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001280{
1281 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001282 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001283
Mingming Caocd213222008-08-19 22:16:59 -04001284 if (!to_free)
1285 return; /* Nothing to release, exit */
1286
Mingming Caod2a17632008-07-14 17:52:37 -04001287 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001288
Li Zefan5a58ec82010-05-17 02:00:00 -04001289 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001290 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001291 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001292 * if there aren't enough reserved blocks, then the
1293 * counter is messed up somewhere. Since this
1294 * function is called from invalidate page, it's
1295 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001296 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001297 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001298 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001299 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001300 ei->i_reserved_data_blocks);
1301 WARN_ON(1);
1302 to_free = ei->i_reserved_data_blocks;
1303 }
1304 ei->i_reserved_data_blocks -= to_free;
1305
1306 if (ei->i_reserved_data_blocks == 0) {
1307 /*
1308 * We can release all of the reserved metadata blocks
1309 * only when we have written all of the delayed
1310 * allocation blocks.
Aditya Kali7b415bf2011-09-09 19:04:51 -04001311 * Note that in case of bigalloc, i_reserved_meta_blocks,
1312 * i_reserved_data_blocks, etc. refer to number of clusters.
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001313 */
Theodore Ts'o57042652011-09-09 18:56:51 -04001314 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001315 ei->i_reserved_meta_blocks);
Theodore Ts'oee5f4d92010-01-01 02:36:15 -05001316 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001317 ei->i_da_metadata_calc_len = 0;
Mingming Caocd213222008-08-19 22:16:59 -04001318 }
1319
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001320 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001321 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001322
Mingming Caod2a17632008-07-14 17:52:37 -04001323 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001324
Aditya Kali7b415bf2011-09-09 19:04:51 -04001325 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001326}
1327
1328static void ext4_da_page_release_reservation(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001329 unsigned long offset)
Mingming Caod2a17632008-07-14 17:52:37 -04001330{
1331 int to_release = 0;
1332 struct buffer_head *head, *bh;
1333 unsigned int curr_off = 0;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001334 struct inode *inode = page->mapping->host;
1335 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1336 int num_clusters;
Zheng Liu51865fd2012-11-08 21:57:32 -05001337 ext4_fsblk_t lblk;
Mingming Caod2a17632008-07-14 17:52:37 -04001338
1339 head = page_buffers(page);
1340 bh = head;
1341 do {
1342 unsigned int next_off = curr_off + bh->b_size;
1343
1344 if ((offset <= curr_off) && (buffer_delay(bh))) {
1345 to_release++;
1346 clear_buffer_delay(bh);
1347 }
1348 curr_off = next_off;
1349 } while ((bh = bh->b_this_page) != head);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001350
Zheng Liu51865fd2012-11-08 21:57:32 -05001351 if (to_release) {
1352 lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1353 ext4_es_remove_extent(inode, lblk, to_release);
1354 }
1355
Aditya Kali7b415bf2011-09-09 19:04:51 -04001356 /* If we have released all the blocks belonging to a cluster, then we
1357 * need to release the reserved space for that cluster. */
1358 num_clusters = EXT4_NUM_B2C(sbi, to_release);
1359 while (num_clusters > 0) {
Aditya Kali7b415bf2011-09-09 19:04:51 -04001360 lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
1361 ((num_clusters - 1) << sbi->s_cluster_bits);
1362 if (sbi->s_cluster_ratio == 1 ||
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05001363 !ext4_find_delalloc_cluster(inode, lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04001364 ext4_da_release_space(inode, 1);
1365
1366 num_clusters--;
1367 }
Mingming Caod2a17632008-07-14 17:52:37 -04001368}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001369
1370/*
Alex Tomas64769242008-07-11 19:27:31 -04001371 * Delayed allocation stuff
1372 */
1373
Alex Tomas64769242008-07-11 19:27:31 -04001374/*
1375 * mpage_da_submit_io - walks through extent of pages and try to write
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001376 * them with writepage() call back
Alex Tomas64769242008-07-11 19:27:31 -04001377 *
1378 * @mpd->inode: inode
1379 * @mpd->first_page: first page of the extent
1380 * @mpd->next_page: page after the last page of the extent
Alex Tomas64769242008-07-11 19:27:31 -04001381 *
1382 * By the time mpage_da_submit_io() is called we expect all blocks
1383 * to be allocated. this may be wrong if allocation failed.
1384 *
1385 * As pages are already locked by write_cache_pages(), we can't use it
1386 */
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001387static int mpage_da_submit_io(struct mpage_da_data *mpd,
1388 struct ext4_map_blocks *map)
Alex Tomas64769242008-07-11 19:27:31 -04001389{
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001390 struct pagevec pvec;
1391 unsigned long index, end;
1392 int ret = 0, err, nr_pages, i;
1393 struct inode *inode = mpd->inode;
1394 struct address_space *mapping = inode->i_mapping;
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001395 loff_t size = i_size_read(inode);
Theodore Ts'o3ecdb3a2010-10-27 21:30:10 -04001396 unsigned int len, block_start;
1397 struct buffer_head *bh, *page_bufs = NULL;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001398 sector_t pblock = 0, cur_logical = 0;
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001399 struct ext4_io_submit io_submit;
Alex Tomas64769242008-07-11 19:27:31 -04001400
1401 BUG_ON(mpd->next_page <= mpd->first_page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001402 memset(&io_submit, 0, sizeof(io_submit));
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001403 /*
1404 * We need to start from the first_page to the next_page - 1
1405 * to make sure we also write the mapped dirty buffer_heads.
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001406 * If we look at mpd->b_blocknr we would only be looking
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001407 * at the currently mapped buffer_heads.
1408 */
Alex Tomas64769242008-07-11 19:27:31 -04001409 index = mpd->first_page;
1410 end = mpd->next_page - 1;
1411
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001412 pagevec_init(&pvec, 0);
Alex Tomas64769242008-07-11 19:27:31 -04001413 while (index <= end) {
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001414 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
Alex Tomas64769242008-07-11 19:27:31 -04001415 if (nr_pages == 0)
1416 break;
1417 for (i = 0; i < nr_pages; i++) {
Jan Karaf8bec372013-01-28 12:55:08 -05001418 int skip_page = 0;
Alex Tomas64769242008-07-11 19:27:31 -04001419 struct page *page = pvec.pages[i];
1420
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001421 index = page->index;
1422 if (index > end)
1423 break;
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001424
1425 if (index == size >> PAGE_CACHE_SHIFT)
1426 len = size & ~PAGE_CACHE_MASK;
1427 else
1428 len = PAGE_CACHE_SIZE;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001429 if (map) {
1430 cur_logical = index << (PAGE_CACHE_SHIFT -
1431 inode->i_blkbits);
1432 pblock = map->m_pblk + (cur_logical -
1433 map->m_lblk);
1434 }
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001435 index++;
1436
1437 BUG_ON(!PageLocked(page));
1438 BUG_ON(PageWriteback(page));
1439
Theodore Ts'o3ecdb3a2010-10-27 21:30:10 -04001440 bh = page_bufs = page_buffers(page);
1441 block_start = 0;
1442 do {
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001443 if (map && (cur_logical >= map->m_lblk) &&
1444 (cur_logical <= (map->m_lblk +
1445 (map->m_len - 1)))) {
1446 if (buffer_delay(bh)) {
1447 clear_buffer_delay(bh);
1448 bh->b_blocknr = pblock;
1449 }
1450 if (buffer_unwritten(bh) ||
1451 buffer_mapped(bh))
1452 BUG_ON(bh->b_blocknr != pblock);
1453 if (map->m_flags & EXT4_MAP_UNINIT)
1454 set_buffer_uninit(bh);
1455 clear_buffer_unwritten(bh);
1456 }
1457
Yongqiang Yang13a79a42011-12-13 21:51:55 -05001458 /*
1459 * skip page if block allocation undone and
1460 * block is dirty
1461 */
1462 if (ext4_bh_delay_or_unwritten(NULL, bh))
Theodore Ts'o97498952011-02-26 14:08:01 -05001463 skip_page = 1;
Theodore Ts'o3ecdb3a2010-10-27 21:30:10 -04001464 bh = bh->b_this_page;
1465 block_start += bh->b_size;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001466 cur_logical++;
1467 pblock++;
1468 } while (bh != page_bufs);
1469
Jan Karaf8bec372013-01-28 12:55:08 -05001470 if (skip_page) {
1471 unlock_page(page);
1472 continue;
1473 }
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001474
Theodore Ts'o97498952011-02-26 14:08:01 -05001475 clear_page_dirty_for_io(page);
Jan Karafe089c72013-01-28 09:38:49 -05001476 err = ext4_bio_write_page(&io_submit, page, len,
1477 mpd->wbc);
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001478 if (!err)
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001479 mpd->pages_written++;
Alex Tomas64769242008-07-11 19:27:31 -04001480 /*
1481 * In error case, we have to continue because
1482 * remaining pages are still locked
Alex Tomas64769242008-07-11 19:27:31 -04001483 */
1484 if (ret == 0)
1485 ret = err;
1486 }
1487 pagevec_release(&pvec);
1488 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001489 ext4_io_submit(&io_submit);
Alex Tomas64769242008-07-11 19:27:31 -04001490 return ret;
1491}
1492
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001493static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001494{
1495 int nr_pages, i;
1496 pgoff_t index, end;
1497 struct pagevec pvec;
1498 struct inode *inode = mpd->inode;
1499 struct address_space *mapping = inode->i_mapping;
Zheng Liu51865fd2012-11-08 21:57:32 -05001500 ext4_lblk_t start, last;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001501
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001502 index = mpd->first_page;
1503 end = mpd->next_page - 1;
Zheng Liu51865fd2012-11-08 21:57:32 -05001504
1505 start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1506 last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1507 ext4_es_remove_extent(inode, start, last - start + 1);
1508
Eric Sandeen66bea922012-11-14 22:22:05 -05001509 pagevec_init(&pvec, 0);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001510 while (index <= end) {
1511 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1512 if (nr_pages == 0)
1513 break;
1514 for (i = 0; i < nr_pages; i++) {
1515 struct page *page = pvec.pages[i];
Jan Kara9b1d09982010-03-03 16:19:32 -05001516 if (page->index > end)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001517 break;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001518 BUG_ON(!PageLocked(page));
1519 BUG_ON(PageWriteback(page));
1520 block_invalidatepage(page, 0);
1521 ClearPageUptodate(page);
1522 unlock_page(page);
1523 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001524 index = pvec.pages[nr_pages - 1]->index + 1;
1525 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001526 }
1527 return;
1528}
1529
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001530static void ext4_print_free_blocks(struct inode *inode)
1531{
1532 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001533 struct super_block *sb = inode->i_sb;
1534
1535 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001536 EXT4_C2B(EXT4_SB(inode->i_sb),
1537 ext4_count_free_clusters(inode->i_sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001538 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1539 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Theodore Ts'o57042652011-09-09 18:56:51 -04001540 (long long) EXT4_C2B(EXT4_SB(inode->i_sb),
1541 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001542 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Aditya Kali7b415bf2011-09-09 19:04:51 -04001543 (long long) EXT4_C2B(EXT4_SB(inode->i_sb),
1544 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001545 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1546 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1547 EXT4_I(inode)->i_reserved_data_blocks);
1548 ext4_msg(sb, KERN_CRIT, "i_reserved_meta_blocks=%u",
Theodore Ts'o16939182009-09-26 17:43:59 -04001549 EXT4_I(inode)->i_reserved_meta_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001550 return;
1551}
1552
Theodore Ts'ob920c752009-05-14 00:54:29 -04001553/*
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001554 * mpage_da_map_and_submit - go through given space, map them
1555 * if necessary, and then submit them for I/O
Alex Tomas64769242008-07-11 19:27:31 -04001556 *
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001557 * @mpd - bh describing space
Alex Tomas64769242008-07-11 19:27:31 -04001558 *
1559 * The function skips space we know is already mapped to disk blocks.
1560 *
Alex Tomas64769242008-07-11 19:27:31 -04001561 */
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001562static void mpage_da_map_and_submit(struct mpage_da_data *mpd)
Alex Tomas64769242008-07-11 19:27:31 -04001563{
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001564 int err, blks, get_blocks_flags;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001565 struct ext4_map_blocks map, *mapp = NULL;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001566 sector_t next = mpd->b_blocknr;
1567 unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits;
1568 loff_t disksize = EXT4_I(mpd->inode)->i_disksize;
1569 handle_t *handle = NULL;
Alex Tomas64769242008-07-11 19:27:31 -04001570
1571 /*
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001572 * If the blocks are mapped already, or we couldn't accumulate
1573 * any blocks, then proceed immediately to the submission stage.
Alex Tomas64769242008-07-11 19:27:31 -04001574 */
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001575 if ((mpd->b_size == 0) ||
1576 ((mpd->b_state & (1 << BH_Mapped)) &&
1577 !(mpd->b_state & (1 << BH_Delay)) &&
1578 !(mpd->b_state & (1 << BH_Unwritten))))
1579 goto submit_io;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001580
1581 handle = ext4_journal_current_handle();
1582 BUG_ON(!handle);
1583
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04001584 /*
Eric Sandeen79e83032010-07-27 11:56:07 -04001585 * Call ext4_map_blocks() to allocate any delayed allocation
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001586 * blocks, or to convert an uninitialized extent to be
1587 * initialized (in the case where we have written into
1588 * one or more preallocated blocks).
1589 *
1590 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to
1591 * indicate that we are on the delayed allocation path. This
1592 * affects functions in many different parts of the allocation
1593 * call path. This flag exists primarily because we don't
Eric Sandeen79e83032010-07-27 11:56:07 -04001594 * want to change *many* call functions, so ext4_map_blocks()
Theodore Ts'of2321092011-01-10 12:12:36 -05001595 * will set the EXT4_STATE_DELALLOC_RESERVED flag once the
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001596 * inode's allocation semaphore is taken.
1597 *
1598 * If the blocks in questions were delalloc blocks, set
1599 * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting
1600 * variables are updated after the blocks have been allocated.
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04001601 */
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001602 map.m_lblk = next;
1603 map.m_len = max_blocks;
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05001604 get_blocks_flags = EXT4_GET_BLOCKS_CREATE;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001605 if (ext4_should_dioread_nolock(mpd->inode))
1606 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001607 if (mpd->b_state & (1 << BH_Delay))
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05001608 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
1609
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001610 blks = ext4_map_blocks(handle, mpd->inode, &map, get_blocks_flags);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001611 if (blks < 0) {
Eric Sandeene3570632010-07-27 11:56:08 -04001612 struct super_block *sb = mpd->inode->i_sb;
1613
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001614 err = blks;
Theodore Ts'oed5bde02009-02-23 10:48:07 -05001615 /*
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001616 * If get block returns EAGAIN or ENOSPC and there
Theodore Ts'o97498952011-02-26 14:08:01 -05001617 * appears to be free blocks we will just let
1618 * mpage_da_submit_io() unlock all of the pages.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001619 */
1620 if (err == -EAGAIN)
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001621 goto submit_io;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001622
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001623 if (err == -ENOSPC && ext4_count_free_clusters(sb)) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001624 mpd->retval = err;
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001625 goto submit_io;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001626 }
1627
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001628 /*
Theodore Ts'oed5bde02009-02-23 10:48:07 -05001629 * get block failure will cause us to loop in
1630 * writepages, because a_ops->writepage won't be able
1631 * to make progress. The page will be redirtied by
1632 * writepage and writepages will again try to write
1633 * the same.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001634 */
Eric Sandeene3570632010-07-27 11:56:08 -04001635 if (!(EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)) {
1636 ext4_msg(sb, KERN_CRIT,
1637 "delayed block allocation failed for inode %lu "
1638 "at logical offset %llu with max blocks %zd "
1639 "with error %d", mpd->inode->i_ino,
1640 (unsigned long long) next,
1641 mpd->b_size >> mpd->inode->i_blkbits, err);
1642 ext4_msg(sb, KERN_CRIT,
Theodore Ts'o01a523e2013-02-14 15:51:58 -05001643 "This should not happen!! Data will be lost");
Eric Sandeene3570632010-07-27 11:56:08 -04001644 if (err == -ENOSPC)
1645 ext4_print_free_blocks(mpd->inode);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001646 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001647 /* invalidate all the pages */
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001648 ext4_da_block_invalidatepages(mpd);
Curt Wohlgemuthe0fd9b92011-02-26 12:25:52 -05001649
1650 /* Mark this page range as having been completed */
1651 mpd->io_done = 1;
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001652 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001653 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001654 BUG_ON(blks == 0);
1655
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001656 mapp = &map;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001657 if (map.m_flags & EXT4_MAP_NEW) {
1658 struct block_device *bdev = mpd->inode->i_sb->s_bdev;
1659 int i;
Alex Tomas64769242008-07-11 19:27:31 -04001660
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001661 for (i = 0; i < map.m_len; i++)
1662 unmap_underlying_metadata(bdev, map.m_pblk + i);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001663 }
1664
1665 /*
Jan Kara03f5d8b2009-06-09 00:17:05 -04001666 * Update on-disk size along with block allocation.
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001667 */
1668 disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits;
1669 if (disksize > i_size_read(mpd->inode))
1670 disksize = i_size_read(mpd->inode);
1671 if (disksize > EXT4_I(mpd->inode)->i_disksize) {
1672 ext4_update_i_disksize(mpd->inode, disksize);
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001673 err = ext4_mark_inode_dirty(handle, mpd->inode);
1674 if (err)
1675 ext4_error(mpd->inode->i_sb,
1676 "Failed to mark inode %lu dirty",
1677 mpd->inode->i_ino);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001678 }
1679
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001680submit_io:
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001681 mpage_da_submit_io(mpd, mapp);
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001682 mpd->io_done = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001683}
1684
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04001685#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
1686 (1 << BH_Delay) | (1 << BH_Unwritten))
Alex Tomas64769242008-07-11 19:27:31 -04001687
1688/*
1689 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
1690 *
1691 * @mpd->lbh - extent of blocks
1692 * @logical - logical number of the block in the file
Jan Karab6a8e622013-01-28 13:06:48 -05001693 * @b_state - b_state of the buffer head added
Alex Tomas64769242008-07-11 19:27:31 -04001694 *
1695 * the function is used to collect contig. blocks in same state
1696 */
Jan Karab6a8e622013-01-28 13:06:48 -05001697static void mpage_add_bh_to_extent(struct mpage_da_data *mpd, sector_t logical,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001698 unsigned long b_state)
Alex Tomas64769242008-07-11 19:27:31 -04001699{
Alex Tomas64769242008-07-11 19:27:31 -04001700 sector_t next;
Jan Karab6a8e622013-01-28 13:06:48 -05001701 int blkbits = mpd->inode->i_blkbits;
1702 int nrblocks = mpd->b_size >> blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04001703
Eric Sandeenc445e3e2010-05-16 04:00:00 -04001704 /*
1705 * XXX Don't go larger than mballoc is willing to allocate
1706 * This is a stopgap solution. We eventually need to fold
1707 * mpage_da_submit_io() into this function and then call
Eric Sandeen79e83032010-07-27 11:56:07 -04001708 * ext4_map_blocks() multiple times in a loop
Eric Sandeenc445e3e2010-05-16 04:00:00 -04001709 */
Jan Karab6a8e622013-01-28 13:06:48 -05001710 if (nrblocks >= (8*1024*1024 >> blkbits))
Eric Sandeenc445e3e2010-05-16 04:00:00 -04001711 goto flush_it;
1712
Jan Karab6a8e622013-01-28 13:06:48 -05001713 /* check if the reserved journal credits might overflow */
1714 if (!ext4_test_inode_flag(mpd->inode, EXT4_INODE_EXTENTS)) {
Mingming Cao525f4ed2008-08-19 22:15:58 -04001715 if (nrblocks >= EXT4_MAX_TRANS_DATA) {
1716 /*
1717 * With non-extent format we are limited by the journal
1718 * credit available. Total credit needed to insert
1719 * nrblocks contiguous blocks is dependent on the
1720 * nrblocks. So limit nrblocks.
1721 */
1722 goto flush_it;
Mingming Cao525f4ed2008-08-19 22:15:58 -04001723 }
1724 }
Alex Tomas64769242008-07-11 19:27:31 -04001725 /*
1726 * First block in the extent
1727 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001728 if (mpd->b_size == 0) {
1729 mpd->b_blocknr = logical;
Jan Karab6a8e622013-01-28 13:06:48 -05001730 mpd->b_size = 1 << blkbits;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001731 mpd->b_state = b_state & BH_FLAGS;
Alex Tomas64769242008-07-11 19:27:31 -04001732 return;
1733 }
1734
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001735 next = mpd->b_blocknr + nrblocks;
Alex Tomas64769242008-07-11 19:27:31 -04001736 /*
1737 * Can we merge the block to our big extent?
1738 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001739 if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) {
Jan Karab6a8e622013-01-28 13:06:48 -05001740 mpd->b_size += 1 << blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04001741 return;
1742 }
1743
Mingming Cao525f4ed2008-08-19 22:15:58 -04001744flush_it:
Alex Tomas64769242008-07-11 19:27:31 -04001745 /*
1746 * We couldn't merge the block to our extent, so we
1747 * need to flush current extent and start new one
1748 */
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001749 mpage_da_map_and_submit(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001750 return;
Alex Tomas64769242008-07-11 19:27:31 -04001751}
1752
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001753static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001754{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001755 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001756}
1757
Alex Tomas64769242008-07-11 19:27:31 -04001758/*
Aditya Kali5356f262011-09-09 19:20:51 -04001759 * This function is grabs code from the very beginning of
1760 * ext4_map_blocks, but assumes that the caller is from delayed write
1761 * time. This function looks up the requested blocks and sets the
1762 * buffer delay bit under the protection of i_data_sem.
1763 */
1764static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1765 struct ext4_map_blocks *map,
1766 struct buffer_head *bh)
1767{
Zheng Liud100eef2013-02-18 00:29:59 -05001768 struct extent_status es;
Aditya Kali5356f262011-09-09 19:20:51 -04001769 int retval;
1770 sector_t invalid_block = ~((sector_t) 0xffff);
1771
1772 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1773 invalid_block = ~0;
1774
1775 map->m_flags = 0;
1776 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1777 "logical block %lu\n", inode->i_ino, map->m_len,
1778 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001779
1780 /* Lookup extent status tree firstly */
1781 if (ext4_es_lookup_extent(inode, iblock, &es)) {
1782
1783 if (ext4_es_is_hole(&es)) {
1784 retval = 0;
1785 down_read((&EXT4_I(inode)->i_data_sem));
1786 goto add_delayed;
1787 }
1788
1789 /*
1790 * Delayed extent could be allocated by fallocate.
1791 * So we need to check it.
1792 */
1793 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1794 map_bh(bh, inode->i_sb, invalid_block);
1795 set_buffer_new(bh);
1796 set_buffer_delay(bh);
1797 return 0;
1798 }
1799
1800 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1801 retval = es.es_len - (iblock - es.es_lblk);
1802 if (retval > map->m_len)
1803 retval = map->m_len;
1804 map->m_len = retval;
1805 if (ext4_es_is_written(&es))
1806 map->m_flags |= EXT4_MAP_MAPPED;
1807 else if (ext4_es_is_unwritten(&es))
1808 map->m_flags |= EXT4_MAP_UNWRITTEN;
1809 else
1810 BUG_ON(1);
1811
1812 return retval;
1813 }
1814
Aditya Kali5356f262011-09-09 19:20:51 -04001815 /*
1816 * Try to see if we can get the block without requesting a new
1817 * file system block.
1818 */
1819 down_read((&EXT4_I(inode)->i_data_sem));
Tao Ma9c3569b2012-12-10 14:05:57 -05001820 if (ext4_has_inline_data(inode)) {
1821 /*
1822 * We will soon create blocks for this page, and let
1823 * us pretend as if the blocks aren't allocated yet.
1824 * In case of clusters, we have to handle the work
1825 * of mapping from cluster so that the reserved space
1826 * is calculated properly.
1827 */
1828 if ((EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) &&
1829 ext4_find_delalloc_cluster(inode, map->m_lblk))
1830 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
1831 retval = 0;
1832 } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liud100eef2013-02-18 00:29:59 -05001833 retval = ext4_ext_map_blocks(NULL, inode, map,
1834 EXT4_GET_BLOCKS_NO_PUT_HOLE);
Aditya Kali5356f262011-09-09 19:20:51 -04001835 else
Zheng Liud100eef2013-02-18 00:29:59 -05001836 retval = ext4_ind_map_blocks(NULL, inode, map,
1837 EXT4_GET_BLOCKS_NO_PUT_HOLE);
Aditya Kali5356f262011-09-09 19:20:51 -04001838
Zheng Liud100eef2013-02-18 00:29:59 -05001839add_delayed:
Aditya Kali5356f262011-09-09 19:20:51 -04001840 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001841 int ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001842 /*
1843 * XXX: __block_prepare_write() unmaps passed block,
1844 * is it OK?
1845 */
1846 /* If the block was allocated from previously allocated cluster,
1847 * then we dont need to reserve it again. */
1848 if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001849 ret = ext4_da_reserve_space(inode, iblock);
1850 if (ret) {
Aditya Kali5356f262011-09-09 19:20:51 -04001851 /* not enough space to reserve */
Zheng Liuf7fec032013-02-18 00:28:47 -05001852 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001853 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001854 }
Aditya Kali5356f262011-09-09 19:20:51 -04001855 }
1856
Zheng Liuf7fec032013-02-18 00:28:47 -05001857 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1858 ~0, EXTENT_STATUS_DELAYED);
1859 if (ret) {
1860 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001861 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001862 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001863
Aditya Kali5356f262011-09-09 19:20:51 -04001864 /* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served
1865 * and it should not appear on the bh->b_state.
1866 */
1867 map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
1868
1869 map_bh(bh, inode->i_sb, invalid_block);
1870 set_buffer_new(bh);
1871 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001872 } else if (retval > 0) {
1873 int ret;
1874 unsigned long long status;
1875
1876 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1877 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1878 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1879 map->m_pblk, status);
1880 if (ret != 0)
1881 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001882 }
1883
1884out_unlock:
1885 up_read((&EXT4_I(inode)->i_data_sem));
1886
1887 return retval;
1888}
1889
1890/*
Theodore Ts'ob920c752009-05-14 00:54:29 -04001891 * This is a special get_blocks_t callback which is used by
1892 * ext4_da_write_begin(). It will either return mapped block or
1893 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001894 *
1895 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1896 * We also have b_blocknr = -1 and b_bdev initialized properly
1897 *
1898 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1899 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1900 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001901 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001902int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1903 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001904{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001905 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001906 int ret = 0;
1907
1908 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001909 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1910
1911 map.m_lblk = iblock;
1912 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001913
1914 /*
1915 * first, we need to know whether the block is allocated already
1916 * preallocated blocks are unmapped but should treated
1917 * the same as allocated blocks.
1918 */
Aditya Kali5356f262011-09-09 19:20:51 -04001919 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1920 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001921 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001922
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001923 map_bh(bh, inode->i_sb, map.m_pblk);
1924 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
1925
1926 if (buffer_unwritten(bh)) {
1927 /* A delayed write to unwritten bh should be marked
1928 * new and mapped. Mapped ensures that we don't do
1929 * get_block multiple times when we write to the same
1930 * offset and new ensures that we do proper zero out
1931 * for partial write.
1932 */
1933 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001934 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001935 }
1936 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001937}
Mingming Cao61628a32008-07-11 19:27:31 -04001938
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001939static int bget_one(handle_t *handle, struct buffer_head *bh)
1940{
1941 get_bh(bh);
1942 return 0;
1943}
1944
1945static int bput_one(handle_t *handle, struct buffer_head *bh)
1946{
1947 put_bh(bh);
1948 return 0;
1949}
1950
1951static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001952 unsigned int len)
1953{
1954 struct address_space *mapping = page->mapping;
1955 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001956 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001957 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001958 int ret = 0, err = 0;
1959 int inline_data = ext4_has_inline_data(inode);
1960 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001961
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001962 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001963
1964 if (inline_data) {
1965 BUG_ON(page->index != 0);
1966 BUG_ON(len > ext4_get_max_inline_size(inode));
1967 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1968 if (inode_bh == NULL)
1969 goto out;
1970 } else {
1971 page_bufs = page_buffers(page);
1972 if (!page_bufs) {
1973 BUG();
1974 goto out;
1975 }
1976 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1977 NULL, bget_one);
1978 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001979 /* As soon as we unlock the page, it can go away, but we have
1980 * references to buffers so we are safe */
1981 unlock_page(page);
1982
Theodore Ts'o9924a922013-02-08 21:59:22 -05001983 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1984 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001985 if (IS_ERR(handle)) {
1986 ret = PTR_ERR(handle);
1987 goto out;
1988 }
1989
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001990 BUG_ON(!ext4_handle_valid(handle));
1991
Tao Ma3fdcfb62012-12-10 14:05:57 -05001992 if (inline_data) {
1993 ret = ext4_journal_get_write_access(handle, inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001994
Tao Ma3fdcfb62012-12-10 14:05:57 -05001995 err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
1996
1997 } else {
1998 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1999 do_journal_get_write_access);
2000
2001 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
2002 write_end_fn);
2003 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002004 if (ret == 0)
2005 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04002006 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002007 err = ext4_journal_stop(handle);
2008 if (!ret)
2009 ret = err;
2010
Tao Ma3fdcfb62012-12-10 14:05:57 -05002011 if (!ext4_has_inline_data(inode))
2012 ext4_walk_page_buffers(handle, page_bufs, 0, len,
2013 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002014 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002015out:
Tao Ma3fdcfb62012-12-10 14:05:57 -05002016 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002017 return ret;
2018}
2019
Mingming Cao61628a32008-07-11 19:27:31 -04002020/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002021 * Note that we don't need to start a transaction unless we're journaling data
2022 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2023 * need to file the inode to the transaction's list in ordered mode because if
2024 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002025 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002026 * transaction the data will hit the disk. In case we are journaling data, we
2027 * cannot start transaction directly because transaction start ranks above page
2028 * lock so we have to do some magic.
2029 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04002030 * This function can get called via...
2031 * - ext4_da_writepages after taking page lock (have journal handle)
2032 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03002033 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04002034 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002035 *
2036 * We don't do any block allocation in this function. If we have page with
2037 * multiple blocks we need to write those buffer_heads that are mapped. This
2038 * is important for mmaped based write. So if we do with blocksize 1K
2039 * truncate(f, 1024);
2040 * a = mmap(f, 0, 4096);
2041 * a[0] = 'a';
2042 * truncate(f, 4096);
2043 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01002044 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002045 * do_wp_page). So writepage should write the first block. If we modify
2046 * the mmap area beyond 1024 we will again get a page_fault and the
2047 * page_mkwrite callback will do the block allocation and mark the
2048 * buffer_heads mapped.
2049 *
2050 * We redirty the page if we have any buffer_heads that is either delay or
2051 * unwritten in the page.
2052 *
2053 * We can get recursively called as show below.
2054 *
2055 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2056 * ext4_writepage()
2057 *
2058 * But since we don't do any block allocation we should not deadlock.
2059 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04002060 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002061static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002062 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002063{
Jan Karaf8bec372013-01-28 12:55:08 -05002064 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002065 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002066 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05002067 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04002068 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05002069 struct ext4_io_submit io_submit;
Alex Tomas64769242008-07-11 19:27:31 -04002070
Lukas Czernera9c667f2011-06-06 09:51:52 -04002071 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002072 size = i_size_read(inode);
2073 if (page->index == size >> PAGE_CACHE_SHIFT)
2074 len = size & ~PAGE_CACHE_MASK;
2075 else
2076 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002077
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002078 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002079 /*
Jan Karafe386132013-01-28 21:06:42 -05002080 * We cannot do block allocation or other extent handling in this
2081 * function. If there are buffers needing that, we have to redirty
2082 * the page. But we may reach here when we do a journal commit via
2083 * journal_submit_inode_data_buffers() and in that case we must write
2084 * allocated buffers to achieve data=ordered mode guarantees.
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002085 */
Tao Maf19d5872012-12-10 14:05:51 -05002086 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2087 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002088 redirty_page_for_writepage(wbc, page);
Jan Karafe386132013-01-28 21:06:42 -05002089 if (current->flags & PF_MEMALLOC) {
2090 /*
2091 * For memory cleaning there's no point in writing only
2092 * some buffers. So just bail out. Warn if we came here
2093 * from direct reclaim.
2094 */
2095 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2096 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002097 unlock_page(page);
2098 return 0;
2099 }
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002100 }
Alex Tomas64769242008-07-11 19:27:31 -04002101
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002102 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002103 /*
2104 * It's mmapped pagecache. Add buffers and journal it. There
2105 * doesn't seem much point in redirtying the page here.
2106 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002107 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002108
Jan Kara36ade452013-01-28 09:30:52 -05002109 memset(&io_submit, 0, sizeof(io_submit));
2110 ret = ext4_bio_write_page(&io_submit, page, len, wbc);
2111 ext4_io_submit(&io_submit);
Alex Tomas64769242008-07-11 19:27:31 -04002112 return ret;
2113}
2114
Mingming Cao61628a32008-07-11 19:27:31 -04002115/*
Mingming Cao525f4ed2008-08-19 22:15:58 -04002116 * This is called via ext4_da_writepages() to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002117 * calculate the total number of credits to reserve to fit
Mingming Cao525f4ed2008-08-19 22:15:58 -04002118 * a single extent allocation into a single transaction,
2119 * ext4_da_writpeages() will loop calling this before
2120 * the block allocation.
Mingming Cao61628a32008-07-11 19:27:31 -04002121 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002122
2123static int ext4_da_writepages_trans_blocks(struct inode *inode)
2124{
2125 int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
2126
2127 /*
2128 * With non-extent format the journal credit needed to
2129 * insert nrblocks contiguous block is dependent on
2130 * number of contiguous block. So we will limit
2131 * number of contiguous block to a sane value
2132 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002133 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) &&
Mingming Cao525f4ed2008-08-19 22:15:58 -04002134 (max_blocks > EXT4_MAX_TRANS_DATA))
2135 max_blocks = EXT4_MAX_TRANS_DATA;
2136
2137 return ext4_chunk_trans_blocks(inode, max_blocks);
2138}
Mingming Cao61628a32008-07-11 19:27:31 -04002139
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002140/*
2141 * write_cache_pages_da - walk the list of dirty pages of the given
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002142 * address space and accumulate pages that need writing, and call
Theodore Ts'o168fc022011-02-26 14:09:20 -05002143 * mpage_da_map_and_submit to map a single contiguous memory region
2144 * and then write them.
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002145 */
Tao Ma9c3569b2012-12-10 14:05:57 -05002146static int write_cache_pages_da(handle_t *handle,
2147 struct address_space *mapping,
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002148 struct writeback_control *wbc,
Eric Sandeen72f84e62010-10-27 21:30:13 -04002149 struct mpage_da_data *mpd,
2150 pgoff_t *done_index)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002151{
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002152 struct buffer_head *bh, *head;
Theodore Ts'o168fc022011-02-26 14:09:20 -05002153 struct inode *inode = mapping->host;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002154 struct pagevec pvec;
2155 unsigned int nr_pages;
2156 sector_t logical;
2157 pgoff_t index, end;
2158 long nr_to_write = wbc->nr_to_write;
2159 int i, tag, ret = 0;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002160
Theodore Ts'o168fc022011-02-26 14:09:20 -05002161 memset(mpd, 0, sizeof(struct mpage_da_data));
2162 mpd->wbc = wbc;
2163 mpd->inode = inode;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002164 pagevec_init(&pvec, 0);
2165 index = wbc->range_start >> PAGE_CACHE_SHIFT;
2166 end = wbc->range_end >> PAGE_CACHE_SHIFT;
2167
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002168 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002169 tag = PAGECACHE_TAG_TOWRITE;
2170 else
2171 tag = PAGECACHE_TAG_DIRTY;
2172
Eric Sandeen72f84e62010-10-27 21:30:13 -04002173 *done_index = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002174 while (index <= end) {
Eric Sandeen5b41d922010-10-27 21:30:13 -04002175 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002176 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
2177 if (nr_pages == 0)
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002178 return 0;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002179
2180 for (i = 0; i < nr_pages; i++) {
2181 struct page *page = pvec.pages[i];
2182
2183 /*
2184 * At this point, the page may be truncated or
2185 * invalidated (changing page->mapping to NULL), or
2186 * even swizzled back from swapper_space to tmpfs file
2187 * mapping. However, page->index will not change
2188 * because we have a reference on the page.
2189 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002190 if (page->index > end)
2191 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002192
Eric Sandeen72f84e62010-10-27 21:30:13 -04002193 *done_index = page->index + 1;
2194
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002195 /*
2196 * If we can't merge this page, and we have
2197 * accumulated an contiguous region, write it
2198 */
2199 if ((mpd->next_page != page->index) &&
2200 (mpd->next_page != mpd->first_page)) {
2201 mpage_da_map_and_submit(mpd);
2202 goto ret_extent_tail;
2203 }
2204
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002205 lock_page(page);
2206
2207 /*
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002208 * If the page is no longer dirty, or its
2209 * mapping no longer corresponds to inode we
2210 * are writing (which means it has been
2211 * truncated or invalidated), or the page is
2212 * already under writeback and we are not
2213 * doing a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002214 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002215 if (!PageDirty(page) ||
2216 (PageWriteback(page) &&
2217 (wbc->sync_mode == WB_SYNC_NONE)) ||
2218 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002219 unlock_page(page);
2220 continue;
2221 }
2222
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002223 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002224 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002225
Tao Ma9c3569b2012-12-10 14:05:57 -05002226 /*
2227 * If we have inline data and arrive here, it means that
2228 * we will soon create the block for the 1st page, so
2229 * we'd better clear the inline data here.
2230 */
2231 if (ext4_has_inline_data(inode)) {
2232 BUG_ON(ext4_test_inode_state(inode,
2233 EXT4_STATE_MAY_INLINE_DATA));
2234 ext4_destroy_inline_data(handle, inode);
2235 }
2236
Theodore Ts'o168fc022011-02-26 14:09:20 -05002237 if (mpd->next_page != page->index)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002238 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002239 mpd->next_page = page->index + 1;
2240 logical = (sector_t) page->index <<
2241 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2242
Jan Karaf8bec372013-01-28 12:55:08 -05002243 /* Add all dirty buffers to mpd */
2244 head = page_buffers(page);
2245 bh = head;
2246 do {
2247 BUG_ON(buffer_locked(bh));
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002248 /*
Jan Karaf8bec372013-01-28 12:55:08 -05002249 * We need to try to allocate unmapped blocks
2250 * in the same page. Otherwise we won't make
2251 * progress with the page in ext4_writepage
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002252 */
Jan Karaf8bec372013-01-28 12:55:08 -05002253 if (ext4_bh_delay_or_unwritten(NULL, bh)) {
2254 mpage_add_bh_to_extent(mpd, logical,
Jan Karaf8bec372013-01-28 12:55:08 -05002255 bh->b_state);
2256 if (mpd->io_done)
2257 goto ret_extent_tail;
2258 } else if (buffer_dirty(bh) &&
2259 buffer_mapped(bh)) {
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002260 /*
Jan Karaf8bec372013-01-28 12:55:08 -05002261 * mapped dirty buffer. We need to
2262 * update the b_state because we look
2263 * at b_state in mpage_da_map_blocks.
2264 * We don't update b_size because if we
2265 * find an unmapped buffer_head later
2266 * we need to use the b_state flag of
2267 * that buffer_head.
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002268 */
Jan Karaf8bec372013-01-28 12:55:08 -05002269 if (mpd->b_size == 0)
2270 mpd->b_state =
2271 bh->b_state & BH_FLAGS;
2272 }
2273 logical++;
2274 } while ((bh = bh->b_this_page) != head);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002275
2276 if (nr_to_write > 0) {
2277 nr_to_write--;
2278 if (nr_to_write == 0 &&
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002279 wbc->sync_mode == WB_SYNC_NONE)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002280 /*
2281 * We stop writing back only if we are
2282 * not doing integrity sync. In case of
2283 * integrity sync we have to keep going
2284 * because someone may be concurrently
2285 * dirtying pages, and we might have
2286 * synced a lot of newly appeared dirty
2287 * pages, but have not synced all of the
2288 * old dirty pages.
2289 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002290 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002291 }
2292 }
2293 pagevec_release(&pvec);
2294 cond_resched();
2295 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002296 return 0;
2297ret_extent_tail:
2298 ret = MPAGE_DA_EXTENT_TAIL;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002299out:
2300 pagevec_release(&pvec);
2301 cond_resched();
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002302 return ret;
2303}
2304
2305
Alex Tomas64769242008-07-11 19:27:31 -04002306static int ext4_da_writepages(struct address_space *mapping,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002307 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002308{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002309 pgoff_t index;
2310 int range_whole = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002311 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002312 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002313 struct inode *inode = mapping->host;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002314 int pages_written = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002315 unsigned int max_pages;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002316 int range_cyclic, cycled = 1, io_done = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002317 int needed_blocks, ret = 0;
2318 long desired_nr_to_write, nr_to_writebump = 0;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002319 loff_t range_start = wbc->range_start;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002320 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Eric Sandeen72f84e62010-10-27 21:30:13 -04002321 pgoff_t done_index = 0;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002322 pgoff_t end;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002323 struct blk_plug plug;
Mingming Cao61628a32008-07-11 19:27:31 -04002324
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002325 trace_ext4_da_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002326
Mingming Cao61628a32008-07-11 19:27:31 -04002327 /*
2328 * No pages to write? This is mainly a kludge to avoid starting
2329 * a transaction for special inodes like journal inode on last iput()
2330 * because that could violate lock ordering on umount
2331 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002332 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Mingming Cao61628a32008-07-11 19:27:31 -04002333 return 0;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002334
2335 /*
2336 * If the filesystem has aborted, it is read-only, so return
2337 * right away instead of dumping stack traces later on that
2338 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002339 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002340 * the latter could be true if the filesystem is mounted
2341 * read-only, and in that case, ext4_da_writepages should
2342 * *never* be called, so if that ever happens, we would want
2343 * the stack trace.
2344 */
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002345 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED))
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002346 return -EROFS;
2347
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002348 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2349 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002350
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002351 range_cyclic = wbc->range_cyclic;
2352 if (wbc->range_cyclic) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002353 index = mapping->writeback_index;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002354 if (index)
2355 cycled = 0;
2356 wbc->range_start = index << PAGE_CACHE_SHIFT;
2357 wbc->range_end = LLONG_MAX;
2358 wbc->range_cyclic = 0;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002359 end = -1;
2360 } else {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002361 index = wbc->range_start >> PAGE_CACHE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002362 end = wbc->range_end >> PAGE_CACHE_SHIFT;
2363 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002364
Theodore Ts'o55138e02009-09-29 13:31:31 -04002365 /*
2366 * This works around two forms of stupidity. The first is in
2367 * the writeback code, which caps the maximum number of pages
2368 * written to be 1024 pages. This is wrong on multiple
2369 * levels; different architectues have a different page size,
2370 * which changes the maximum amount of data which gets
2371 * written. Secondly, 4 megabytes is way too small. XFS
2372 * forces this value to be 16 megabytes by multiplying
2373 * nr_to_write parameter by four, and then relies on its
2374 * allocator to allocate larger extents to make them
2375 * contiguous. Unfortunately this brings us to the second
2376 * stupidity, which is that ext4's mballoc code only allocates
2377 * at most 2048 blocks. So we force contiguous writes up to
2378 * the number of dirty blocks in the inode, or
2379 * sbi->max_writeback_mb_bump whichever is smaller.
2380 */
2381 max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT);
Eric Sandeenb443e732010-10-27 21:30:03 -04002382 if (!range_cyclic && range_whole) {
2383 if (wbc->nr_to_write == LONG_MAX)
2384 desired_nr_to_write = wbc->nr_to_write;
2385 else
2386 desired_nr_to_write = wbc->nr_to_write * 8;
2387 } else
Theodore Ts'o55138e02009-09-29 13:31:31 -04002388 desired_nr_to_write = ext4_num_dirty_pages(inode, index,
2389 max_pages);
2390 if (desired_nr_to_write > max_pages)
2391 desired_nr_to_write = max_pages;
2392
2393 if (wbc->nr_to_write < desired_nr_to_write) {
2394 nr_to_writebump = desired_nr_to_write - wbc->nr_to_write;
2395 wbc->nr_to_write = desired_nr_to_write;
2396 }
2397
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002398retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002399 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002400 tag_pages_for_writeback(mapping, index, end);
2401
Shaohua Li1bce63d2011-10-18 10:55:51 -04002402 blk_start_plug(&plug);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002403 while (!ret && wbc->nr_to_write > 0) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002404
2405 /*
2406 * we insert one extent at a time. So we need
2407 * credit needed for single extent allocation.
2408 * journalled mode is currently not supported
2409 * by delalloc
2410 */
2411 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002412 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002413
Mingming Cao61628a32008-07-11 19:27:31 -04002414 /* start a new transaction*/
Theodore Ts'o9924a922013-02-08 21:59:22 -05002415 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2416 needed_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002417 if (IS_ERR(handle)) {
2418 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002419 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002420 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002421 wbc->nr_to_write, inode->i_ino, ret);
Namjae Jeon3c1fcb22011-11-07 11:01:13 -05002422 blk_finish_plug(&plug);
Mingming Cao61628a32008-07-11 19:27:31 -04002423 goto out_writepages;
2424 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002425
2426 /*
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002427 * Now call write_cache_pages_da() to find the next
Theodore Ts'of63e6002009-02-23 16:42:39 -05002428 * contiguous region of logical blocks that need
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002429 * blocks to be allocated by ext4 and submit them.
Theodore Ts'of63e6002009-02-23 16:42:39 -05002430 */
Tao Ma9c3569b2012-12-10 14:05:57 -05002431 ret = write_cache_pages_da(handle, mapping,
2432 wbc, &mpd, &done_index);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002433 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002434 * If we have a contiguous extent of pages and we
Theodore Ts'of63e6002009-02-23 16:42:39 -05002435 * haven't done the I/O yet, map the blocks and submit
2436 * them for I/O.
2437 */
2438 if (!mpd.io_done && mpd.next_page != mpd.first_page) {
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04002439 mpage_da_map_and_submit(&mpd);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002440 ret = MPAGE_DA_EXTENT_TAIL;
2441 }
Theodore Ts'ob3a3ca82009-08-31 23:13:11 -04002442 trace_ext4_da_write_pages(inode, &mpd);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002443 wbc->nr_to_write -= mpd.pages_written;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002444
Mingming Cao61628a32008-07-11 19:27:31 -04002445 ext4_journal_stop(handle);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002446
Eric Sandeen8f64b322009-02-26 00:57:35 -05002447 if ((mpd.retval == -ENOSPC) && sbi->s_journal) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002448 /* commit the transaction which would
2449 * free blocks released in the transaction
2450 * and try again
2451 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002452 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002453 ret = 0;
2454 } else if (ret == MPAGE_DA_EXTENT_TAIL) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002455 /*
Kazuya Mio8de49e62011-10-20 19:23:08 -04002456 * Got one extent now try with rest of the pages.
2457 * If mpd.retval is set -EIO, journal is aborted.
2458 * So we don't need to write any more.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002459 */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002460 pages_written += mpd.pages_written;
Kazuya Mio8de49e62011-10-20 19:23:08 -04002461 ret = mpd.retval;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002462 io_done = 1;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002463 } else if (wbc->nr_to_write)
Mingming Cao61628a32008-07-11 19:27:31 -04002464 /*
2465 * There is no more writeout needed
2466 * or we requested for a noblocking writeout
2467 * and we found the device congested
2468 */
Mingming Cao61628a32008-07-11 19:27:31 -04002469 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002470 }
Shaohua Li1bce63d2011-10-18 10:55:51 -04002471 blk_finish_plug(&plug);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002472 if (!io_done && !cycled) {
2473 cycled = 1;
2474 index = 0;
2475 wbc->range_start = index << PAGE_CACHE_SHIFT;
2476 wbc->range_end = mapping->writeback_index - 1;
2477 goto retry;
2478 }
Mingming Cao61628a32008-07-11 19:27:31 -04002479
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002480 /* Update index */
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002481 wbc->range_cyclic = range_cyclic;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002482 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2483 /*
2484 * set the writeback_index so that range_cyclic
2485 * mode will write it back later
2486 */
Eric Sandeen72f84e62010-10-27 21:30:13 -04002487 mapping->writeback_index = done_index;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002488
Mingming Cao61628a32008-07-11 19:27:31 -04002489out_writepages:
Richard Kennedy2faf2e12009-12-25 15:46:07 -05002490 wbc->nr_to_write -= nr_to_writebump;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002491 wbc->range_start = range_start;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002492 trace_ext4_da_writepages_result(inode, wbc, ret, pages_written);
Mingming Cao61628a32008-07-11 19:27:31 -04002493 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002494}
2495
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002496static int ext4_nonda_switch(struct super_block *sb)
2497{
2498 s64 free_blocks, dirty_blocks;
2499 struct ext4_sb_info *sbi = EXT4_SB(sb);
2500
2501 /*
2502 * switch to non delalloc mode if we are running low
2503 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002504 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002505 * accumulated on each CPU without updating global counters
2506 * Delalloc need an accurate free block accounting. So switch
2507 * to non delalloc when we are near to error range.
2508 */
Theodore Ts'o57042652011-09-09 18:56:51 -04002509 free_blocks = EXT4_C2B(sbi,
2510 percpu_counter_read_positive(&sbi->s_freeclusters_counter));
2511 dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002512 /*
2513 * Start pushing delalloc when 1/2 of free blocks are dirty.
2514 */
Miao Xie10ee27a2013-01-10 13:47:57 +08002515 if (dirty_blocks && (free_blocks < 2 * dirty_blocks))
2516 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002517
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002518 if (2 * free_blocks < 3 * dirty_blocks ||
Theodore Ts'odf55c992011-09-09 19:16:51 -04002519 free_blocks < (dirty_blocks + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002520 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002521 * free block count is less than 150% of dirty blocks
2522 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002523 */
2524 return 1;
2525 }
2526 return 0;
2527}
2528
Alex Tomas64769242008-07-11 19:27:31 -04002529static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002530 loff_t pos, unsigned len, unsigned flags,
2531 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002532{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002533 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002534 struct page *page;
2535 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002536 struct inode *inode = mapping->host;
2537 handle_t *handle;
2538
2539 index = pos >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002540
2541 if (ext4_nonda_switch(inode->i_sb)) {
2542 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2543 return ext4_write_begin(file, mapping, pos,
2544 len, flags, pagep, fsdata);
2545 }
2546 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002547 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002548
2549 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2550 ret = ext4_da_write_inline_data_begin(mapping, inode,
2551 pos, len, flags,
2552 pagep, fsdata);
2553 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002554 return ret;
2555 if (ret == 1)
2556 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002557 }
2558
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002559 /*
2560 * grab_cache_page_write_begin() can take a long time if the
2561 * system is thrashing due to memory pressure, or if the page
2562 * is being written back. So grab it first before we start
2563 * the transaction handle. This also allows us to allocate
2564 * the page (if needed) without using GFP_NOFS.
2565 */
2566retry_grab:
2567 page = grab_cache_page_write_begin(mapping, index, flags);
2568 if (!page)
2569 return -ENOMEM;
2570 unlock_page(page);
2571
Alex Tomas64769242008-07-11 19:27:31 -04002572 /*
2573 * With delayed allocation, we don't log the i_disksize update
2574 * if there is delayed block allocation. But we still need
2575 * to journalling the i_disksize update if writes to the end
2576 * of file which has an already mapped buffer.
2577 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002578retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002579 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1);
Alex Tomas64769242008-07-11 19:27:31 -04002580 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002581 page_cache_release(page);
2582 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002583 }
2584
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002585 lock_page(page);
2586 if (page->mapping != mapping) {
2587 /* The page got truncated from under us */
2588 unlock_page(page);
2589 page_cache_release(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002590 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002591 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002592 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002593 /* In case writeback began while the page was unlocked */
2594 wait_on_page_writeback(page);
Alex Tomas64769242008-07-11 19:27:31 -04002595
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002596 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04002597 if (ret < 0) {
2598 unlock_page(page);
2599 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002600 /*
2601 * block_write_begin may have instantiated a few blocks
2602 * outside i_size. Trim these off again. Don't need
2603 * i_size_read because we hold i_mutex.
2604 */
2605 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002606 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002607
2608 if (ret == -ENOSPC &&
2609 ext4_should_retry_alloc(inode->i_sb, &retries))
2610 goto retry_journal;
2611
2612 page_cache_release(page);
2613 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002614 }
2615
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002616 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002617 return ret;
2618}
2619
Mingming Cao632eaea2008-07-11 19:27:31 -04002620/*
2621 * Check if we should update i_disksize
2622 * when write to the end of file but not require block allocation
2623 */
2624static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002625 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002626{
2627 struct buffer_head *bh;
2628 struct inode *inode = page->mapping->host;
2629 unsigned int idx;
2630 int i;
2631
2632 bh = page_buffers(page);
2633 idx = offset >> inode->i_blkbits;
2634
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002635 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002636 bh = bh->b_this_page;
2637
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002638 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002639 return 0;
2640 return 1;
2641}
2642
Alex Tomas64769242008-07-11 19:27:31 -04002643static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002644 struct address_space *mapping,
2645 loff_t pos, unsigned len, unsigned copied,
2646 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002647{
2648 struct inode *inode = mapping->host;
2649 int ret = 0, ret2;
2650 handle_t *handle = ext4_journal_current_handle();
2651 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002652 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002653 int write_mode = (int)(unsigned long)fsdata;
2654
2655 if (write_mode == FALL_BACK_TO_NONDELALLOC) {
Lukas Czerner3d2b1582012-02-20 17:53:00 -05002656 switch (ext4_inode_journal_mode(inode)) {
2657 case EXT4_INODE_ORDERED_DATA_MODE:
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002658 return ext4_ordered_write_end(file, mapping, pos,
2659 len, copied, page, fsdata);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05002660 case EXT4_INODE_WRITEBACK_DATA_MODE:
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002661 return ext4_writeback_write_end(file, mapping, pos,
2662 len, copied, page, fsdata);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05002663 default:
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002664 BUG();
2665 }
2666 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002667
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002668 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04002669 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002670 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04002671
2672 /*
2673 * generic_write_end() will run mark_inode_dirty() if i_size
2674 * changes. So let's piggyback the i_disksize mark_inode_dirty
2675 * into that.
2676 */
Alex Tomas64769242008-07-11 19:27:31 -04002677 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05002678 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05002679 if (ext4_has_inline_data(inode) ||
2680 ext4_da_should_update_i_disksize(page, end)) {
Mingming Cao632eaea2008-07-11 19:27:31 -04002681 down_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'of3b59292012-11-15 23:08:57 -05002682 if (new_i_size > EXT4_I(inode)->i_disksize)
Mingming Cao632eaea2008-07-11 19:27:31 -04002683 EXT4_I(inode)->i_disksize = new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002684 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04002685 /* We need to mark inode dirty even if
2686 * new_i_size is less that inode->i_size
2687 * bu greater than i_disksize.(hint delalloc)
2688 */
2689 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04002690 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002691 }
Tao Ma9c3569b2012-12-10 14:05:57 -05002692
2693 if (write_mode != CONVERT_INLINE_DATA &&
2694 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
2695 ext4_has_inline_data(inode))
2696 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
2697 page);
2698 else
2699 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04002700 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05002701
Alex Tomas64769242008-07-11 19:27:31 -04002702 copied = ret2;
2703 if (ret2 < 0)
2704 ret = ret2;
2705 ret2 = ext4_journal_stop(handle);
2706 if (!ret)
2707 ret = ret2;
2708
2709 return ret ? ret : copied;
2710}
2711
2712static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
2713{
Alex Tomas64769242008-07-11 19:27:31 -04002714 /*
2715 * Drop reserved blocks
2716 */
2717 BUG_ON(!PageLocked(page));
2718 if (!page_has_buffers(page))
2719 goto out;
2720
Mingming Caod2a17632008-07-14 17:52:37 -04002721 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04002722
2723out:
2724 ext4_invalidatepage(page, offset);
2725
2726 return;
2727}
2728
Theodore Ts'occd25062009-02-26 01:04:07 -05002729/*
2730 * Force all delayed allocation blocks to be allocated for a given inode.
2731 */
2732int ext4_alloc_da_blocks(struct inode *inode)
2733{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04002734 trace_ext4_alloc_da_blocks(inode);
2735
Theodore Ts'occd25062009-02-26 01:04:07 -05002736 if (!EXT4_I(inode)->i_reserved_data_blocks &&
2737 !EXT4_I(inode)->i_reserved_meta_blocks)
2738 return 0;
2739
2740 /*
2741 * We do something simple for now. The filemap_flush() will
2742 * also start triggering a write of the data blocks, which is
2743 * not strictly speaking necessary (and for users of
2744 * laptop_mode, not even desirable). However, to do otherwise
2745 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002746 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002747 * ext4_da_writepages() ->
2748 * write_cache_pages() ---> (via passed in callback function)
2749 * __mpage_da_writepage() -->
2750 * mpage_add_bh_to_extent()
2751 * mpage_da_map_blocks()
2752 *
2753 * The problem is that write_cache_pages(), located in
2754 * mm/page-writeback.c, marks pages clean in preparation for
2755 * doing I/O, which is not desirable if we're not planning on
2756 * doing I/O at all.
2757 *
2758 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08002759 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05002760 * would be ugly in the extreme. So instead we would need to
2761 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002762 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05002763 * write out the pages, but rather only collect contiguous
2764 * logical block extents, call the multi-block allocator, and
2765 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002766 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002767 * For now, though, we'll cheat by calling filemap_flush(),
2768 * which will map the blocks, and start the I/O, but not
2769 * actually wait for the I/O to complete.
2770 */
2771 return filemap_flush(inode->i_mapping);
2772}
Alex Tomas64769242008-07-11 19:27:31 -04002773
2774/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002775 * bmap() is special. It gets used by applications such as lilo and by
2776 * the swapper to find the on-disk block of a specific piece of data.
2777 *
2778 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002779 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002780 * filesystem and enables swap, then they may get a nasty shock when the
2781 * data getting swapped to that swapfile suddenly gets overwritten by
2782 * the original zero's written out previously to the journal and
2783 * awaiting writeback in the kernel's buffer cache.
2784 *
2785 * So, if we see any bmap calls here on a modified, data-journaled file,
2786 * take extra steps to flush any blocks which might be in the cache.
2787 */
Mingming Cao617ba132006-10-11 01:20:53 -07002788static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002789{
2790 struct inode *inode = mapping->host;
2791 journal_t *journal;
2792 int err;
2793
Tao Ma46c7f252012-12-10 14:04:52 -05002794 /*
2795 * We can get here for an inline file via the FIBMAP ioctl
2796 */
2797 if (ext4_has_inline_data(inode))
2798 return 0;
2799
Alex Tomas64769242008-07-11 19:27:31 -04002800 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2801 test_opt(inode->i_sb, DELALLOC)) {
2802 /*
2803 * With delalloc we want to sync the file
2804 * so that we can make sure we allocate
2805 * blocks for file
2806 */
2807 filemap_write_and_wait(mapping);
2808 }
2809
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002810 if (EXT4_JOURNAL(inode) &&
2811 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002812 /*
2813 * This is a REALLY heavyweight approach, but the use of
2814 * bmap on dirty files is expected to be extremely rare:
2815 * only if we run lilo or swapon on a freshly made file
2816 * do we expect this to happen.
2817 *
2818 * (bmap requires CAP_SYS_RAWIO so this does not
2819 * represent an unprivileged user DOS attack --- we'd be
2820 * in trouble if mortal users could trigger this path at
2821 * will.)
2822 *
Mingming Cao617ba132006-10-11 01:20:53 -07002823 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002824 * regular files. If somebody wants to bmap a directory
2825 * or symlink and gets confused because the buffer
2826 * hasn't yet been flushed to disk, they deserve
2827 * everything they get.
2828 */
2829
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002830 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002831 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002832 jbd2_journal_lock_updates(journal);
2833 err = jbd2_journal_flush(journal);
2834 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002835
2836 if (err)
2837 return 0;
2838 }
2839
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002840 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002841}
2842
Mingming Cao617ba132006-10-11 01:20:53 -07002843static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002844{
Tao Ma46c7f252012-12-10 14:04:52 -05002845 int ret = -EAGAIN;
2846 struct inode *inode = page->mapping->host;
2847
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002848 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05002849
2850 if (ext4_has_inline_data(inode))
2851 ret = ext4_readpage_inline(inode, page);
2852
2853 if (ret == -EAGAIN)
2854 return mpage_readpage(page, ext4_get_block);
2855
2856 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002857}
2858
2859static int
Mingming Cao617ba132006-10-11 01:20:53 -07002860ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002861 struct list_head *pages, unsigned nr_pages)
2862{
Tao Ma46c7f252012-12-10 14:04:52 -05002863 struct inode *inode = mapping->host;
2864
2865 /* If the file has inline data, no need to do readpages. */
2866 if (ext4_has_inline_data(inode))
2867 return 0;
2868
Mingming Cao617ba132006-10-11 01:20:53 -07002869 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002870}
2871
Mingming Cao617ba132006-10-11 01:20:53 -07002872static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002873{
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002874 trace_ext4_invalidatepage(page, offset);
2875
Jan Kara4520fb32012-12-25 13:28:54 -05002876 /* No journalling happens on data buffers when this function is used */
2877 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
2878
2879 block_invalidatepage(page, offset);
2880}
2881
Jan Kara53e87262012-12-25 13:29:52 -05002882static int __ext4_journalled_invalidatepage(struct page *page,
2883 unsigned long offset)
Jan Kara4520fb32012-12-25 13:28:54 -05002884{
2885 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2886
2887 trace_ext4_journalled_invalidatepage(page, offset);
2888
Jiaying Zhang744692d2010-03-04 16:14:02 -05002889 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002890 * If it's a full truncate we just forget about the pending dirtying
2891 */
2892 if (offset == 0)
2893 ClearPageChecked(page);
2894
Jan Kara53e87262012-12-25 13:29:52 -05002895 return jbd2_journal_invalidatepage(journal, page, offset);
2896}
2897
2898/* Wrapper for aops... */
2899static void ext4_journalled_invalidatepage(struct page *page,
2900 unsigned long offset)
2901{
2902 WARN_ON(__ext4_journalled_invalidatepage(page, offset) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002903}
2904
Mingming Cao617ba132006-10-11 01:20:53 -07002905static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002906{
Mingming Cao617ba132006-10-11 01:20:53 -07002907 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002908
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002909 trace_ext4_releasepage(page);
2910
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002911 WARN_ON(PageChecked(page));
2912 if (!page_has_buffers(page))
2913 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05002914 if (journal)
2915 return jbd2_journal_try_to_free_buffers(journal, page, wait);
2916 else
2917 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002918}
2919
2920/*
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002921 * ext4_get_block used when preparing for a DIO write or buffer write.
2922 * We allocate an uinitialized extent if blocks haven't been allocated.
2923 * The extent will be converted to initialized after the IO is complete.
2924 */
Tao Maf19d5872012-12-10 14:05:51 -05002925int ext4_get_block_write(struct inode *inode, sector_t iblock,
Mingming Cao4c0425f2009-09-28 15:48:41 -04002926 struct buffer_head *bh_result, int create)
2927{
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002928 ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002929 inode->i_ino, create);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002930 return _ext4_get_block(inode, iblock, bh_result,
2931 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002932}
2933
Zheng Liu729f52c2012-07-09 16:29:29 -04002934static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05002935 struct buffer_head *bh_result, int create)
Zheng Liu729f52c2012-07-09 16:29:29 -04002936{
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05002937 ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
2938 inode->i_ino, create);
2939 return _ext4_get_block(inode, iblock, bh_result,
2940 EXT4_GET_BLOCKS_NO_LOCK);
Zheng Liu729f52c2012-07-09 16:29:29 -04002941}
2942
Mingming Cao4c0425f2009-09-28 15:48:41 -04002943static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
Christoph Hellwig552ef8022010-07-27 11:56:06 -04002944 ssize_t size, void *private, int ret,
2945 bool is_async)
Mingming Cao4c0425f2009-09-28 15:48:41 -04002946{
Al Viro496ad9a2013-01-23 17:07:38 -05002947 struct inode *inode = file_inode(iocb->ki_filp);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002948 ext4_io_end_t *io_end = iocb->private;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002949
Mingming4b70df12009-11-03 14:44:54 -05002950 /* if not async direct IO or dio with 0 bytes write, just return */
2951 if (!io_end || !size)
Christoph Hellwig552ef8022010-07-27 11:56:06 -04002952 goto out;
Mingming4b70df12009-11-03 14:44:54 -05002953
Zheng Liu88635ca2011-12-28 19:00:25 -05002954 ext_debug("ext4_end_io_dio(): io_end 0x%p "
Joe Perchesace36ad2012-03-19 23:11:43 -04002955 "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002956 iocb->private, io_end->inode->i_ino, iocb, offset,
2957 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002958
Theodore Ts'ob5a7e972011-12-12 10:53:02 -05002959 iocb->private = NULL;
2960
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002961 /* if not aio dio with unwritten extents, just free io and return */
Theodore Ts'obd2d0212010-10-27 21:30:10 -04002962 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002963 ext4_free_io_end(io_end);
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002964out:
Jan Kara091e26d2013-01-29 22:48:17 -05002965 inode_dio_done(inode);
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002966 if (is_async)
2967 aio_complete(iocb, ret, 0);
2968 return;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002969 }
2970
Mingming Cao4c0425f2009-09-28 15:48:41 -04002971 io_end->offset = offset;
2972 io_end->size = size;
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002973 if (is_async) {
2974 io_end->iocb = iocb;
2975 io_end->result = ret;
2976 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04002977
Dmitry Monakhov28a535f2012-09-29 00:14:55 -04002978 ext4_add_complete_io(io_end);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002979}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002980
Mingming Cao4c0425f2009-09-28 15:48:41 -04002981/*
2982 * For ext4 extent files, ext4 will do direct-io write to holes,
2983 * preallocated extents, and those write extend the file, no need to
2984 * fall back to buffered IO.
2985 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002986 * For holes, we fallocate those blocks, mark them as uninitialized
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002987 * If those blocks were preallocated, we mark sure they are split, but
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002988 * still keep the range to write as uninitialized.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002989 *
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002990 * The unwritten extents will be converted to written when DIO is completed.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002991 * For async direct IO, since the IO may still pending when return, we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002992 * set up an end_io call back function, which will do the conversion
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002993 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002994 *
2995 * If the O_DIRECT write will extend the file then add this inode to the
2996 * orphan list. So recovery will truncate it back to the original size
2997 * if the machine crashes during the write.
2998 *
2999 */
3000static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
3001 const struct iovec *iov, loff_t offset,
3002 unsigned long nr_segs)
3003{
3004 struct file *file = iocb->ki_filp;
3005 struct inode *inode = file->f_mapping->host;
3006 ssize_t ret;
3007 size_t count = iov_length(iov, nr_segs);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003008 int overwrite = 0;
3009 get_block_t *get_block_func = NULL;
3010 int dio_flags = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003011 loff_t final_size = offset + count;
Zheng Liu729f52c2012-07-09 16:29:29 -04003012
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003013 /* Use the old path for reads and writes beyond i_size. */
3014 if (rw != WRITE || final_size > inode->i_size)
3015 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003016
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003017 BUG_ON(iocb->private == NULL);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003018
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003019 /* If we do a overwrite dio, i_mutex locking can be released */
3020 overwrite = *((int *)iocb->private);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003021
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003022 if (overwrite) {
3023 atomic_inc(&inode->i_dio_count);
3024 down_read(&EXT4_I(inode)->i_data_sem);
3025 mutex_unlock(&inode->i_mutex);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003026 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003027
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003028 /*
3029 * We could direct write to holes and fallocate.
3030 *
3031 * Allocated blocks to fill the hole are marked as
3032 * uninitialized to prevent parallel buffered read to expose
3033 * the stale data before DIO complete the data IO.
3034 *
3035 * As to previously fallocated extents, ext4 get_block will
3036 * just simply mark the buffer mapped but still keep the
3037 * extents uninitialized.
3038 *
3039 * For non AIO case, we will convert those unwritten extents
3040 * to written after return back from blockdev_direct_IO.
3041 *
3042 * For async DIO, the conversion needs to be deferred when the
3043 * IO is completed. The ext4 end_io callback function will be
3044 * called to take care of the conversion work. Here for async
3045 * case, we allocate an io_end structure to hook to the iocb.
3046 */
3047 iocb->private = NULL;
3048 ext4_inode_aio_set(inode, NULL);
3049 if (!is_sync_kiocb(iocb)) {
3050 ext4_io_end_t *io_end = ext4_init_io_end(inode, GFP_NOFS);
3051 if (!io_end) {
3052 ret = -ENOMEM;
3053 goto retake_lock;
3054 }
3055 io_end->flag |= EXT4_IO_END_DIRECT;
3056 iocb->private = io_end;
3057 /*
3058 * we save the io structure for current async direct
3059 * IO, so that later ext4_map_blocks() could flag the
3060 * io structure whether there is a unwritten extents
3061 * needs to be converted when IO is completed.
3062 */
3063 ext4_inode_aio_set(inode, io_end);
3064 }
3065
3066 if (overwrite) {
3067 get_block_func = ext4_get_block_write_nolock;
3068 } else {
3069 get_block_func = ext4_get_block_write;
3070 dio_flags = DIO_LOCKING;
3071 }
3072 ret = __blockdev_direct_IO(rw, iocb, inode,
3073 inode->i_sb->s_bdev, iov,
3074 offset, nr_segs,
3075 get_block_func,
3076 ext4_end_io_dio,
3077 NULL,
3078 dio_flags);
3079
3080 if (iocb->private)
3081 ext4_inode_aio_set(inode, NULL);
3082 /*
3083 * The io_end structure takes a reference to the inode, that
3084 * structure needs to be destroyed and the reference to the
3085 * inode need to be dropped, when IO is complete, even with 0
3086 * byte write, or failed.
3087 *
3088 * In the successful AIO DIO case, the io_end structure will
3089 * be destroyed and the reference to the inode will be dropped
3090 * after the end_io call back function is called.
3091 *
3092 * In the case there is 0 byte write, or error case, since VFS
3093 * direct IO won't invoke the end_io call back function, we
3094 * need to free the end_io structure here.
3095 */
3096 if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
3097 ext4_free_io_end(iocb->private);
3098 iocb->private = NULL;
3099 } else if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
3100 EXT4_STATE_DIO_UNWRITTEN)) {
3101 int err;
3102 /*
3103 * for non AIO case, since the IO is already
3104 * completed, we could do the conversion right here
3105 */
3106 err = ext4_convert_unwritten_extents(inode,
3107 offset, ret);
3108 if (err < 0)
3109 ret = err;
3110 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3111 }
3112
3113retake_lock:
3114 /* take i_mutex locking again if we do a ovewrite dio */
3115 if (overwrite) {
3116 inode_dio_done(inode);
3117 up_read(&EXT4_I(inode)->i_data_sem);
3118 mutex_lock(&inode->i_mutex);
3119 }
3120
3121 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003122}
3123
3124static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3125 const struct iovec *iov, loff_t offset,
3126 unsigned long nr_segs)
3127{
3128 struct file *file = iocb->ki_filp;
3129 struct inode *inode = file->f_mapping->host;
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003130 ssize_t ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003131
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003132 /*
3133 * If we are doing data journalling we don't support O_DIRECT
3134 */
3135 if (ext4_should_journal_data(inode))
3136 return 0;
3137
Tao Ma46c7f252012-12-10 14:04:52 -05003138 /* Let buffer I/O handle the inline data case. */
3139 if (ext4_has_inline_data(inode))
3140 return 0;
3141
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003142 trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003143 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003144 ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
3145 else
3146 ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3147 trace_ext4_direct_IO_exit(inode, offset,
3148 iov_length(iov, nr_segs), rw, ret);
3149 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003150}
3151
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003152/*
Mingming Cao617ba132006-10-11 01:20:53 -07003153 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003154 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3155 * much here because ->set_page_dirty is called under VFS locks. The page is
3156 * not necessarily locked.
3157 *
3158 * We cannot just dirty the page and leave attached buffers clean, because the
3159 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3160 * or jbddirty because all the journalling code will explode.
3161 *
3162 * So what we do is to mark the page "pending dirty" and next time writepage
3163 * is called, propagate that into the buffers appropriately.
3164 */
Mingming Cao617ba132006-10-11 01:20:53 -07003165static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003166{
3167 SetPageChecked(page);
3168 return __set_page_dirty_nobuffers(page);
3169}
3170
Mingming Cao617ba132006-10-11 01:20:53 -07003171static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003172 .readpage = ext4_readpage,
3173 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003174 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003175 .write_begin = ext4_write_begin,
3176 .write_end = ext4_ordered_write_end,
3177 .bmap = ext4_bmap,
3178 .invalidatepage = ext4_invalidatepage,
3179 .releasepage = ext4_releasepage,
3180 .direct_IO = ext4_direct_IO,
3181 .migratepage = buffer_migrate_page,
3182 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003183 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003184};
3185
Mingming Cao617ba132006-10-11 01:20:53 -07003186static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003187 .readpage = ext4_readpage,
3188 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003189 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003190 .write_begin = ext4_write_begin,
3191 .write_end = ext4_writeback_write_end,
3192 .bmap = ext4_bmap,
3193 .invalidatepage = ext4_invalidatepage,
3194 .releasepage = ext4_releasepage,
3195 .direct_IO = ext4_direct_IO,
3196 .migratepage = buffer_migrate_page,
3197 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003198 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003199};
3200
Mingming Cao617ba132006-10-11 01:20:53 -07003201static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003202 .readpage = ext4_readpage,
3203 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003204 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003205 .write_begin = ext4_write_begin,
3206 .write_end = ext4_journalled_write_end,
3207 .set_page_dirty = ext4_journalled_set_page_dirty,
3208 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003209 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003210 .releasepage = ext4_releasepage,
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003211 .direct_IO = ext4_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003212 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003213 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003214};
3215
Alex Tomas64769242008-07-11 19:27:31 -04003216static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003217 .readpage = ext4_readpage,
3218 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003219 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003220 .writepages = ext4_da_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003221 .write_begin = ext4_da_write_begin,
3222 .write_end = ext4_da_write_end,
3223 .bmap = ext4_bmap,
3224 .invalidatepage = ext4_da_invalidatepage,
3225 .releasepage = ext4_releasepage,
3226 .direct_IO = ext4_direct_IO,
3227 .migratepage = buffer_migrate_page,
3228 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003229 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003230};
3231
Mingming Cao617ba132006-10-11 01:20:53 -07003232void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003233{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003234 switch (ext4_inode_journal_mode(inode)) {
3235 case EXT4_INODE_ORDERED_DATA_MODE:
3236 if (test_opt(inode->i_sb, DELALLOC))
3237 inode->i_mapping->a_ops = &ext4_da_aops;
3238 else
3239 inode->i_mapping->a_ops = &ext4_ordered_aops;
3240 break;
3241 case EXT4_INODE_WRITEBACK_DATA_MODE:
3242 if (test_opt(inode->i_sb, DELALLOC))
3243 inode->i_mapping->a_ops = &ext4_da_aops;
3244 else
3245 inode->i_mapping->a_ops = &ext4_writeback_aops;
3246 break;
3247 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003248 inode->i_mapping->a_ops = &ext4_journalled_aops;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003249 break;
3250 default:
3251 BUG();
3252 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003253}
3254
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003255
3256/*
3257 * ext4_discard_partial_page_buffers()
3258 * Wrapper function for ext4_discard_partial_page_buffers_no_lock.
3259 * This function finds and locks the page containing the offset
3260 * "from" and passes it to ext4_discard_partial_page_buffers_no_lock.
3261 * Calling functions that already have the page locked should call
3262 * ext4_discard_partial_page_buffers_no_lock directly.
3263 */
3264int ext4_discard_partial_page_buffers(handle_t *handle,
3265 struct address_space *mapping, loff_t from,
3266 loff_t length, int flags)
3267{
3268 struct inode *inode = mapping->host;
3269 struct page *page;
3270 int err = 0;
3271
3272 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3273 mapping_gfp_mask(mapping) & ~__GFP_FS);
3274 if (!page)
Yongqiang Yang5129d052011-10-31 17:56:10 -04003275 return -ENOMEM;
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003276
3277 err = ext4_discard_partial_page_buffers_no_lock(handle, inode, page,
3278 from, length, flags);
3279
3280 unlock_page(page);
3281 page_cache_release(page);
3282 return err;
3283}
3284
3285/*
3286 * ext4_discard_partial_page_buffers_no_lock()
3287 * Zeros a page range of length 'length' starting from offset 'from'.
3288 * Buffer heads that correspond to the block aligned regions of the
3289 * zeroed range will be unmapped. Unblock aligned regions
3290 * will have the corresponding buffer head mapped if needed so that
3291 * that region of the page can be updated with the partial zero out.
3292 *
3293 * This function assumes that the page has already been locked. The
3294 * The range to be discarded must be contained with in the given page.
3295 * If the specified range exceeds the end of the page it will be shortened
3296 * to the end of the page that corresponds to 'from'. This function is
3297 * appropriate for updating a page and it buffer heads to be unmapped and
3298 * zeroed for blocks that have been either released, or are going to be
3299 * released.
3300 *
3301 * handle: The journal handle
3302 * inode: The files inode
3303 * page: A locked page that contains the offset "from"
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003304 * from: The starting byte offset (from the beginning of the file)
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003305 * to begin discarding
3306 * len: The length of bytes to discard
3307 * flags: Optional flags that may be used:
3308 *
3309 * EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED
3310 * Only zero the regions of the page whose buffer heads
3311 * have already been unmapped. This flag is appropriate
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003312 * for updating the contents of a page whose blocks may
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003313 * have already been released, and we only want to zero
3314 * out the regions that correspond to those released blocks.
3315 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003316 * Returns zero on success or negative on failure.
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003317 */
Eric Sandeen5f163cc2012-01-04 22:33:28 -05003318static int ext4_discard_partial_page_buffers_no_lock(handle_t *handle,
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003319 struct inode *inode, struct page *page, loff_t from,
3320 loff_t length, int flags)
3321{
3322 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3323 unsigned int offset = from & (PAGE_CACHE_SIZE-1);
3324 unsigned int blocksize, max, pos;
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003325 ext4_lblk_t iblock;
3326 struct buffer_head *bh;
3327 int err = 0;
3328
3329 blocksize = inode->i_sb->s_blocksize;
3330 max = PAGE_CACHE_SIZE - offset;
3331
3332 if (index != page->index)
3333 return -EINVAL;
3334
3335 /*
3336 * correct length if it does not fall between
3337 * 'from' and the end of the page
3338 */
3339 if (length > max || length < 0)
3340 length = max;
3341
3342 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3343
Yongqiang Yang093e6e32011-12-13 22:05:05 -05003344 if (!page_has_buffers(page))
3345 create_empty_buffers(page, blocksize, 0);
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003346
3347 /* Find the buffer that contains "offset" */
3348 bh = page_buffers(page);
3349 pos = blocksize;
3350 while (offset >= pos) {
3351 bh = bh->b_this_page;
3352 iblock++;
3353 pos += blocksize;
3354 }
3355
3356 pos = offset;
3357 while (pos < offset + length) {
Yongqiang Yange260daf2011-10-31 17:54:36 -04003358 unsigned int end_of_block, range_to_discard;
3359
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003360 err = 0;
3361
3362 /* The length of space left to zero and unmap */
3363 range_to_discard = offset + length - pos;
3364
3365 /* The length of space until the end of the block */
3366 end_of_block = blocksize - (pos & (blocksize-1));
3367
3368 /*
3369 * Do not unmap or zero past end of block
3370 * for this buffer head
3371 */
3372 if (range_to_discard > end_of_block)
3373 range_to_discard = end_of_block;
3374
3375
3376 /*
3377 * Skip this buffer head if we are only zeroing unampped
3378 * regions of the page
3379 */
3380 if (flags & EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED &&
3381 buffer_mapped(bh))
3382 goto next;
3383
3384 /* If the range is block aligned, unmap */
3385 if (range_to_discard == blocksize) {
3386 clear_buffer_dirty(bh);
3387 bh->b_bdev = NULL;
3388 clear_buffer_mapped(bh);
3389 clear_buffer_req(bh);
3390 clear_buffer_new(bh);
3391 clear_buffer_delay(bh);
3392 clear_buffer_unwritten(bh);
3393 clear_buffer_uptodate(bh);
3394 zero_user(page, pos, range_to_discard);
3395 BUFFER_TRACE(bh, "Buffer discarded");
3396 goto next;
3397 }
3398
3399 /*
3400 * If this block is not completely contained in the range
3401 * to be discarded, then it is not going to be released. Because
3402 * we need to keep this block, we need to make sure this part
3403 * of the page is uptodate before we modify it by writeing
3404 * partial zeros on it.
3405 */
3406 if (!buffer_mapped(bh)) {
3407 /*
3408 * Buffer head must be mapped before we can read
3409 * from the block
3410 */
3411 BUFFER_TRACE(bh, "unmapped");
3412 ext4_get_block(inode, iblock, bh, 0);
3413 /* unmapped? It's a hole - nothing to do */
3414 if (!buffer_mapped(bh)) {
3415 BUFFER_TRACE(bh, "still unmapped");
3416 goto next;
3417 }
3418 }
3419
3420 /* Ok, it's mapped. Make sure it's up-to-date */
3421 if (PageUptodate(page))
3422 set_buffer_uptodate(bh);
3423
3424 if (!buffer_uptodate(bh)) {
3425 err = -EIO;
3426 ll_rw_block(READ, 1, &bh);
3427 wait_on_buffer(bh);
3428 /* Uhhuh. Read error. Complain and punt.*/
3429 if (!buffer_uptodate(bh))
3430 goto next;
3431 }
3432
3433 if (ext4_should_journal_data(inode)) {
3434 BUFFER_TRACE(bh, "get write access");
3435 err = ext4_journal_get_write_access(handle, bh);
3436 if (err)
3437 goto next;
3438 }
3439
3440 zero_user(page, pos, range_to_discard);
3441
3442 err = 0;
3443 if (ext4_should_journal_data(inode)) {
3444 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'odecbd912011-09-06 02:37:06 -04003445 } else
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003446 mark_buffer_dirty(bh);
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003447
3448 BUFFER_TRACE(bh, "Partial buffer zeroed");
3449next:
3450 bh = bh->b_this_page;
3451 iblock++;
3452 pos += range_to_discard;
3453 }
3454
3455 return err;
3456}
3457
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003458int ext4_can_truncate(struct inode *inode)
3459{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003460 if (S_ISREG(inode->i_mode))
3461 return 1;
3462 if (S_ISDIR(inode->i_mode))
3463 return 1;
3464 if (S_ISLNK(inode->i_mode))
3465 return !ext4_inode_is_fast_symlink(inode);
3466 return 0;
3467}
3468
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003469/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003470 * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3471 * associated with the given offset and length
3472 *
3473 * @inode: File inode
3474 * @offset: The offset where the hole will begin
3475 * @len: The length of the hole
3476 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003477 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003478 */
3479
3480int ext4_punch_hole(struct file *file, loff_t offset, loff_t length)
3481{
Al Viro496ad9a2013-01-23 17:07:38 -05003482 struct inode *inode = file_inode(file);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003483 if (!S_ISREG(inode->i_mode))
Allison Henderson73355192012-03-21 22:23:31 -04003484 return -EOPNOTSUPP;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003485
Zheng Liu8bad6fc2013-01-28 09:21:37 -05003486 if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3487 return ext4_ind_punch_hole(file, offset, length);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003488
Theodore Ts'obab08ab2011-09-09 18:36:51 -04003489 if (EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) {
3490 /* TODO: Add support for bigalloc file systems */
Allison Henderson73355192012-03-21 22:23:31 -04003491 return -EOPNOTSUPP;
Theodore Ts'obab08ab2011-09-09 18:36:51 -04003492 }
3493
Zheng Liuaaddea82013-01-16 20:21:26 -05003494 trace_ext4_punch_hole(inode, offset, length);
3495
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003496 return ext4_ext_punch_hole(file, offset, length);
3497}
3498
3499/*
Mingming Cao617ba132006-10-11 01:20:53 -07003500 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003501 *
Mingming Cao617ba132006-10-11 01:20:53 -07003502 * We block out ext4_get_block() block instantiations across the entire
3503 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003504 * simultaneously on behalf of the same inode.
3505 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003506 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003507 * is one core, guiding principle: the file's tree must always be consistent on
3508 * disk. We must be able to restart the truncate after a crash.
3509 *
3510 * The file's tree may be transiently inconsistent in memory (although it
3511 * probably isn't), but whenever we close off and commit a journal transaction,
3512 * the contents of (the filesystem + the journal) must be consistent and
3513 * restartable. It's pretty simple, really: bottom up, right to left (although
3514 * left-to-right works OK too).
3515 *
3516 * Note that at recovery time, journal replay occurs *before* the restart of
3517 * truncate against the orphan inode list.
3518 *
3519 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003520 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003521 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003522 * ext4_truncate() to have another go. So there will be instantiated blocks
3523 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003524 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003525 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003526 */
Mingming Cao617ba132006-10-11 01:20:53 -07003527void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003528{
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003529 trace_ext4_truncate_enter(inode);
3530
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003531 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003532 return;
3533
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003534 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003535
Theodore Ts'o5534fb52009-09-17 09:34:16 -04003536 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003537 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05003538
Tao Maaef1c852012-12-10 14:06:02 -05003539 if (ext4_has_inline_data(inode)) {
3540 int has_inline = 1;
3541
3542 ext4_inline_data_truncate(inode, &has_inline);
3543 if (has_inline)
3544 return;
3545 }
3546
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003547 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Jan Karacf108bc2008-07-11 19:27:31 -04003548 ext4_ext_truncate(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003549 else
3550 ext4_ind_truncate(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07003551
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003552 trace_ext4_truncate_exit(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003553}
3554
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003555/*
Mingming Cao617ba132006-10-11 01:20:53 -07003556 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557 * underlying buffer_head on success. If 'in_mem' is true, we have all
3558 * data in memory that is needed to recreate the on-disk version of this
3559 * inode.
3560 */
Mingming Cao617ba132006-10-11 01:20:53 -07003561static int __ext4_get_inode_loc(struct inode *inode,
3562 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003563{
Theodore Ts'o240799c2008-10-09 23:53:47 -04003564 struct ext4_group_desc *gdp;
3565 struct buffer_head *bh;
3566 struct super_block *sb = inode->i_sb;
3567 ext4_fsblk_t block;
3568 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003569
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003570 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003571 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003572 return -EIO;
3573
Theodore Ts'o240799c2008-10-09 23:53:47 -04003574 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3575 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3576 if (!gdp)
3577 return -EIO;
3578
3579 /*
3580 * Figure out the offset within the block group inode table
3581 */
Tao Ma00d09882011-05-09 10:26:41 -04003582 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003583 inode_offset = ((inode->i_ino - 1) %
3584 EXT4_INODES_PER_GROUP(sb));
3585 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3586 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3587
3588 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05003589 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05003590 return -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003591 if (!buffer_uptodate(bh)) {
3592 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04003593
3594 /*
3595 * If the buffer has the write error flag, we have failed
3596 * to write out another inode in the same block. In this
3597 * case, we don't have to read the block because we may
3598 * read the old inode data successfully.
3599 */
3600 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3601 set_buffer_uptodate(bh);
3602
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003603 if (buffer_uptodate(bh)) {
3604 /* someone brought it uptodate while we waited */
3605 unlock_buffer(bh);
3606 goto has_buffer;
3607 }
3608
3609 /*
3610 * If we have all information of the inode in memory and this
3611 * is the only valid inode in the block, we need not read the
3612 * block.
3613 */
3614 if (in_mem) {
3615 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003616 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003617
Theodore Ts'o240799c2008-10-09 23:53:47 -04003618 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003619
3620 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003621 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05003622 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003623 goto make_io;
3624
3625 /*
3626 * If the inode bitmap isn't in cache then the
3627 * optimisation may end up performing two reads instead
3628 * of one, so skip it.
3629 */
3630 if (!buffer_uptodate(bitmap_bh)) {
3631 brelse(bitmap_bh);
3632 goto make_io;
3633 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04003634 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003635 if (i == inode_offset)
3636 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003637 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003638 break;
3639 }
3640 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003641 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003642 /* all other inodes are free, so skip I/O */
3643 memset(bh->b_data, 0, bh->b_size);
3644 set_buffer_uptodate(bh);
3645 unlock_buffer(bh);
3646 goto has_buffer;
3647 }
3648 }
3649
3650make_io:
3651 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04003652 * If we need to do any I/O, try to pre-readahead extra
3653 * blocks from the inode table.
3654 */
3655 if (EXT4_SB(sb)->s_inode_readahead_blks) {
3656 ext4_fsblk_t b, end, table;
3657 unsigned num;
3658
3659 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003660 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003661 b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
3662 if (table > b)
3663 b = table;
3664 end = b + EXT4_SB(sb)->s_inode_readahead_blks;
3665 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003666 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05003667 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003668 table += num / inodes_per_block;
3669 if (end > table)
3670 end = table;
3671 while (b <= end)
3672 sb_breadahead(sb, b++);
3673 }
3674
3675 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003676 * There are other valid inodes in the buffer, this inode
3677 * has in-inode xattrs, or we don't have this inode in memory.
3678 * Read the block from disk.
3679 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003680 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003681 get_bh(bh);
3682 bh->b_end_io = end_buffer_read_sync;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003683 submit_bh(READ | REQ_META | REQ_PRIO, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003684 wait_on_buffer(bh);
3685 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003686 EXT4_ERROR_INODE_BLOCK(inode, block,
3687 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003688 brelse(bh);
3689 return -EIO;
3690 }
3691 }
3692has_buffer:
3693 iloc->bh = bh;
3694 return 0;
3695}
3696
Mingming Cao617ba132006-10-11 01:20:53 -07003697int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003698{
3699 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003700 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003701 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003702}
3703
Mingming Cao617ba132006-10-11 01:20:53 -07003704void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003705{
Mingming Cao617ba132006-10-11 01:20:53 -07003706 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003707
3708 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07003709 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003711 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003712 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003713 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003714 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003715 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003716 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003717 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003718 inode->i_flags |= S_DIRSYNC;
3719}
3720
Jan Karaff9ddf72007-07-18 09:24:20 -04003721/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3722void ext4_get_inode_flags(struct ext4_inode_info *ei)
3723{
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003724 unsigned int vfs_fl;
3725 unsigned long old_fl, new_fl;
Jan Karaff9ddf72007-07-18 09:24:20 -04003726
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003727 do {
3728 vfs_fl = ei->vfs_inode.i_flags;
3729 old_fl = ei->i_flags;
3730 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3731 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
3732 EXT4_DIRSYNC_FL);
3733 if (vfs_fl & S_SYNC)
3734 new_fl |= EXT4_SYNC_FL;
3735 if (vfs_fl & S_APPEND)
3736 new_fl |= EXT4_APPEND_FL;
3737 if (vfs_fl & S_IMMUTABLE)
3738 new_fl |= EXT4_IMMUTABLE_FL;
3739 if (vfs_fl & S_NOATIME)
3740 new_fl |= EXT4_NOATIME_FL;
3741 if (vfs_fl & S_DIRSYNC)
3742 new_fl |= EXT4_DIRSYNC_FL;
3743 } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
Jan Karaff9ddf72007-07-18 09:24:20 -04003744}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003745
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003746static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003747 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003748{
3749 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003750 struct inode *inode = &(ei->vfs_inode);
3751 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003752
3753 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3754 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3755 /* we are using combined 48 bit field */
3756 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3757 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04003758 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003759 /* i_blocks represent file system block size */
3760 return i_blocks << (inode->i_blkbits - 9);
3761 } else {
3762 return i_blocks;
3763 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003764 } else {
3765 return le32_to_cpu(raw_inode->i_blocks_lo);
3766 }
3767}
Jan Karaff9ddf72007-07-18 09:24:20 -04003768
Tao Ma152a7b02012-12-02 11:13:24 -05003769static inline void ext4_iget_extra_inode(struct inode *inode,
3770 struct ext4_inode *raw_inode,
3771 struct ext4_inode_info *ei)
3772{
3773 __le32 *magic = (void *)raw_inode +
3774 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Tao Ma67cf5b02012-12-10 14:04:46 -05003775 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05003776 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Tao Ma67cf5b02012-12-10 14:04:46 -05003777 ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05003778 } else
3779 EXT4_I(inode)->i_inline_off = 0;
Tao Ma152a7b02012-12-02 11:13:24 -05003780}
3781
David Howells1d1fe1e2008-02-07 00:15:37 -08003782struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003783{
Mingming Cao617ba132006-10-11 01:20:53 -07003784 struct ext4_iloc iloc;
3785 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08003786 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08003787 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05003788 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08003789 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003790 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003791 uid_t i_uid;
3792 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003793
David Howells1d1fe1e2008-02-07 00:15:37 -08003794 inode = iget_locked(sb, ino);
3795 if (!inode)
3796 return ERR_PTR(-ENOMEM);
3797 if (!(inode->i_state & I_NEW))
3798 return inode;
3799
3800 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05003801 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003802
David Howells1d1fe1e2008-02-07 00:15:37 -08003803 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3804 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003805 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07003806 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04003807
3808 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3809 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
3810 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
3811 EXT4_INODE_SIZE(inode->i_sb)) {
3812 EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
3813 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
3814 EXT4_INODE_SIZE(inode->i_sb));
3815 ret = -EIO;
3816 goto bad_inode;
3817 }
3818 } else
3819 ei->i_extra_isize = 0;
3820
3821 /* Precompute checksum seed for inode metadata */
3822 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3823 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
3824 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3825 __u32 csum;
3826 __le32 inum = cpu_to_le32(inode->i_ino);
3827 __le32 gen = raw_inode->i_generation;
3828 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
3829 sizeof(inum));
3830 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
3831 sizeof(gen));
3832 }
3833
3834 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
3835 EXT4_ERROR_INODE(inode, "checksum invalid");
3836 ret = -EIO;
3837 goto bad_inode;
3838 }
3839
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003840 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003841 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3842 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003843 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003844 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3845 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003846 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003847 i_uid_write(inode, i_uid);
3848 i_gid_write(inode, i_gid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003849 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003850
Theodore Ts'o353eb832011-01-10 12:18:25 -05003851 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05003852 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003853 ei->i_dir_start_lookup = 0;
3854 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3855 /* We now have enough fields to check if the inode was active or not.
3856 * This is needed because nfsd might try to access dead inodes
3857 * the test is that same one that e2fsck uses
3858 * NeilBrown 1999oct15
3859 */
3860 if (inode->i_nlink == 0) {
3861 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07003862 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003863 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08003864 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003865 goto bad_inode;
3866 }
3867 /* The only unlinked inodes we let through here have
3868 * valid i_mode and are being read by the orphan
3869 * recovery code: that's fine, we're about to complete
3870 * the process of deleting those. */
3871 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003872 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003873 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05003874 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04003875 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07003876 ei->i_file_acl |=
3877 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003878 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003879 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03003880#ifdef CONFIG_QUOTA
3881 ei->i_reserved_quota = 0;
3882#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003883 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3884 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04003885 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003886 /*
3887 * NOTE! The in-memory inode i_data array is in little-endian order
3888 * even on big-endian machines: we do NOT byteswap the block numbers!
3889 */
Mingming Cao617ba132006-10-11 01:20:53 -07003890 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003891 ei->i_data[block] = raw_inode->i_block[block];
3892 INIT_LIST_HEAD(&ei->i_orphan);
3893
Jan Karab436b9b2009-12-08 23:51:10 -05003894 /*
3895 * Set transaction id's of transactions that have to be committed
3896 * to finish f[data]sync. We set them to currently running transaction
3897 * as we cannot be sure that the inode or some of its metadata isn't
3898 * part of the transaction - the inode could have been reclaimed and
3899 * now it is reread from disk.
3900 */
3901 if (journal) {
3902 transaction_t *transaction;
3903 tid_t tid;
3904
Theodore Ts'oa931da62010-08-03 21:35:12 -04003905 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05003906 if (journal->j_running_transaction)
3907 transaction = journal->j_running_transaction;
3908 else
3909 transaction = journal->j_committing_transaction;
3910 if (transaction)
3911 tid = transaction->t_tid;
3912 else
3913 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04003914 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05003915 ei->i_sync_tid = tid;
3916 ei->i_datasync_tid = tid;
3917 }
3918
Eric Sandeen0040d982008-02-05 22:36:43 -05003919 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003920 if (ei->i_extra_isize == 0) {
3921 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07003922 ei->i_extra_isize = sizeof(struct ext4_inode) -
3923 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003924 } else {
Tao Ma152a7b02012-12-02 11:13:24 -05003925 ext4_iget_extra_inode(inode, raw_inode, ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003926 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04003927 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003928
Kalpak Shahef7f3832007-07-18 09:15:20 -04003929 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
3930 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
3931 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
3932 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
3933
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003934 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
3935 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3936 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3937 inode->i_version |=
3938 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
3939 }
3940
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04003941 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04003942 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05003943 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04003944 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
3945 ei->i_file_acl);
Theodore Ts'o485c26e2009-04-24 13:43:20 -04003946 ret = -EIO;
3947 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05003948 } else if (!ext4_has_inline_data(inode)) {
3949 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
3950 if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
3951 (S_ISLNK(inode->i_mode) &&
3952 !ext4_inode_is_fast_symlink(inode))))
3953 /* Validate extent which is part of inode */
3954 ret = ext4_ext_check_inode(inode);
3955 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
3956 (S_ISLNK(inode->i_mode) &&
3957 !ext4_inode_is_fast_symlink(inode))) {
3958 /* Validate block references which are part of inode */
3959 ret = ext4_ind_check_inode(inode);
3960 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04003961 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05003962 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003963 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04003964
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003965 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003966 inode->i_op = &ext4_file_inode_operations;
3967 inode->i_fop = &ext4_file_operations;
3968 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003969 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003970 inode->i_op = &ext4_dir_inode_operations;
3971 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003972 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00003973 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003974 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00003975 nd_terminate_link(ei->i_data, inode->i_size,
3976 sizeof(ei->i_data) - 1);
3977 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003978 inode->i_op = &ext4_symlink_inode_operations;
3979 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003980 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003981 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
3982 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003983 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003984 if (raw_inode->i_block[0])
3985 init_special_inode(inode, inode->i_mode,
3986 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
3987 else
3988 init_special_inode(inode, inode->i_mode,
3989 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003990 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003991 ret = -EIO;
Theodore Ts'o24676da2010-05-16 21:00:00 -04003992 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003993 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003994 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003995 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07003996 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08003997 unlock_new_inode(inode);
3998 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003999
4000bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004001 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004002 iget_failed(inode);
4003 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004004}
4005
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004006static int ext4_inode_blocks_set(handle_t *handle,
4007 struct ext4_inode *raw_inode,
4008 struct ext4_inode_info *ei)
4009{
4010 struct inode *inode = &(ei->vfs_inode);
4011 u64 i_blocks = inode->i_blocks;
4012 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004013
4014 if (i_blocks <= ~0U) {
4015 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004016 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004017 * as multiple of 512 bytes
4018 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004019 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004020 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004021 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004022 return 0;
4023 }
4024 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4025 return -EFBIG;
4026
4027 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004028 /*
4029 * i_blocks can be represented in a 48 bit variable
4030 * as multiple of 512 bytes
4031 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004032 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004033 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004034 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004035 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004036 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004037 /* i_block is stored in file system block size */
4038 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4039 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4040 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004041 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004042 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004043}
4044
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004045/*
4046 * Post the struct inode info into an on-disk inode location in the
4047 * buffer-cache. This gobbles the caller's reference to the
4048 * buffer_head in the inode location struct.
4049 *
4050 * The caller must have write access to iloc->bh.
4051 */
Mingming Cao617ba132006-10-11 01:20:53 -07004052static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004053 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004054 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004055{
Mingming Cao617ba132006-10-11 01:20:53 -07004056 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4057 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004058 struct buffer_head *bh = iloc->bh;
4059 int err = 0, rc, block;
Jan Karab71fc072012-09-26 21:52:20 -04004060 int need_datasync = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004061 uid_t i_uid;
4062 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004063
4064 /* For fields not not tracking in the in-memory inode,
4065 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004066 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07004067 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004068
Jan Karaff9ddf72007-07-18 09:24:20 -04004069 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004070 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004071 i_uid = i_uid_read(inode);
4072 i_gid = i_gid_read(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004073 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004074 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4075 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004076/*
4077 * Fix up interoperability with old kernels. Otherwise, old inodes get
4078 * re-used with the upper 16 bits of the uid/gid intact
4079 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004080 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004081 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004082 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004083 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004084 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004085 } else {
4086 raw_inode->i_uid_high = 0;
4087 raw_inode->i_gid_high = 0;
4088 }
4089 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004090 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4091 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004092 raw_inode->i_uid_high = 0;
4093 raw_inode->i_gid_high = 0;
4094 }
4095 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004096
4097 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4098 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4099 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4100 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4101
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004102 if (ext4_inode_blocks_set(handle, raw_inode, ei))
4103 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004104 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05004105 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07004106 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
4107 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004108 raw_inode->i_file_acl_high =
4109 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004110 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Jan Karab71fc072012-09-26 21:52:20 -04004111 if (ei->i_disksize != ext4_isize(raw_inode)) {
4112 ext4_isize_set(raw_inode, ei->i_disksize);
4113 need_datasync = 1;
4114 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004115 if (ei->i_disksize > 0x7fffffffULL) {
4116 struct super_block *sb = inode->i_sb;
4117 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4118 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4119 EXT4_SB(sb)->s_es->s_rev_level ==
4120 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
4121 /* If this is the first large file
4122 * created, add a flag to the superblock.
4123 */
4124 err = ext4_journal_get_write_access(handle,
4125 EXT4_SB(sb)->s_sbh);
4126 if (err)
4127 goto out_brelse;
4128 ext4_update_dynamic_rev(sb);
4129 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07004130 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Frank Mayhar03901312009-01-07 00:06:22 -05004131 ext4_handle_sync(handle);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04004132 err = ext4_handle_dirty_super(handle, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004133 }
4134 }
4135 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4136 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4137 if (old_valid_dev(inode->i_rdev)) {
4138 raw_inode->i_block[0] =
4139 cpu_to_le32(old_encode_dev(inode->i_rdev));
4140 raw_inode->i_block[1] = 0;
4141 } else {
4142 raw_inode->i_block[0] = 0;
4143 raw_inode->i_block[1] =
4144 cpu_to_le32(new_encode_dev(inode->i_rdev));
4145 raw_inode->i_block[2] = 0;
4146 }
Tao Maf19d5872012-12-10 14:05:51 -05004147 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004148 for (block = 0; block < EXT4_N_BLOCKS; block++)
4149 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05004150 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004151
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004152 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
4153 if (ei->i_extra_isize) {
4154 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4155 raw_inode->i_version_hi =
4156 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004157 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004158 }
4159
Darrick J. Wong814525f2012-04-29 18:31:10 -04004160 ext4_inode_csum_set(inode, raw_inode, ei);
4161
Frank Mayhar830156c2009-09-29 10:07:47 -04004162 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004163 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04004164 if (!err)
4165 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004166 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004167
Jan Karab71fc072012-09-26 21:52:20 -04004168 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004169out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004170 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004171 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004172 return err;
4173}
4174
4175/*
Mingming Cao617ba132006-10-11 01:20:53 -07004176 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004177 *
4178 * We are called from a few places:
4179 *
4180 * - Within generic_file_write() for O_SYNC files.
4181 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004182 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004183 *
4184 * - Within sys_sync(), kupdate and such.
4185 * We wait on commit, if tol to.
4186 *
4187 * - Within prune_icache() (PF_MEMALLOC == true)
4188 * Here we simply return. We can't afford to block kswapd on the
4189 * journal commit.
4190 *
4191 * In all cases it is actually safe for us to return without doing anything,
4192 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07004193 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004194 * knfsd.
4195 *
4196 * Note that we are absolutely dependent upon all inode dirtiers doing the
4197 * right thing: they *must* call mark_inode_dirty() after dirtying info in
4198 * which we are interested.
4199 *
4200 * It would be a bug for them to not do this. The code:
4201 *
4202 * mark_inode_dirty(inode)
4203 * stuff();
4204 * inode->i_size = expr;
4205 *
4206 * is in error because a kswapd-driven write_inode() could occur while
4207 * `stuff()' is running, and the new i_size will be lost. Plus the inode
4208 * will no longer be on the superblock's dirty inode list.
4209 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004210int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004211{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004212 int err;
4213
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004214 if (current->flags & PF_MEMALLOC)
4215 return 0;
4216
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004217 if (EXT4_SB(inode->i_sb)->s_journal) {
4218 if (ext4_journal_current_handle()) {
4219 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4220 dump_stack();
4221 return -EIO;
4222 }
4223
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004224 if (wbc->sync_mode != WB_SYNC_ALL)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004225 return 0;
4226
4227 err = ext4_force_commit(inode->i_sb);
4228 } else {
4229 struct ext4_iloc iloc;
4230
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04004231 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004232 if (err)
4233 return err;
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004234 if (wbc->sync_mode == WB_SYNC_ALL)
Frank Mayhar830156c2009-09-29 10:07:47 -04004235 sync_dirty_buffer(iloc.bh);
4236 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004237 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4238 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04004239 err = -EIO;
4240 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004241 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004242 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004243 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004244}
4245
4246/*
Jan Kara53e87262012-12-25 13:29:52 -05004247 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
4248 * buffers that are attached to a page stradding i_size and are undergoing
4249 * commit. In that case we have to wait for commit to finish and try again.
4250 */
4251static void ext4_wait_for_tail_page_commit(struct inode *inode)
4252{
4253 struct page *page;
4254 unsigned offset;
4255 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
4256 tid_t commit_tid = 0;
4257 int ret;
4258
4259 offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
4260 /*
4261 * All buffers in the last page remain valid? Then there's nothing to
4262 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
4263 * blocksize case
4264 */
4265 if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
4266 return;
4267 while (1) {
4268 page = find_lock_page(inode->i_mapping,
4269 inode->i_size >> PAGE_CACHE_SHIFT);
4270 if (!page)
4271 return;
4272 ret = __ext4_journalled_invalidatepage(page, offset);
4273 unlock_page(page);
4274 page_cache_release(page);
4275 if (ret != -EBUSY)
4276 return;
4277 commit_tid = 0;
4278 read_lock(&journal->j_state_lock);
4279 if (journal->j_committing_transaction)
4280 commit_tid = journal->j_committing_transaction->t_tid;
4281 read_unlock(&journal->j_state_lock);
4282 if (commit_tid)
4283 jbd2_log_wait_commit(journal, commit_tid);
4284 }
4285}
4286
4287/*
Mingming Cao617ba132006-10-11 01:20:53 -07004288 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004289 *
4290 * Called from notify_change.
4291 *
4292 * We want to trap VFS attempts to truncate the file as soon as
4293 * possible. In particular, we want to make sure that when the VFS
4294 * shrinks i_size, we put the inode on the orphan list and modify
4295 * i_disksize immediately, so that during the subsequent flushing of
4296 * dirty pages and freeing of disk blocks, we can guarantee that any
4297 * commit will leave the blocks being flushed in an unused state on
4298 * disk. (On recovery, the inode will get truncated and the blocks will
4299 * be freed, so we have a strong guarantee that no future commit will
4300 * leave these blocks visible to the user.)
4301 *
Jan Kara678aaf42008-07-11 19:27:31 -04004302 * Another thing we have to assure is that if we are in ordered mode
4303 * and inode is still attached to the committing transaction, we must
4304 * we start writeout of all the dirty pages which are being truncated.
4305 * This way we are sure that all the data written in the previous
4306 * transaction are already on disk (truncate waits for pages under
4307 * writeback).
4308 *
4309 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004310 */
Mingming Cao617ba132006-10-11 01:20:53 -07004311int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004312{
4313 struct inode *inode = dentry->d_inode;
4314 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004315 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004316 const unsigned int ia_valid = attr->ia_valid;
4317
4318 error = inode_change_ok(inode, attr);
4319 if (error)
4320 return error;
4321
Dmitry Monakhov12755622010-04-08 22:04:20 +04004322 if (is_quota_modification(inode, attr))
Christoph Hellwig871a2932010-03-03 09:05:07 -05004323 dquot_initialize(inode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004324 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
4325 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004326 handle_t *handle;
4327
4328 /* (user+group)*(old+new) structure, inode write (sb,
4329 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05004330 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
4331 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4332 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004333 if (IS_ERR(handle)) {
4334 error = PTR_ERR(handle);
4335 goto err_out;
4336 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05004337 error = dquot_transfer(inode, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004338 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07004339 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004340 return error;
4341 }
4342 /* Update corresponding info in inode so that everything is in
4343 * one transaction */
4344 if (attr->ia_valid & ATTR_UID)
4345 inode->i_uid = attr->ia_uid;
4346 if (attr->ia_valid & ATTR_GID)
4347 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07004348 error = ext4_mark_inode_dirty(handle, inode);
4349 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004350 }
4351
Eric Sandeene2b46572008-01-28 23:58:27 -05004352 if (attr->ia_valid & ATTR_SIZE) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -04004353
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004354 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05004355 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4356
Theodore Ts'o0c095c72010-07-27 11:56:06 -04004357 if (attr->ia_size > sbi->s_bitmap_maxbytes)
4358 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05004359 }
4360 }
4361
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004362 if (S_ISREG(inode->i_mode) &&
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004363 attr->ia_valid & ATTR_SIZE &&
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004364 (attr->ia_size < inode->i_size)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004365 handle_t *handle;
4366
Theodore Ts'o9924a922013-02-08 21:59:22 -05004367 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004368 if (IS_ERR(handle)) {
4369 error = PTR_ERR(handle);
4370 goto err_out;
4371 }
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004372 if (ext4_handle_valid(handle)) {
4373 error = ext4_orphan_add(handle, inode);
4374 orphan = 1;
4375 }
Mingming Cao617ba132006-10-11 01:20:53 -07004376 EXT4_I(inode)->i_disksize = attr->ia_size;
4377 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004378 if (!error)
4379 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07004380 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04004381
4382 if (ext4_should_order_data(inode)) {
4383 error = ext4_begin_ordered_truncate(inode,
4384 attr->ia_size);
4385 if (error) {
4386 /* Do as much error cleanup as possible */
Theodore Ts'o9924a922013-02-08 21:59:22 -05004387 handle = ext4_journal_start(inode,
4388 EXT4_HT_INODE, 3);
Jan Kara678aaf42008-07-11 19:27:31 -04004389 if (IS_ERR(handle)) {
4390 ext4_orphan_del(NULL, inode);
4391 goto err_out;
4392 }
4393 ext4_orphan_del(handle, inode);
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004394 orphan = 0;
Jan Kara678aaf42008-07-11 19:27:31 -04004395 ext4_journal_stop(handle);
4396 goto err_out;
4397 }
4398 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004399 }
4400
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004401 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara53e87262012-12-25 13:29:52 -05004402 if (attr->ia_size != inode->i_size) {
4403 loff_t oldsize = inode->i_size;
4404
4405 i_size_write(inode, attr->ia_size);
4406 /*
4407 * Blocks are going to be removed from the inode. Wait
4408 * for dio in flight. Temporarily disable
4409 * dioread_nolock to prevent livelock.
4410 */
Dmitry Monakhov1b650072012-09-29 00:56:15 -04004411 if (orphan) {
Jan Kara53e87262012-12-25 13:29:52 -05004412 if (!ext4_should_journal_data(inode)) {
4413 ext4_inode_block_unlocked_dio(inode);
4414 inode_dio_wait(inode);
4415 ext4_inode_resume_unlocked_dio(inode);
4416 } else
4417 ext4_wait_for_tail_page_commit(inode);
Dmitry Monakhov1b650072012-09-29 00:56:15 -04004418 }
Jan Kara53e87262012-12-25 13:29:52 -05004419 /*
4420 * Truncate pagecache after we've waited for commit
4421 * in data=journal mode to make pages freeable.
4422 */
4423 truncate_pagecache(inode, oldsize, inode->i_size);
Dmitry Monakhov1c9114f2012-09-29 00:55:23 -04004424 }
Lukas Czernerafcff5d2012-03-21 21:47:55 -04004425 ext4_truncate(inode);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004426 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004427
Christoph Hellwig10257742010-06-04 11:30:02 +02004428 if (!rc) {
4429 setattr_copy(inode, attr);
4430 mark_inode_dirty(inode);
4431 }
4432
4433 /*
4434 * If the call to ext4_truncate failed to get a transaction handle at
4435 * all, we need to clean up the in-core orphan list manually.
4436 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004437 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004438 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004439
4440 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07004441 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004442
4443err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07004444 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004445 if (!error)
4446 error = rc;
4447 return error;
4448}
4449
Mingming Cao3e3398a2008-07-11 19:27:31 -04004450int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
4451 struct kstat *stat)
4452{
4453 struct inode *inode;
4454 unsigned long delalloc_blocks;
4455
4456 inode = dentry->d_inode;
4457 generic_fillattr(inode, stat);
4458
4459 /*
4460 * We can't update i_blocks if the block allocation is delayed
4461 * otherwise in the case of system crash before the real block
4462 * allocation is done, we will have i_blocks inconsistent with
4463 * on-disk file blocks.
4464 * We always keep i_blocks updated together with real
4465 * allocation. But to not confuse with user, stat
4466 * will return the blocks that include the delayed allocation
4467 * blocks for this file.
4468 */
Tao Ma96607552012-05-31 22:54:16 -04004469 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
4470 EXT4_I(inode)->i_reserved_data_blocks);
Mingming Cao3e3398a2008-07-11 19:27:31 -04004471
4472 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
4473 return 0;
4474}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004475
Mingming Caoa02908f2008-08-19 22:16:07 -04004476static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
4477{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004478 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Amir Goldstein8bb2b242011-06-27 17:10:28 -04004479 return ext4_ind_trans_blocks(inode, nrblocks, chunk);
Theodore Ts'oac51d832008-11-06 16:49:36 -05004480 return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
Mingming Caoa02908f2008-08-19 22:16:07 -04004481}
Theodore Ts'oac51d832008-11-06 16:49:36 -05004482
Mingming Caoa02908f2008-08-19 22:16:07 -04004483/*
4484 * Account for index blocks, block groups bitmaps and block group
4485 * descriptor blocks if modify datablocks and index blocks
4486 * worse case, the indexs blocks spread over different block groups
4487 *
4488 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004489 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04004490 * they could still across block group boundary.
4491 *
4492 * Also account for superblock, inode, quota and xattr blocks
4493 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04004494static int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
Mingming Caoa02908f2008-08-19 22:16:07 -04004495{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004496 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
4497 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04004498 int idxblocks;
4499 int ret = 0;
4500
4501 /*
4502 * How many index blocks need to touch to modify nrblocks?
4503 * The "Chunk" flag indicating whether the nrblocks is
4504 * physically contiguous on disk
4505 *
4506 * For Direct IO and fallocate, they calls get_block to allocate
4507 * one single extent at a time, so they could set the "Chunk" flag
4508 */
4509 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
4510
4511 ret = idxblocks;
4512
4513 /*
4514 * Now let's see how many group bitmaps and group descriptors need
4515 * to account
4516 */
4517 groups = idxblocks;
4518 if (chunk)
4519 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004520 else
Mingming Caoa02908f2008-08-19 22:16:07 -04004521 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004522
Mingming Caoa02908f2008-08-19 22:16:07 -04004523 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04004524 if (groups > ngroups)
4525 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04004526 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4527 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4528
4529 /* bitmaps and block group descriptor blocks */
4530 ret += groups + gdpblocks;
4531
4532 /* Blocks for super block, inode, quota and xattr blocks */
4533 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004534
4535 return ret;
4536}
4537
4538/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004539 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04004540 * the modification of a single pages into a single transaction,
4541 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04004542 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004543 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04004544 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004545 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04004546 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04004547 */
4548int ext4_writepage_trans_blocks(struct inode *inode)
4549{
4550 int bpp = ext4_journal_blocks_per_page(inode);
4551 int ret;
4552
4553 ret = ext4_meta_trans_blocks(inode, bpp, 0);
4554
4555 /* Account for data blocks for journalled mode */
4556 if (ext4_should_journal_data(inode))
4557 ret += bpp;
4558 return ret;
4559}
Mingming Caof3bd1f32008-08-19 22:16:03 -04004560
4561/*
4562 * Calculate the journal credits for a chunk of data modification.
4563 *
4564 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04004565 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04004566 *
4567 * journal buffers for data blocks are not included here, as DIO
4568 * and fallocate do no need to journal data buffers.
4569 */
4570int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4571{
4572 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4573}
4574
Mingming Caoa02908f2008-08-19 22:16:07 -04004575/*
Mingming Cao617ba132006-10-11 01:20:53 -07004576 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004577 * Give this, we know that the caller already has write access to iloc->bh.
4578 */
Mingming Cao617ba132006-10-11 01:20:53 -07004579int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004580 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004581{
4582 int err = 0;
4583
Theodore Ts'oc64db502012-03-02 12:23:11 -05004584 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004585 inode_inc_iversion(inode);
4586
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004587 /* the do_update_inode consumes one bh->b_count */
4588 get_bh(iloc->bh);
4589
Mingming Caodab291a2006-10-11 01:21:01 -07004590 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04004591 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004592 put_bh(iloc->bh);
4593 return err;
4594}
4595
4596/*
4597 * On success, We end up with an outstanding reference count against
4598 * iloc->bh. This _must_ be cleaned up later.
4599 */
4600
4601int
Mingming Cao617ba132006-10-11 01:20:53 -07004602ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4603 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004604{
Frank Mayhar03901312009-01-07 00:06:22 -05004605 int err;
4606
4607 err = ext4_get_inode_loc(inode, iloc);
4608 if (!err) {
4609 BUFFER_TRACE(iloc->bh, "get_write_access");
4610 err = ext4_journal_get_write_access(handle, iloc->bh);
4611 if (err) {
4612 brelse(iloc->bh);
4613 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004614 }
4615 }
Mingming Cao617ba132006-10-11 01:20:53 -07004616 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004617 return err;
4618}
4619
4620/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004621 * Expand an inode by new_extra_isize bytes.
4622 * Returns 0 on success or negative error number on failure.
4623 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004624static int ext4_expand_extra_isize(struct inode *inode,
4625 unsigned int new_extra_isize,
4626 struct ext4_iloc iloc,
4627 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004628{
4629 struct ext4_inode *raw_inode;
4630 struct ext4_xattr_ibody_header *header;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004631
4632 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4633 return 0;
4634
4635 raw_inode = ext4_raw_inode(&iloc);
4636
4637 header = IHDR(inode, raw_inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004638
4639 /* No extended attributes present */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004640 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
4641 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004642 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4643 new_extra_isize);
4644 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4645 return 0;
4646 }
4647
4648 /* try to expand with EAs present */
4649 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4650 raw_inode, handle);
4651}
4652
4653/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004654 * What we do here is to mark the in-core inode as clean with respect to inode
4655 * dirtiness (it may still be data-dirty).
4656 * This means that the in-core inode may be reaped by prune_icache
4657 * without having to perform any I/O. This is a very good thing,
4658 * because *any* task may call prune_icache - even ones which
4659 * have a transaction open against a different journal.
4660 *
4661 * Is this cheating? Not really. Sure, we haven't written the
4662 * inode out, but prune_icache isn't a user-visible syncing function.
4663 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4664 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004665 */
Mingming Cao617ba132006-10-11 01:20:53 -07004666int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004667{
Mingming Cao617ba132006-10-11 01:20:53 -07004668 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004669 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4670 static unsigned int mnt_count;
4671 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004672
4673 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05004674 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07004675 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05004676 if (ext4_handle_valid(handle) &&
4677 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004678 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004679 /*
4680 * We need extra buffer credits since we may write into EA block
4681 * with this same handle. If journal_extend fails, then it will
4682 * only result in a minor loss of functionality for that inode.
4683 * If this is felt to be critical, then e2fsck should be run to
4684 * force a large enough s_min_extra_isize.
4685 */
4686 if ((jbd2_journal_extend(handle,
4687 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4688 ret = ext4_expand_extra_isize(inode,
4689 sbi->s_want_extra_isize,
4690 iloc, handle);
4691 if (ret) {
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004692 ext4_set_inode_state(inode,
4693 EXT4_STATE_NO_EXPAND);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004694 if (mnt_count !=
4695 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004696 ext4_warning(inode->i_sb,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004697 "Unable to expand inode %lu. Delete"
4698 " some EAs or run e2fsck.",
4699 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004700 mnt_count =
4701 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004702 }
4703 }
4704 }
4705 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004706 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004707 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004708 return err;
4709}
4710
4711/*
Mingming Cao617ba132006-10-11 01:20:53 -07004712 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004713 *
4714 * We're really interested in the case where a file is being extended.
4715 * i_size has been changed by generic_commit_write() and we thus need
4716 * to include the updated inode in the current transaction.
4717 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004718 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004719 * are allocated to the file.
4720 *
4721 * If the inode is marked synchronous, we don't honour that here - doing
4722 * so would cause a commit on atime updates, which we don't bother doing.
4723 * We handle synchronous inodes at the highest possible level.
4724 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04004725void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004726{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004727 handle_t *handle;
4728
Theodore Ts'o9924a922013-02-08 21:59:22 -05004729 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004730 if (IS_ERR(handle))
4731 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004732
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004733 ext4_mark_inode_dirty(handle, inode);
4734
Mingming Cao617ba132006-10-11 01:20:53 -07004735 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004736out:
4737 return;
4738}
4739
4740#if 0
4741/*
4742 * Bind an inode's backing buffer_head into this transaction, to prevent
4743 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07004744 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004745 * returns no iloc structure, so the caller needs to repeat the iloc
4746 * lookup to mark the inode dirty later.
4747 */
Mingming Cao617ba132006-10-11 01:20:53 -07004748static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004749{
Mingming Cao617ba132006-10-11 01:20:53 -07004750 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004751
4752 int err = 0;
4753 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004754 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004755 if (!err) {
4756 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07004757 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004758 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05004759 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004760 NULL,
Frank Mayhar03901312009-01-07 00:06:22 -05004761 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004762 brelse(iloc.bh);
4763 }
4764 }
Mingming Cao617ba132006-10-11 01:20:53 -07004765 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004766 return err;
4767}
4768#endif
4769
Mingming Cao617ba132006-10-11 01:20:53 -07004770int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004771{
4772 journal_t *journal;
4773 handle_t *handle;
4774 int err;
4775
4776 /*
4777 * We have to be very careful here: changing a data block's
4778 * journaling status dynamically is dangerous. If we write a
4779 * data block to the journal, change the status and then delete
4780 * that block, we risk forgetting to revoke the old log record
4781 * from the journal and so a subsequent replay can corrupt data.
4782 * So, first we make sure that the journal is empty and that
4783 * nobody is changing anything.
4784 */
4785
Mingming Cao617ba132006-10-11 01:20:53 -07004786 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004787 if (!journal)
4788 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04004789 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004790 return -EROFS;
Yongqiang Yang2aff57b2011-12-28 12:02:13 -05004791 /* We have to allocate physical blocks for delalloc blocks
4792 * before flushing journal. otherwise delalloc blocks can not
4793 * be allocated any more. even more truncate on delalloc blocks
4794 * could trigger BUG by flushing delalloc blocks in journal.
4795 * There is no delalloc block in non-journal data mode.
4796 */
4797 if (val && test_opt(inode->i_sb, DELALLOC)) {
4798 err = ext4_alloc_da_blocks(inode);
4799 if (err < 0)
4800 return err;
4801 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004802
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04004803 /* Wait for all existing dio workers */
4804 ext4_inode_block_unlocked_dio(inode);
4805 inode_dio_wait(inode);
4806
Mingming Caodab291a2006-10-11 01:21:01 -07004807 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808
4809 /*
4810 * OK, there are no updates running now, and all cached data is
4811 * synced to disk. We are now in a completely consistent state
4812 * which doesn't have anything in the journal, and we know that
4813 * no filesystem updates are running, so it is safe to modify
4814 * the inode's in-core data-journaling state flag now.
4815 */
4816
4817 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004818 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05004819 else {
4820 jbd2_journal_flush(journal);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004821 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05004822 }
Mingming Cao617ba132006-10-11 01:20:53 -07004823 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004824
Mingming Caodab291a2006-10-11 01:21:01 -07004825 jbd2_journal_unlock_updates(journal);
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04004826 ext4_inode_resume_unlocked_dio(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004827
4828 /* Finally we can mark the inode as dirty. */
4829
Theodore Ts'o9924a922013-02-08 21:59:22 -05004830 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004831 if (IS_ERR(handle))
4832 return PTR_ERR(handle);
4833
Mingming Cao617ba132006-10-11 01:20:53 -07004834 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004835 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07004836 ext4_journal_stop(handle);
4837 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004838
4839 return err;
4840}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004841
4842static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4843{
4844 return !buffer_mapped(bh);
4845}
4846
Nick Pigginc2ec1752009-03-31 15:23:21 -07004847int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004848{
Nick Pigginc2ec1752009-03-31 15:23:21 -07004849 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004850 loff_t size;
4851 unsigned long len;
Jan Kara9ea7df52011-06-24 14:29:41 -04004852 int ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004853 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05004854 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004855 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04004856 handle_t *handle;
4857 get_block_t *get_block;
4858 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004859
Jan Kara8e8ad8a2012-06-12 16:20:38 +02004860 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04004861 file_update_time(vma->vm_file);
Jan Kara9ea7df52011-06-24 14:29:41 -04004862 /* Delalloc case is easy... */
4863 if (test_opt(inode->i_sb, DELALLOC) &&
4864 !ext4_should_journal_data(inode) &&
4865 !ext4_nonda_switch(inode->i_sb)) {
4866 do {
4867 ret = __block_page_mkwrite(vma, vmf,
4868 ext4_da_get_block_prep);
4869 } while (ret == -ENOSPC &&
4870 ext4_should_retry_alloc(inode->i_sb, &retries));
4871 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004872 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04004873
4874 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04004875 size = i_size_read(inode);
4876 /* Page got truncated from under us? */
4877 if (page->mapping != mapping || page_offset(page) > size) {
4878 unlock_page(page);
4879 ret = VM_FAULT_NOPAGE;
4880 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04004881 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004882
4883 if (page->index == size >> PAGE_CACHE_SHIFT)
4884 len = size & ~PAGE_CACHE_MASK;
4885 else
4886 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004887 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04004888 * Return if we have all the buffers mapped. This avoids the need to do
4889 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004890 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004891 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05004892 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
4893 0, len, NULL,
4894 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04004895 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08004896 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04004897 ret = VM_FAULT_LOCKED;
4898 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004899 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004900 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004901 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04004902 /* OK, we need to fill the hole... */
4903 if (ext4_should_dioread_nolock(inode))
4904 get_block = ext4_get_block_write;
4905 else
4906 get_block = ext4_get_block;
4907retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05004908 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
4909 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04004910 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07004911 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04004912 goto out;
4913 }
4914 ret = __block_page_mkwrite(vma, vmf, get_block);
4915 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05004916 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Jan Kara9ea7df52011-06-24 14:29:41 -04004917 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
4918 unlock_page(page);
4919 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04004920 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04004921 goto out;
4922 }
4923 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
4924 }
4925 ext4_journal_stop(handle);
4926 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
4927 goto retry_alloc;
4928out_ret:
4929 ret = block_page_mkwrite_return(ret);
4930out:
Jan Kara8e8ad8a2012-06-12 16:20:38 +02004931 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004932 return ret;
4933}