blob: 95a0c62c568336ce60583465e7f40d090d43aa37 [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:
922 page = grab_cache_page_write_begin(mapping, index, flags);
923 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);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400929 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500930 page_cache_release(page);
931 return PTR_ERR(handle);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700932 }
933
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);
Jan Karafe386132013-01-28 21:06:42 -05002079 /*
2080 * 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.
2085 */
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);
2097 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 */
2515 if (dirty_blocks && (free_blocks < 2 * dirty_blocks) &&
2516 !writeback_in_progress(sb->s_bdi) &&
2517 down_read_trylock(&sb->s_umount)) {
2518 writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
2519 up_read(&sb->s_umount);
2520 }
2521
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002522 if (2 * free_blocks < 3 * dirty_blocks ||
Theodore Ts'odf55c992011-09-09 19:16:51 -04002523 free_blocks < (dirty_blocks + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002524 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002525 * free block count is less than 150% of dirty blocks
2526 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002527 */
2528 return 1;
2529 }
2530 return 0;
2531}
2532
Alex Tomas64769242008-07-11 19:27:31 -04002533static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002534 loff_t pos, unsigned len, unsigned flags,
2535 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002536{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002537 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002538 struct page *page;
2539 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002540 struct inode *inode = mapping->host;
2541 handle_t *handle;
2542
2543 index = pos >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002544
2545 if (ext4_nonda_switch(inode->i_sb)) {
2546 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2547 return ext4_write_begin(file, mapping, pos,
2548 len, flags, pagep, fsdata);
2549 }
2550 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002551 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002552
2553 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2554 ret = ext4_da_write_inline_data_begin(mapping, inode,
2555 pos, len, flags,
2556 pagep, fsdata);
2557 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002558 return ret;
2559 if (ret == 1)
2560 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002561 }
2562
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002563 /*
2564 * grab_cache_page_write_begin() can take a long time if the
2565 * system is thrashing due to memory pressure, or if the page
2566 * is being written back. So grab it first before we start
2567 * the transaction handle. This also allows us to allocate
2568 * the page (if needed) without using GFP_NOFS.
2569 */
2570retry_grab:
2571 page = grab_cache_page_write_begin(mapping, index, flags);
2572 if (!page)
2573 return -ENOMEM;
2574 unlock_page(page);
2575
Alex Tomas64769242008-07-11 19:27:31 -04002576 /*
2577 * With delayed allocation, we don't log the i_disksize update
2578 * if there is delayed block allocation. But we still need
2579 * to journalling the i_disksize update if writes to the end
2580 * of file which has an already mapped buffer.
2581 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002582retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002583 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1);
Alex Tomas64769242008-07-11 19:27:31 -04002584 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002585 page_cache_release(page);
2586 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002587 }
2588
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002589 lock_page(page);
2590 if (page->mapping != mapping) {
2591 /* The page got truncated from under us */
2592 unlock_page(page);
2593 page_cache_release(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002594 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002595 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002596 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002597 /* In case writeback began while the page was unlocked */
2598 wait_on_page_writeback(page);
Alex Tomas64769242008-07-11 19:27:31 -04002599
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002600 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04002601 if (ret < 0) {
2602 unlock_page(page);
2603 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002604 /*
2605 * block_write_begin may have instantiated a few blocks
2606 * outside i_size. Trim these off again. Don't need
2607 * i_size_read because we hold i_mutex.
2608 */
2609 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002610 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002611
2612 if (ret == -ENOSPC &&
2613 ext4_should_retry_alloc(inode->i_sb, &retries))
2614 goto retry_journal;
2615
2616 page_cache_release(page);
2617 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002618 }
2619
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002620 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002621 return ret;
2622}
2623
Mingming Cao632eaea2008-07-11 19:27:31 -04002624/*
2625 * Check if we should update i_disksize
2626 * when write to the end of file but not require block allocation
2627 */
2628static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002629 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002630{
2631 struct buffer_head *bh;
2632 struct inode *inode = page->mapping->host;
2633 unsigned int idx;
2634 int i;
2635
2636 bh = page_buffers(page);
2637 idx = offset >> inode->i_blkbits;
2638
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002639 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002640 bh = bh->b_this_page;
2641
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002642 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002643 return 0;
2644 return 1;
2645}
2646
Alex Tomas64769242008-07-11 19:27:31 -04002647static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002648 struct address_space *mapping,
2649 loff_t pos, unsigned len, unsigned copied,
2650 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002651{
2652 struct inode *inode = mapping->host;
2653 int ret = 0, ret2;
2654 handle_t *handle = ext4_journal_current_handle();
2655 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002656 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002657 int write_mode = (int)(unsigned long)fsdata;
2658
2659 if (write_mode == FALL_BACK_TO_NONDELALLOC) {
Lukas Czerner3d2b1582012-02-20 17:53:00 -05002660 switch (ext4_inode_journal_mode(inode)) {
2661 case EXT4_INODE_ORDERED_DATA_MODE:
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002662 return ext4_ordered_write_end(file, mapping, pos,
2663 len, copied, page, fsdata);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05002664 case EXT4_INODE_WRITEBACK_DATA_MODE:
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002665 return ext4_writeback_write_end(file, mapping, pos,
2666 len, copied, page, fsdata);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05002667 default:
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002668 BUG();
2669 }
2670 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002671
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002672 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04002673 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002674 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04002675
2676 /*
2677 * generic_write_end() will run mark_inode_dirty() if i_size
2678 * changes. So let's piggyback the i_disksize mark_inode_dirty
2679 * into that.
2680 */
Alex Tomas64769242008-07-11 19:27:31 -04002681 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05002682 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05002683 if (ext4_has_inline_data(inode) ||
2684 ext4_da_should_update_i_disksize(page, end)) {
Mingming Cao632eaea2008-07-11 19:27:31 -04002685 down_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'of3b59292012-11-15 23:08:57 -05002686 if (new_i_size > EXT4_I(inode)->i_disksize)
Mingming Cao632eaea2008-07-11 19:27:31 -04002687 EXT4_I(inode)->i_disksize = new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002688 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04002689 /* We need to mark inode dirty even if
2690 * new_i_size is less that inode->i_size
2691 * bu greater than i_disksize.(hint delalloc)
2692 */
2693 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04002694 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002695 }
Tao Ma9c3569b2012-12-10 14:05:57 -05002696
2697 if (write_mode != CONVERT_INLINE_DATA &&
2698 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
2699 ext4_has_inline_data(inode))
2700 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
2701 page);
2702 else
2703 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04002704 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05002705
Alex Tomas64769242008-07-11 19:27:31 -04002706 copied = ret2;
2707 if (ret2 < 0)
2708 ret = ret2;
2709 ret2 = ext4_journal_stop(handle);
2710 if (!ret)
2711 ret = ret2;
2712
2713 return ret ? ret : copied;
2714}
2715
2716static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
2717{
Alex Tomas64769242008-07-11 19:27:31 -04002718 /*
2719 * Drop reserved blocks
2720 */
2721 BUG_ON(!PageLocked(page));
2722 if (!page_has_buffers(page))
2723 goto out;
2724
Mingming Caod2a17632008-07-14 17:52:37 -04002725 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04002726
2727out:
2728 ext4_invalidatepage(page, offset);
2729
2730 return;
2731}
2732
Theodore Ts'occd25062009-02-26 01:04:07 -05002733/*
2734 * Force all delayed allocation blocks to be allocated for a given inode.
2735 */
2736int ext4_alloc_da_blocks(struct inode *inode)
2737{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04002738 trace_ext4_alloc_da_blocks(inode);
2739
Theodore Ts'occd25062009-02-26 01:04:07 -05002740 if (!EXT4_I(inode)->i_reserved_data_blocks &&
2741 !EXT4_I(inode)->i_reserved_meta_blocks)
2742 return 0;
2743
2744 /*
2745 * We do something simple for now. The filemap_flush() will
2746 * also start triggering a write of the data blocks, which is
2747 * not strictly speaking necessary (and for users of
2748 * laptop_mode, not even desirable). However, to do otherwise
2749 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002750 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002751 * ext4_da_writepages() ->
2752 * write_cache_pages() ---> (via passed in callback function)
2753 * __mpage_da_writepage() -->
2754 * mpage_add_bh_to_extent()
2755 * mpage_da_map_blocks()
2756 *
2757 * The problem is that write_cache_pages(), located in
2758 * mm/page-writeback.c, marks pages clean in preparation for
2759 * doing I/O, which is not desirable if we're not planning on
2760 * doing I/O at all.
2761 *
2762 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08002763 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05002764 * would be ugly in the extreme. So instead we would need to
2765 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002766 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05002767 * write out the pages, but rather only collect contiguous
2768 * logical block extents, call the multi-block allocator, and
2769 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002770 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002771 * For now, though, we'll cheat by calling filemap_flush(),
2772 * which will map the blocks, and start the I/O, but not
2773 * actually wait for the I/O to complete.
2774 */
2775 return filemap_flush(inode->i_mapping);
2776}
Alex Tomas64769242008-07-11 19:27:31 -04002777
2778/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002779 * bmap() is special. It gets used by applications such as lilo and by
2780 * the swapper to find the on-disk block of a specific piece of data.
2781 *
2782 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002783 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002784 * filesystem and enables swap, then they may get a nasty shock when the
2785 * data getting swapped to that swapfile suddenly gets overwritten by
2786 * the original zero's written out previously to the journal and
2787 * awaiting writeback in the kernel's buffer cache.
2788 *
2789 * So, if we see any bmap calls here on a modified, data-journaled file,
2790 * take extra steps to flush any blocks which might be in the cache.
2791 */
Mingming Cao617ba132006-10-11 01:20:53 -07002792static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002793{
2794 struct inode *inode = mapping->host;
2795 journal_t *journal;
2796 int err;
2797
Tao Ma46c7f252012-12-10 14:04:52 -05002798 /*
2799 * We can get here for an inline file via the FIBMAP ioctl
2800 */
2801 if (ext4_has_inline_data(inode))
2802 return 0;
2803
Alex Tomas64769242008-07-11 19:27:31 -04002804 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2805 test_opt(inode->i_sb, DELALLOC)) {
2806 /*
2807 * With delalloc we want to sync the file
2808 * so that we can make sure we allocate
2809 * blocks for file
2810 */
2811 filemap_write_and_wait(mapping);
2812 }
2813
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002814 if (EXT4_JOURNAL(inode) &&
2815 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002816 /*
2817 * This is a REALLY heavyweight approach, but the use of
2818 * bmap on dirty files is expected to be extremely rare:
2819 * only if we run lilo or swapon on a freshly made file
2820 * do we expect this to happen.
2821 *
2822 * (bmap requires CAP_SYS_RAWIO so this does not
2823 * represent an unprivileged user DOS attack --- we'd be
2824 * in trouble if mortal users could trigger this path at
2825 * will.)
2826 *
Mingming Cao617ba132006-10-11 01:20:53 -07002827 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002828 * regular files. If somebody wants to bmap a directory
2829 * or symlink and gets confused because the buffer
2830 * hasn't yet been flushed to disk, they deserve
2831 * everything they get.
2832 */
2833
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002834 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002835 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002836 jbd2_journal_lock_updates(journal);
2837 err = jbd2_journal_flush(journal);
2838 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002839
2840 if (err)
2841 return 0;
2842 }
2843
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002844 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002845}
2846
Mingming Cao617ba132006-10-11 01:20:53 -07002847static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002848{
Tao Ma46c7f252012-12-10 14:04:52 -05002849 int ret = -EAGAIN;
2850 struct inode *inode = page->mapping->host;
2851
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002852 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05002853
2854 if (ext4_has_inline_data(inode))
2855 ret = ext4_readpage_inline(inode, page);
2856
2857 if (ret == -EAGAIN)
2858 return mpage_readpage(page, ext4_get_block);
2859
2860 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002861}
2862
2863static int
Mingming Cao617ba132006-10-11 01:20:53 -07002864ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002865 struct list_head *pages, unsigned nr_pages)
2866{
Tao Ma46c7f252012-12-10 14:04:52 -05002867 struct inode *inode = mapping->host;
2868
2869 /* If the file has inline data, no need to do readpages. */
2870 if (ext4_has_inline_data(inode))
2871 return 0;
2872
Mingming Cao617ba132006-10-11 01:20:53 -07002873 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002874}
2875
Mingming Cao617ba132006-10-11 01:20:53 -07002876static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002877{
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002878 trace_ext4_invalidatepage(page, offset);
2879
Jan Kara4520fb32012-12-25 13:28:54 -05002880 /* No journalling happens on data buffers when this function is used */
2881 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
2882
2883 block_invalidatepage(page, offset);
2884}
2885
Jan Kara53e87262012-12-25 13:29:52 -05002886static int __ext4_journalled_invalidatepage(struct page *page,
2887 unsigned long offset)
Jan Kara4520fb32012-12-25 13:28:54 -05002888{
2889 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2890
2891 trace_ext4_journalled_invalidatepage(page, offset);
2892
Jiaying Zhang744692d2010-03-04 16:14:02 -05002893 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002894 * If it's a full truncate we just forget about the pending dirtying
2895 */
2896 if (offset == 0)
2897 ClearPageChecked(page);
2898
Jan Kara53e87262012-12-25 13:29:52 -05002899 return jbd2_journal_invalidatepage(journal, page, offset);
2900}
2901
2902/* Wrapper for aops... */
2903static void ext4_journalled_invalidatepage(struct page *page,
2904 unsigned long offset)
2905{
2906 WARN_ON(__ext4_journalled_invalidatepage(page, offset) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002907}
2908
Mingming Cao617ba132006-10-11 01:20:53 -07002909static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002910{
Mingming Cao617ba132006-10-11 01:20:53 -07002911 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002912
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002913 trace_ext4_releasepage(page);
2914
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002915 WARN_ON(PageChecked(page));
2916 if (!page_has_buffers(page))
2917 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05002918 if (journal)
2919 return jbd2_journal_try_to_free_buffers(journal, page, wait);
2920 else
2921 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002922}
2923
2924/*
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002925 * ext4_get_block used when preparing for a DIO write or buffer write.
2926 * We allocate an uinitialized extent if blocks haven't been allocated.
2927 * The extent will be converted to initialized after the IO is complete.
2928 */
Tao Maf19d5872012-12-10 14:05:51 -05002929int ext4_get_block_write(struct inode *inode, sector_t iblock,
Mingming Cao4c0425f2009-09-28 15:48:41 -04002930 struct buffer_head *bh_result, int create)
2931{
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002932 ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002933 inode->i_ino, create);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002934 return _ext4_get_block(inode, iblock, bh_result,
2935 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002936}
2937
Zheng Liu729f52c2012-07-09 16:29:29 -04002938static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05002939 struct buffer_head *bh_result, int create)
Zheng Liu729f52c2012-07-09 16:29:29 -04002940{
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05002941 ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
2942 inode->i_ino, create);
2943 return _ext4_get_block(inode, iblock, bh_result,
2944 EXT4_GET_BLOCKS_NO_LOCK);
Zheng Liu729f52c2012-07-09 16:29:29 -04002945}
2946
Mingming Cao4c0425f2009-09-28 15:48:41 -04002947static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
Christoph Hellwig552ef8022010-07-27 11:56:06 -04002948 ssize_t size, void *private, int ret,
2949 bool is_async)
Mingming Cao4c0425f2009-09-28 15:48:41 -04002950{
Christoph Hellwig72c50522011-06-24 14:29:48 -04002951 struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002952 ext4_io_end_t *io_end = iocb->private;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002953
Mingming4b70df12009-11-03 14:44:54 -05002954 /* if not async direct IO or dio with 0 bytes write, just return */
2955 if (!io_end || !size)
Christoph Hellwig552ef8022010-07-27 11:56:06 -04002956 goto out;
Mingming4b70df12009-11-03 14:44:54 -05002957
Zheng Liu88635ca2011-12-28 19:00:25 -05002958 ext_debug("ext4_end_io_dio(): io_end 0x%p "
Joe Perchesace36ad2012-03-19 23:11:43 -04002959 "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002960 iocb->private, io_end->inode->i_ino, iocb, offset,
2961 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002962
Theodore Ts'ob5a7e972011-12-12 10:53:02 -05002963 iocb->private = NULL;
2964
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002965 /* if not aio dio with unwritten extents, just free io and return */
Theodore Ts'obd2d0212010-10-27 21:30:10 -04002966 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002967 ext4_free_io_end(io_end);
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002968out:
Jan Kara091e26d2013-01-29 22:48:17 -05002969 inode_dio_done(inode);
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002970 if (is_async)
2971 aio_complete(iocb, ret, 0);
2972 return;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002973 }
2974
Mingming Cao4c0425f2009-09-28 15:48:41 -04002975 io_end->offset = offset;
2976 io_end->size = size;
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002977 if (is_async) {
2978 io_end->iocb = iocb;
2979 io_end->result = ret;
2980 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04002981
Dmitry Monakhov28a535f2012-09-29 00:14:55 -04002982 ext4_add_complete_io(io_end);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002983}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002984
Mingming Cao4c0425f2009-09-28 15:48:41 -04002985/*
2986 * For ext4 extent files, ext4 will do direct-io write to holes,
2987 * preallocated extents, and those write extend the file, no need to
2988 * fall back to buffered IO.
2989 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002990 * For holes, we fallocate those blocks, mark them as uninitialized
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002991 * If those blocks were preallocated, we mark sure they are split, but
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002992 * still keep the range to write as uninitialized.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002993 *
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002994 * The unwritten extents will be converted to written when DIO is completed.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002995 * For async direct IO, since the IO may still pending when return, we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002996 * set up an end_io call back function, which will do the conversion
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002997 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002998 *
2999 * If the O_DIRECT write will extend the file then add this inode to the
3000 * orphan list. So recovery will truncate it back to the original size
3001 * if the machine crashes during the write.
3002 *
3003 */
3004static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
3005 const struct iovec *iov, loff_t offset,
3006 unsigned long nr_segs)
3007{
3008 struct file *file = iocb->ki_filp;
3009 struct inode *inode = file->f_mapping->host;
3010 ssize_t ret;
3011 size_t count = iov_length(iov, nr_segs);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003012 int overwrite = 0;
3013 get_block_t *get_block_func = NULL;
3014 int dio_flags = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003015 loff_t final_size = offset + count;
Zheng Liu729f52c2012-07-09 16:29:29 -04003016
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003017 /* Use the old path for reads and writes beyond i_size. */
3018 if (rw != WRITE || final_size > inode->i_size)
3019 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003020
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003021 BUG_ON(iocb->private == NULL);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003022
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003023 /* If we do a overwrite dio, i_mutex locking can be released */
3024 overwrite = *((int *)iocb->private);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003025
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003026 if (overwrite) {
3027 atomic_inc(&inode->i_dio_count);
3028 down_read(&EXT4_I(inode)->i_data_sem);
3029 mutex_unlock(&inode->i_mutex);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003030 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003031
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003032 /*
3033 * We could direct write to holes and fallocate.
3034 *
3035 * Allocated blocks to fill the hole are marked as
3036 * uninitialized to prevent parallel buffered read to expose
3037 * the stale data before DIO complete the data IO.
3038 *
3039 * As to previously fallocated extents, ext4 get_block will
3040 * just simply mark the buffer mapped but still keep the
3041 * extents uninitialized.
3042 *
3043 * For non AIO case, we will convert those unwritten extents
3044 * to written after return back from blockdev_direct_IO.
3045 *
3046 * For async DIO, the conversion needs to be deferred when the
3047 * IO is completed. The ext4 end_io callback function will be
3048 * called to take care of the conversion work. Here for async
3049 * case, we allocate an io_end structure to hook to the iocb.
3050 */
3051 iocb->private = NULL;
3052 ext4_inode_aio_set(inode, NULL);
3053 if (!is_sync_kiocb(iocb)) {
3054 ext4_io_end_t *io_end = ext4_init_io_end(inode, GFP_NOFS);
3055 if (!io_end) {
3056 ret = -ENOMEM;
3057 goto retake_lock;
3058 }
3059 io_end->flag |= EXT4_IO_END_DIRECT;
3060 iocb->private = io_end;
3061 /*
3062 * we save the io structure for current async direct
3063 * IO, so that later ext4_map_blocks() could flag the
3064 * io structure whether there is a unwritten extents
3065 * needs to be converted when IO is completed.
3066 */
3067 ext4_inode_aio_set(inode, io_end);
3068 }
3069
3070 if (overwrite) {
3071 get_block_func = ext4_get_block_write_nolock;
3072 } else {
3073 get_block_func = ext4_get_block_write;
3074 dio_flags = DIO_LOCKING;
3075 }
3076 ret = __blockdev_direct_IO(rw, iocb, inode,
3077 inode->i_sb->s_bdev, iov,
3078 offset, nr_segs,
3079 get_block_func,
3080 ext4_end_io_dio,
3081 NULL,
3082 dio_flags);
3083
3084 if (iocb->private)
3085 ext4_inode_aio_set(inode, NULL);
3086 /*
3087 * The io_end structure takes a reference to the inode, that
3088 * structure needs to be destroyed and the reference to the
3089 * inode need to be dropped, when IO is complete, even with 0
3090 * byte write, or failed.
3091 *
3092 * In the successful AIO DIO case, the io_end structure will
3093 * be destroyed and the reference to the inode will be dropped
3094 * after the end_io call back function is called.
3095 *
3096 * In the case there is 0 byte write, or error case, since VFS
3097 * direct IO won't invoke the end_io call back function, we
3098 * need to free the end_io structure here.
3099 */
3100 if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
3101 ext4_free_io_end(iocb->private);
3102 iocb->private = NULL;
3103 } else if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
3104 EXT4_STATE_DIO_UNWRITTEN)) {
3105 int err;
3106 /*
3107 * for non AIO case, since the IO is already
3108 * completed, we could do the conversion right here
3109 */
3110 err = ext4_convert_unwritten_extents(inode,
3111 offset, ret);
3112 if (err < 0)
3113 ret = err;
3114 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3115 }
3116
3117retake_lock:
3118 /* take i_mutex locking again if we do a ovewrite dio */
3119 if (overwrite) {
3120 inode_dio_done(inode);
3121 up_read(&EXT4_I(inode)->i_data_sem);
3122 mutex_lock(&inode->i_mutex);
3123 }
3124
3125 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003126}
3127
3128static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3129 const struct iovec *iov, loff_t offset,
3130 unsigned long nr_segs)
3131{
3132 struct file *file = iocb->ki_filp;
3133 struct inode *inode = file->f_mapping->host;
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003134 ssize_t ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003135
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003136 /*
3137 * If we are doing data journalling we don't support O_DIRECT
3138 */
3139 if (ext4_should_journal_data(inode))
3140 return 0;
3141
Tao Ma46c7f252012-12-10 14:04:52 -05003142 /* Let buffer I/O handle the inline data case. */
3143 if (ext4_has_inline_data(inode))
3144 return 0;
3145
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003146 trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003147 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003148 ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
3149 else
3150 ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3151 trace_ext4_direct_IO_exit(inode, offset,
3152 iov_length(iov, nr_segs), rw, ret);
3153 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003154}
3155
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003156/*
Mingming Cao617ba132006-10-11 01:20:53 -07003157 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003158 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3159 * much here because ->set_page_dirty is called under VFS locks. The page is
3160 * not necessarily locked.
3161 *
3162 * We cannot just dirty the page and leave attached buffers clean, because the
3163 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3164 * or jbddirty because all the journalling code will explode.
3165 *
3166 * So what we do is to mark the page "pending dirty" and next time writepage
3167 * is called, propagate that into the buffers appropriately.
3168 */
Mingming Cao617ba132006-10-11 01:20:53 -07003169static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003170{
3171 SetPageChecked(page);
3172 return __set_page_dirty_nobuffers(page);
3173}
3174
Mingming Cao617ba132006-10-11 01:20:53 -07003175static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003176 .readpage = ext4_readpage,
3177 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003178 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003179 .write_begin = ext4_write_begin,
3180 .write_end = ext4_ordered_write_end,
3181 .bmap = ext4_bmap,
3182 .invalidatepage = ext4_invalidatepage,
3183 .releasepage = ext4_releasepage,
3184 .direct_IO = ext4_direct_IO,
3185 .migratepage = buffer_migrate_page,
3186 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003187 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003188};
3189
Mingming Cao617ba132006-10-11 01:20:53 -07003190static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003191 .readpage = ext4_readpage,
3192 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003193 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003194 .write_begin = ext4_write_begin,
3195 .write_end = ext4_writeback_write_end,
3196 .bmap = ext4_bmap,
3197 .invalidatepage = ext4_invalidatepage,
3198 .releasepage = ext4_releasepage,
3199 .direct_IO = ext4_direct_IO,
3200 .migratepage = buffer_migrate_page,
3201 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003202 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003203};
3204
Mingming Cao617ba132006-10-11 01:20:53 -07003205static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003206 .readpage = ext4_readpage,
3207 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003208 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003209 .write_begin = ext4_write_begin,
3210 .write_end = ext4_journalled_write_end,
3211 .set_page_dirty = ext4_journalled_set_page_dirty,
3212 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003213 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003214 .releasepage = ext4_releasepage,
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003215 .direct_IO = ext4_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003216 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003217 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003218};
3219
Alex Tomas64769242008-07-11 19:27:31 -04003220static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003221 .readpage = ext4_readpage,
3222 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003223 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003224 .writepages = ext4_da_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003225 .write_begin = ext4_da_write_begin,
3226 .write_end = ext4_da_write_end,
3227 .bmap = ext4_bmap,
3228 .invalidatepage = ext4_da_invalidatepage,
3229 .releasepage = ext4_releasepage,
3230 .direct_IO = ext4_direct_IO,
3231 .migratepage = buffer_migrate_page,
3232 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003233 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003234};
3235
Mingming Cao617ba132006-10-11 01:20:53 -07003236void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003237{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003238 switch (ext4_inode_journal_mode(inode)) {
3239 case EXT4_INODE_ORDERED_DATA_MODE:
3240 if (test_opt(inode->i_sb, DELALLOC))
3241 inode->i_mapping->a_ops = &ext4_da_aops;
3242 else
3243 inode->i_mapping->a_ops = &ext4_ordered_aops;
3244 break;
3245 case EXT4_INODE_WRITEBACK_DATA_MODE:
3246 if (test_opt(inode->i_sb, DELALLOC))
3247 inode->i_mapping->a_ops = &ext4_da_aops;
3248 else
3249 inode->i_mapping->a_ops = &ext4_writeback_aops;
3250 break;
3251 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003252 inode->i_mapping->a_ops = &ext4_journalled_aops;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003253 break;
3254 default:
3255 BUG();
3256 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003257}
3258
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003259
3260/*
3261 * ext4_discard_partial_page_buffers()
3262 * Wrapper function for ext4_discard_partial_page_buffers_no_lock.
3263 * This function finds and locks the page containing the offset
3264 * "from" and passes it to ext4_discard_partial_page_buffers_no_lock.
3265 * Calling functions that already have the page locked should call
3266 * ext4_discard_partial_page_buffers_no_lock directly.
3267 */
3268int ext4_discard_partial_page_buffers(handle_t *handle,
3269 struct address_space *mapping, loff_t from,
3270 loff_t length, int flags)
3271{
3272 struct inode *inode = mapping->host;
3273 struct page *page;
3274 int err = 0;
3275
3276 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3277 mapping_gfp_mask(mapping) & ~__GFP_FS);
3278 if (!page)
Yongqiang Yang5129d052011-10-31 17:56:10 -04003279 return -ENOMEM;
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003280
3281 err = ext4_discard_partial_page_buffers_no_lock(handle, inode, page,
3282 from, length, flags);
3283
3284 unlock_page(page);
3285 page_cache_release(page);
3286 return err;
3287}
3288
3289/*
3290 * ext4_discard_partial_page_buffers_no_lock()
3291 * Zeros a page range of length 'length' starting from offset 'from'.
3292 * Buffer heads that correspond to the block aligned regions of the
3293 * zeroed range will be unmapped. Unblock aligned regions
3294 * will have the corresponding buffer head mapped if needed so that
3295 * that region of the page can be updated with the partial zero out.
3296 *
3297 * This function assumes that the page has already been locked. The
3298 * The range to be discarded must be contained with in the given page.
3299 * If the specified range exceeds the end of the page it will be shortened
3300 * to the end of the page that corresponds to 'from'. This function is
3301 * appropriate for updating a page and it buffer heads to be unmapped and
3302 * zeroed for blocks that have been either released, or are going to be
3303 * released.
3304 *
3305 * handle: The journal handle
3306 * inode: The files inode
3307 * page: A locked page that contains the offset "from"
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003308 * from: The starting byte offset (from the beginning of the file)
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003309 * to begin discarding
3310 * len: The length of bytes to discard
3311 * flags: Optional flags that may be used:
3312 *
3313 * EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED
3314 * Only zero the regions of the page whose buffer heads
3315 * have already been unmapped. This flag is appropriate
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003316 * for updating the contents of a page whose blocks may
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003317 * have already been released, and we only want to zero
3318 * out the regions that correspond to those released blocks.
3319 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003320 * Returns zero on success or negative on failure.
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003321 */
Eric Sandeen5f163cc2012-01-04 22:33:28 -05003322static int ext4_discard_partial_page_buffers_no_lock(handle_t *handle,
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003323 struct inode *inode, struct page *page, loff_t from,
3324 loff_t length, int flags)
3325{
3326 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3327 unsigned int offset = from & (PAGE_CACHE_SIZE-1);
3328 unsigned int blocksize, max, pos;
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003329 ext4_lblk_t iblock;
3330 struct buffer_head *bh;
3331 int err = 0;
3332
3333 blocksize = inode->i_sb->s_blocksize;
3334 max = PAGE_CACHE_SIZE - offset;
3335
3336 if (index != page->index)
3337 return -EINVAL;
3338
3339 /*
3340 * correct length if it does not fall between
3341 * 'from' and the end of the page
3342 */
3343 if (length > max || length < 0)
3344 length = max;
3345
3346 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3347
Yongqiang Yang093e6e32011-12-13 22:05:05 -05003348 if (!page_has_buffers(page))
3349 create_empty_buffers(page, blocksize, 0);
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003350
3351 /* Find the buffer that contains "offset" */
3352 bh = page_buffers(page);
3353 pos = blocksize;
3354 while (offset >= pos) {
3355 bh = bh->b_this_page;
3356 iblock++;
3357 pos += blocksize;
3358 }
3359
3360 pos = offset;
3361 while (pos < offset + length) {
Yongqiang Yange260daf2011-10-31 17:54:36 -04003362 unsigned int end_of_block, range_to_discard;
3363
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003364 err = 0;
3365
3366 /* The length of space left to zero and unmap */
3367 range_to_discard = offset + length - pos;
3368
3369 /* The length of space until the end of the block */
3370 end_of_block = blocksize - (pos & (blocksize-1));
3371
3372 /*
3373 * Do not unmap or zero past end of block
3374 * for this buffer head
3375 */
3376 if (range_to_discard > end_of_block)
3377 range_to_discard = end_of_block;
3378
3379
3380 /*
3381 * Skip this buffer head if we are only zeroing unampped
3382 * regions of the page
3383 */
3384 if (flags & EXT4_DISCARD_PARTIAL_PG_ZERO_UNMAPPED &&
3385 buffer_mapped(bh))
3386 goto next;
3387
3388 /* If the range is block aligned, unmap */
3389 if (range_to_discard == blocksize) {
3390 clear_buffer_dirty(bh);
3391 bh->b_bdev = NULL;
3392 clear_buffer_mapped(bh);
3393 clear_buffer_req(bh);
3394 clear_buffer_new(bh);
3395 clear_buffer_delay(bh);
3396 clear_buffer_unwritten(bh);
3397 clear_buffer_uptodate(bh);
3398 zero_user(page, pos, range_to_discard);
3399 BUFFER_TRACE(bh, "Buffer discarded");
3400 goto next;
3401 }
3402
3403 /*
3404 * If this block is not completely contained in the range
3405 * to be discarded, then it is not going to be released. Because
3406 * we need to keep this block, we need to make sure this part
3407 * of the page is uptodate before we modify it by writeing
3408 * partial zeros on it.
3409 */
3410 if (!buffer_mapped(bh)) {
3411 /*
3412 * Buffer head must be mapped before we can read
3413 * from the block
3414 */
3415 BUFFER_TRACE(bh, "unmapped");
3416 ext4_get_block(inode, iblock, bh, 0);
3417 /* unmapped? It's a hole - nothing to do */
3418 if (!buffer_mapped(bh)) {
3419 BUFFER_TRACE(bh, "still unmapped");
3420 goto next;
3421 }
3422 }
3423
3424 /* Ok, it's mapped. Make sure it's up-to-date */
3425 if (PageUptodate(page))
3426 set_buffer_uptodate(bh);
3427
3428 if (!buffer_uptodate(bh)) {
3429 err = -EIO;
3430 ll_rw_block(READ, 1, &bh);
3431 wait_on_buffer(bh);
3432 /* Uhhuh. Read error. Complain and punt.*/
3433 if (!buffer_uptodate(bh))
3434 goto next;
3435 }
3436
3437 if (ext4_should_journal_data(inode)) {
3438 BUFFER_TRACE(bh, "get write access");
3439 err = ext4_journal_get_write_access(handle, bh);
3440 if (err)
3441 goto next;
3442 }
3443
3444 zero_user(page, pos, range_to_discard);
3445
3446 err = 0;
3447 if (ext4_should_journal_data(inode)) {
3448 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'odecbd912011-09-06 02:37:06 -04003449 } else
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003450 mark_buffer_dirty(bh);
Allison Henderson4e96b2d2011-09-03 11:51:09 -04003451
3452 BUFFER_TRACE(bh, "Partial buffer zeroed");
3453next:
3454 bh = bh->b_this_page;
3455 iblock++;
3456 pos += range_to_discard;
3457 }
3458
3459 return err;
3460}
3461
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003462int ext4_can_truncate(struct inode *inode)
3463{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003464 if (S_ISREG(inode->i_mode))
3465 return 1;
3466 if (S_ISDIR(inode->i_mode))
3467 return 1;
3468 if (S_ISLNK(inode->i_mode))
3469 return !ext4_inode_is_fast_symlink(inode);
3470 return 0;
3471}
3472
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003473/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003474 * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3475 * associated with the given offset and length
3476 *
3477 * @inode: File inode
3478 * @offset: The offset where the hole will begin
3479 * @len: The length of the hole
3480 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003481 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003482 */
3483
3484int ext4_punch_hole(struct file *file, loff_t offset, loff_t length)
3485{
3486 struct inode *inode = file->f_path.dentry->d_inode;
3487 if (!S_ISREG(inode->i_mode))
Allison Henderson73355192012-03-21 22:23:31 -04003488 return -EOPNOTSUPP;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003489
Zheng Liu8bad6fc2013-01-28 09:21:37 -05003490 if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3491 return ext4_ind_punch_hole(file, offset, length);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003492
Theodore Ts'obab08ab2011-09-09 18:36:51 -04003493 if (EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) {
3494 /* TODO: Add support for bigalloc file systems */
Allison Henderson73355192012-03-21 22:23:31 -04003495 return -EOPNOTSUPP;
Theodore Ts'obab08ab2011-09-09 18:36:51 -04003496 }
3497
Zheng Liuaaddea82013-01-16 20:21:26 -05003498 trace_ext4_punch_hole(inode, offset, length);
3499
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003500 return ext4_ext_punch_hole(file, offset, length);
3501}
3502
3503/*
Mingming Cao617ba132006-10-11 01:20:53 -07003504 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003505 *
Mingming Cao617ba132006-10-11 01:20:53 -07003506 * We block out ext4_get_block() block instantiations across the entire
3507 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003508 * simultaneously on behalf of the same inode.
3509 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003510 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003511 * is one core, guiding principle: the file's tree must always be consistent on
3512 * disk. We must be able to restart the truncate after a crash.
3513 *
3514 * The file's tree may be transiently inconsistent in memory (although it
3515 * probably isn't), but whenever we close off and commit a journal transaction,
3516 * the contents of (the filesystem + the journal) must be consistent and
3517 * restartable. It's pretty simple, really: bottom up, right to left (although
3518 * left-to-right works OK too).
3519 *
3520 * Note that at recovery time, journal replay occurs *before* the restart of
3521 * truncate against the orphan inode list.
3522 *
3523 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003524 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003525 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003526 * ext4_truncate() to have another go. So there will be instantiated blocks
3527 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003528 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003529 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003530 */
Mingming Cao617ba132006-10-11 01:20:53 -07003531void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003532{
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003533 trace_ext4_truncate_enter(inode);
3534
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003535 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003536 return;
3537
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003538 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003539
Theodore Ts'o5534fb52009-09-17 09:34:16 -04003540 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003541 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05003542
Tao Maaef1c852012-12-10 14:06:02 -05003543 if (ext4_has_inline_data(inode)) {
3544 int has_inline = 1;
3545
3546 ext4_inline_data_truncate(inode, &has_inline);
3547 if (has_inline)
3548 return;
3549 }
3550
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003551 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Jan Karacf108bc2008-07-11 19:27:31 -04003552 ext4_ext_truncate(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003553 else
3554 ext4_ind_truncate(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07003555
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003556 trace_ext4_truncate_exit(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557}
3558
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003559/*
Mingming Cao617ba132006-10-11 01:20:53 -07003560 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003561 * underlying buffer_head on success. If 'in_mem' is true, we have all
3562 * data in memory that is needed to recreate the on-disk version of this
3563 * inode.
3564 */
Mingming Cao617ba132006-10-11 01:20:53 -07003565static int __ext4_get_inode_loc(struct inode *inode,
3566 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003567{
Theodore Ts'o240799c2008-10-09 23:53:47 -04003568 struct ext4_group_desc *gdp;
3569 struct buffer_head *bh;
3570 struct super_block *sb = inode->i_sb;
3571 ext4_fsblk_t block;
3572 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003573
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003574 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003575 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003576 return -EIO;
3577
Theodore Ts'o240799c2008-10-09 23:53:47 -04003578 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3579 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3580 if (!gdp)
3581 return -EIO;
3582
3583 /*
3584 * Figure out the offset within the block group inode table
3585 */
Tao Ma00d09882011-05-09 10:26:41 -04003586 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003587 inode_offset = ((inode->i_ino - 1) %
3588 EXT4_INODES_PER_GROUP(sb));
3589 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3590 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3591
3592 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05003593 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05003594 return -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003595 if (!buffer_uptodate(bh)) {
3596 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04003597
3598 /*
3599 * If the buffer has the write error flag, we have failed
3600 * to write out another inode in the same block. In this
3601 * case, we don't have to read the block because we may
3602 * read the old inode data successfully.
3603 */
3604 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3605 set_buffer_uptodate(bh);
3606
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003607 if (buffer_uptodate(bh)) {
3608 /* someone brought it uptodate while we waited */
3609 unlock_buffer(bh);
3610 goto has_buffer;
3611 }
3612
3613 /*
3614 * If we have all information of the inode in memory and this
3615 * is the only valid inode in the block, we need not read the
3616 * block.
3617 */
3618 if (in_mem) {
3619 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003620 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003621
Theodore Ts'o240799c2008-10-09 23:53:47 -04003622 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003623
3624 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003625 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05003626 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003627 goto make_io;
3628
3629 /*
3630 * If the inode bitmap isn't in cache then the
3631 * optimisation may end up performing two reads instead
3632 * of one, so skip it.
3633 */
3634 if (!buffer_uptodate(bitmap_bh)) {
3635 brelse(bitmap_bh);
3636 goto make_io;
3637 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04003638 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003639 if (i == inode_offset)
3640 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003641 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003642 break;
3643 }
3644 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003645 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003646 /* all other inodes are free, so skip I/O */
3647 memset(bh->b_data, 0, bh->b_size);
3648 set_buffer_uptodate(bh);
3649 unlock_buffer(bh);
3650 goto has_buffer;
3651 }
3652 }
3653
3654make_io:
3655 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04003656 * If we need to do any I/O, try to pre-readahead extra
3657 * blocks from the inode table.
3658 */
3659 if (EXT4_SB(sb)->s_inode_readahead_blks) {
3660 ext4_fsblk_t b, end, table;
3661 unsigned num;
3662
3663 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003664 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003665 b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
3666 if (table > b)
3667 b = table;
3668 end = b + EXT4_SB(sb)->s_inode_readahead_blks;
3669 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003670 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05003671 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003672 table += num / inodes_per_block;
3673 if (end > table)
3674 end = table;
3675 while (b <= end)
3676 sb_breadahead(sb, b++);
3677 }
3678
3679 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003680 * There are other valid inodes in the buffer, this inode
3681 * has in-inode xattrs, or we don't have this inode in memory.
3682 * Read the block from disk.
3683 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003684 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003685 get_bh(bh);
3686 bh->b_end_io = end_buffer_read_sync;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003687 submit_bh(READ | REQ_META | REQ_PRIO, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003688 wait_on_buffer(bh);
3689 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003690 EXT4_ERROR_INODE_BLOCK(inode, block,
3691 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003692 brelse(bh);
3693 return -EIO;
3694 }
3695 }
3696has_buffer:
3697 iloc->bh = bh;
3698 return 0;
3699}
3700
Mingming Cao617ba132006-10-11 01:20:53 -07003701int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003702{
3703 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003704 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003705 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003706}
3707
Mingming Cao617ba132006-10-11 01:20:53 -07003708void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003709{
Mingming Cao617ba132006-10-11 01:20:53 -07003710 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003711
3712 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07003713 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003714 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003715 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003716 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003717 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003718 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003719 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003720 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003721 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003722 inode->i_flags |= S_DIRSYNC;
3723}
3724
Jan Karaff9ddf72007-07-18 09:24:20 -04003725/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3726void ext4_get_inode_flags(struct ext4_inode_info *ei)
3727{
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003728 unsigned int vfs_fl;
3729 unsigned long old_fl, new_fl;
Jan Karaff9ddf72007-07-18 09:24:20 -04003730
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003731 do {
3732 vfs_fl = ei->vfs_inode.i_flags;
3733 old_fl = ei->i_flags;
3734 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3735 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
3736 EXT4_DIRSYNC_FL);
3737 if (vfs_fl & S_SYNC)
3738 new_fl |= EXT4_SYNC_FL;
3739 if (vfs_fl & S_APPEND)
3740 new_fl |= EXT4_APPEND_FL;
3741 if (vfs_fl & S_IMMUTABLE)
3742 new_fl |= EXT4_IMMUTABLE_FL;
3743 if (vfs_fl & S_NOATIME)
3744 new_fl |= EXT4_NOATIME_FL;
3745 if (vfs_fl & S_DIRSYNC)
3746 new_fl |= EXT4_DIRSYNC_FL;
3747 } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
Jan Karaff9ddf72007-07-18 09:24:20 -04003748}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003749
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003750static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003751 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003752{
3753 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003754 struct inode *inode = &(ei->vfs_inode);
3755 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003756
3757 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3758 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3759 /* we are using combined 48 bit field */
3760 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3761 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04003762 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003763 /* i_blocks represent file system block size */
3764 return i_blocks << (inode->i_blkbits - 9);
3765 } else {
3766 return i_blocks;
3767 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003768 } else {
3769 return le32_to_cpu(raw_inode->i_blocks_lo);
3770 }
3771}
Jan Karaff9ddf72007-07-18 09:24:20 -04003772
Tao Ma152a7b02012-12-02 11:13:24 -05003773static inline void ext4_iget_extra_inode(struct inode *inode,
3774 struct ext4_inode *raw_inode,
3775 struct ext4_inode_info *ei)
3776{
3777 __le32 *magic = (void *)raw_inode +
3778 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Tao Ma67cf5b02012-12-10 14:04:46 -05003779 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05003780 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Tao Ma67cf5b02012-12-10 14:04:46 -05003781 ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05003782 } else
3783 EXT4_I(inode)->i_inline_off = 0;
Tao Ma152a7b02012-12-02 11:13:24 -05003784}
3785
David Howells1d1fe1e2008-02-07 00:15:37 -08003786struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003787{
Mingming Cao617ba132006-10-11 01:20:53 -07003788 struct ext4_iloc iloc;
3789 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08003790 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08003791 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05003792 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08003793 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003794 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003795 uid_t i_uid;
3796 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003797
David Howells1d1fe1e2008-02-07 00:15:37 -08003798 inode = iget_locked(sb, ino);
3799 if (!inode)
3800 return ERR_PTR(-ENOMEM);
3801 if (!(inode->i_state & I_NEW))
3802 return inode;
3803
3804 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05003805 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003806
David Howells1d1fe1e2008-02-07 00:15:37 -08003807 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3808 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003809 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07003810 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04003811
3812 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3813 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
3814 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
3815 EXT4_INODE_SIZE(inode->i_sb)) {
3816 EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
3817 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
3818 EXT4_INODE_SIZE(inode->i_sb));
3819 ret = -EIO;
3820 goto bad_inode;
3821 }
3822 } else
3823 ei->i_extra_isize = 0;
3824
3825 /* Precompute checksum seed for inode metadata */
3826 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3827 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
3828 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3829 __u32 csum;
3830 __le32 inum = cpu_to_le32(inode->i_ino);
3831 __le32 gen = raw_inode->i_generation;
3832 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
3833 sizeof(inum));
3834 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
3835 sizeof(gen));
3836 }
3837
3838 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
3839 EXT4_ERROR_INODE(inode, "checksum invalid");
3840 ret = -EIO;
3841 goto bad_inode;
3842 }
3843
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003844 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003845 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3846 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003847 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003848 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3849 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003850 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003851 i_uid_write(inode, i_uid);
3852 i_gid_write(inode, i_gid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003853 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003854
Theodore Ts'o353eb832011-01-10 12:18:25 -05003855 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05003856 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003857 ei->i_dir_start_lookup = 0;
3858 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3859 /* We now have enough fields to check if the inode was active or not.
3860 * This is needed because nfsd might try to access dead inodes
3861 * the test is that same one that e2fsck uses
3862 * NeilBrown 1999oct15
3863 */
3864 if (inode->i_nlink == 0) {
3865 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07003866 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003867 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08003868 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003869 goto bad_inode;
3870 }
3871 /* The only unlinked inodes we let through here have
3872 * valid i_mode and are being read by the orphan
3873 * recovery code: that's fine, we're about to complete
3874 * the process of deleting those. */
3875 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003876 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003877 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05003878 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04003879 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07003880 ei->i_file_acl |=
3881 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003882 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003883 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03003884#ifdef CONFIG_QUOTA
3885 ei->i_reserved_quota = 0;
3886#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003887 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3888 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04003889 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003890 /*
3891 * NOTE! The in-memory inode i_data array is in little-endian order
3892 * even on big-endian machines: we do NOT byteswap the block numbers!
3893 */
Mingming Cao617ba132006-10-11 01:20:53 -07003894 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003895 ei->i_data[block] = raw_inode->i_block[block];
3896 INIT_LIST_HEAD(&ei->i_orphan);
3897
Jan Karab436b9b2009-12-08 23:51:10 -05003898 /*
3899 * Set transaction id's of transactions that have to be committed
3900 * to finish f[data]sync. We set them to currently running transaction
3901 * as we cannot be sure that the inode or some of its metadata isn't
3902 * part of the transaction - the inode could have been reclaimed and
3903 * now it is reread from disk.
3904 */
3905 if (journal) {
3906 transaction_t *transaction;
3907 tid_t tid;
3908
Theodore Ts'oa931da62010-08-03 21:35:12 -04003909 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05003910 if (journal->j_running_transaction)
3911 transaction = journal->j_running_transaction;
3912 else
3913 transaction = journal->j_committing_transaction;
3914 if (transaction)
3915 tid = transaction->t_tid;
3916 else
3917 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04003918 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05003919 ei->i_sync_tid = tid;
3920 ei->i_datasync_tid = tid;
3921 }
3922
Eric Sandeen0040d982008-02-05 22:36:43 -05003923 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003924 if (ei->i_extra_isize == 0) {
3925 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07003926 ei->i_extra_isize = sizeof(struct ext4_inode) -
3927 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003928 } else {
Tao Ma152a7b02012-12-02 11:13:24 -05003929 ext4_iget_extra_inode(inode, raw_inode, ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003930 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04003931 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003932
Kalpak Shahef7f3832007-07-18 09:15:20 -04003933 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
3934 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
3935 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
3936 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
3937
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003938 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
3939 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3940 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3941 inode->i_version |=
3942 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
3943 }
3944
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04003945 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04003946 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05003947 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04003948 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
3949 ei->i_file_acl);
Theodore Ts'o485c26e2009-04-24 13:43:20 -04003950 ret = -EIO;
3951 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05003952 } else if (!ext4_has_inline_data(inode)) {
3953 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
3954 if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
3955 (S_ISLNK(inode->i_mode) &&
3956 !ext4_inode_is_fast_symlink(inode))))
3957 /* Validate extent which is part of inode */
3958 ret = ext4_ext_check_inode(inode);
3959 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
3960 (S_ISLNK(inode->i_mode) &&
3961 !ext4_inode_is_fast_symlink(inode))) {
3962 /* Validate block references which are part of inode */
3963 ret = ext4_ind_check_inode(inode);
3964 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04003965 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05003966 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003967 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04003968
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003969 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003970 inode->i_op = &ext4_file_inode_operations;
3971 inode->i_fop = &ext4_file_operations;
3972 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003973 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003974 inode->i_op = &ext4_dir_inode_operations;
3975 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003976 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00003977 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003978 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00003979 nd_terminate_link(ei->i_data, inode->i_size,
3980 sizeof(ei->i_data) - 1);
3981 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003982 inode->i_op = &ext4_symlink_inode_operations;
3983 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003984 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003985 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
3986 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003987 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003988 if (raw_inode->i_block[0])
3989 init_special_inode(inode, inode->i_mode,
3990 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
3991 else
3992 init_special_inode(inode, inode->i_mode,
3993 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003994 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003995 ret = -EIO;
Theodore Ts'o24676da2010-05-16 21:00:00 -04003996 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003997 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003998 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003999 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004000 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004001 unlock_new_inode(inode);
4002 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004003
4004bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004005 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004006 iget_failed(inode);
4007 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004008}
4009
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004010static int ext4_inode_blocks_set(handle_t *handle,
4011 struct ext4_inode *raw_inode,
4012 struct ext4_inode_info *ei)
4013{
4014 struct inode *inode = &(ei->vfs_inode);
4015 u64 i_blocks = inode->i_blocks;
4016 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004017
4018 if (i_blocks <= ~0U) {
4019 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004020 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004021 * as multiple of 512 bytes
4022 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004023 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004024 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004025 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004026 return 0;
4027 }
4028 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4029 return -EFBIG;
4030
4031 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004032 /*
4033 * i_blocks can be represented in a 48 bit variable
4034 * as multiple of 512 bytes
4035 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004036 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004037 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004038 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004039 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004040 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004041 /* i_block is stored in file system block size */
4042 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4043 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4044 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004045 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004046 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004047}
4048
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004049/*
4050 * Post the struct inode info into an on-disk inode location in the
4051 * buffer-cache. This gobbles the caller's reference to the
4052 * buffer_head in the inode location struct.
4053 *
4054 * The caller must have write access to iloc->bh.
4055 */
Mingming Cao617ba132006-10-11 01:20:53 -07004056static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004057 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004058 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004059{
Mingming Cao617ba132006-10-11 01:20:53 -07004060 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4061 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004062 struct buffer_head *bh = iloc->bh;
4063 int err = 0, rc, block;
Jan Karab71fc072012-09-26 21:52:20 -04004064 int need_datasync = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004065 uid_t i_uid;
4066 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004067
4068 /* For fields not not tracking in the in-memory inode,
4069 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004070 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07004071 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004072
Jan Karaff9ddf72007-07-18 09:24:20 -04004073 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004074 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004075 i_uid = i_uid_read(inode);
4076 i_gid = i_gid_read(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004077 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004078 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4079 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004080/*
4081 * Fix up interoperability with old kernels. Otherwise, old inodes get
4082 * re-used with the upper 16 bits of the uid/gid intact
4083 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004084 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004085 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004086 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004087 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004088 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004089 } else {
4090 raw_inode->i_uid_high = 0;
4091 raw_inode->i_gid_high = 0;
4092 }
4093 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004094 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4095 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004096 raw_inode->i_uid_high = 0;
4097 raw_inode->i_gid_high = 0;
4098 }
4099 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004100
4101 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4102 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4103 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4104 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4105
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004106 if (ext4_inode_blocks_set(handle, raw_inode, ei))
4107 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004108 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05004109 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07004110 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
4111 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004112 raw_inode->i_file_acl_high =
4113 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004114 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Jan Karab71fc072012-09-26 21:52:20 -04004115 if (ei->i_disksize != ext4_isize(raw_inode)) {
4116 ext4_isize_set(raw_inode, ei->i_disksize);
4117 need_datasync = 1;
4118 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004119 if (ei->i_disksize > 0x7fffffffULL) {
4120 struct super_block *sb = inode->i_sb;
4121 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4122 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4123 EXT4_SB(sb)->s_es->s_rev_level ==
4124 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
4125 /* If this is the first large file
4126 * created, add a flag to the superblock.
4127 */
4128 err = ext4_journal_get_write_access(handle,
4129 EXT4_SB(sb)->s_sbh);
4130 if (err)
4131 goto out_brelse;
4132 ext4_update_dynamic_rev(sb);
4133 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07004134 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Frank Mayhar03901312009-01-07 00:06:22 -05004135 ext4_handle_sync(handle);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04004136 err = ext4_handle_dirty_super(handle, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004137 }
4138 }
4139 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4140 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4141 if (old_valid_dev(inode->i_rdev)) {
4142 raw_inode->i_block[0] =
4143 cpu_to_le32(old_encode_dev(inode->i_rdev));
4144 raw_inode->i_block[1] = 0;
4145 } else {
4146 raw_inode->i_block[0] = 0;
4147 raw_inode->i_block[1] =
4148 cpu_to_le32(new_encode_dev(inode->i_rdev));
4149 raw_inode->i_block[2] = 0;
4150 }
Tao Maf19d5872012-12-10 14:05:51 -05004151 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004152 for (block = 0; block < EXT4_N_BLOCKS; block++)
4153 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05004154 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004155
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004156 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
4157 if (ei->i_extra_isize) {
4158 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4159 raw_inode->i_version_hi =
4160 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004161 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004162 }
4163
Darrick J. Wong814525f2012-04-29 18:31:10 -04004164 ext4_inode_csum_set(inode, raw_inode, ei);
4165
Frank Mayhar830156c2009-09-29 10:07:47 -04004166 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004167 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04004168 if (!err)
4169 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004170 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004171
Jan Karab71fc072012-09-26 21:52:20 -04004172 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004173out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004174 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004175 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004176 return err;
4177}
4178
4179/*
Mingming Cao617ba132006-10-11 01:20:53 -07004180 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004181 *
4182 * We are called from a few places:
4183 *
4184 * - Within generic_file_write() for O_SYNC files.
4185 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004186 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004187 *
4188 * - Within sys_sync(), kupdate and such.
4189 * We wait on commit, if tol to.
4190 *
4191 * - Within prune_icache() (PF_MEMALLOC == true)
4192 * Here we simply return. We can't afford to block kswapd on the
4193 * journal commit.
4194 *
4195 * In all cases it is actually safe for us to return without doing anything,
4196 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07004197 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004198 * knfsd.
4199 *
4200 * Note that we are absolutely dependent upon all inode dirtiers doing the
4201 * right thing: they *must* call mark_inode_dirty() after dirtying info in
4202 * which we are interested.
4203 *
4204 * It would be a bug for them to not do this. The code:
4205 *
4206 * mark_inode_dirty(inode)
4207 * stuff();
4208 * inode->i_size = expr;
4209 *
4210 * is in error because a kswapd-driven write_inode() could occur while
4211 * `stuff()' is running, and the new i_size will be lost. Plus the inode
4212 * will no longer be on the superblock's dirty inode list.
4213 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004214int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004215{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004216 int err;
4217
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004218 if (current->flags & PF_MEMALLOC)
4219 return 0;
4220
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004221 if (EXT4_SB(inode->i_sb)->s_journal) {
4222 if (ext4_journal_current_handle()) {
4223 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4224 dump_stack();
4225 return -EIO;
4226 }
4227
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004228 if (wbc->sync_mode != WB_SYNC_ALL)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004229 return 0;
4230
4231 err = ext4_force_commit(inode->i_sb);
4232 } else {
4233 struct ext4_iloc iloc;
4234
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04004235 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004236 if (err)
4237 return err;
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004238 if (wbc->sync_mode == WB_SYNC_ALL)
Frank Mayhar830156c2009-09-29 10:07:47 -04004239 sync_dirty_buffer(iloc.bh);
4240 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004241 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4242 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04004243 err = -EIO;
4244 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004245 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004246 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004247 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004248}
4249
4250/*
Jan Kara53e87262012-12-25 13:29:52 -05004251 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
4252 * buffers that are attached to a page stradding i_size and are undergoing
4253 * commit. In that case we have to wait for commit to finish and try again.
4254 */
4255static void ext4_wait_for_tail_page_commit(struct inode *inode)
4256{
4257 struct page *page;
4258 unsigned offset;
4259 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
4260 tid_t commit_tid = 0;
4261 int ret;
4262
4263 offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
4264 /*
4265 * All buffers in the last page remain valid? Then there's nothing to
4266 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
4267 * blocksize case
4268 */
4269 if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
4270 return;
4271 while (1) {
4272 page = find_lock_page(inode->i_mapping,
4273 inode->i_size >> PAGE_CACHE_SHIFT);
4274 if (!page)
4275 return;
4276 ret = __ext4_journalled_invalidatepage(page, offset);
4277 unlock_page(page);
4278 page_cache_release(page);
4279 if (ret != -EBUSY)
4280 return;
4281 commit_tid = 0;
4282 read_lock(&journal->j_state_lock);
4283 if (journal->j_committing_transaction)
4284 commit_tid = journal->j_committing_transaction->t_tid;
4285 read_unlock(&journal->j_state_lock);
4286 if (commit_tid)
4287 jbd2_log_wait_commit(journal, commit_tid);
4288 }
4289}
4290
4291/*
Mingming Cao617ba132006-10-11 01:20:53 -07004292 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004293 *
4294 * Called from notify_change.
4295 *
4296 * We want to trap VFS attempts to truncate the file as soon as
4297 * possible. In particular, we want to make sure that when the VFS
4298 * shrinks i_size, we put the inode on the orphan list and modify
4299 * i_disksize immediately, so that during the subsequent flushing of
4300 * dirty pages and freeing of disk blocks, we can guarantee that any
4301 * commit will leave the blocks being flushed in an unused state on
4302 * disk. (On recovery, the inode will get truncated and the blocks will
4303 * be freed, so we have a strong guarantee that no future commit will
4304 * leave these blocks visible to the user.)
4305 *
Jan Kara678aaf42008-07-11 19:27:31 -04004306 * Another thing we have to assure is that if we are in ordered mode
4307 * and inode is still attached to the committing transaction, we must
4308 * we start writeout of all the dirty pages which are being truncated.
4309 * This way we are sure that all the data written in the previous
4310 * transaction are already on disk (truncate waits for pages under
4311 * writeback).
4312 *
4313 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004314 */
Mingming Cao617ba132006-10-11 01:20:53 -07004315int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004316{
4317 struct inode *inode = dentry->d_inode;
4318 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004319 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004320 const unsigned int ia_valid = attr->ia_valid;
4321
4322 error = inode_change_ok(inode, attr);
4323 if (error)
4324 return error;
4325
Dmitry Monakhov12755622010-04-08 22:04:20 +04004326 if (is_quota_modification(inode, attr))
Christoph Hellwig871a2932010-03-03 09:05:07 -05004327 dquot_initialize(inode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004328 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
4329 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004330 handle_t *handle;
4331
4332 /* (user+group)*(old+new) structure, inode write (sb,
4333 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05004334 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
4335 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4336 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004337 if (IS_ERR(handle)) {
4338 error = PTR_ERR(handle);
4339 goto err_out;
4340 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05004341 error = dquot_transfer(inode, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004342 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07004343 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004344 return error;
4345 }
4346 /* Update corresponding info in inode so that everything is in
4347 * one transaction */
4348 if (attr->ia_valid & ATTR_UID)
4349 inode->i_uid = attr->ia_uid;
4350 if (attr->ia_valid & ATTR_GID)
4351 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07004352 error = ext4_mark_inode_dirty(handle, inode);
4353 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004354 }
4355
Eric Sandeene2b46572008-01-28 23:58:27 -05004356 if (attr->ia_valid & ATTR_SIZE) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -04004357
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004358 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05004359 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4360
Theodore Ts'o0c095c72010-07-27 11:56:06 -04004361 if (attr->ia_size > sbi->s_bitmap_maxbytes)
4362 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05004363 }
4364 }
4365
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004366 if (S_ISREG(inode->i_mode) &&
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004367 attr->ia_valid & ATTR_SIZE &&
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004368 (attr->ia_size < inode->i_size)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004369 handle_t *handle;
4370
Theodore Ts'o9924a922013-02-08 21:59:22 -05004371 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004372 if (IS_ERR(handle)) {
4373 error = PTR_ERR(handle);
4374 goto err_out;
4375 }
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004376 if (ext4_handle_valid(handle)) {
4377 error = ext4_orphan_add(handle, inode);
4378 orphan = 1;
4379 }
Mingming Cao617ba132006-10-11 01:20:53 -07004380 EXT4_I(inode)->i_disksize = attr->ia_size;
4381 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004382 if (!error)
4383 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07004384 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04004385
4386 if (ext4_should_order_data(inode)) {
4387 error = ext4_begin_ordered_truncate(inode,
4388 attr->ia_size);
4389 if (error) {
4390 /* Do as much error cleanup as possible */
Theodore Ts'o9924a922013-02-08 21:59:22 -05004391 handle = ext4_journal_start(inode,
4392 EXT4_HT_INODE, 3);
Jan Kara678aaf42008-07-11 19:27:31 -04004393 if (IS_ERR(handle)) {
4394 ext4_orphan_del(NULL, inode);
4395 goto err_out;
4396 }
4397 ext4_orphan_del(handle, inode);
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004398 orphan = 0;
Jan Kara678aaf42008-07-11 19:27:31 -04004399 ext4_journal_stop(handle);
4400 goto err_out;
4401 }
4402 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004403 }
4404
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004405 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara53e87262012-12-25 13:29:52 -05004406 if (attr->ia_size != inode->i_size) {
4407 loff_t oldsize = inode->i_size;
4408
4409 i_size_write(inode, attr->ia_size);
4410 /*
4411 * Blocks are going to be removed from the inode. Wait
4412 * for dio in flight. Temporarily disable
4413 * dioread_nolock to prevent livelock.
4414 */
Dmitry Monakhov1b650072012-09-29 00:56:15 -04004415 if (orphan) {
Jan Kara53e87262012-12-25 13:29:52 -05004416 if (!ext4_should_journal_data(inode)) {
4417 ext4_inode_block_unlocked_dio(inode);
4418 inode_dio_wait(inode);
4419 ext4_inode_resume_unlocked_dio(inode);
4420 } else
4421 ext4_wait_for_tail_page_commit(inode);
Dmitry Monakhov1b650072012-09-29 00:56:15 -04004422 }
Jan Kara53e87262012-12-25 13:29:52 -05004423 /*
4424 * Truncate pagecache after we've waited for commit
4425 * in data=journal mode to make pages freeable.
4426 */
4427 truncate_pagecache(inode, oldsize, inode->i_size);
Dmitry Monakhov1c9114f2012-09-29 00:55:23 -04004428 }
Lukas Czernerafcff5d2012-03-21 21:47:55 -04004429 ext4_truncate(inode);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004430 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004431
Christoph Hellwig10257742010-06-04 11:30:02 +02004432 if (!rc) {
4433 setattr_copy(inode, attr);
4434 mark_inode_dirty(inode);
4435 }
4436
4437 /*
4438 * If the call to ext4_truncate failed to get a transaction handle at
4439 * all, we need to clean up the in-core orphan list manually.
4440 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004441 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004442 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004443
4444 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07004445 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004446
4447err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07004448 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004449 if (!error)
4450 error = rc;
4451 return error;
4452}
4453
Mingming Cao3e3398a2008-07-11 19:27:31 -04004454int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
4455 struct kstat *stat)
4456{
4457 struct inode *inode;
4458 unsigned long delalloc_blocks;
4459
4460 inode = dentry->d_inode;
4461 generic_fillattr(inode, stat);
4462
4463 /*
4464 * We can't update i_blocks if the block allocation is delayed
4465 * otherwise in the case of system crash before the real block
4466 * allocation is done, we will have i_blocks inconsistent with
4467 * on-disk file blocks.
4468 * We always keep i_blocks updated together with real
4469 * allocation. But to not confuse with user, stat
4470 * will return the blocks that include the delayed allocation
4471 * blocks for this file.
4472 */
Tao Ma96607552012-05-31 22:54:16 -04004473 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
4474 EXT4_I(inode)->i_reserved_data_blocks);
Mingming Cao3e3398a2008-07-11 19:27:31 -04004475
4476 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
4477 return 0;
4478}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004479
Mingming Caoa02908f2008-08-19 22:16:07 -04004480static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
4481{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004482 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Amir Goldstein8bb2b242011-06-27 17:10:28 -04004483 return ext4_ind_trans_blocks(inode, nrblocks, chunk);
Theodore Ts'oac51d832008-11-06 16:49:36 -05004484 return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
Mingming Caoa02908f2008-08-19 22:16:07 -04004485}
Theodore Ts'oac51d832008-11-06 16:49:36 -05004486
Mingming Caoa02908f2008-08-19 22:16:07 -04004487/*
4488 * Account for index blocks, block groups bitmaps and block group
4489 * descriptor blocks if modify datablocks and index blocks
4490 * worse case, the indexs blocks spread over different block groups
4491 *
4492 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004493 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04004494 * they could still across block group boundary.
4495 *
4496 * Also account for superblock, inode, quota and xattr blocks
4497 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04004498static int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
Mingming Caoa02908f2008-08-19 22:16:07 -04004499{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004500 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
4501 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04004502 int idxblocks;
4503 int ret = 0;
4504
4505 /*
4506 * How many index blocks need to touch to modify nrblocks?
4507 * The "Chunk" flag indicating whether the nrblocks is
4508 * physically contiguous on disk
4509 *
4510 * For Direct IO and fallocate, they calls get_block to allocate
4511 * one single extent at a time, so they could set the "Chunk" flag
4512 */
4513 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
4514
4515 ret = idxblocks;
4516
4517 /*
4518 * Now let's see how many group bitmaps and group descriptors need
4519 * to account
4520 */
4521 groups = idxblocks;
4522 if (chunk)
4523 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004524 else
Mingming Caoa02908f2008-08-19 22:16:07 -04004525 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004526
Mingming Caoa02908f2008-08-19 22:16:07 -04004527 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04004528 if (groups > ngroups)
4529 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04004530 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4531 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4532
4533 /* bitmaps and block group descriptor blocks */
4534 ret += groups + gdpblocks;
4535
4536 /* Blocks for super block, inode, quota and xattr blocks */
4537 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004538
4539 return ret;
4540}
4541
4542/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004543 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04004544 * the modification of a single pages into a single transaction,
4545 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04004546 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004547 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04004548 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004549 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04004550 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04004551 */
4552int ext4_writepage_trans_blocks(struct inode *inode)
4553{
4554 int bpp = ext4_journal_blocks_per_page(inode);
4555 int ret;
4556
4557 ret = ext4_meta_trans_blocks(inode, bpp, 0);
4558
4559 /* Account for data blocks for journalled mode */
4560 if (ext4_should_journal_data(inode))
4561 ret += bpp;
4562 return ret;
4563}
Mingming Caof3bd1f32008-08-19 22:16:03 -04004564
4565/*
4566 * Calculate the journal credits for a chunk of data modification.
4567 *
4568 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04004569 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04004570 *
4571 * journal buffers for data blocks are not included here, as DIO
4572 * and fallocate do no need to journal data buffers.
4573 */
4574int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4575{
4576 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4577}
4578
Mingming Caoa02908f2008-08-19 22:16:07 -04004579/*
Mingming Cao617ba132006-10-11 01:20:53 -07004580 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004581 * Give this, we know that the caller already has write access to iloc->bh.
4582 */
Mingming Cao617ba132006-10-11 01:20:53 -07004583int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004584 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004585{
4586 int err = 0;
4587
Theodore Ts'oc64db502012-03-02 12:23:11 -05004588 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004589 inode_inc_iversion(inode);
4590
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004591 /* the do_update_inode consumes one bh->b_count */
4592 get_bh(iloc->bh);
4593
Mingming Caodab291a2006-10-11 01:21:01 -07004594 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04004595 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004596 put_bh(iloc->bh);
4597 return err;
4598}
4599
4600/*
4601 * On success, We end up with an outstanding reference count against
4602 * iloc->bh. This _must_ be cleaned up later.
4603 */
4604
4605int
Mingming Cao617ba132006-10-11 01:20:53 -07004606ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4607 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004608{
Frank Mayhar03901312009-01-07 00:06:22 -05004609 int err;
4610
4611 err = ext4_get_inode_loc(inode, iloc);
4612 if (!err) {
4613 BUFFER_TRACE(iloc->bh, "get_write_access");
4614 err = ext4_journal_get_write_access(handle, iloc->bh);
4615 if (err) {
4616 brelse(iloc->bh);
4617 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004618 }
4619 }
Mingming Cao617ba132006-10-11 01:20:53 -07004620 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004621 return err;
4622}
4623
4624/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004625 * Expand an inode by new_extra_isize bytes.
4626 * Returns 0 on success or negative error number on failure.
4627 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004628static int ext4_expand_extra_isize(struct inode *inode,
4629 unsigned int new_extra_isize,
4630 struct ext4_iloc iloc,
4631 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004632{
4633 struct ext4_inode *raw_inode;
4634 struct ext4_xattr_ibody_header *header;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004635
4636 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4637 return 0;
4638
4639 raw_inode = ext4_raw_inode(&iloc);
4640
4641 header = IHDR(inode, raw_inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004642
4643 /* No extended attributes present */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004644 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
4645 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004646 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4647 new_extra_isize);
4648 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4649 return 0;
4650 }
4651
4652 /* try to expand with EAs present */
4653 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4654 raw_inode, handle);
4655}
4656
4657/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004658 * What we do here is to mark the in-core inode as clean with respect to inode
4659 * dirtiness (it may still be data-dirty).
4660 * This means that the in-core inode may be reaped by prune_icache
4661 * without having to perform any I/O. This is a very good thing,
4662 * because *any* task may call prune_icache - even ones which
4663 * have a transaction open against a different journal.
4664 *
4665 * Is this cheating? Not really. Sure, we haven't written the
4666 * inode out, but prune_icache isn't a user-visible syncing function.
4667 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4668 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004669 */
Mingming Cao617ba132006-10-11 01:20:53 -07004670int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004671{
Mingming Cao617ba132006-10-11 01:20:53 -07004672 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004673 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4674 static unsigned int mnt_count;
4675 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004676
4677 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05004678 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07004679 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05004680 if (ext4_handle_valid(handle) &&
4681 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004682 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004683 /*
4684 * We need extra buffer credits since we may write into EA block
4685 * with this same handle. If journal_extend fails, then it will
4686 * only result in a minor loss of functionality for that inode.
4687 * If this is felt to be critical, then e2fsck should be run to
4688 * force a large enough s_min_extra_isize.
4689 */
4690 if ((jbd2_journal_extend(handle,
4691 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4692 ret = ext4_expand_extra_isize(inode,
4693 sbi->s_want_extra_isize,
4694 iloc, handle);
4695 if (ret) {
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004696 ext4_set_inode_state(inode,
4697 EXT4_STATE_NO_EXPAND);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004698 if (mnt_count !=
4699 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004700 ext4_warning(inode->i_sb,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004701 "Unable to expand inode %lu. Delete"
4702 " some EAs or run e2fsck.",
4703 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004704 mnt_count =
4705 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004706 }
4707 }
4708 }
4709 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004710 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004711 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004712 return err;
4713}
4714
4715/*
Mingming Cao617ba132006-10-11 01:20:53 -07004716 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004717 *
4718 * We're really interested in the case where a file is being extended.
4719 * i_size has been changed by generic_commit_write() and we thus need
4720 * to include the updated inode in the current transaction.
4721 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004722 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004723 * are allocated to the file.
4724 *
4725 * If the inode is marked synchronous, we don't honour that here - doing
4726 * so would cause a commit on atime updates, which we don't bother doing.
4727 * We handle synchronous inodes at the highest possible level.
4728 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04004729void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004730{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004731 handle_t *handle;
4732
Theodore Ts'o9924a922013-02-08 21:59:22 -05004733 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004734 if (IS_ERR(handle))
4735 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004736
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004737 ext4_mark_inode_dirty(handle, inode);
4738
Mingming Cao617ba132006-10-11 01:20:53 -07004739 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004740out:
4741 return;
4742}
4743
4744#if 0
4745/*
4746 * Bind an inode's backing buffer_head into this transaction, to prevent
4747 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07004748 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004749 * returns no iloc structure, so the caller needs to repeat the iloc
4750 * lookup to mark the inode dirty later.
4751 */
Mingming Cao617ba132006-10-11 01:20:53 -07004752static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004753{
Mingming Cao617ba132006-10-11 01:20:53 -07004754 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004755
4756 int err = 0;
4757 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004758 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004759 if (!err) {
4760 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07004761 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004762 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05004763 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004764 NULL,
Frank Mayhar03901312009-01-07 00:06:22 -05004765 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004766 brelse(iloc.bh);
4767 }
4768 }
Mingming Cao617ba132006-10-11 01:20:53 -07004769 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004770 return err;
4771}
4772#endif
4773
Mingming Cao617ba132006-10-11 01:20:53 -07004774int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004775{
4776 journal_t *journal;
4777 handle_t *handle;
4778 int err;
4779
4780 /*
4781 * We have to be very careful here: changing a data block's
4782 * journaling status dynamically is dangerous. If we write a
4783 * data block to the journal, change the status and then delete
4784 * that block, we risk forgetting to revoke the old log record
4785 * from the journal and so a subsequent replay can corrupt data.
4786 * So, first we make sure that the journal is empty and that
4787 * nobody is changing anything.
4788 */
4789
Mingming Cao617ba132006-10-11 01:20:53 -07004790 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004791 if (!journal)
4792 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04004793 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004794 return -EROFS;
Yongqiang Yang2aff57b2011-12-28 12:02:13 -05004795 /* We have to allocate physical blocks for delalloc blocks
4796 * before flushing journal. otherwise delalloc blocks can not
4797 * be allocated any more. even more truncate on delalloc blocks
4798 * could trigger BUG by flushing delalloc blocks in journal.
4799 * There is no delalloc block in non-journal data mode.
4800 */
4801 if (val && test_opt(inode->i_sb, DELALLOC)) {
4802 err = ext4_alloc_da_blocks(inode);
4803 if (err < 0)
4804 return err;
4805 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004806
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04004807 /* Wait for all existing dio workers */
4808 ext4_inode_block_unlocked_dio(inode);
4809 inode_dio_wait(inode);
4810
Mingming Caodab291a2006-10-11 01:21:01 -07004811 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004812
4813 /*
4814 * OK, there are no updates running now, and all cached data is
4815 * synced to disk. We are now in a completely consistent state
4816 * which doesn't have anything in the journal, and we know that
4817 * no filesystem updates are running, so it is safe to modify
4818 * the inode's in-core data-journaling state flag now.
4819 */
4820
4821 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004822 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05004823 else {
4824 jbd2_journal_flush(journal);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004825 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05004826 }
Mingming Cao617ba132006-10-11 01:20:53 -07004827 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004828
Mingming Caodab291a2006-10-11 01:21:01 -07004829 jbd2_journal_unlock_updates(journal);
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04004830 ext4_inode_resume_unlocked_dio(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004831
4832 /* Finally we can mark the inode as dirty. */
4833
Theodore Ts'o9924a922013-02-08 21:59:22 -05004834 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004835 if (IS_ERR(handle))
4836 return PTR_ERR(handle);
4837
Mingming Cao617ba132006-10-11 01:20:53 -07004838 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004839 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07004840 ext4_journal_stop(handle);
4841 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004842
4843 return err;
4844}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004845
4846static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4847{
4848 return !buffer_mapped(bh);
4849}
4850
Nick Pigginc2ec1752009-03-31 15:23:21 -07004851int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004852{
Nick Pigginc2ec1752009-03-31 15:23:21 -07004853 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004854 loff_t size;
4855 unsigned long len;
Jan Kara9ea7df52011-06-24 14:29:41 -04004856 int ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004857 struct file *file = vma->vm_file;
4858 struct inode *inode = file->f_path.dentry->d_inode;
4859 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04004860 handle_t *handle;
4861 get_block_t *get_block;
4862 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004863
Jan Kara8e8ad8a2012-06-12 16:20:38 +02004864 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04004865 file_update_time(vma->vm_file);
Jan Kara9ea7df52011-06-24 14:29:41 -04004866 /* Delalloc case is easy... */
4867 if (test_opt(inode->i_sb, DELALLOC) &&
4868 !ext4_should_journal_data(inode) &&
4869 !ext4_nonda_switch(inode->i_sb)) {
4870 do {
4871 ret = __block_page_mkwrite(vma, vmf,
4872 ext4_da_get_block_prep);
4873 } while (ret == -ENOSPC &&
4874 ext4_should_retry_alloc(inode->i_sb, &retries));
4875 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004876 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04004877
4878 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04004879 size = i_size_read(inode);
4880 /* Page got truncated from under us? */
4881 if (page->mapping != mapping || page_offset(page) > size) {
4882 unlock_page(page);
4883 ret = VM_FAULT_NOPAGE;
4884 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04004885 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004886
4887 if (page->index == size >> PAGE_CACHE_SHIFT)
4888 len = size & ~PAGE_CACHE_MASK;
4889 else
4890 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004891 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04004892 * Return if we have all the buffers mapped. This avoids the need to do
4893 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004894 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004895 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05004896 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
4897 0, len, NULL,
4898 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04004899 /* Wait so that we don't change page under IO */
4900 wait_on_page_writeback(page);
4901 ret = VM_FAULT_LOCKED;
4902 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004903 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004904 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004905 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04004906 /* OK, we need to fill the hole... */
4907 if (ext4_should_dioread_nolock(inode))
4908 get_block = ext4_get_block_write;
4909 else
4910 get_block = ext4_get_block;
4911retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05004912 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
4913 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04004914 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07004915 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04004916 goto out;
4917 }
4918 ret = __block_page_mkwrite(vma, vmf, get_block);
4919 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05004920 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Jan Kara9ea7df52011-06-24 14:29:41 -04004921 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
4922 unlock_page(page);
4923 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04004924 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04004925 goto out;
4926 }
4927 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
4928 }
4929 ext4_journal_stop(handle);
4930 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
4931 goto retry_alloc;
4932out_ret:
4933 ret = block_page_mkwrite_return(ret);
4934out:
Jan Kara8e8ad8a2012-06-12 16:20:38 +02004935 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004936 return ret;
4937}