blob: 8a064734e6eb3ed06461e9954d036da6ff1e8147 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/inode.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -070015 * 64-bit file support on 64-bit platforms by Jakub Jelinek
16 * (jj@sunsite.ms.mff.cuni.cz)
17 *
Mingming Cao617ba132006-10-11 01:20:53 -070018 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070019 */
20
Dave Kleikampac27a0e2006-10-11 01:20:50 -070021#include <linux/fs.h>
22#include <linux/time.h>
Mingming Caodab291a2006-10-11 01:21:01 -070023#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/highuid.h>
25#include <linux/pagemap.h>
26#include <linux/quotaops.h>
27#include <linux/string.h>
28#include <linux/buffer_head.h>
29#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040030#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000032#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070033#include <linux/uio.h>
34#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040035#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050036#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080037#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Theodore Ts'oa8901d32010-12-17 10:40:47 -050039#include <linux/ratelimit.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070040#include <linux/aio.h>
Theodore Ts'o00a1a052014-03-30 10:20:01 -040041#include <linux/bitops.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040042
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040043#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070044#include "xattr.h"
45#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040046#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047
Theodore Ts'o9bffad12009-06-17 11:48:11 -040048#include <trace/events/ext4.h>
49
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040050#define MPAGE_DA_EXTENT_TAIL 0x01
51
Darrick J. Wong814525f2012-04-29 18:31:10 -040052static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
53 struct ext4_inode_info *ei)
54{
55 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
56 __u16 csum_lo;
57 __u16 csum_hi = 0;
58 __u32 csum;
59
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040060 csum_lo = le16_to_cpu(raw->i_checksum_lo);
Darrick J. Wong814525f2012-04-29 18:31:10 -040061 raw->i_checksum_lo = 0;
62 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
63 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040064 csum_hi = le16_to_cpu(raw->i_checksum_hi);
Darrick J. Wong814525f2012-04-29 18:31:10 -040065 raw->i_checksum_hi = 0;
66 }
67
68 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
69 EXT4_INODE_SIZE(inode->i_sb));
70
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040071 raw->i_checksum_lo = cpu_to_le16(csum_lo);
Darrick J. Wong814525f2012-04-29 18:31:10 -040072 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
73 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040074 raw->i_checksum_hi = cpu_to_le16(csum_hi);
Darrick J. Wong814525f2012-04-29 18:31:10 -040075
76 return csum;
77}
78
79static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
80 struct ext4_inode_info *ei)
81{
82 __u32 provided, calculated;
83
84 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
85 cpu_to_le32(EXT4_OS_LINUX) ||
86 !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
87 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
88 return 1;
89
90 provided = le16_to_cpu(raw->i_checksum_lo);
91 calculated = ext4_inode_csum(inode, raw, ei);
92 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
93 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
94 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
95 else
96 calculated &= 0xFFFF;
97
98 return provided == calculated;
99}
100
101static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
102 struct ext4_inode_info *ei)
103{
104 __u32 csum;
105
106 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
107 cpu_to_le32(EXT4_OS_LINUX) ||
108 !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
109 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
110 return;
111
112 csum = ext4_inode_csum(inode, raw, ei);
113 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
114 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
115 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
116 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
117}
118
Jan Kara678aaf42008-07-11 19:27:31 -0400119static inline int ext4_begin_ordered_truncate(struct inode *inode,
120 loff_t new_size)
121{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500122 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500123 /*
124 * If jinode is zero, then we never opened the file for
125 * writing, so there's no need to call
126 * jbd2_journal_begin_ordered_truncate() since there's no
127 * outstanding writes we need to flush.
128 */
129 if (!EXT4_I(inode)->jinode)
130 return 0;
131 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
132 EXT4_I(inode)->jinode,
133 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400134}
135
Lukas Czernerd47992f2013-05-21 23:17:23 -0400136static void ext4_invalidatepage(struct page *page, unsigned int offset,
137 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400138static int __ext4_journalled_writepage(struct page *page, unsigned int len);
139static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Jan Karafffb2732013-06-04 13:01:11 -0400140static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
141 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400142
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700143/*
144 * Test whether an inode is a fast symlink.
145 */
Mingming Cao617ba132006-10-11 01:20:53 -0700146static int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700147{
Yongqiang Yang65eddb52014-01-06 14:06:18 -0500148 int ea_blocks = EXT4_I(inode)->i_file_acl ?
149 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700150
Zheng Liubd9db172014-06-02 10:48:22 -0400151 if (ext4_has_inline_data(inode))
152 return 0;
153
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700154 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
155}
156
157/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700158 * Restart the transaction associated with *handle. This does a commit,
159 * so before we call here everything must be consistently dirtied against
160 * this transaction.
161 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500162int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -0400163 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164{
Jan Kara487caee2009-08-17 22:17:20 -0400165 int ret;
166
167 /*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400168 * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
Jan Kara487caee2009-08-17 22:17:20 -0400169 * moment, get_block can be called only for blocks inside i_size since
170 * page cache has been already dropped and writes are blocked by
171 * i_mutex. So we can safely drop the i_data_sem here.
172 */
Frank Mayhar03901312009-01-07 00:06:22 -0500173 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700174 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400175 up_write(&EXT4_I(inode)->i_data_sem);
Amir Goldstein8e8eaab2011-02-27 23:32:12 -0500176 ret = ext4_journal_restart(handle, nblocks);
Jan Kara487caee2009-08-17 22:17:20 -0400177 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500178 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400179
180 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700181}
182
183/*
184 * Called at the last iput() if i_nlink is zero.
185 */
Al Viro0930fcc2010-06-07 13:16:22 -0400186void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700187{
188 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400189 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700190
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500191 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400192
Al Viro0930fcc2010-06-07 13:16:22 -0400193 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400194 /*
195 * When journalling data dirty buffers are tracked only in the
196 * journal. So although mm thinks everything is clean and
197 * ready for reaping the inode might still have some pages to
198 * write in the running transaction or waiting to be
199 * checkpointed. Thus calling jbd2_journal_invalidatepage()
200 * (via truncate_inode_pages()) to discard these buffers can
201 * cause data loss. Also even if we did not discard these
202 * buffers, we would have no way to find them after the inode
203 * is reaped and thus user could see stale data if he tries to
204 * read them before the transaction is checkpointed. So be
205 * careful and force everything to disk here... We use
206 * ei->i_datasync_tid to store the newest transaction
207 * containing inode's data.
208 *
209 * Note that directories do not have this problem because they
210 * don't use page cache.
211 */
212 if (ext4_should_journal_data(inode) &&
Theodore Ts'o2b405bf2013-03-20 09:42:11 -0400213 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
214 inode->i_ino != EXT4_JOURNAL_INO) {
Jan Kara2d859db2011-07-26 09:07:11 -0400215 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
216 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
217
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400218 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400219 filemap_write_and_wait(&inode->i_data);
220 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700221 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400222
223 WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
Al Viro0930fcc2010-06-07 13:16:22 -0400224 goto no_delete;
225 }
226
Christoph Hellwig907f4552010-03-03 09:05:06 -0500227 if (!is_bad_inode(inode))
Christoph Hellwig871a2932010-03-03 09:05:07 -0500228 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500229
Jan Kara678aaf42008-07-11 19:27:31 -0400230 if (ext4_should_order_data(inode))
231 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700232 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233
Jan Kara5dc23bd2013-06-04 14:46:12 -0400234 WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700235 if (is_bad_inode(inode))
236 goto no_delete;
237
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200238 /*
239 * Protect us against freezing - iput() caller didn't have to have any
240 * protection against it
241 */
242 sb_start_intwrite(inode->i_sb);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500243 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
244 ext4_blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700245 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400246 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700247 /*
248 * If we're going to skip the normal cleanup, we still need to
249 * make sure that the in-core orphan linked list is properly
250 * cleaned up.
251 */
Mingming Cao617ba132006-10-11 01:20:53 -0700252 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200253 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 goto no_delete;
255 }
256
257 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500258 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700259 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400260 err = ext4_mark_inode_dirty(handle, inode);
261 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500262 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400263 "couldn't mark inode dirty (err %d)", err);
264 goto stop_handle;
265 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700267 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400268
269 /*
270 * ext4_ext_truncate() doesn't reserve any slop when it
271 * restarts journal transactions; therefore there may not be
272 * enough credits left in the handle to remove the inode from
273 * the orphan list and set the dtime field.
274 */
Frank Mayhar03901312009-01-07 00:06:22 -0500275 if (!ext4_handle_has_enough_credits(handle, 3)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400276 err = ext4_journal_extend(handle, 3);
277 if (err > 0)
278 err = ext4_journal_restart(handle, 3);
279 if (err != 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500280 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400281 "couldn't extend journal (err %d)", err);
282 stop_handle:
283 ext4_journal_stop(handle);
Theodore Ts'o45388212010-07-29 15:06:10 -0400284 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200285 sb_end_intwrite(inode->i_sb);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400286 goto no_delete;
287 }
288 }
289
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700290 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700291 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700292 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700293 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700295 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700296 * (Well, we could do this if we need to, but heck - it works)
297 */
Mingming Cao617ba132006-10-11 01:20:53 -0700298 ext4_orphan_del(handle, inode);
299 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700300
301 /*
302 * One subtle ordering requirement: if anything has gone wrong
303 * (transaction abort, IO errors, whatever), then we can still
304 * do these next steps (the fs will already have been marked as
305 * having errors), but we can't free the inode if the mark_dirty
306 * fails.
307 */
Mingming Cao617ba132006-10-11 01:20:53 -0700308 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700309 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400310 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700311 else
Mingming Cao617ba132006-10-11 01:20:53 -0700312 ext4_free_inode(handle, inode);
313 ext4_journal_stop(handle);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200314 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315 return;
316no_delete:
Al Viro0930fcc2010-06-07 13:16:22 -0400317 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700318}
319
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300320#ifdef CONFIG_QUOTA
321qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100322{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300323 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100324}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300325#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500326
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400327/*
328 * Calculate the number of metadata blocks need to reserve
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500329 * to allocate a block located at @lblock
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400330 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -0500331static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400332{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400333 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500334 return ext4_ext_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400335
Amir Goldstein8bb2b242011-06-27 17:10:28 -0400336 return ext4_ind_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400337}
338
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500339/*
340 * Called with i_data_sem down, which is important since we can call
341 * ext4_discard_preallocations() from here.
342 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500343void ext4_da_update_reserve_space(struct inode *inode,
344 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400345{
346 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500347 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400348
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500349 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400350 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500351 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500352 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400353 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500354 __func__, inode->i_ino, used,
355 ei->i_reserved_data_blocks);
356 WARN_ON(1);
357 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400358 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400359
Brian Foster97795d22012-07-22 23:59:40 -0400360 if (unlikely(ei->i_allocated_meta_blocks > ei->i_reserved_meta_blocks)) {
Theodore Ts'o01a523e2013-02-14 15:51:58 -0500361 ext4_warning(inode->i_sb, "ino %lu, allocated %d "
362 "with only %d reserved metadata blocks "
363 "(releasing %d blocks with reserved %d data blocks)",
364 inode->i_ino, ei->i_allocated_meta_blocks,
365 ei->i_reserved_meta_blocks, used,
366 ei->i_reserved_data_blocks);
Brian Foster97795d22012-07-22 23:59:40 -0400367 WARN_ON(1);
368 ei->i_allocated_meta_blocks = ei->i_reserved_meta_blocks;
369 }
370
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500371 /* Update per-inode reservations */
372 ei->i_reserved_data_blocks -= used;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500373 ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks;
Theodore Ts'o57042652011-09-09 18:56:51 -0400374 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400375 used + ei->i_allocated_meta_blocks);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500376 ei->i_allocated_meta_blocks = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500377
378 if (ei->i_reserved_data_blocks == 0) {
379 /*
380 * We can release all of the reserved metadata blocks
381 * only when we have written all of the delayed
382 * allocation blocks.
383 */
Theodore Ts'o57042652011-09-09 18:56:51 -0400384 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400385 ei->i_reserved_meta_blocks);
Theodore Ts'oee5f4d92010-01-01 02:36:15 -0500386 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500387 ei->i_da_metadata_calc_len = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500388 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400389 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100390
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400391 /* Update quota subsystem for data blocks */
392 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400393 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400394 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500395 /*
396 * We did fallocate with an offset that is already delayed
397 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400398 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500399 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400400 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500401 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400402
403 /*
404 * If we have done all the pending block allocations and if
405 * there aren't any writers on the inode, we can discard the
406 * inode's preallocations.
407 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500408 if ((ei->i_reserved_data_blocks == 0) &&
409 (atomic_read(&inode->i_writecount) == 0))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400410 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400411}
412
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400413static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400414 unsigned int line,
415 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400416{
Theodore Ts'o24676da2010-05-16 21:00:00 -0400417 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
418 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400419 ext4_error_inode(inode, func, line, map->m_pblk,
420 "lblock %lu mapped to illegal pblock "
421 "(length %d)", (unsigned long) map->m_lblk,
422 map->m_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400423 return -EIO;
424 }
425 return 0;
426}
427
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400428#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400429 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400430
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400431#ifdef ES_AGGRESSIVE_TEST
432static void ext4_map_blocks_es_recheck(handle_t *handle,
433 struct inode *inode,
434 struct ext4_map_blocks *es_map,
435 struct ext4_map_blocks *map,
436 int flags)
437{
438 int retval;
439
440 map->m_flags = 0;
441 /*
442 * There is a race window that the result is not the same.
443 * e.g. xfstests #223 when dioread_nolock enables. The reason
444 * is that we lookup a block mapping in extent status tree with
445 * out taking i_data_sem. So at the time the unwritten extent
446 * could be converted.
447 */
448 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400449 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400450 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
451 retval = ext4_ext_map_blocks(handle, inode, map, flags &
452 EXT4_GET_BLOCKS_KEEP_SIZE);
453 } else {
454 retval = ext4_ind_map_blocks(handle, inode, map, flags &
455 EXT4_GET_BLOCKS_KEEP_SIZE);
456 }
457 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
458 up_read((&EXT4_I(inode)->i_data_sem));
459 /*
460 * Clear EXT4_MAP_FROM_CLUSTER and EXT4_MAP_BOUNDARY flag
461 * because it shouldn't be marked in es_map->m_flags.
462 */
463 map->m_flags &= ~(EXT4_MAP_FROM_CLUSTER | EXT4_MAP_BOUNDARY);
464
465 /*
466 * We don't check m_len because extent will be collpased in status
467 * tree. So the m_len might not equal.
468 */
469 if (es_map->m_lblk != map->m_lblk ||
470 es_map->m_flags != map->m_flags ||
471 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400472 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400473 "es_cached ex [%d/%d/%llu/%x] != "
474 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
475 inode->i_ino, es_map->m_lblk, es_map->m_len,
476 es_map->m_pblk, es_map->m_flags, map->m_lblk,
477 map->m_len, map->m_pblk, map->m_flags,
478 retval, flags);
479 }
480}
481#endif /* ES_AGGRESSIVE_TEST */
482
Theodore Ts'o55138e02009-09-29 13:31:31 -0400483/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400484 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400485 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500486 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500487 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
488 * and store the allocated blocks in the result buffer head and mark it
489 * mapped.
490 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400491 * If file type is extents based, it will call ext4_ext_map_blocks(),
492 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500493 * based files
494 *
Lukas Czerner556615d2014-04-20 23:45:47 -0400495 * On success, it returns the number of blocks being mapped or allocated.
496 * if create==0 and the blocks are pre-allocated and unwritten block,
Mingming Caof5ab0d12008-02-25 15:29:55 -0500497 * the result buffer head is unmapped. If the create ==1, it will make sure
498 * the buffer head is mapped.
499 *
500 * It returns 0 if plain look up failed (blocks have not been allocated), in
Tao Madf3ab172011-10-08 15:53:49 -0400501 * that case, buffer head is unmapped
Mingming Caof5ab0d12008-02-25 15:29:55 -0500502 *
503 * It returns the error in case of allocation failure.
504 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400505int ext4_map_blocks(handle_t *handle, struct inode *inode,
506 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500507{
Zheng Liud100eef2013-02-18 00:29:59 -0500508 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500509 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400510 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400511#ifdef ES_AGGRESSIVE_TEST
512 struct ext4_map_blocks orig_map;
513
514 memcpy(&orig_map, map, sizeof(*map));
515#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500516
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400517 map->m_flags = 0;
518 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
519 "logical block %lu\n", inode->i_ino, flags, map->m_len,
520 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500521
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500522 /*
523 * ext4_map_blocks returns an int, and m_len is an unsigned int
524 */
525 if (unlikely(map->m_len > INT_MAX))
526 map->m_len = INT_MAX;
527
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400528 /* We can handle the block number less than EXT_MAX_BLOCKS */
529 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
530 return -EIO;
531
Zheng Liud100eef2013-02-18 00:29:59 -0500532 /* Lookup extent status tree firstly */
533 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
Theodore Ts'o63b99962013-07-16 10:28:47 -0400534 ext4_es_lru_add(inode);
Zheng Liud100eef2013-02-18 00:29:59 -0500535 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
536 map->m_pblk = ext4_es_pblock(&es) +
537 map->m_lblk - es.es_lblk;
538 map->m_flags |= ext4_es_is_written(&es) ?
539 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
540 retval = es.es_len - (map->m_lblk - es.es_lblk);
541 if (retval > map->m_len)
542 retval = map->m_len;
543 map->m_len = retval;
544 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
545 retval = 0;
546 } else {
547 BUG_ON(1);
548 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400549#ifdef ES_AGGRESSIVE_TEST
550 ext4_map_blocks_es_recheck(handle, inode, map,
551 &orig_map, flags);
552#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500553 goto found;
554 }
555
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500556 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400557 * Try to see if we can get the block without requesting a new
558 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500559 */
Zheng Liu729f52c2012-07-09 16:29:29 -0400560 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400561 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400562 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400563 retval = ext4_ext_map_blocks(handle, inode, map, flags &
564 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500565 } else {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400566 retval = ext4_ind_map_blocks(handle, inode, map, flags &
567 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500568 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500569 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400570 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500571
Zheng Liu44fb851d2013-07-29 12:51:42 -0400572 if (unlikely(retval != map->m_len)) {
573 ext4_warning(inode->i_sb,
574 "ES len assertion failed for inode "
575 "%lu: retval %d != map->m_len %d",
576 inode->i_ino, retval, map->m_len);
577 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400578 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400579
Zheng Liuf7fec032013-02-18 00:28:47 -0500580 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
581 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
582 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
583 ext4_find_delalloc_range(inode, map->m_lblk,
584 map->m_lblk + map->m_len - 1))
585 status |= EXTENT_STATUS_DELAYED;
586 ret = ext4_es_insert_extent(inode, map->m_lblk,
587 map->m_len, map->m_pblk, status);
588 if (ret < 0)
589 retval = ret;
590 }
Zheng Liu729f52c2012-07-09 16:29:29 -0400591 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
592 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500593
Zheng Liud100eef2013-02-18 00:29:59 -0500594found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400595 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400596 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400597 if (ret != 0)
598 return ret;
599 }
600
Mingming Caof5ab0d12008-02-25 15:29:55 -0500601 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400602 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500603 return retval;
604
605 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500606 * Returns if the blocks have already allocated
607 *
608 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400609 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500610 * with buffer head unmapped.
611 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400612 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400613 /*
614 * If we need to convert extent to unwritten
615 * we continue and do the actual work in
616 * ext4_ext_map_blocks()
617 */
618 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
619 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500620
621 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500622 * Here we clear m_flags because after allocating an new extent,
623 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400624 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500625 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400626
627 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400628 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500629 * will possibly result in updating i_data, so we take
630 * the write lock of i_data_sem, and call get_blocks()
631 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500632 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400633 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400634
635 /*
636 * if the caller is from delayed allocation writeout path
637 * we have already reserved fs blocks for allocation
638 * let the underlying get_block() function know to
639 * avoid double accounting
640 */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400641 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Theodore Ts'of2321092011-01-10 12:12:36 -0500642 ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500643 /*
644 * We need to check for EXT4 here because migrate
645 * could have changed the inode type in between
646 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400647 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400648 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500649 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400650 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400651
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400652 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400653 /*
654 * We allocated new blocks which will result in
655 * i_data's format changing. Force the migrate
656 * to fail by clearing migrate flags
657 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500658 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400659 }
Mingming Caod2a17632008-07-14 17:52:37 -0400660
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500661 /*
662 * Update reserved blocks/metadata blocks after successful
663 * block allocation which had been deferred till now. We don't
664 * support fallocate for non extent files. So we can update
665 * reserve space here.
666 */
667 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500668 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500669 ext4_da_update_reserve_space(inode, retval, 1);
670 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500671 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Theodore Ts'of2321092011-01-10 12:12:36 -0500672 ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400673
Zheng Liuf7fec032013-02-18 00:28:47 -0500674 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400675 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500676
Zheng Liu44fb851d2013-07-29 12:51:42 -0400677 if (unlikely(retval != map->m_len)) {
678 ext4_warning(inode->i_sb,
679 "ES len assertion failed for inode "
680 "%lu: retval %d != map->m_len %d",
681 inode->i_ino, retval, map->m_len);
682 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400683 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400684
Zheng Liuadb23552013-03-10 21:13:05 -0400685 /*
686 * If the extent has been zeroed out, we don't need to update
687 * extent status tree.
688 */
689 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
690 ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
691 if (ext4_es_is_written(&es))
692 goto has_zeroout;
693 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500694 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
695 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
696 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
697 ext4_find_delalloc_range(inode, map->m_lblk,
698 map->m_lblk + map->m_len - 1))
699 status |= EXTENT_STATUS_DELAYED;
700 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
701 map->m_pblk, status);
702 if (ret < 0)
703 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -0400704 }
705
Zheng Liuadb23552013-03-10 21:13:05 -0400706has_zeroout:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500707 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400708 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400709 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400710 if (ret != 0)
711 return ret;
712 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500713 return retval;
714}
715
Mingming Caof3bd1f32008-08-19 22:16:03 -0400716/* Maximum number of blocks we map for direct IO at once. */
717#define DIO_MAX_BLOCKS 4096
718
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400719static int _ext4_get_block(struct inode *inode, sector_t iblock,
720 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700721{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -0800722 handle_t *handle = ext4_journal_current_handle();
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400723 struct ext4_map_blocks map;
Jan Kara7fb54092008-02-10 01:08:38 -0500724 int ret = 0, started = 0;
Mingming Caof3bd1f32008-08-19 22:16:03 -0400725 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700726
Tao Ma46c7f252012-12-10 14:04:52 -0500727 if (ext4_has_inline_data(inode))
728 return -ERANGE;
729
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400730 map.m_lblk = iblock;
731 map.m_len = bh->b_size >> inode->i_blkbits;
732
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500733 if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
Jan Kara7fb54092008-02-10 01:08:38 -0500734 /* Direct IO write... */
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400735 if (map.m_len > DIO_MAX_BLOCKS)
736 map.m_len = DIO_MAX_BLOCKS;
737 dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500738 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
739 dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -0500740 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741 ret = PTR_ERR(handle);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400742 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700743 }
Jan Kara7fb54092008-02-10 01:08:38 -0500744 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700745 }
746
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400747 ret = ext4_map_blocks(handle, inode, &map, flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500748 if (ret > 0) {
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200749 ext4_io_end_t *io_end = ext4_inode_aio(inode);
750
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400751 map_bh(bh, inode->i_sb, map.m_pblk);
752 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200753 if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
754 set_buffer_defer_completion(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400755 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500756 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700757 }
Jan Kara7fb54092008-02-10 01:08:38 -0500758 if (started)
759 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700760 return ret;
761}
762
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400763int ext4_get_block(struct inode *inode, sector_t iblock,
764 struct buffer_head *bh, int create)
765{
766 return _ext4_get_block(inode, iblock, bh,
767 create ? EXT4_GET_BLOCKS_CREATE : 0);
768}
769
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700770/*
771 * `handle' can be NULL if create is zero
772 */
Mingming Cao617ba132006-10-11 01:20:53 -0700773struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500774 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700775{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400776 struct ext4_map_blocks map;
777 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700778 int fatal = 0, err;
779
780 J_ASSERT(handle != NULL || create == 0);
781
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400782 map.m_lblk = block;
783 map.m_len = 1;
784 err = ext4_map_blocks(handle, inode, &map,
785 create ? EXT4_GET_BLOCKS_CREATE : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700786
Carlos Maiolino90b0a972012-09-17 23:39:12 -0400787 /* ensure we send some value back into *errp */
788 *errp = 0;
789
Theodore Ts'o0f70b402013-02-15 03:35:57 -0500790 if (create && err == 0)
791 err = -ENOSPC; /* should never happen */
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400792 if (err < 0)
793 *errp = err;
794 if (err <= 0)
795 return NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400796
797 bh = sb_getblk(inode->i_sb, map.m_pblk);
Wang Shilongaebf0242013-01-12 16:28:47 -0500798 if (unlikely(!bh)) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -0500799 *errp = -ENOMEM;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400800 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700801 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400802 if (map.m_flags & EXT4_MAP_NEW) {
803 J_ASSERT(create != 0);
804 J_ASSERT(handle != NULL);
805
806 /*
807 * Now that we do not always journal data, we should
808 * keep in mind whether this should always journal the
809 * new buffer as metadata. For now, regular file
810 * writes use ext4_get_block instead, so it's not a
811 * problem.
812 */
813 lock_buffer(bh);
814 BUFFER_TRACE(bh, "call get_create_access");
815 fatal = ext4_journal_get_create_access(handle, bh);
816 if (!fatal && !buffer_uptodate(bh)) {
817 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
818 set_buffer_uptodate(bh);
819 }
820 unlock_buffer(bh);
821 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
822 err = ext4_handle_dirty_metadata(handle, inode, bh);
823 if (!fatal)
824 fatal = err;
825 } else {
826 BUFFER_TRACE(bh, "not a new buffer");
827 }
828 if (fatal) {
829 *errp = fatal;
830 brelse(bh);
831 bh = NULL;
832 }
833 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700834}
835
Mingming Cao617ba132006-10-11 01:20:53 -0700836struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500837 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700838{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400839 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700840
Mingming Cao617ba132006-10-11 01:20:53 -0700841 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700842 if (!bh)
843 return bh;
844 if (buffer_uptodate(bh))
845 return bh;
Christoph Hellwig65299a32011-08-23 14:50:29 +0200846 ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700847 wait_on_buffer(bh);
848 if (buffer_uptodate(bh))
849 return bh;
850 put_bh(bh);
851 *err = -EIO;
852 return NULL;
853}
854
Tao Maf19d5872012-12-10 14:05:51 -0500855int ext4_walk_page_buffers(handle_t *handle,
856 struct buffer_head *head,
857 unsigned from,
858 unsigned to,
859 int *partial,
860 int (*fn)(handle_t *handle,
861 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862{
863 struct buffer_head *bh;
864 unsigned block_start, block_end;
865 unsigned blocksize = head->b_size;
866 int err, ret = 0;
867 struct buffer_head *next;
868
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400869 for (bh = head, block_start = 0;
870 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400871 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700872 next = bh->b_this_page;
873 block_end = block_start + blocksize;
874 if (block_end <= from || block_start >= to) {
875 if (partial && !buffer_uptodate(bh))
876 *partial = 1;
877 continue;
878 }
879 err = (*fn)(handle, bh);
880 if (!ret)
881 ret = err;
882 }
883 return ret;
884}
885
886/*
887 * To preserve ordering, it is essential that the hole instantiation and
888 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700889 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700890 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700891 * prepare_write() is the right place.
892 *
Jan Kara36ade452013-01-28 09:30:52 -0500893 * Also, this function can nest inside ext4_writepage(). In that case, we
894 * *know* that ext4_writepage() has generated enough buffer credits to do the
895 * whole page. So we won't block on the journal in that case, which is good,
896 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700897 *
Mingming Cao617ba132006-10-11 01:20:53 -0700898 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700899 * quota file writes. If we were to commit the transaction while thus
900 * reentered, there can be a deadlock - we would be holding a quota
901 * lock, and the commit would never complete if another thread had a
902 * transaction open and was blocking on the quota lock - a ranking
903 * violation.
904 *
Mingming Caodab291a2006-10-11 01:21:01 -0700905 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906 * will _not_ run commit under these circumstances because handle->h_ref
907 * is elevated. We'll still have enough credits for the tiny quotafile
908 * write.
909 */
Tao Maf19d5872012-12-10 14:05:51 -0500910int do_journal_get_write_access(handle_t *handle,
911 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700912{
Jan Kara56d35a42010-08-05 14:41:42 -0400913 int dirty = buffer_dirty(bh);
914 int ret;
915
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700916 if (!buffer_mapped(bh) || buffer_freed(bh))
917 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -0400918 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +0200919 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -0400920 * the dirty bit as jbd2_journal_get_write_access() could complain
921 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +0200922 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -0400923 * the bit before releasing a page lock and thus writeback cannot
924 * ever write the buffer.
925 */
926 if (dirty)
927 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -0400928 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -0400929 ret = ext4_journal_get_write_access(handle, bh);
930 if (!ret && dirty)
931 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
932 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700933}
934
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500935static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
936 struct buffer_head *bh_result, int create);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700937static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400938 loff_t pos, unsigned len, unsigned flags,
939 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700940{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400941 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400942 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700943 handle_t *handle;
944 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400945 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400946 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400947 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700948
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400949 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400950 /*
951 * Reserve one block more for addition to orphan list in case
952 * we allocate blocks but write fails for some reason
953 */
954 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400955 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400956 from = pos & (PAGE_CACHE_SIZE - 1);
957 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958
Tao Maf19d5872012-12-10 14:05:51 -0500959 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
960 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
961 flags, pagep);
962 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500963 return ret;
964 if (ret == 1)
965 return 0;
Tao Maf19d5872012-12-10 14:05:51 -0500966 }
967
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500968 /*
969 * grab_cache_page_write_begin() can take a long time if the
970 * system is thrashing due to memory pressure, or if the page
971 * is being written back. So grab it first before we start
972 * the transaction handle. This also allows us to allocate
973 * the page (if needed) without using GFP_NOFS.
974 */
975retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -0800976 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500977 if (!page)
978 return -ENOMEM;
979 unlock_page(page);
980
981retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500982 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700983 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500984 page_cache_release(page);
985 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -0400986 }
Tao Maf19d5872012-12-10 14:05:51 -0500987
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500988 lock_page(page);
989 if (page->mapping != mapping) {
990 /* The page got truncated from under us */
991 unlock_page(page);
992 page_cache_release(page);
Jan Karacf108bc2008-07-11 19:27:31 -0400993 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500994 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -0400995 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -0400996 /* In case writeback began while the page was unlocked */
997 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -0400998
Jiaying Zhang744692d2010-03-04 16:14:02 -0500999 if (ext4_should_dioread_nolock(inode))
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001000 ret = __block_write_begin(page, pos, len, ext4_get_block_write);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001001 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001002 ret = __block_write_begin(page, pos, len, ext4_get_block);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001003
1004 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05001005 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1006 from, to, NULL,
1007 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001008 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001009
1010 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001011 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001012 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001013 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001014 * outside i_size. Trim these off again. Don't need
1015 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001016 *
1017 * Add inode to orphan list in case we crash before
1018 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001019 */
Jan Karaffacfa72009-07-13 16:22:22 -04001020 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001021 ext4_orphan_add(handle, inode);
1022
1023 ext4_journal_stop(handle);
1024 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001025 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001026 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001027 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001028 * still be on the orphan list; we need to
1029 * make sure the inode is removed from the
1030 * orphan list in that case.
1031 */
1032 if (inode->i_nlink)
1033 ext4_orphan_del(NULL, inode);
1034 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001035
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001036 if (ret == -ENOSPC &&
1037 ext4_should_retry_alloc(inode->i_sb, &retries))
1038 goto retry_journal;
1039 page_cache_release(page);
1040 return ret;
1041 }
1042 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001043 return ret;
1044}
1045
Nick Pigginbfc1af62007-10-16 01:25:05 -07001046/* For write_end() in data=journal mode */
1047static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001049 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001050 if (!buffer_mapped(bh) || buffer_freed(bh))
1051 return 0;
1052 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001053 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1054 clear_buffer_meta(bh);
1055 clear_buffer_prio(bh);
1056 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001057}
1058
Zheng Liueed43332013-04-03 12:41:17 -04001059/*
1060 * We need to pick up the new inode size which generic_commit_write gave us
1061 * `file' can be NULL - eg, when called from page_symlink().
1062 *
1063 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1064 * buffers are managed internally.
1065 */
1066static int ext4_write_end(struct file *file,
1067 struct address_space *mapping,
1068 loff_t pos, unsigned len, unsigned copied,
1069 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001070{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001071 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001072 struct inode *inode = mapping->host;
1073 int ret = 0, ret2;
1074 int i_size_changed = 0;
1075
1076 trace_ext4_write_end(inode, pos, len, copied);
1077 if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1078 ret = ext4_jbd2_file_inode(handle, inode);
1079 if (ret) {
1080 unlock_page(page);
1081 page_cache_release(page);
1082 goto errout;
1083 }
1084 }
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001085
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001086 if (ext4_has_inline_data(inode)) {
1087 ret = ext4_write_inline_data_end(inode, pos, len,
1088 copied, page);
1089 if (ret < 0)
1090 goto errout;
1091 copied = ret;
1092 } else
Tao Maf19d5872012-12-10 14:05:51 -05001093 copied = block_write_end(file, mapping, pos,
1094 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001095
1096 /*
1097 * No need to use i_size_read() here, the i_size
Zheng Liueed43332013-04-03 12:41:17 -04001098 * cannot change under us because we hole i_mutex.
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001099 *
1100 * But it's important to update i_size while still holding page lock:
1101 * page writeout could otherwise come in and zero beyond i_size.
1102 */
1103 if (pos + copied > inode->i_size) {
1104 i_size_write(inode, pos + copied);
1105 i_size_changed = 1;
1106 }
1107
Zheng Liueed43332013-04-03 12:41:17 -04001108 if (pos + copied > EXT4_I(inode)->i_disksize) {
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001109 /* We need to mark inode dirty even if
1110 * new_i_size is less that inode->i_size
Zheng Liueed43332013-04-03 12:41:17 -04001111 * but greater than i_disksize. (hint delalloc)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001112 */
1113 ext4_update_i_disksize(inode, (pos + copied));
1114 i_size_changed = 1;
1115 }
1116 unlock_page(page);
1117 page_cache_release(page);
1118
1119 /*
1120 * Don't mark the inode dirty under page lock. First, it unnecessarily
1121 * makes the holding time of page lock longer. Second, it forces lock
1122 * ordering of page lock and transaction start for journaling
1123 * filesystems.
1124 */
1125 if (i_size_changed)
1126 ext4_mark_inode_dirty(handle, inode);
1127
Jan Karaffacfa72009-07-13 16:22:22 -04001128 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001129 /* if we have allocated more blocks and copied
1130 * less. We will have blocks allocated outside
1131 * inode->i_size. So truncate them
1132 */
1133 ext4_orphan_add(handle, inode);
Theodore Ts'o74d553a2013-04-03 12:39:17 -04001134errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001135 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136 if (!ret)
1137 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001138
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001139 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001140 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001141 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001142 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001143 * on the orphan list; we need to make sure the inode
1144 * is removed from the orphan list in that case.
1145 */
1146 if (inode->i_nlink)
1147 ext4_orphan_del(NULL, inode);
1148 }
1149
Nick Pigginbfc1af62007-10-16 01:25:05 -07001150 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151}
1152
Nick Pigginbfc1af62007-10-16 01:25:05 -07001153static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001154 struct address_space *mapping,
1155 loff_t pos, unsigned len, unsigned copied,
1156 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001157{
Mingming Cao617ba132006-10-11 01:20:53 -07001158 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001159 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001160 int ret = 0, ret2;
1161 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001162 unsigned from, to;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001163 loff_t new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001164
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001165 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001166 from = pos & (PAGE_CACHE_SIZE - 1);
1167 to = from + len;
1168
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001169 BUG_ON(!ext4_handle_valid(handle));
1170
Tao Ma3fdcfb62012-12-10 14:05:57 -05001171 if (ext4_has_inline_data(inode))
1172 copied = ext4_write_inline_data_end(inode, pos, len,
1173 copied, page);
1174 else {
1175 if (copied < len) {
1176 if (!PageUptodate(page))
1177 copied = 0;
1178 page_zero_new_buffers(page, from+copied, to);
1179 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001180
Tao Ma3fdcfb62012-12-10 14:05:57 -05001181 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1182 to, &partial, write_end_fn);
1183 if (!partial)
1184 SetPageUptodate(page);
1185 }
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001186 new_i_size = pos + copied;
1187 if (new_i_size > inode->i_size)
Nick Pigginbfc1af62007-10-16 01:25:05 -07001188 i_size_write(inode, pos+copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001189 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001190 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001191 if (new_i_size > EXT4_I(inode)->i_disksize) {
1192 ext4_update_i_disksize(inode, new_i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001193 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001194 if (!ret)
1195 ret = ret2;
1196 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001197
Jan Karacf108bc2008-07-11 19:27:31 -04001198 unlock_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001199 page_cache_release(page);
Jan Karaffacfa72009-07-13 16:22:22 -04001200 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001201 /* if we have allocated more blocks and copied
1202 * less. We will have blocks allocated outside
1203 * inode->i_size. So truncate them
1204 */
1205 ext4_orphan_add(handle, inode);
1206
Mingming Cao617ba132006-10-11 01:20:53 -07001207 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001208 if (!ret)
1209 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001210 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001211 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001212 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001213 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001214 * on the orphan list; we need to make sure the inode
1215 * is removed from the orphan list in that case.
1216 */
1217 if (inode->i_nlink)
1218 ext4_orphan_del(NULL, inode);
1219 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001220
1221 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001222}
Mingming Caod2a17632008-07-14 17:52:37 -04001223
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001224/*
Lukas Czerner386ad672013-03-10 22:50:00 -04001225 * Reserve a metadata for a single block located at lblock
1226 */
1227static int ext4_da_reserve_metadata(struct inode *inode, ext4_lblk_t lblock)
1228{
Lukas Czerner386ad672013-03-10 22:50:00 -04001229 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1230 struct ext4_inode_info *ei = EXT4_I(inode);
1231 unsigned int md_needed;
1232 ext4_lblk_t save_last_lblock;
1233 int save_len;
1234
1235 /*
1236 * recalculate the amount of metadata blocks to reserve
1237 * in order to allocate nrblocks
1238 * worse case is one extent per block
1239 */
Lukas Czerner386ad672013-03-10 22:50:00 -04001240 spin_lock(&ei->i_block_reservation_lock);
1241 /*
1242 * ext4_calc_metadata_amount() has side effects, which we have
1243 * to be prepared undo if we fail to claim space.
1244 */
1245 save_len = ei->i_da_metadata_calc_len;
1246 save_last_lblock = ei->i_da_metadata_calc_last_lblock;
1247 md_needed = EXT4_NUM_B2C(sbi,
1248 ext4_calc_metadata_amount(inode, lblock));
1249 trace_ext4_da_reserve_space(inode, md_needed);
1250
1251 /*
1252 * We do still charge estimated metadata to the sb though;
1253 * we cannot afford to run out of free blocks.
1254 */
1255 if (ext4_claim_free_clusters(sbi, md_needed, 0)) {
1256 ei->i_da_metadata_calc_len = save_len;
1257 ei->i_da_metadata_calc_last_lblock = save_last_lblock;
1258 spin_unlock(&ei->i_block_reservation_lock);
Lukas Czerner386ad672013-03-10 22:50:00 -04001259 return -ENOSPC;
1260 }
1261 ei->i_reserved_meta_blocks += md_needed;
1262 spin_unlock(&ei->i_block_reservation_lock);
1263
1264 return 0; /* success */
1265}
1266
1267/*
Aditya Kali7b415bf2011-09-09 19:04:51 -04001268 * Reserve a single cluster located at lblock
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001269 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -05001270static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -04001271{
Mingming Cao60e58e02009-01-22 18:13:05 +01001272 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001273 struct ext4_inode_info *ei = EXT4_I(inode);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001274 unsigned int md_needed;
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001275 int ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001276 ext4_lblk_t save_last_lblock;
1277 int save_len;
Mingming Caod2a17632008-07-14 17:52:37 -04001278
Mingming Cao60e58e02009-01-22 18:13:05 +01001279 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001280 * We will charge metadata quota at writeout time; this saves
1281 * us from metadata over-estimation, though we may go over by
1282 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001283 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001284 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001285 if (ret)
1286 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001287
1288 /*
1289 * recalculate the amount of metadata blocks to reserve
1290 * in order to allocate nrblocks
1291 * worse case is one extent per block
1292 */
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001293 spin_lock(&ei->i_block_reservation_lock);
1294 /*
1295 * ext4_calc_metadata_amount() has side effects, which we have
1296 * to be prepared undo if we fail to claim space.
1297 */
1298 save_len = ei->i_da_metadata_calc_len;
1299 save_last_lblock = ei->i_da_metadata_calc_last_lblock;
1300 md_needed = EXT4_NUM_B2C(sbi,
1301 ext4_calc_metadata_amount(inode, lblock));
1302 trace_ext4_da_reserve_space(inode, md_needed);
1303
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001304 /*
1305 * We do still charge estimated metadata to the sb though;
1306 * we cannot afford to run out of free blocks.
1307 */
Theodore Ts'oe7d5f312011-09-09 19:14:51 -04001308 if (ext4_claim_free_clusters(sbi, md_needed + 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001309 ei->i_da_metadata_calc_len = save_len;
1310 ei->i_da_metadata_calc_last_lblock = save_last_lblock;
1311 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001312 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001313 return -ENOSPC;
1314 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001315 ei->i_reserved_data_blocks++;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001316 ei->i_reserved_meta_blocks += md_needed;
1317 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001318
Mingming Caod2a17632008-07-14 17:52:37 -04001319 return 0; /* success */
1320}
1321
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001322static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001323{
1324 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001325 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001326
Mingming Caocd213222008-08-19 22:16:59 -04001327 if (!to_free)
1328 return; /* Nothing to release, exit */
1329
Mingming Caod2a17632008-07-14 17:52:37 -04001330 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001331
Li Zefan5a58ec82010-05-17 02:00:00 -04001332 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001333 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001334 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001335 * if there aren't enough reserved blocks, then the
1336 * counter is messed up somewhere. Since this
1337 * function is called from invalidate page, it's
1338 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001339 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001340 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001341 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001342 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001343 ei->i_reserved_data_blocks);
1344 WARN_ON(1);
1345 to_free = ei->i_reserved_data_blocks;
1346 }
1347 ei->i_reserved_data_blocks -= to_free;
1348
1349 if (ei->i_reserved_data_blocks == 0) {
1350 /*
1351 * We can release all of the reserved metadata blocks
1352 * only when we have written all of the delayed
1353 * allocation blocks.
Aditya Kali7b415bf2011-09-09 19:04:51 -04001354 * Note that in case of bigalloc, i_reserved_meta_blocks,
1355 * i_reserved_data_blocks, etc. refer to number of clusters.
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001356 */
Theodore Ts'o57042652011-09-09 18:56:51 -04001357 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001358 ei->i_reserved_meta_blocks);
Theodore Ts'oee5f4d92010-01-01 02:36:15 -05001359 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001360 ei->i_da_metadata_calc_len = 0;
Mingming Caocd213222008-08-19 22:16:59 -04001361 }
1362
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001363 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001364 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001365
Mingming Caod2a17632008-07-14 17:52:37 -04001366 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001367
Aditya Kali7b415bf2011-09-09 19:04:51 -04001368 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001369}
1370
1371static void ext4_da_page_release_reservation(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001372 unsigned int offset,
1373 unsigned int length)
Mingming Caod2a17632008-07-14 17:52:37 -04001374{
1375 int to_release = 0;
1376 struct buffer_head *head, *bh;
1377 unsigned int curr_off = 0;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001378 struct inode *inode = page->mapping->host;
1379 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001380 unsigned int stop = offset + length;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001381 int num_clusters;
Zheng Liu51865fd2012-11-08 21:57:32 -05001382 ext4_fsblk_t lblk;
Mingming Caod2a17632008-07-14 17:52:37 -04001383
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001384 BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1385
Mingming Caod2a17632008-07-14 17:52:37 -04001386 head = page_buffers(page);
1387 bh = head;
1388 do {
1389 unsigned int next_off = curr_off + bh->b_size;
1390
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001391 if (next_off > stop)
1392 break;
1393
Mingming Caod2a17632008-07-14 17:52:37 -04001394 if ((offset <= curr_off) && (buffer_delay(bh))) {
1395 to_release++;
1396 clear_buffer_delay(bh);
1397 }
1398 curr_off = next_off;
1399 } while ((bh = bh->b_this_page) != head);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001400
Zheng Liu51865fd2012-11-08 21:57:32 -05001401 if (to_release) {
1402 lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1403 ext4_es_remove_extent(inode, lblk, to_release);
1404 }
1405
Aditya Kali7b415bf2011-09-09 19:04:51 -04001406 /* If we have released all the blocks belonging to a cluster, then we
1407 * need to release the reserved space for that cluster. */
1408 num_clusters = EXT4_NUM_B2C(sbi, to_release);
1409 while (num_clusters > 0) {
Aditya Kali7b415bf2011-09-09 19:04:51 -04001410 lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
1411 ((num_clusters - 1) << sbi->s_cluster_bits);
1412 if (sbi->s_cluster_ratio == 1 ||
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05001413 !ext4_find_delalloc_cluster(inode, lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04001414 ext4_da_release_space(inode, 1);
1415
1416 num_clusters--;
1417 }
Mingming Caod2a17632008-07-14 17:52:37 -04001418}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001419
1420/*
Alex Tomas64769242008-07-11 19:27:31 -04001421 * Delayed allocation stuff
1422 */
1423
Jan Kara4e7ea812013-06-04 13:17:40 -04001424struct mpage_da_data {
1425 struct inode *inode;
1426 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001427
Jan Kara4e7ea812013-06-04 13:17:40 -04001428 pgoff_t first_page; /* The first page to write */
1429 pgoff_t next_page; /* Current page to examine */
1430 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001431 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001432 * Extent to map - this can be after first_page because that can be
1433 * fully mapped. We somewhat abuse m_flags to store whether the extent
1434 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001435 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001436 struct ext4_map_blocks map;
1437 struct ext4_io_submit io_submit; /* IO submission data */
1438};
Alex Tomas64769242008-07-11 19:27:31 -04001439
Jan Kara4e7ea812013-06-04 13:17:40 -04001440static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1441 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001442{
1443 int nr_pages, i;
1444 pgoff_t index, end;
1445 struct pagevec pvec;
1446 struct inode *inode = mpd->inode;
1447 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001448
1449 /* This is necessary when next_page == 0. */
1450 if (mpd->first_page >= mpd->next_page)
1451 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001452
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001453 index = mpd->first_page;
1454 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001455 if (invalidate) {
1456 ext4_lblk_t start, last;
1457 start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1458 last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1459 ext4_es_remove_extent(inode, start, last - start + 1);
1460 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001461
Eric Sandeen66bea922012-11-14 22:22:05 -05001462 pagevec_init(&pvec, 0);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001463 while (index <= end) {
1464 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1465 if (nr_pages == 0)
1466 break;
1467 for (i = 0; i < nr_pages; i++) {
1468 struct page *page = pvec.pages[i];
Jan Kara9b1d09982010-03-03 16:19:32 -05001469 if (page->index > end)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001470 break;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001471 BUG_ON(!PageLocked(page));
1472 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001473 if (invalidate) {
1474 block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1475 ClearPageUptodate(page);
1476 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001477 unlock_page(page);
1478 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001479 index = pvec.pages[nr_pages - 1]->index + 1;
1480 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001481 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001482}
1483
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001484static void ext4_print_free_blocks(struct inode *inode)
1485{
1486 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001487 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001488 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001489
1490 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001491 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001492 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001493 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1494 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001495 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001496 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001497 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001498 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001499 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001500 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1501 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001502 ei->i_reserved_data_blocks);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001503 ext4_msg(sb, KERN_CRIT, "i_reserved_meta_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001504 ei->i_reserved_meta_blocks);
1505 ext4_msg(sb, KERN_CRIT, "i_allocated_meta_blocks=%u",
1506 ei->i_allocated_meta_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001507 return;
1508}
1509
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001510static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001511{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001512 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001513}
1514
Alex Tomas64769242008-07-11 19:27:31 -04001515/*
Aditya Kali5356f262011-09-09 19:20:51 -04001516 * This function is grabs code from the very beginning of
1517 * ext4_map_blocks, but assumes that the caller is from delayed write
1518 * time. This function looks up the requested blocks and sets the
1519 * buffer delay bit under the protection of i_data_sem.
1520 */
1521static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1522 struct ext4_map_blocks *map,
1523 struct buffer_head *bh)
1524{
Zheng Liud100eef2013-02-18 00:29:59 -05001525 struct extent_status es;
Aditya Kali5356f262011-09-09 19:20:51 -04001526 int retval;
1527 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001528#ifdef ES_AGGRESSIVE_TEST
1529 struct ext4_map_blocks orig_map;
1530
1531 memcpy(&orig_map, map, sizeof(*map));
1532#endif
Aditya Kali5356f262011-09-09 19:20:51 -04001533
1534 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1535 invalid_block = ~0;
1536
1537 map->m_flags = 0;
1538 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1539 "logical block %lu\n", inode->i_ino, map->m_len,
1540 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001541
1542 /* Lookup extent status tree firstly */
1543 if (ext4_es_lookup_extent(inode, iblock, &es)) {
Theodore Ts'o63b99962013-07-16 10:28:47 -04001544 ext4_es_lru_add(inode);
Zheng Liud100eef2013-02-18 00:29:59 -05001545 if (ext4_es_is_hole(&es)) {
1546 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001547 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001548 goto add_delayed;
1549 }
1550
1551 /*
1552 * Delayed extent could be allocated by fallocate.
1553 * So we need to check it.
1554 */
1555 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1556 map_bh(bh, inode->i_sb, invalid_block);
1557 set_buffer_new(bh);
1558 set_buffer_delay(bh);
1559 return 0;
1560 }
1561
1562 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1563 retval = es.es_len - (iblock - es.es_lblk);
1564 if (retval > map->m_len)
1565 retval = map->m_len;
1566 map->m_len = retval;
1567 if (ext4_es_is_written(&es))
1568 map->m_flags |= EXT4_MAP_MAPPED;
1569 else if (ext4_es_is_unwritten(&es))
1570 map->m_flags |= EXT4_MAP_UNWRITTEN;
1571 else
1572 BUG_ON(1);
1573
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001574#ifdef ES_AGGRESSIVE_TEST
1575 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1576#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001577 return retval;
1578 }
1579
Aditya Kali5356f262011-09-09 19:20:51 -04001580 /*
1581 * Try to see if we can get the block without requesting a new
1582 * file system block.
1583 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001584 down_read(&EXT4_I(inode)->i_data_sem);
Tao Ma9c3569b2012-12-10 14:05:57 -05001585 if (ext4_has_inline_data(inode)) {
1586 /*
1587 * We will soon create blocks for this page, and let
1588 * us pretend as if the blocks aren't allocated yet.
1589 * In case of clusters, we have to handle the work
1590 * of mapping from cluster so that the reserved space
1591 * is calculated properly.
1592 */
1593 if ((EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) &&
1594 ext4_find_delalloc_cluster(inode, map->m_lblk))
1595 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
1596 retval = 0;
1597 } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liud100eef2013-02-18 00:29:59 -05001598 retval = ext4_ext_map_blocks(NULL, inode, map,
1599 EXT4_GET_BLOCKS_NO_PUT_HOLE);
Aditya Kali5356f262011-09-09 19:20:51 -04001600 else
Zheng Liud100eef2013-02-18 00:29:59 -05001601 retval = ext4_ind_map_blocks(NULL, inode, map,
1602 EXT4_GET_BLOCKS_NO_PUT_HOLE);
Aditya Kali5356f262011-09-09 19:20:51 -04001603
Zheng Liud100eef2013-02-18 00:29:59 -05001604add_delayed:
Aditya Kali5356f262011-09-09 19:20:51 -04001605 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001606 int ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001607 /*
1608 * XXX: __block_prepare_write() unmaps passed block,
1609 * is it OK?
1610 */
Lukas Czerner386ad672013-03-10 22:50:00 -04001611 /*
1612 * If the block was allocated from previously allocated cluster,
1613 * then we don't need to reserve it again. However we still need
1614 * to reserve metadata for every block we're going to write.
1615 */
Aditya Kali5356f262011-09-09 19:20:51 -04001616 if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001617 ret = ext4_da_reserve_space(inode, iblock);
1618 if (ret) {
Aditya Kali5356f262011-09-09 19:20:51 -04001619 /* not enough space to reserve */
Zheng Liuf7fec032013-02-18 00:28:47 -05001620 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001621 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001622 }
Lukas Czerner386ad672013-03-10 22:50:00 -04001623 } else {
1624 ret = ext4_da_reserve_metadata(inode, iblock);
1625 if (ret) {
1626 /* not enough space to reserve */
1627 retval = ret;
1628 goto out_unlock;
1629 }
Aditya Kali5356f262011-09-09 19:20:51 -04001630 }
1631
Zheng Liuf7fec032013-02-18 00:28:47 -05001632 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1633 ~0, EXTENT_STATUS_DELAYED);
1634 if (ret) {
1635 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001636 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001637 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001638
Aditya Kali5356f262011-09-09 19:20:51 -04001639 /* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served
1640 * and it should not appear on the bh->b_state.
1641 */
1642 map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
1643
1644 map_bh(bh, inode->i_sb, invalid_block);
1645 set_buffer_new(bh);
1646 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001647 } else if (retval > 0) {
1648 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001649 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001650
Zheng Liu44fb851d2013-07-29 12:51:42 -04001651 if (unlikely(retval != map->m_len)) {
1652 ext4_warning(inode->i_sb,
1653 "ES len assertion failed for inode "
1654 "%lu: retval %d != map->m_len %d",
1655 inode->i_ino, retval, map->m_len);
1656 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001657 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001658
Zheng Liuf7fec032013-02-18 00:28:47 -05001659 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1660 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1661 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1662 map->m_pblk, status);
1663 if (ret != 0)
1664 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001665 }
1666
1667out_unlock:
1668 up_read((&EXT4_I(inode)->i_data_sem));
1669
1670 return retval;
1671}
1672
1673/*
Theodore Ts'ob920c752009-05-14 00:54:29 -04001674 * This is a special get_blocks_t callback which is used by
1675 * ext4_da_write_begin(). It will either return mapped block or
1676 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001677 *
1678 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1679 * We also have b_blocknr = -1 and b_bdev initialized properly
1680 *
1681 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1682 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1683 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001684 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001685int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1686 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001687{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001688 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001689 int ret = 0;
1690
1691 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001692 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1693
1694 map.m_lblk = iblock;
1695 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001696
1697 /*
1698 * first, we need to know whether the block is allocated already
1699 * preallocated blocks are unmapped but should treated
1700 * the same as allocated blocks.
1701 */
Aditya Kali5356f262011-09-09 19:20:51 -04001702 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1703 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001704 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001705
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001706 map_bh(bh, inode->i_sb, map.m_pblk);
1707 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
1708
1709 if (buffer_unwritten(bh)) {
1710 /* A delayed write to unwritten bh should be marked
1711 * new and mapped. Mapped ensures that we don't do
1712 * get_block multiple times when we write to the same
1713 * offset and new ensures that we do proper zero out
1714 * for partial write.
1715 */
1716 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001717 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001718 }
1719 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001720}
Mingming Cao61628a32008-07-11 19:27:31 -04001721
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001722static int bget_one(handle_t *handle, struct buffer_head *bh)
1723{
1724 get_bh(bh);
1725 return 0;
1726}
1727
1728static int bput_one(handle_t *handle, struct buffer_head *bh)
1729{
1730 put_bh(bh);
1731 return 0;
1732}
1733
1734static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001735 unsigned int len)
1736{
1737 struct address_space *mapping = page->mapping;
1738 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001739 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001740 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001741 int ret = 0, err = 0;
1742 int inline_data = ext4_has_inline_data(inode);
1743 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001744
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001745 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001746
1747 if (inline_data) {
1748 BUG_ON(page->index != 0);
1749 BUG_ON(len > ext4_get_max_inline_size(inode));
1750 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1751 if (inode_bh == NULL)
1752 goto out;
1753 } else {
1754 page_bufs = page_buffers(page);
1755 if (!page_bufs) {
1756 BUG();
1757 goto out;
1758 }
1759 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1760 NULL, bget_one);
1761 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001762 /* As soon as we unlock the page, it can go away, but we have
1763 * references to buffers so we are safe */
1764 unlock_page(page);
1765
Theodore Ts'o9924a922013-02-08 21:59:22 -05001766 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1767 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001768 if (IS_ERR(handle)) {
1769 ret = PTR_ERR(handle);
1770 goto out;
1771 }
1772
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001773 BUG_ON(!ext4_handle_valid(handle));
1774
Tao Ma3fdcfb62012-12-10 14:05:57 -05001775 if (inline_data) {
liang xie5d601252014-05-12 22:06:43 -04001776 BUFFER_TRACE(inode_bh, "get write access");
Tao Ma3fdcfb62012-12-10 14:05:57 -05001777 ret = ext4_journal_get_write_access(handle, inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001778
Tao Ma3fdcfb62012-12-10 14:05:57 -05001779 err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
1780
1781 } else {
1782 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1783 do_journal_get_write_access);
1784
1785 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1786 write_end_fn);
1787 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001788 if (ret == 0)
1789 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001790 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001791 err = ext4_journal_stop(handle);
1792 if (!ret)
1793 ret = err;
1794
Tao Ma3fdcfb62012-12-10 14:05:57 -05001795 if (!ext4_has_inline_data(inode))
Theodore Ts'o8c9367f2014-01-07 13:08:03 -05001796 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05001797 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001798 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001799out:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001800 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001801 return ret;
1802}
1803
Mingming Cao61628a32008-07-11 19:27:31 -04001804/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001805 * Note that we don't need to start a transaction unless we're journaling data
1806 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1807 * need to file the inode to the transaction's list in ordered mode because if
1808 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001809 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001810 * transaction the data will hit the disk. In case we are journaling data, we
1811 * cannot start transaction directly because transaction start ranks above page
1812 * lock so we have to do some magic.
1813 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001814 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001815 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001816 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001817 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001818 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001819 *
1820 * We don't do any block allocation in this function. If we have page with
1821 * multiple blocks we need to write those buffer_heads that are mapped. This
1822 * is important for mmaped based write. So if we do with blocksize 1K
1823 * truncate(f, 1024);
1824 * a = mmap(f, 0, 4096);
1825 * a[0] = 'a';
1826 * truncate(f, 4096);
1827 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001828 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001829 * do_wp_page). So writepage should write the first block. If we modify
1830 * the mmap area beyond 1024 we will again get a page_fault and the
1831 * page_mkwrite callback will do the block allocation and mark the
1832 * buffer_heads mapped.
1833 *
1834 * We redirty the page if we have any buffer_heads that is either delay or
1835 * unwritten in the page.
1836 *
1837 * We can get recursively called as show below.
1838 *
1839 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1840 * ext4_writepage()
1841 *
1842 * But since we don't do any block allocation we should not deadlock.
1843 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001844 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001845static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001846 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001847{
Jan Karaf8bec372013-01-28 12:55:08 -05001848 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001849 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001850 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001851 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001852 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001853 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001854 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001855
Lukas Czernera9c667f2011-06-06 09:51:52 -04001856 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001857 size = i_size_read(inode);
1858 if (page->index == size >> PAGE_CACHE_SHIFT)
1859 len = size & ~PAGE_CACHE_MASK;
1860 else
1861 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001862
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001863 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001864 /*
Jan Karafe386132013-01-28 21:06:42 -05001865 * We cannot do block allocation or other extent handling in this
1866 * function. If there are buffers needing that, we have to redirty
1867 * the page. But we may reach here when we do a journal commit via
1868 * journal_submit_inode_data_buffers() and in that case we must write
1869 * allocated buffers to achieve data=ordered mode guarantees.
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04001870 */
Tao Maf19d5872012-12-10 14:05:51 -05001871 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1872 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05001873 redirty_page_for_writepage(wbc, page);
Jan Karafe386132013-01-28 21:06:42 -05001874 if (current->flags & PF_MEMALLOC) {
1875 /*
1876 * For memory cleaning there's no point in writing only
1877 * some buffers. So just bail out. Warn if we came here
1878 * from direct reclaim.
1879 */
1880 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1881 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001882 unlock_page(page);
1883 return 0;
1884 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001885 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001886 }
Alex Tomas64769242008-07-11 19:27:31 -04001887
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001888 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001889 /*
1890 * It's mmapped pagecache. Add buffers and journal it. There
1891 * doesn't seem much point in redirtying the page here.
1892 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05001893 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001894
Jan Kara97a851e2013-06-04 11:58:58 -04001895 ext4_io_submit_init(&io_submit, wbc);
1896 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
1897 if (!io_submit.io_end) {
1898 redirty_page_for_writepage(wbc, page);
1899 unlock_page(page);
1900 return -ENOMEM;
1901 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001902 ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05001903 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04001904 /* Drop io_end reference we got from init */
1905 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04001906 return ret;
1907}
1908
Jan Kara5f1132b2013-08-17 10:02:33 -04001909static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
1910{
1911 int len;
1912 loff_t size = i_size_read(mpd->inode);
1913 int err;
1914
1915 BUG_ON(page->index != mpd->first_page);
1916 if (page->index == size >> PAGE_CACHE_SHIFT)
1917 len = size & ~PAGE_CACHE_MASK;
1918 else
1919 len = PAGE_CACHE_SIZE;
1920 clear_page_dirty_for_io(page);
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001921 err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04001922 if (!err)
1923 mpd->wbc->nr_to_write--;
1924 mpd->first_page++;
1925
1926 return err;
1927}
1928
Jan Kara4e7ea812013-06-04 13:17:40 -04001929#define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
1930
Mingming Cao61628a32008-07-11 19:27:31 -04001931/*
Jan Karafffb2732013-06-04 13:01:11 -04001932 * mballoc gives us at most this number of blocks...
1933 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04001934 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04001935 */
Jan Karafffb2732013-06-04 13:01:11 -04001936#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04001937
Jan Karafffb2732013-06-04 13:01:11 -04001938/*
Jan Kara4e7ea812013-06-04 13:17:40 -04001939 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
1940 *
1941 * @mpd - extent of blocks
1942 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04001943 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04001944 *
Jan Kara09930042013-08-17 09:57:56 -04001945 * The function is used to collect contig. blocks in the same state. If the
1946 * buffer doesn't require mapping for writeback and we haven't started the
1947 * extent of buffers to map yet, the function returns 'true' immediately - the
1948 * caller can write the buffer right away. Otherwise the function returns true
1949 * if the block has been added to the extent, false if the block couldn't be
1950 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04001951 */
Jan Kara09930042013-08-17 09:57:56 -04001952static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
1953 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04001954{
1955 struct ext4_map_blocks *map = &mpd->map;
1956
Jan Kara09930042013-08-17 09:57:56 -04001957 /* Buffer that doesn't need mapping for writeback? */
1958 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
1959 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
1960 /* So far no extent to map => we write the buffer right away */
1961 if (map->m_len == 0)
1962 return true;
1963 return false;
1964 }
Jan Kara4e7ea812013-06-04 13:17:40 -04001965
1966 /* First block in the extent? */
1967 if (map->m_len == 0) {
1968 map->m_lblk = lblk;
1969 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04001970 map->m_flags = bh->b_state & BH_FLAGS;
1971 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04001972 }
1973
Jan Kara09930042013-08-17 09:57:56 -04001974 /* Don't go larger than mballoc is willing to allocate */
1975 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
1976 return false;
1977
Jan Kara4e7ea812013-06-04 13:17:40 -04001978 /* Can we merge the block to our big extent? */
1979 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04001980 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04001981 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04001982 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04001983 }
Jan Kara09930042013-08-17 09:57:56 -04001984 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04001985}
1986
Jan Kara5f1132b2013-08-17 10:02:33 -04001987/*
1988 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
1989 *
1990 * @mpd - extent of blocks for mapping
1991 * @head - the first buffer in the page
1992 * @bh - buffer we should start processing from
1993 * @lblk - logical number of the block in the file corresponding to @bh
1994 *
1995 * Walk through page buffers from @bh upto @head (exclusive) and either submit
1996 * the page for IO if all buffers in this page were mapped and there's no
1997 * accumulated extent of buffers to map or add buffers in the page to the
1998 * extent of buffers to map. The function returns 1 if the caller can continue
1999 * by processing the next page, 0 if it should stop adding buffers to the
2000 * extent to map because we cannot extend it anymore. It can also return value
2001 * < 0 in case of error during IO submission.
2002 */
2003static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2004 struct buffer_head *head,
2005 struct buffer_head *bh,
2006 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002007{
2008 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002009 int err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002010 ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
2011 >> inode->i_blkbits;
2012
2013 do {
2014 BUG_ON(buffer_locked(bh));
2015
Jan Kara09930042013-08-17 09:57:56 -04002016 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002017 /* Found extent to map? */
2018 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002019 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002020 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002021 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002022 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002023 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002024 /* So far everything mapped? Submit the page for IO. */
2025 if (mpd->map.m_len == 0) {
2026 err = mpage_submit_page(mpd, head->b_page);
2027 if (err < 0)
2028 return err;
2029 }
2030 return lblk < blocks;
Jan Kara4e7ea812013-06-04 13:17:40 -04002031}
2032
2033/*
2034 * mpage_map_buffers - update buffers corresponding to changed extent and
2035 * submit fully mapped pages for IO
2036 *
2037 * @mpd - description of extent to map, on return next extent to map
2038 *
2039 * Scan buffers corresponding to changed extent (we expect corresponding pages
2040 * to be already locked) and update buffer state according to new extent state.
2041 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002042 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002043 * and do extent conversion after IO is finished. If the last page is not fully
2044 * mapped, we update @map to the next extent in the last page that needs
2045 * mapping. Otherwise we submit the page for IO.
2046 */
2047static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2048{
2049 struct pagevec pvec;
2050 int nr_pages, i;
2051 struct inode *inode = mpd->inode;
2052 struct buffer_head *head, *bh;
2053 int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002054 pgoff_t start, end;
2055 ext4_lblk_t lblk;
2056 sector_t pblock;
2057 int err;
2058
2059 start = mpd->map.m_lblk >> bpp_bits;
2060 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2061 lblk = start << bpp_bits;
2062 pblock = mpd->map.m_pblk;
2063
2064 pagevec_init(&pvec, 0);
2065 while (start <= end) {
2066 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
2067 PAGEVEC_SIZE);
2068 if (nr_pages == 0)
2069 break;
2070 for (i = 0; i < nr_pages; i++) {
2071 struct page *page = pvec.pages[i];
2072
2073 if (page->index > end)
2074 break;
Anatol Pomozov70261f52013-08-28 14:40:12 -04002075 /* Up to 'end' pages must be contiguous */
Jan Kara4e7ea812013-06-04 13:17:40 -04002076 BUG_ON(page->index != start);
2077 bh = head = page_buffers(page);
2078 do {
2079 if (lblk < mpd->map.m_lblk)
2080 continue;
2081 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2082 /*
2083 * Buffer after end of mapped extent.
2084 * Find next buffer in the page to map.
2085 */
2086 mpd->map.m_len = 0;
2087 mpd->map.m_flags = 0;
Jan Kara5f1132b2013-08-17 10:02:33 -04002088 /*
2089 * FIXME: If dioread_nolock supports
2090 * blocksize < pagesize, we need to make
2091 * sure we add size mapped so far to
2092 * io_end->size as the following call
2093 * can submit the page for IO.
2094 */
2095 err = mpage_process_page_bufs(mpd, head,
2096 bh, lblk);
Jan Kara4e7ea812013-06-04 13:17:40 -04002097 pagevec_release(&pvec);
Jan Kara5f1132b2013-08-17 10:02:33 -04002098 if (err > 0)
2099 err = 0;
2100 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002101 }
2102 if (buffer_delay(bh)) {
2103 clear_buffer_delay(bh);
2104 bh->b_blocknr = pblock++;
2105 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002106 clear_buffer_unwritten(bh);
Jan Kara5f1132b2013-08-17 10:02:33 -04002107 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara4e7ea812013-06-04 13:17:40 -04002108
2109 /*
2110 * FIXME: This is going to break if dioread_nolock
2111 * supports blocksize < pagesize as we will try to
2112 * convert potentially unmapped parts of inode.
2113 */
2114 mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
2115 /* Page fully mapped - let IO run! */
2116 err = mpage_submit_page(mpd, page);
2117 if (err < 0) {
2118 pagevec_release(&pvec);
2119 return err;
2120 }
2121 start++;
2122 }
2123 pagevec_release(&pvec);
2124 }
2125 /* Extent fully mapped and matches with page boundary. We are done. */
2126 mpd->map.m_len = 0;
2127 mpd->map.m_flags = 0;
2128 return 0;
2129}
2130
2131static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2132{
2133 struct inode *inode = mpd->inode;
2134 struct ext4_map_blocks *map = &mpd->map;
2135 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002136 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002137
2138 trace_ext4_da_write_pages_extent(inode, map);
2139 /*
2140 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002141 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002142 * where we have written into one or more preallocated blocks). It is
2143 * possible that we're going to need more metadata blocks than
2144 * previously reserved. However we must not fail because we're in
2145 * writeback and there is nothing we can do about it so it might result
2146 * in data loss. So use reserved blocks to allocate metadata if
2147 * possible.
2148 *
2149 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if the blocks
2150 * in question are delalloc blocks. This affects functions in many
2151 * different parts of the allocation call path. This flag exists
2152 * primarily because we don't want to change *many* call functions, so
2153 * ext4_map_blocks() will set the EXT4_STATE_DELALLOC_RESERVED flag
2154 * once the inode's allocation semaphore is taken.
2155 */
2156 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
2157 EXT4_GET_BLOCKS_METADATA_NOFAIL;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002158 dioread_nolock = ext4_should_dioread_nolock(inode);
2159 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002160 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
2161 if (map->m_flags & (1 << BH_Delay))
2162 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2163
2164 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2165 if (err < 0)
2166 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002167 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002168 if (!mpd->io_submit.io_end->handle &&
2169 ext4_handle_valid(handle)) {
2170 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2171 handle->h_rsv_handle = NULL;
2172 }
Jan Kara3613d222013-06-04 13:19:34 -04002173 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002174 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002175
2176 BUG_ON(map->m_len == 0);
2177 if (map->m_flags & EXT4_MAP_NEW) {
2178 struct block_device *bdev = inode->i_sb->s_bdev;
2179 int i;
2180
2181 for (i = 0; i < map->m_len; i++)
2182 unmap_underlying_metadata(bdev, map->m_pblk + i);
2183 }
2184 return 0;
2185}
2186
2187/*
2188 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2189 * mpd->len and submit pages underlying it for IO
2190 *
2191 * @handle - handle for journal operations
2192 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002193 * @give_up_on_write - we set this to true iff there is a fatal error and there
2194 * is no hope of writing the data. The caller should discard
2195 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002196 *
2197 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2198 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2199 * them to initialized or split the described range from larger unwritten
2200 * extent. Note that we need not map all the described range since allocation
2201 * can return less blocks or the range is covered by more unwritten extents. We
2202 * cannot map more because we are limited by reserved transaction credits. On
2203 * the other hand we always make sure that the last touched page is fully
2204 * mapped so that it can be written out (and thus forward progress is
2205 * guaranteed). After mapping we submit all mapped pages for IO.
2206 */
2207static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002208 struct mpage_da_data *mpd,
2209 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002210{
2211 struct inode *inode = mpd->inode;
2212 struct ext4_map_blocks *map = &mpd->map;
2213 int err;
2214 loff_t disksize;
2215
2216 mpd->io_submit.io_end->offset =
2217 ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002218 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002219 err = mpage_map_one_extent(handle, mpd);
2220 if (err < 0) {
2221 struct super_block *sb = inode->i_sb;
2222
Theodore Ts'ocb530542013-07-01 08:12:40 -04002223 if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2224 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002225 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002226 * Let the uper layers retry transient errors.
2227 * In the case of ENOSPC, if ext4_count_free_blocks()
2228 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002229 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002230 if ((err == -ENOMEM) ||
2231 (err == -ENOSPC && ext4_count_free_clusters(sb)))
2232 return err;
2233 ext4_msg(sb, KERN_CRIT,
2234 "Delayed block allocation failed for "
2235 "inode %lu at logical offset %llu with"
2236 " max blocks %u with error %d",
2237 inode->i_ino,
2238 (unsigned long long)map->m_lblk,
2239 (unsigned)map->m_len, -err);
2240 ext4_msg(sb, KERN_CRIT,
2241 "This should not happen!! Data will "
2242 "be lost\n");
2243 if (err == -ENOSPC)
2244 ext4_print_free_blocks(inode);
2245 invalidate_dirty_pages:
2246 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002247 return err;
2248 }
2249 /*
2250 * Update buffer state, submit mapped pages, and get us new
2251 * extent to map
2252 */
2253 err = mpage_map_and_submit_buffers(mpd);
2254 if (err < 0)
2255 return err;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002256 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002257
Theodore Ts'o622cad12014-04-11 10:35:17 -04002258 /*
2259 * Update on-disk size after IO is submitted. Races with
2260 * truncate are avoided by checking i_size under i_data_sem.
2261 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002262 disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
Jan Kara4e7ea812013-06-04 13:17:40 -04002263 if (disksize > EXT4_I(inode)->i_disksize) {
2264 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002265 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002266
Theodore Ts'o622cad12014-04-11 10:35:17 -04002267 down_write(&EXT4_I(inode)->i_data_sem);
2268 i_size = i_size_read(inode);
2269 if (disksize > i_size)
2270 disksize = i_size;
2271 if (disksize > EXT4_I(inode)->i_disksize)
2272 EXT4_I(inode)->i_disksize = disksize;
Jan Kara4e7ea812013-06-04 13:17:40 -04002273 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o622cad12014-04-11 10:35:17 -04002274 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara4e7ea812013-06-04 13:17:40 -04002275 if (err2)
2276 ext4_error(inode->i_sb,
2277 "Failed to mark inode %lu dirty",
2278 inode->i_ino);
2279 if (!err)
2280 err = err2;
2281 }
2282 return err;
2283}
2284
2285/*
Jan Karafffb2732013-06-04 13:01:11 -04002286 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002287 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002288 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002289 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2290 * bpp - 1 blocks in bpp different extents.
2291 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002292static int ext4_da_writepages_trans_blocks(struct inode *inode)
2293{
Jan Karafffb2732013-06-04 13:01:11 -04002294 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002295
Jan Karafffb2732013-06-04 13:01:11 -04002296 return ext4_meta_trans_blocks(inode,
2297 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002298}
Mingming Cao61628a32008-07-11 19:27:31 -04002299
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002300/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002301 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2302 * and underlying extent to map
2303 *
2304 * @mpd - where to look for pages
2305 *
2306 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2307 * IO immediately. When we find a page which isn't mapped we start accumulating
2308 * extent of buffers underlying these pages that needs mapping (formed by
2309 * either delayed or unwritten buffers). We also lock the pages containing
2310 * these buffers. The extent found is returned in @mpd structure (starting at
2311 * mpd->lblk with length mpd->len blocks).
2312 *
2313 * Note that this function can attach bios to one io_end structure which are
2314 * neither logically nor physically contiguous. Although it may seem as an
2315 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2316 * case as we need to track IO to all buffers underlying a page in one io_end.
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002317 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002318static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002319{
Jan Kara4e7ea812013-06-04 13:17:40 -04002320 struct address_space *mapping = mpd->inode->i_mapping;
2321 struct pagevec pvec;
2322 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002323 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002324 pgoff_t index = mpd->first_page;
2325 pgoff_t end = mpd->last_page;
2326 int tag;
2327 int i, err = 0;
2328 int blkbits = mpd->inode->i_blkbits;
2329 ext4_lblk_t lblk;
2330 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002331
Jan Kara4e7ea812013-06-04 13:17:40 -04002332 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002333 tag = PAGECACHE_TAG_TOWRITE;
2334 else
2335 tag = PAGECACHE_TAG_DIRTY;
2336
Jan Kara4e7ea812013-06-04 13:17:40 -04002337 pagevec_init(&pvec, 0);
2338 mpd->map.m_len = 0;
2339 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002340 while (index <= end) {
Eric Sandeen5b41d922010-10-27 21:30:13 -04002341 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002342 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
2343 if (nr_pages == 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002344 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002345
2346 for (i = 0; i < nr_pages; i++) {
2347 struct page *page = pvec.pages[i];
2348
2349 /*
2350 * At this point, the page may be truncated or
2351 * invalidated (changing page->mapping to NULL), or
2352 * even swizzled back from swapper_space to tmpfs file
2353 * mapping. However, page->index will not change
2354 * because we have a reference on the page.
2355 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002356 if (page->index > end)
2357 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002358
Ming Leiaeac5892013-10-17 18:56:16 -04002359 /*
2360 * Accumulated enough dirty pages? This doesn't apply
2361 * to WB_SYNC_ALL mode. For integrity sync we have to
2362 * keep going because someone may be concurrently
2363 * dirtying pages, and we might have synced a lot of
2364 * newly appeared dirty pages, but have not synced all
2365 * of the old dirty pages.
2366 */
2367 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2368 goto out;
2369
Jan Kara4e7ea812013-06-04 13:17:40 -04002370 /* If we can't merge this page, we are done. */
2371 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2372 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002373
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002374 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002375 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002376 * If the page is no longer dirty, or its mapping no
2377 * longer corresponds to inode we are writing (which
2378 * means it has been truncated or invalidated), or the
2379 * page is already under writeback and we are not doing
2380 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002381 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002382 if (!PageDirty(page) ||
2383 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002384 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002385 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002386 unlock_page(page);
2387 continue;
2388 }
2389
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002390 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002391 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002392
Jan Kara4e7ea812013-06-04 13:17:40 -04002393 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002394 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002395 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002396 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002397 lblk = ((ext4_lblk_t)page->index) <<
2398 (PAGE_CACHE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002399 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002400 err = mpage_process_page_bufs(mpd, head, head, lblk);
2401 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002402 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002403 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002404 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002405 }
2406 pagevec_release(&pvec);
2407 cond_resched();
2408 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002409 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002410out:
2411 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002412 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002413}
2414
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002415static int __writepage(struct page *page, struct writeback_control *wbc,
2416 void *data)
2417{
2418 struct address_space *mapping = data;
2419 int ret = ext4_writepage(page, wbc);
2420 mapping_set_error(mapping, ret);
2421 return ret;
2422}
2423
2424static int ext4_writepages(struct address_space *mapping,
2425 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002426{
Jan Kara4e7ea812013-06-04 13:17:40 -04002427 pgoff_t writeback_index = 0;
2428 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002429 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002430 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002431 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002432 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002433 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002434 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002435 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Jan Kara4e7ea812013-06-04 13:17:40 -04002436 bool done;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002437 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002438 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002439
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002440 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002441
Mingming Cao61628a32008-07-11 19:27:31 -04002442 /*
2443 * No pages to write? This is mainly a kludge to avoid starting
2444 * a transaction for special inodes like journal inode on last iput()
2445 * because that could violate lock ordering on umount
2446 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002447 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c2013-10-30 07:27:16 -04002448 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002449
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002450 if (ext4_should_journal_data(inode)) {
2451 struct blk_plug plug;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002452
2453 blk_start_plug(&plug);
2454 ret = write_cache_pages(mapping, wbc, __writepage, mapping);
2455 blk_finish_plug(&plug);
Ming Leibbf023c2013-10-30 07:27:16 -04002456 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002457 }
2458
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002459 /*
2460 * If the filesystem has aborted, it is read-only, so return
2461 * right away instead of dumping stack traces later on that
2462 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002463 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002464 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002465 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002466 * *never* be called, so if that ever happens, we would want
2467 * the stack trace.
2468 */
Ming Leibbf023c2013-10-30 07:27:16 -04002469 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2470 ret = -EROFS;
2471 goto out_writepages;
2472 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002473
Jan Kara6b523df2013-06-04 13:21:11 -04002474 if (ext4_should_dioread_nolock(inode)) {
2475 /*
Anatol Pomozov70261f52013-08-28 14:40:12 -04002476 * We may need to convert up to one extent per block in
Jan Kara6b523df2013-06-04 13:21:11 -04002477 * the page and we may dirty the inode.
2478 */
2479 rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
2480 }
2481
Jan Kara4e7ea812013-06-04 13:17:40 -04002482 /*
2483 * If we have inline data and arrive here, it means that
2484 * we will soon create the block for the 1st page, so
2485 * we'd better clear the inline data here.
2486 */
2487 if (ext4_has_inline_data(inode)) {
2488 /* Just inode will be modified... */
2489 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2490 if (IS_ERR(handle)) {
2491 ret = PTR_ERR(handle);
2492 goto out_writepages;
2493 }
2494 BUG_ON(ext4_test_inode_state(inode,
2495 EXT4_STATE_MAY_INLINE_DATA));
2496 ext4_destroy_inline_data(handle, inode);
2497 ext4_journal_stop(handle);
2498 }
2499
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002500 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2501 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002502
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002503 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002504 writeback_index = mapping->writeback_index;
2505 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002506 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002507 mpd.first_page = writeback_index;
2508 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002509 } else {
Jan Kara4e7ea812013-06-04 13:17:40 -04002510 mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
2511 mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002512 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002513
Jan Kara4e7ea812013-06-04 13:17:40 -04002514 mpd.inode = inode;
2515 mpd.wbc = wbc;
2516 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002517retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002518 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002519 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
2520 done = false;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002521 blk_start_plug(&plug);
Jan Kara4e7ea812013-06-04 13:17:40 -04002522 while (!done && mpd.first_page <= mpd.last_page) {
2523 /* For each extent of pages we use new io_end */
2524 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2525 if (!mpd.io_submit.io_end) {
2526 ret = -ENOMEM;
2527 break;
2528 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002529
2530 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002531 * We have two constraints: We find one extent to map and we
2532 * must always write out whole page (makes a difference when
2533 * blocksize < pagesize) so that we don't block on IO when we
2534 * try to write out the rest of the page. Journalled mode is
2535 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002536 */
2537 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002538 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002539
Jan Kara4e7ea812013-06-04 13:17:40 -04002540 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002541 handle = ext4_journal_start_with_reserve(inode,
2542 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002543 if (IS_ERR(handle)) {
2544 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002545 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002546 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002547 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002548 /* Release allocated io_end */
2549 ext4_put_io_end(mpd.io_submit.io_end);
2550 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002551 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002552
Jan Kara4e7ea812013-06-04 13:17:40 -04002553 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2554 ret = mpage_prepare_extent_to_map(&mpd);
2555 if (!ret) {
2556 if (mpd.map.m_len)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002557 ret = mpage_map_and_submit_extent(handle, &mpd,
2558 &give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002559 else {
2560 /*
2561 * We scanned the whole range (or exhausted
2562 * nr_to_write), submitted what was mapped and
2563 * didn't find anything needing mapping. We are
2564 * done.
2565 */
2566 done = true;
2567 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002568 }
Mingming Cao61628a32008-07-11 19:27:31 -04002569 ext4_journal_stop(handle);
Jan Kara4e7ea812013-06-04 13:17:40 -04002570 /* Submit prepared bio */
2571 ext4_io_submit(&mpd.io_submit);
2572 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002573 mpage_release_unused_pages(&mpd, give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002574 /* Drop our io_end reference we got from init */
2575 ext4_put_io_end(mpd.io_submit.io_end);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002576
Jan Kara4e7ea812013-06-04 13:17:40 -04002577 if (ret == -ENOSPC && sbi->s_journal) {
2578 /*
2579 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002580 * free blocks released in the transaction
2581 * and try again
2582 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002583 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002584 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002585 continue;
2586 }
2587 /* Fatal error - ENOMEM, EIO... */
2588 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002589 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002590 }
Shaohua Li1bce63d2011-10-18 10:55:51 -04002591 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002592 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002593 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002594 mpd.last_page = writeback_index - 1;
2595 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002596 goto retry;
2597 }
Mingming Cao61628a32008-07-11 19:27:31 -04002598
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002599 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002600 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2601 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002602 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002603 * mode will write it back later
2604 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002605 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002606
Mingming Cao61628a32008-07-11 19:27:31 -04002607out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002608 trace_ext4_writepages_result(inode, wbc, ret,
2609 nr_to_write - wbc->nr_to_write);
Mingming Cao61628a32008-07-11 19:27:31 -04002610 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002611}
2612
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002613static int ext4_nonda_switch(struct super_block *sb)
2614{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002615 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002616 struct ext4_sb_info *sbi = EXT4_SB(sb);
2617
2618 /*
2619 * switch to non delalloc mode if we are running low
2620 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002621 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002622 * accumulated on each CPU without updating global counters
2623 * Delalloc need an accurate free block accounting. So switch
2624 * to non delalloc when we are near to error range.
2625 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002626 free_clusters =
2627 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2628 dirty_clusters =
2629 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002630 /*
2631 * Start pushing delalloc when 1/2 of free blocks are dirty.
2632 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002633 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002634 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002635
Eric Whitney5c1ff332013-04-09 09:27:31 -04002636 if (2 * free_clusters < 3 * dirty_clusters ||
2637 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002638 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002639 * free block count is less than 150% of dirty blocks
2640 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002641 */
2642 return 1;
2643 }
2644 return 0;
2645}
2646
Alex Tomas64769242008-07-11 19:27:31 -04002647static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002648 loff_t pos, unsigned len, unsigned flags,
2649 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002650{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002651 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002652 struct page *page;
2653 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002654 struct inode *inode = mapping->host;
2655 handle_t *handle;
2656
2657 index = pos >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002658
2659 if (ext4_nonda_switch(inode->i_sb)) {
2660 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2661 return ext4_write_begin(file, mapping, pos,
2662 len, flags, pagep, fsdata);
2663 }
2664 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002665 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002666
2667 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2668 ret = ext4_da_write_inline_data_begin(mapping, inode,
2669 pos, len, flags,
2670 pagep, fsdata);
2671 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002672 return ret;
2673 if (ret == 1)
2674 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002675 }
2676
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002677 /*
2678 * grab_cache_page_write_begin() can take a long time if the
2679 * system is thrashing due to memory pressure, or if the page
2680 * is being written back. So grab it first before we start
2681 * the transaction handle. This also allows us to allocate
2682 * the page (if needed) without using GFP_NOFS.
2683 */
2684retry_grab:
2685 page = grab_cache_page_write_begin(mapping, index, flags);
2686 if (!page)
2687 return -ENOMEM;
2688 unlock_page(page);
2689
Alex Tomas64769242008-07-11 19:27:31 -04002690 /*
2691 * With delayed allocation, we don't log the i_disksize update
2692 * if there is delayed block allocation. But we still need
2693 * to journalling the i_disksize update if writes to the end
2694 * of file which has an already mapped buffer.
2695 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002696retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002697 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1);
Alex Tomas64769242008-07-11 19:27:31 -04002698 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002699 page_cache_release(page);
2700 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002701 }
2702
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002703 lock_page(page);
2704 if (page->mapping != mapping) {
2705 /* The page got truncated from under us */
2706 unlock_page(page);
2707 page_cache_release(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002708 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002709 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002710 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002711 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002712 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002713
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002714 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04002715 if (ret < 0) {
2716 unlock_page(page);
2717 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002718 /*
2719 * block_write_begin may have instantiated a few blocks
2720 * outside i_size. Trim these off again. Don't need
2721 * i_size_read because we hold i_mutex.
2722 */
2723 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002724 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002725
2726 if (ret == -ENOSPC &&
2727 ext4_should_retry_alloc(inode->i_sb, &retries))
2728 goto retry_journal;
2729
2730 page_cache_release(page);
2731 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002732 }
2733
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002734 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002735 return ret;
2736}
2737
Mingming Cao632eaea2008-07-11 19:27:31 -04002738/*
2739 * Check if we should update i_disksize
2740 * when write to the end of file but not require block allocation
2741 */
2742static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002743 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002744{
2745 struct buffer_head *bh;
2746 struct inode *inode = page->mapping->host;
2747 unsigned int idx;
2748 int i;
2749
2750 bh = page_buffers(page);
2751 idx = offset >> inode->i_blkbits;
2752
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002753 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002754 bh = bh->b_this_page;
2755
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002756 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002757 return 0;
2758 return 1;
2759}
2760
Alex Tomas64769242008-07-11 19:27:31 -04002761static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002762 struct address_space *mapping,
2763 loff_t pos, unsigned len, unsigned copied,
2764 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002765{
2766 struct inode *inode = mapping->host;
2767 int ret = 0, ret2;
2768 handle_t *handle = ext4_journal_current_handle();
2769 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002770 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002771 int write_mode = (int)(unsigned long)fsdata;
2772
Theodore Ts'o74d553a2013-04-03 12:39:17 -04002773 if (write_mode == FALL_BACK_TO_NONDELALLOC)
2774 return ext4_write_end(file, mapping, pos,
2775 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04002776
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002777 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04002778 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002779 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04002780
2781 /*
2782 * generic_write_end() will run mark_inode_dirty() if i_size
2783 * changes. So let's piggyback the i_disksize mark_inode_dirty
2784 * into that.
2785 */
Alex Tomas64769242008-07-11 19:27:31 -04002786 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05002787 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05002788 if (ext4_has_inline_data(inode) ||
2789 ext4_da_should_update_i_disksize(page, end)) {
Mingming Cao632eaea2008-07-11 19:27:31 -04002790 down_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'of3b59292012-11-15 23:08:57 -05002791 if (new_i_size > EXT4_I(inode)->i_disksize)
Mingming Cao632eaea2008-07-11 19:27:31 -04002792 EXT4_I(inode)->i_disksize = new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002793 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04002794 /* We need to mark inode dirty even if
2795 * new_i_size is less that inode->i_size
2796 * bu greater than i_disksize.(hint delalloc)
2797 */
2798 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04002799 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002800 }
Tao Ma9c3569b2012-12-10 14:05:57 -05002801
2802 if (write_mode != CONVERT_INLINE_DATA &&
2803 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
2804 ext4_has_inline_data(inode))
2805 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
2806 page);
2807 else
2808 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04002809 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05002810
Alex Tomas64769242008-07-11 19:27:31 -04002811 copied = ret2;
2812 if (ret2 < 0)
2813 ret = ret2;
2814 ret2 = ext4_journal_stop(handle);
2815 if (!ret)
2816 ret = ret2;
2817
2818 return ret ? ret : copied;
2819}
2820
Lukas Czernerd47992f2013-05-21 23:17:23 -04002821static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2822 unsigned int length)
Alex Tomas64769242008-07-11 19:27:31 -04002823{
Alex Tomas64769242008-07-11 19:27:31 -04002824 /*
2825 * Drop reserved blocks
2826 */
2827 BUG_ON(!PageLocked(page));
2828 if (!page_has_buffers(page))
2829 goto out;
2830
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002831 ext4_da_page_release_reservation(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04002832
2833out:
Lukas Czernerd47992f2013-05-21 23:17:23 -04002834 ext4_invalidatepage(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04002835
2836 return;
2837}
2838
Theodore Ts'occd25062009-02-26 01:04:07 -05002839/*
2840 * Force all delayed allocation blocks to be allocated for a given inode.
2841 */
2842int ext4_alloc_da_blocks(struct inode *inode)
2843{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04002844 trace_ext4_alloc_da_blocks(inode);
2845
Theodore Ts'occd25062009-02-26 01:04:07 -05002846 if (!EXT4_I(inode)->i_reserved_data_blocks &&
2847 !EXT4_I(inode)->i_reserved_meta_blocks)
2848 return 0;
2849
2850 /*
2851 * We do something simple for now. The filemap_flush() will
2852 * also start triggering a write of the data blocks, which is
2853 * not strictly speaking necessary (and for users of
2854 * laptop_mode, not even desirable). However, to do otherwise
2855 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002856 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002857 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05002858 * write_cache_pages() ---> (via passed in callback function)
2859 * __mpage_da_writepage() -->
2860 * mpage_add_bh_to_extent()
2861 * mpage_da_map_blocks()
2862 *
2863 * The problem is that write_cache_pages(), located in
2864 * mm/page-writeback.c, marks pages clean in preparation for
2865 * doing I/O, which is not desirable if we're not planning on
2866 * doing I/O at all.
2867 *
2868 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08002869 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05002870 * would be ugly in the extreme. So instead we would need to
2871 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002872 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05002873 * write out the pages, but rather only collect contiguous
2874 * logical block extents, call the multi-block allocator, and
2875 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002876 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002877 * For now, though, we'll cheat by calling filemap_flush(),
2878 * which will map the blocks, and start the I/O, but not
2879 * actually wait for the I/O to complete.
2880 */
2881 return filemap_flush(inode->i_mapping);
2882}
Alex Tomas64769242008-07-11 19:27:31 -04002883
2884/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002885 * bmap() is special. It gets used by applications such as lilo and by
2886 * the swapper to find the on-disk block of a specific piece of data.
2887 *
2888 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002889 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002890 * filesystem and enables swap, then they may get a nasty shock when the
2891 * data getting swapped to that swapfile suddenly gets overwritten by
2892 * the original zero's written out previously to the journal and
2893 * awaiting writeback in the kernel's buffer cache.
2894 *
2895 * So, if we see any bmap calls here on a modified, data-journaled file,
2896 * take extra steps to flush any blocks which might be in the cache.
2897 */
Mingming Cao617ba132006-10-11 01:20:53 -07002898static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002899{
2900 struct inode *inode = mapping->host;
2901 journal_t *journal;
2902 int err;
2903
Tao Ma46c7f252012-12-10 14:04:52 -05002904 /*
2905 * We can get here for an inline file via the FIBMAP ioctl
2906 */
2907 if (ext4_has_inline_data(inode))
2908 return 0;
2909
Alex Tomas64769242008-07-11 19:27:31 -04002910 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2911 test_opt(inode->i_sb, DELALLOC)) {
2912 /*
2913 * With delalloc we want to sync the file
2914 * so that we can make sure we allocate
2915 * blocks for file
2916 */
2917 filemap_write_and_wait(mapping);
2918 }
2919
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002920 if (EXT4_JOURNAL(inode) &&
2921 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002922 /*
2923 * This is a REALLY heavyweight approach, but the use of
2924 * bmap on dirty files is expected to be extremely rare:
2925 * only if we run lilo or swapon on a freshly made file
2926 * do we expect this to happen.
2927 *
2928 * (bmap requires CAP_SYS_RAWIO so this does not
2929 * represent an unprivileged user DOS attack --- we'd be
2930 * in trouble if mortal users could trigger this path at
2931 * will.)
2932 *
Mingming Cao617ba132006-10-11 01:20:53 -07002933 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002934 * regular files. If somebody wants to bmap a directory
2935 * or symlink and gets confused because the buffer
2936 * hasn't yet been flushed to disk, they deserve
2937 * everything they get.
2938 */
2939
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002940 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002941 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002942 jbd2_journal_lock_updates(journal);
2943 err = jbd2_journal_flush(journal);
2944 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002945
2946 if (err)
2947 return 0;
2948 }
2949
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002950 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002951}
2952
Mingming Cao617ba132006-10-11 01:20:53 -07002953static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002954{
Tao Ma46c7f252012-12-10 14:04:52 -05002955 int ret = -EAGAIN;
2956 struct inode *inode = page->mapping->host;
2957
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002958 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05002959
2960 if (ext4_has_inline_data(inode))
2961 ret = ext4_readpage_inline(inode, page);
2962
2963 if (ret == -EAGAIN)
2964 return mpage_readpage(page, ext4_get_block);
2965
2966 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002967}
2968
2969static int
Mingming Cao617ba132006-10-11 01:20:53 -07002970ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002971 struct list_head *pages, unsigned nr_pages)
2972{
Tao Ma46c7f252012-12-10 14:04:52 -05002973 struct inode *inode = mapping->host;
2974
2975 /* If the file has inline data, no need to do readpages. */
2976 if (ext4_has_inline_data(inode))
2977 return 0;
2978
Mingming Cao617ba132006-10-11 01:20:53 -07002979 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002980}
2981
Lukas Czernerd47992f2013-05-21 23:17:23 -04002982static void ext4_invalidatepage(struct page *page, unsigned int offset,
2983 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002984{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002985 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002986
Jan Kara4520fb32012-12-25 13:28:54 -05002987 /* No journalling happens on data buffers when this function is used */
2988 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
2989
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002990 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05002991}
2992
Jan Kara53e87262012-12-25 13:29:52 -05002993static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002994 unsigned int offset,
2995 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05002996{
2997 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2998
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002999 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003000
Jiaying Zhang744692d2010-03-04 16:14:02 -05003001 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003002 * If it's a full truncate we just forget about the pending dirtying
3003 */
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003004 if (offset == 0 && length == PAGE_CACHE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003005 ClearPageChecked(page);
3006
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003007 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003008}
3009
3010/* Wrapper for aops... */
3011static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003012 unsigned int offset,
3013 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003014{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003015 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003016}
3017
Mingming Cao617ba132006-10-11 01:20:53 -07003018static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003019{
Mingming Cao617ba132006-10-11 01:20:53 -07003020 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003021
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003022 trace_ext4_releasepage(page);
3023
Jan Karae1c36592013-03-10 22:19:00 -04003024 /* Page has dirty journalled data -> cannot release */
3025 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003026 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003027 if (journal)
3028 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3029 else
3030 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003031}
3032
3033/*
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003034 * ext4_get_block used when preparing for a DIO write or buffer write.
3035 * We allocate an uinitialized extent if blocks haven't been allocated.
3036 * The extent will be converted to initialized after the IO is complete.
3037 */
Tao Maf19d5872012-12-10 14:05:51 -05003038int ext4_get_block_write(struct inode *inode, sector_t iblock,
Mingming Cao4c0425f2009-09-28 15:48:41 -04003039 struct buffer_head *bh_result, int create)
3040{
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003041 ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003042 inode->i_ino, create);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003043 return _ext4_get_block(inode, iblock, bh_result,
3044 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003045}
3046
Zheng Liu729f52c2012-07-09 16:29:29 -04003047static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05003048 struct buffer_head *bh_result, int create)
Zheng Liu729f52c2012-07-09 16:29:29 -04003049{
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05003050 ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
3051 inode->i_ino, create);
3052 return _ext4_get_block(inode, iblock, bh_result,
3053 EXT4_GET_BLOCKS_NO_LOCK);
Zheng Liu729f52c2012-07-09 16:29:29 -04003054}
3055
Mingming Cao4c0425f2009-09-28 15:48:41 -04003056static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003057 ssize_t size, void *private)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003058{
3059 ext4_io_end_t *io_end = iocb->private;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003060
Jan Kara97a851e2013-06-04 11:58:58 -04003061 /* if not async direct IO just return */
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003062 if (!io_end)
Jan Kara97a851e2013-06-04 11:58:58 -04003063 return;
Mingming4b70df12009-11-03 14:44:54 -05003064
Zheng Liu88635ca2011-12-28 19:00:25 -05003065 ext_debug("ext4_end_io_dio(): io_end 0x%p "
Joe Perchesace36ad2012-03-19 23:11:43 -04003066 "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003067 iocb->private, io_end->inode->i_ino, iocb, offset,
3068 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003069
Theodore Ts'ob5a7e972011-12-12 10:53:02 -05003070 iocb->private = NULL;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003071 io_end->offset = offset;
3072 io_end->size = size;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003073 ext4_put_io_end(io_end);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003074}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003075
Mingming Cao4c0425f2009-09-28 15:48:41 -04003076/*
3077 * For ext4 extent files, ext4 will do direct-io write to holes,
3078 * preallocated extents, and those write extend the file, no need to
3079 * fall back to buffered IO.
3080 *
Lukas Czerner556615d2014-04-20 23:45:47 -04003081 * For holes, we fallocate those blocks, mark them as unwritten
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003082 * If those blocks were preallocated, we mark sure they are split, but
Lukas Czerner556615d2014-04-20 23:45:47 -04003083 * still keep the range to write as unwritten.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003084 *
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003085 * The unwritten extents will be converted to written when DIO is completed.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003086 * For async direct IO, since the IO may still pending when return, we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003087 * set up an end_io call back function, which will do the conversion
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003088 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003089 *
3090 * If the O_DIRECT write will extend the file then add this inode to the
3091 * orphan list. So recovery will truncate it back to the original size
3092 * if the machine crashes during the write.
3093 *
3094 */
3095static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
Al Viro16b1f052014-03-04 22:14:00 -05003096 struct iov_iter *iter, loff_t offset)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003097{
3098 struct file *file = iocb->ki_filp;
3099 struct inode *inode = file->f_mapping->host;
3100 ssize_t ret;
Al Viroa6cbcd42014-03-04 22:38:00 -05003101 size_t count = iov_iter_count(iter);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003102 int overwrite = 0;
3103 get_block_t *get_block_func = NULL;
3104 int dio_flags = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003105 loff_t final_size = offset + count;
Jan Kara97a851e2013-06-04 11:58:58 -04003106 ext4_io_end_t *io_end = NULL;
Zheng Liu729f52c2012-07-09 16:29:29 -04003107
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003108 /* Use the old path for reads and writes beyond i_size. */
3109 if (rw != WRITE || final_size > inode->i_size)
Al Viro16b1f052014-03-04 22:14:00 -05003110 return ext4_ind_direct_IO(rw, iocb, iter, offset);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003111
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003112 BUG_ON(iocb->private == NULL);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003113
Jan Karae8340392013-06-04 14:27:38 -04003114 /*
3115 * Make all waiters for direct IO properly wait also for extent
3116 * conversion. This also disallows race between truncate() and
3117 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3118 */
3119 if (rw == WRITE)
3120 atomic_inc(&inode->i_dio_count);
3121
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003122 /* If we do a overwrite dio, i_mutex locking can be released */
3123 overwrite = *((int *)iocb->private);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003124
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003125 if (overwrite) {
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003126 down_read(&EXT4_I(inode)->i_data_sem);
3127 mutex_unlock(&inode->i_mutex);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003128 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003129
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003130 /*
3131 * We could direct write to holes and fallocate.
3132 *
3133 * Allocated blocks to fill the hole are marked as
Lukas Czerner556615d2014-04-20 23:45:47 -04003134 * unwritten to prevent parallel buffered read to expose
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003135 * the stale data before DIO complete the data IO.
3136 *
3137 * As to previously fallocated extents, ext4 get_block will
3138 * just simply mark the buffer mapped but still keep the
Lukas Czerner556615d2014-04-20 23:45:47 -04003139 * extents unwritten.
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003140 *
3141 * For non AIO case, we will convert those unwritten extents
3142 * to written after return back from blockdev_direct_IO.
3143 *
3144 * For async DIO, the conversion needs to be deferred when the
3145 * IO is completed. The ext4 end_io callback function will be
3146 * called to take care of the conversion work. Here for async
3147 * case, we allocate an io_end structure to hook to the iocb.
3148 */
3149 iocb->private = NULL;
3150 ext4_inode_aio_set(inode, NULL);
3151 if (!is_sync_kiocb(iocb)) {
Jan Kara97a851e2013-06-04 11:58:58 -04003152 io_end = ext4_init_io_end(inode, GFP_NOFS);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003153 if (!io_end) {
3154 ret = -ENOMEM;
3155 goto retake_lock;
3156 }
Jan Kara97a851e2013-06-04 11:58:58 -04003157 /*
3158 * Grab reference for DIO. Will be dropped in ext4_end_io_dio()
3159 */
3160 iocb->private = ext4_get_io_end(io_end);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003161 /*
3162 * we save the io structure for current async direct
3163 * IO, so that later ext4_map_blocks() could flag the
3164 * io structure whether there is a unwritten extents
3165 * needs to be converted when IO is completed.
3166 */
3167 ext4_inode_aio_set(inode, io_end);
3168 }
3169
3170 if (overwrite) {
3171 get_block_func = ext4_get_block_write_nolock;
3172 } else {
3173 get_block_func = ext4_get_block_write;
3174 dio_flags = DIO_LOCKING;
3175 }
3176 ret = __blockdev_direct_IO(rw, iocb, inode,
Al Viro31b14032014-03-05 01:33:16 -05003177 inode->i_sb->s_bdev, iter,
3178 offset,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003179 get_block_func,
3180 ext4_end_io_dio,
3181 NULL,
3182 dio_flags);
3183
Theodore Ts'oa5499842013-05-11 19:07:42 -04003184 /*
Jan Kara97a851e2013-06-04 11:58:58 -04003185 * Put our reference to io_end. This can free the io_end structure e.g.
3186 * in sync IO case or in case of error. It can even perform extent
3187 * conversion if all bios we submitted finished before we got here.
3188 * Note that in that case iocb->private can be already set to NULL
3189 * here.
Theodore Ts'oa5499842013-05-11 19:07:42 -04003190 */
Jan Kara97a851e2013-06-04 11:58:58 -04003191 if (io_end) {
3192 ext4_inode_aio_set(inode, NULL);
3193 ext4_put_io_end(io_end);
3194 /*
3195 * When no IO was submitted ext4_end_io_dio() was not
3196 * called so we have to put iocb's reference.
3197 */
3198 if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
3199 WARN_ON(iocb->private != io_end);
3200 WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
Jan Kara97a851e2013-06-04 11:58:58 -04003201 ext4_put_io_end(io_end);
3202 iocb->private = NULL;
3203 }
3204 }
3205 if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003206 EXT4_STATE_DIO_UNWRITTEN)) {
3207 int err;
3208 /*
3209 * for non AIO case, since the IO is already
3210 * completed, we could do the conversion right here
3211 */
Jan Kara6b523df2013-06-04 13:21:11 -04003212 err = ext4_convert_unwritten_extents(NULL, inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003213 offset, ret);
3214 if (err < 0)
3215 ret = err;
3216 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3217 }
3218
3219retake_lock:
Jan Karae8340392013-06-04 14:27:38 -04003220 if (rw == WRITE)
3221 inode_dio_done(inode);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003222 /* take i_mutex locking again if we do a ovewrite dio */
3223 if (overwrite) {
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003224 up_read(&EXT4_I(inode)->i_data_sem);
3225 mutex_lock(&inode->i_mutex);
3226 }
3227
3228 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003229}
3230
3231static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
Al Virod8d3d942014-03-04 21:27:34 -05003232 struct iov_iter *iter, loff_t offset)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003233{
3234 struct file *file = iocb->ki_filp;
3235 struct inode *inode = file->f_mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -05003236 size_t count = iov_iter_count(iter);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003237 ssize_t ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003238
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003239 /*
3240 * If we are doing data journalling we don't support O_DIRECT
3241 */
3242 if (ext4_should_journal_data(inode))
3243 return 0;
3244
Tao Ma46c7f252012-12-10 14:04:52 -05003245 /* Let buffer I/O handle the inline data case. */
3246 if (ext4_has_inline_data(inode))
3247 return 0;
3248
Al Viroa6cbcd42014-03-04 22:38:00 -05003249 trace_ext4_direct_IO_enter(inode, offset, count, rw);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003250 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Al Viro16b1f052014-03-04 22:14:00 -05003251 ret = ext4_ext_direct_IO(rw, iocb, iter, offset);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003252 else
Al Viro16b1f052014-03-04 22:14:00 -05003253 ret = ext4_ind_direct_IO(rw, iocb, iter, offset);
Al Viroa6cbcd42014-03-04 22:38:00 -05003254 trace_ext4_direct_IO_exit(inode, offset, count, rw, ret);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003255 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003256}
3257
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003258/*
Mingming Cao617ba132006-10-11 01:20:53 -07003259 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003260 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3261 * much here because ->set_page_dirty is called under VFS locks. The page is
3262 * not necessarily locked.
3263 *
3264 * We cannot just dirty the page and leave attached buffers clean, because the
3265 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3266 * or jbddirty because all the journalling code will explode.
3267 *
3268 * So what we do is to mark the page "pending dirty" and next time writepage
3269 * is called, propagate that into the buffers appropriately.
3270 */
Mingming Cao617ba132006-10-11 01:20:53 -07003271static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003272{
3273 SetPageChecked(page);
3274 return __set_page_dirty_nobuffers(page);
3275}
3276
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003277static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003278 .readpage = ext4_readpage,
3279 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003280 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003281 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003282 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003283 .write_end = ext4_write_end,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003284 .bmap = ext4_bmap,
3285 .invalidatepage = ext4_invalidatepage,
3286 .releasepage = ext4_releasepage,
3287 .direct_IO = ext4_direct_IO,
3288 .migratepage = buffer_migrate_page,
3289 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003290 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291};
3292
Mingming Cao617ba132006-10-11 01:20:53 -07003293static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003294 .readpage = ext4_readpage,
3295 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003296 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003297 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003298 .write_begin = ext4_write_begin,
3299 .write_end = ext4_journalled_write_end,
3300 .set_page_dirty = ext4_journalled_set_page_dirty,
3301 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003302 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003303 .releasepage = ext4_releasepage,
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003304 .direct_IO = ext4_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003305 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003306 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003307};
3308
Alex Tomas64769242008-07-11 19:27:31 -04003309static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003310 .readpage = ext4_readpage,
3311 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003312 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003313 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003314 .write_begin = ext4_da_write_begin,
3315 .write_end = ext4_da_write_end,
3316 .bmap = ext4_bmap,
3317 .invalidatepage = ext4_da_invalidatepage,
3318 .releasepage = ext4_releasepage,
3319 .direct_IO = ext4_direct_IO,
3320 .migratepage = buffer_migrate_page,
3321 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003322 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003323};
3324
Mingming Cao617ba132006-10-11 01:20:53 -07003325void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003326{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003327 switch (ext4_inode_journal_mode(inode)) {
3328 case EXT4_INODE_ORDERED_DATA_MODE:
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003329 ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003330 break;
3331 case EXT4_INODE_WRITEBACK_DATA_MODE:
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003332 ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003333 break;
3334 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003335 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003336 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003337 default:
3338 BUG();
3339 }
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003340 if (test_opt(inode->i_sb, DELALLOC))
3341 inode->i_mapping->a_ops = &ext4_da_aops;
3342 else
3343 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003344}
3345
Lukas Czernerd863dc32013-05-27 23:32:35 -04003346/*
Lukas Czernerd863dc32013-05-27 23:32:35 -04003347 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3348 * starting from file offset 'from'. The range to be zero'd must
3349 * be contained with in one block. If the specified range exceeds
3350 * the end of the block it will be shortened to end of the block
3351 * that cooresponds to 'from'
3352 */
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003353static int ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003354 struct address_space *mapping, loff_t from, loff_t length)
3355{
3356 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3357 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3358 unsigned blocksize, max, pos;
3359 ext4_lblk_t iblock;
3360 struct inode *inode = mapping->host;
3361 struct buffer_head *bh;
3362 struct page *page;
3363 int err = 0;
3364
3365 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3366 mapping_gfp_mask(mapping) & ~__GFP_FS);
3367 if (!page)
3368 return -ENOMEM;
3369
3370 blocksize = inode->i_sb->s_blocksize;
3371 max = blocksize - (offset & (blocksize - 1));
3372
3373 /*
3374 * correct length if it does not fall between
3375 * 'from' and the end of the block
3376 */
3377 if (length > max || length < 0)
3378 length = max;
3379
3380 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3381
3382 if (!page_has_buffers(page))
3383 create_empty_buffers(page, blocksize, 0);
3384
3385 /* Find the buffer that contains "offset" */
3386 bh = page_buffers(page);
3387 pos = blocksize;
3388 while (offset >= pos) {
3389 bh = bh->b_this_page;
3390 iblock++;
3391 pos += blocksize;
3392 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003393 if (buffer_freed(bh)) {
3394 BUFFER_TRACE(bh, "freed: skip");
3395 goto unlock;
3396 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003397 if (!buffer_mapped(bh)) {
3398 BUFFER_TRACE(bh, "unmapped");
3399 ext4_get_block(inode, iblock, bh, 0);
3400 /* unmapped? It's a hole - nothing to do */
3401 if (!buffer_mapped(bh)) {
3402 BUFFER_TRACE(bh, "still unmapped");
3403 goto unlock;
3404 }
3405 }
3406
3407 /* Ok, it's mapped. Make sure it's up-to-date */
3408 if (PageUptodate(page))
3409 set_buffer_uptodate(bh);
3410
3411 if (!buffer_uptodate(bh)) {
3412 err = -EIO;
3413 ll_rw_block(READ, 1, &bh);
3414 wait_on_buffer(bh);
3415 /* Uhhuh. Read error. Complain and punt. */
3416 if (!buffer_uptodate(bh))
3417 goto unlock;
3418 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003419 if (ext4_should_journal_data(inode)) {
3420 BUFFER_TRACE(bh, "get write access");
3421 err = ext4_journal_get_write_access(handle, bh);
3422 if (err)
3423 goto unlock;
3424 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003425 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003426 BUFFER_TRACE(bh, "zeroed end of block");
3427
Lukas Czernerd863dc32013-05-27 23:32:35 -04003428 if (ext4_should_journal_data(inode)) {
3429 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003430 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003431 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003432 mark_buffer_dirty(bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003433 if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
3434 err = ext4_jbd2_file_inode(handle, inode);
3435 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003436
3437unlock:
3438 unlock_page(page);
3439 page_cache_release(page);
3440 return err;
3441}
3442
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003443/*
3444 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3445 * up to the end of the block which corresponds to `from'.
3446 * This required during truncate. We need to physically zero the tail end
3447 * of that block so it doesn't yield old data if the file is later grown.
3448 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003449static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003450 struct address_space *mapping, loff_t from)
3451{
3452 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3453 unsigned length;
3454 unsigned blocksize;
3455 struct inode *inode = mapping->host;
3456
3457 blocksize = inode->i_sb->s_blocksize;
3458 length = blocksize - (offset & (blocksize - 1));
3459
3460 return ext4_block_zero_page_range(handle, mapping, from, length);
3461}
3462
Lukas Czernera87dd182013-05-27 23:32:35 -04003463int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3464 loff_t lstart, loff_t length)
3465{
3466 struct super_block *sb = inode->i_sb;
3467 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003468 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003469 ext4_fsblk_t start, end;
3470 loff_t byte_end = (lstart + length - 1);
3471 int err = 0;
3472
Lukas Czernere1be3a92013-07-01 08:12:39 -04003473 partial_start = lstart & (sb->s_blocksize - 1);
3474 partial_end = byte_end & (sb->s_blocksize - 1);
3475
Lukas Czernera87dd182013-05-27 23:32:35 -04003476 start = lstart >> sb->s_blocksize_bits;
3477 end = byte_end >> sb->s_blocksize_bits;
3478
3479 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003480 if (start == end &&
3481 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003482 err = ext4_block_zero_page_range(handle, mapping,
3483 lstart, length);
3484 return err;
3485 }
3486 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003487 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003488 err = ext4_block_zero_page_range(handle, mapping,
3489 lstart, sb->s_blocksize);
3490 if (err)
3491 return err;
3492 }
3493 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003494 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003495 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003496 byte_end - partial_end,
3497 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003498 return err;
3499}
3500
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003501int ext4_can_truncate(struct inode *inode)
3502{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003503 if (S_ISREG(inode->i_mode))
3504 return 1;
3505 if (S_ISDIR(inode->i_mode))
3506 return 1;
3507 if (S_ISLNK(inode->i_mode))
3508 return !ext4_inode_is_fast_symlink(inode);
3509 return 0;
3510}
3511
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003512/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003513 * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3514 * associated with the given offset and length
3515 *
3516 * @inode: File inode
3517 * @offset: The offset where the hole will begin
3518 * @len: The length of the hole
3519 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003520 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003521 */
3522
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003523int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003524{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003525 struct super_block *sb = inode->i_sb;
3526 ext4_lblk_t first_block, stop_block;
3527 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003528 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003529 handle_t *handle;
3530 unsigned int credits;
3531 int ret = 0;
3532
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003533 if (!S_ISREG(inode->i_mode))
Allison Henderson73355192012-03-21 22:23:31 -04003534 return -EOPNOTSUPP;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003535
Lukas Czernerb8a86842014-03-18 18:05:35 -04003536 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003537
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003538 /*
3539 * Write out all dirty pages to avoid race conditions
3540 * Then release them.
3541 */
3542 if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
3543 ret = filemap_write_and_wait_range(mapping, offset,
3544 offset + length - 1);
3545 if (ret)
3546 return ret;
3547 }
3548
3549 mutex_lock(&inode->i_mutex);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003550
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003551 /* No need to punch hole beyond i_size */
3552 if (offset >= inode->i_size)
3553 goto out_mutex;
3554
3555 /*
3556 * If the hole extends beyond i_size, set the hole
3557 * to end after the page that contains i_size
3558 */
3559 if (offset + length > inode->i_size) {
3560 length = inode->i_size +
3561 PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
3562 offset;
3563 }
3564
Jan Karaa3612932013-08-16 21:19:41 -04003565 if (offset & (sb->s_blocksize - 1) ||
3566 (offset + length) & (sb->s_blocksize - 1)) {
3567 /*
3568 * Attach jinode to inode for jbd2 if we do any zeroing of
3569 * partial block
3570 */
3571 ret = ext4_inode_attach_jinode(inode);
3572 if (ret < 0)
3573 goto out_mutex;
3574
3575 }
3576
Lukas Czernera87dd182013-05-27 23:32:35 -04003577 first_block_offset = round_up(offset, sb->s_blocksize);
3578 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003579
Lukas Czernera87dd182013-05-27 23:32:35 -04003580 /* Now release the pages and zero block aligned part of pages*/
3581 if (last_block_offset > first_block_offset)
3582 truncate_pagecache_range(inode, first_block_offset,
3583 last_block_offset);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003584
3585 /* Wait all existing dio workers, newcomers will block on i_mutex */
3586 ext4_inode_block_unlocked_dio(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003587 inode_dio_wait(inode);
3588
3589 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3590 credits = ext4_writepage_trans_blocks(inode);
3591 else
3592 credits = ext4_blocks_for_truncate(inode);
3593 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3594 if (IS_ERR(handle)) {
3595 ret = PTR_ERR(handle);
3596 ext4_std_error(sb, ret);
3597 goto out_dio;
3598 }
3599
Lukas Czernera87dd182013-05-27 23:32:35 -04003600 ret = ext4_zero_partial_blocks(handle, inode, offset,
3601 length);
3602 if (ret)
3603 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003604
3605 first_block = (offset + sb->s_blocksize - 1) >>
3606 EXT4_BLOCK_SIZE_BITS(sb);
3607 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
3608
3609 /* If there are no blocks to remove, return now */
3610 if (first_block >= stop_block)
3611 goto out_stop;
3612
3613 down_write(&EXT4_I(inode)->i_data_sem);
3614 ext4_discard_preallocations(inode);
3615
3616 ret = ext4_es_remove_extent(inode, first_block,
3617 stop_block - first_block);
3618 if (ret) {
3619 up_write(&EXT4_I(inode)->i_data_sem);
3620 goto out_stop;
3621 }
3622
3623 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3624 ret = ext4_ext_remove_space(inode, first_block,
3625 stop_block - 1);
3626 else
3627 ret = ext4_free_hole_blocks(handle, inode, first_block,
3628 stop_block);
3629
Theodore Ts'o819c4922013-04-03 12:47:17 -04003630 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003631 if (IS_SYNC(inode))
3632 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05003633
3634 /* Now release the pages again to reduce race window */
3635 if (last_block_offset > first_block_offset)
3636 truncate_pagecache_range(inode, first_block_offset,
3637 last_block_offset);
3638
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003639 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3640 ext4_mark_inode_dirty(handle, inode);
3641out_stop:
3642 ext4_journal_stop(handle);
3643out_dio:
3644 ext4_inode_resume_unlocked_dio(inode);
3645out_mutex:
3646 mutex_unlock(&inode->i_mutex);
3647 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003648}
3649
Jan Karaa3612932013-08-16 21:19:41 -04003650int ext4_inode_attach_jinode(struct inode *inode)
3651{
3652 struct ext4_inode_info *ei = EXT4_I(inode);
3653 struct jbd2_inode *jinode;
3654
3655 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3656 return 0;
3657
3658 jinode = jbd2_alloc_inode(GFP_KERNEL);
3659 spin_lock(&inode->i_lock);
3660 if (!ei->jinode) {
3661 if (!jinode) {
3662 spin_unlock(&inode->i_lock);
3663 return -ENOMEM;
3664 }
3665 ei->jinode = jinode;
3666 jbd2_journal_init_jbd_inode(ei->jinode, inode);
3667 jinode = NULL;
3668 }
3669 spin_unlock(&inode->i_lock);
3670 if (unlikely(jinode != NULL))
3671 jbd2_free_inode(jinode);
3672 return 0;
3673}
3674
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003675/*
Mingming Cao617ba132006-10-11 01:20:53 -07003676 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003677 *
Mingming Cao617ba132006-10-11 01:20:53 -07003678 * We block out ext4_get_block() block instantiations across the entire
3679 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003680 * simultaneously on behalf of the same inode.
3681 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003682 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003683 * is one core, guiding principle: the file's tree must always be consistent on
3684 * disk. We must be able to restart the truncate after a crash.
3685 *
3686 * The file's tree may be transiently inconsistent in memory (although it
3687 * probably isn't), but whenever we close off and commit a journal transaction,
3688 * the contents of (the filesystem + the journal) must be consistent and
3689 * restartable. It's pretty simple, really: bottom up, right to left (although
3690 * left-to-right works OK too).
3691 *
3692 * Note that at recovery time, journal replay occurs *before* the restart of
3693 * truncate against the orphan inode list.
3694 *
3695 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003696 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003697 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003698 * ext4_truncate() to have another go. So there will be instantiated blocks
3699 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003700 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003701 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003702 */
Mingming Cao617ba132006-10-11 01:20:53 -07003703void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003704{
Theodore Ts'o819c4922013-04-03 12:47:17 -04003705 struct ext4_inode_info *ei = EXT4_I(inode);
3706 unsigned int credits;
3707 handle_t *handle;
3708 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04003709
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04003710 /*
3711 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04003712 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04003713 * have i_mutex locked because it's not necessary.
3714 */
3715 if (!(inode->i_state & (I_NEW|I_FREEING)))
3716 WARN_ON(!mutex_is_locked(&inode->i_mutex));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003717 trace_ext4_truncate_enter(inode);
3718
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003719 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003720 return;
3721
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003722 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003723
Theodore Ts'o5534fb52009-09-17 09:34:16 -04003724 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003725 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05003726
Tao Maaef1c852012-12-10 14:06:02 -05003727 if (ext4_has_inline_data(inode)) {
3728 int has_inline = 1;
3729
3730 ext4_inline_data_truncate(inode, &has_inline);
3731 if (has_inline)
3732 return;
3733 }
3734
Jan Karaa3612932013-08-16 21:19:41 -04003735 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
3736 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3737 if (ext4_inode_attach_jinode(inode) < 0)
3738 return;
3739 }
3740
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003741 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04003742 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003743 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04003744 credits = ext4_blocks_for_truncate(inode);
3745
3746 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3747 if (IS_ERR(handle)) {
3748 ext4_std_error(inode->i_sb, PTR_ERR(handle));
3749 return;
3750 }
3751
Lukas Czernereb3544c2013-05-27 23:32:35 -04003752 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3753 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04003754
3755 /*
3756 * We add the inode to the orphan list, so that if this
3757 * truncate spans multiple transactions, and we crash, we will
3758 * resume the truncate when the filesystem recovers. It also
3759 * marks the inode dirty, to catch the new size.
3760 *
3761 * Implication: the file must always be in a sane, consistent
3762 * truncatable state while each transaction commits.
3763 */
3764 if (ext4_orphan_add(handle, inode))
3765 goto out_stop;
3766
3767 down_write(&EXT4_I(inode)->i_data_sem);
3768
3769 ext4_discard_preallocations(inode);
3770
3771 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3772 ext4_ext_truncate(handle, inode);
3773 else
3774 ext4_ind_truncate(handle, inode);
3775
3776 up_write(&ei->i_data_sem);
3777
3778 if (IS_SYNC(inode))
3779 ext4_handle_sync(handle);
3780
3781out_stop:
3782 /*
3783 * If this was a simple ftruncate() and the file will remain alive,
3784 * then we need to clear up the orphan record which we created above.
3785 * However, if this was a real unlink then we were called by
3786 * ext4_delete_inode(), and we allow that function to clean up the
3787 * orphan info for us.
3788 */
3789 if (inode->i_nlink)
3790 ext4_orphan_del(handle, inode);
3791
3792 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3793 ext4_mark_inode_dirty(handle, inode);
3794 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07003795
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003796 trace_ext4_truncate_exit(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003797}
3798
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003799/*
Mingming Cao617ba132006-10-11 01:20:53 -07003800 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003801 * underlying buffer_head on success. If 'in_mem' is true, we have all
3802 * data in memory that is needed to recreate the on-disk version of this
3803 * inode.
3804 */
Mingming Cao617ba132006-10-11 01:20:53 -07003805static int __ext4_get_inode_loc(struct inode *inode,
3806 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003807{
Theodore Ts'o240799c2008-10-09 23:53:47 -04003808 struct ext4_group_desc *gdp;
3809 struct buffer_head *bh;
3810 struct super_block *sb = inode->i_sb;
3811 ext4_fsblk_t block;
3812 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003813
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003814 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003815 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003816 return -EIO;
3817
Theodore Ts'o240799c2008-10-09 23:53:47 -04003818 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3819 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3820 if (!gdp)
3821 return -EIO;
3822
3823 /*
3824 * Figure out the offset within the block group inode table
3825 */
Tao Ma00d09882011-05-09 10:26:41 -04003826 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003827 inode_offset = ((inode->i_ino - 1) %
3828 EXT4_INODES_PER_GROUP(sb));
3829 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3830 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3831
3832 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05003833 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05003834 return -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003835 if (!buffer_uptodate(bh)) {
3836 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04003837
3838 /*
3839 * If the buffer has the write error flag, we have failed
3840 * to write out another inode in the same block. In this
3841 * case, we don't have to read the block because we may
3842 * read the old inode data successfully.
3843 */
3844 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3845 set_buffer_uptodate(bh);
3846
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003847 if (buffer_uptodate(bh)) {
3848 /* someone brought it uptodate while we waited */
3849 unlock_buffer(bh);
3850 goto has_buffer;
3851 }
3852
3853 /*
3854 * If we have all information of the inode in memory and this
3855 * is the only valid inode in the block, we need not read the
3856 * block.
3857 */
3858 if (in_mem) {
3859 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003860 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003861
Theodore Ts'o240799c2008-10-09 23:53:47 -04003862 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003863
3864 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003865 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05003866 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003867 goto make_io;
3868
3869 /*
3870 * If the inode bitmap isn't in cache then the
3871 * optimisation may end up performing two reads instead
3872 * of one, so skip it.
3873 */
3874 if (!buffer_uptodate(bitmap_bh)) {
3875 brelse(bitmap_bh);
3876 goto make_io;
3877 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04003878 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003879 if (i == inode_offset)
3880 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003881 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003882 break;
3883 }
3884 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003885 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003886 /* all other inodes are free, so skip I/O */
3887 memset(bh->b_data, 0, bh->b_size);
3888 set_buffer_uptodate(bh);
3889 unlock_buffer(bh);
3890 goto has_buffer;
3891 }
3892 }
3893
3894make_io:
3895 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04003896 * If we need to do any I/O, try to pre-readahead extra
3897 * blocks from the inode table.
3898 */
3899 if (EXT4_SB(sb)->s_inode_readahead_blks) {
3900 ext4_fsblk_t b, end, table;
3901 unsigned num;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003902 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003903
3904 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003905 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003906 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003907 if (table > b)
3908 b = table;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003909 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003910 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003911 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05003912 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003913 table += num / inodes_per_block;
3914 if (end > table)
3915 end = table;
3916 while (b <= end)
3917 sb_breadahead(sb, b++);
3918 }
3919
3920 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003921 * There are other valid inodes in the buffer, this inode
3922 * has in-inode xattrs, or we don't have this inode in memory.
3923 * Read the block from disk.
3924 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003925 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003926 get_bh(bh);
3927 bh->b_end_io = end_buffer_read_sync;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003928 submit_bh(READ | REQ_META | REQ_PRIO, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003929 wait_on_buffer(bh);
3930 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003931 EXT4_ERROR_INODE_BLOCK(inode, block,
3932 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003933 brelse(bh);
3934 return -EIO;
3935 }
3936 }
3937has_buffer:
3938 iloc->bh = bh;
3939 return 0;
3940}
3941
Mingming Cao617ba132006-10-11 01:20:53 -07003942int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003943{
3944 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003945 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003946 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003947}
3948
Mingming Cao617ba132006-10-11 01:20:53 -07003949void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003950{
Mingming Cao617ba132006-10-11 01:20:53 -07003951 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003952 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003953
Mingming Cao617ba132006-10-11 01:20:53 -07003954 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003955 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003956 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003957 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003958 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003959 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003960 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003961 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003962 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003963 new_fl |= S_DIRSYNC;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04003964 inode_set_flags(inode, new_fl,
3965 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003966}
3967
Jan Karaff9ddf72007-07-18 09:24:20 -04003968/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3969void ext4_get_inode_flags(struct ext4_inode_info *ei)
3970{
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003971 unsigned int vfs_fl;
3972 unsigned long old_fl, new_fl;
Jan Karaff9ddf72007-07-18 09:24:20 -04003973
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003974 do {
3975 vfs_fl = ei->vfs_inode.i_flags;
3976 old_fl = ei->i_flags;
3977 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3978 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
3979 EXT4_DIRSYNC_FL);
3980 if (vfs_fl & S_SYNC)
3981 new_fl |= EXT4_SYNC_FL;
3982 if (vfs_fl & S_APPEND)
3983 new_fl |= EXT4_APPEND_FL;
3984 if (vfs_fl & S_IMMUTABLE)
3985 new_fl |= EXT4_IMMUTABLE_FL;
3986 if (vfs_fl & S_NOATIME)
3987 new_fl |= EXT4_NOATIME_FL;
3988 if (vfs_fl & S_DIRSYNC)
3989 new_fl |= EXT4_DIRSYNC_FL;
3990 } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
Jan Karaff9ddf72007-07-18 09:24:20 -04003991}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003992
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003993static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003994 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003995{
3996 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003997 struct inode *inode = &(ei->vfs_inode);
3998 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003999
4000 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4001 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
4002 /* we are using combined 48 bit field */
4003 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4004 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004005 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004006 /* i_blocks represent file system block size */
4007 return i_blocks << (inode->i_blkbits - 9);
4008 } else {
4009 return i_blocks;
4010 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004011 } else {
4012 return le32_to_cpu(raw_inode->i_blocks_lo);
4013 }
4014}
Jan Karaff9ddf72007-07-18 09:24:20 -04004015
Tao Ma152a7b02012-12-02 11:13:24 -05004016static inline void ext4_iget_extra_inode(struct inode *inode,
4017 struct ext4_inode *raw_inode,
4018 struct ext4_inode_info *ei)
4019{
4020 __le32 *magic = (void *)raw_inode +
4021 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Tao Ma67cf5b02012-12-10 14:04:46 -05004022 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004023 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Tao Ma67cf5b02012-12-10 14:04:46 -05004024 ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004025 } else
4026 EXT4_I(inode)->i_inline_off = 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004027}
4028
David Howells1d1fe1e2008-02-07 00:15:37 -08004029struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004030{
Mingming Cao617ba132006-10-11 01:20:53 -07004031 struct ext4_iloc iloc;
4032 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004033 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004034 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004035 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004036 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004037 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004038 uid_t i_uid;
4039 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004040
David Howells1d1fe1e2008-02-07 00:15:37 -08004041 inode = iget_locked(sb, ino);
4042 if (!inode)
4043 return ERR_PTR(-ENOMEM);
4044 if (!(inode->i_state & I_NEW))
4045 return inode;
4046
4047 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004048 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004049
David Howells1d1fe1e2008-02-07 00:15:37 -08004050 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4051 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004052 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004053 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004054
4055 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4056 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4057 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4058 EXT4_INODE_SIZE(inode->i_sb)) {
4059 EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4060 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4061 EXT4_INODE_SIZE(inode->i_sb));
4062 ret = -EIO;
4063 goto bad_inode;
4064 }
4065 } else
4066 ei->i_extra_isize = 0;
4067
4068 /* Precompute checksum seed for inode metadata */
4069 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4070 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
4071 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4072 __u32 csum;
4073 __le32 inum = cpu_to_le32(inode->i_ino);
4074 __le32 gen = raw_inode->i_generation;
4075 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4076 sizeof(inum));
4077 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4078 sizeof(gen));
4079 }
4080
4081 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4082 EXT4_ERROR_INODE(inode, "checksum invalid");
4083 ret = -EIO;
4084 goto bad_inode;
4085 }
4086
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004087 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004088 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4089 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004090 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004091 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4092 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004093 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004094 i_uid_write(inode, i_uid);
4095 i_gid_write(inode, i_gid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004096 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004097
Theodore Ts'o353eb832011-01-10 12:18:25 -05004098 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004099 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004100 ei->i_dir_start_lookup = 0;
4101 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4102 /* We now have enough fields to check if the inode was active or not.
4103 * This is needed because nfsd might try to access dead inodes
4104 * the test is that same one that e2fsck uses
4105 * NeilBrown 1999oct15
4106 */
4107 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004108 if ((inode->i_mode == 0 ||
4109 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4110 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004111 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004112 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004113 goto bad_inode;
4114 }
4115 /* The only unlinked inodes we let through here have
4116 * valid i_mode and are being read by the orphan
4117 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004118 * the process of deleting those.
4119 * OR it is the EXT4_BOOT_LOADER_INO which is
4120 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004121 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004122 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004123 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004124 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04004125 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004126 ei->i_file_acl |=
4127 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004128 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004129 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004130#ifdef CONFIG_QUOTA
4131 ei->i_reserved_quota = 0;
4132#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004133 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4134 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004135 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004136 /*
4137 * NOTE! The in-memory inode i_data array is in little-endian order
4138 * even on big-endian machines: we do NOT byteswap the block numbers!
4139 */
Mingming Cao617ba132006-10-11 01:20:53 -07004140 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004141 ei->i_data[block] = raw_inode->i_block[block];
4142 INIT_LIST_HEAD(&ei->i_orphan);
4143
Jan Karab436b9b2009-12-08 23:51:10 -05004144 /*
4145 * Set transaction id's of transactions that have to be committed
4146 * to finish f[data]sync. We set them to currently running transaction
4147 * as we cannot be sure that the inode or some of its metadata isn't
4148 * part of the transaction - the inode could have been reclaimed and
4149 * now it is reread from disk.
4150 */
4151 if (journal) {
4152 transaction_t *transaction;
4153 tid_t tid;
4154
Theodore Ts'oa931da62010-08-03 21:35:12 -04004155 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004156 if (journal->j_running_transaction)
4157 transaction = journal->j_running_transaction;
4158 else
4159 transaction = journal->j_committing_transaction;
4160 if (transaction)
4161 tid = transaction->t_tid;
4162 else
4163 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004164 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004165 ei->i_sync_tid = tid;
4166 ei->i_datasync_tid = tid;
4167 }
4168
Eric Sandeen0040d982008-02-05 22:36:43 -05004169 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004170 if (ei->i_extra_isize == 0) {
4171 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004172 ei->i_extra_isize = sizeof(struct ext4_inode) -
4173 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004174 } else {
Tao Ma152a7b02012-12-02 11:13:24 -05004175 ext4_iget_extra_inode(inode, raw_inode, ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004176 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004177 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004178
Kalpak Shahef7f3832007-07-18 09:15:20 -04004179 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4180 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4181 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4182 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4183
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004184 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004185 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4186 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4187 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4188 inode->i_version |=
4189 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4190 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004191 }
4192
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004193 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004194 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004195 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04004196 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
4197 ei->i_file_acl);
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004198 ret = -EIO;
4199 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004200 } else if (!ext4_has_inline_data(inode)) {
4201 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4202 if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4203 (S_ISLNK(inode->i_mode) &&
4204 !ext4_inode_is_fast_symlink(inode))))
4205 /* Validate extent which is part of inode */
4206 ret = ext4_ext_check_inode(inode);
4207 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4208 (S_ISLNK(inode->i_mode) &&
4209 !ext4_inode_is_fast_symlink(inode))) {
4210 /* Validate block references which are part of inode */
4211 ret = ext4_ind_check_inode(inode);
4212 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004213 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004214 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004215 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004216
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004217 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004218 inode->i_op = &ext4_file_inode_operations;
4219 inode->i_fop = &ext4_file_operations;
4220 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004221 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004222 inode->i_op = &ext4_dir_inode_operations;
4223 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004224 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00004225 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004226 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004227 nd_terminate_link(ei->i_data, inode->i_size,
4228 sizeof(ei->i_data) - 1);
4229 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004230 inode->i_op = &ext4_symlink_inode_operations;
4231 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004232 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004233 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4234 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004235 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004236 if (raw_inode->i_block[0])
4237 init_special_inode(inode, inode->i_mode,
4238 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4239 else
4240 init_special_inode(inode, inode->i_mode,
4241 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004242 } else if (ino == EXT4_BOOT_LOADER_INO) {
4243 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004244 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004245 ret = -EIO;
Theodore Ts'o24676da2010-05-16 21:00:00 -04004246 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004247 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004248 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004249 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004250 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004251 unlock_new_inode(inode);
4252 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004253
4254bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004255 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004256 iget_failed(inode);
4257 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004258}
4259
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004260static int ext4_inode_blocks_set(handle_t *handle,
4261 struct ext4_inode *raw_inode,
4262 struct ext4_inode_info *ei)
4263{
4264 struct inode *inode = &(ei->vfs_inode);
4265 u64 i_blocks = inode->i_blocks;
4266 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004267
4268 if (i_blocks <= ~0U) {
4269 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004270 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004271 * as multiple of 512 bytes
4272 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004273 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004274 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004275 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004276 return 0;
4277 }
4278 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4279 return -EFBIG;
4280
4281 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004282 /*
4283 * i_blocks can be represented in a 48 bit variable
4284 * as multiple of 512 bytes
4285 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004286 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004287 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004288 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004289 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004290 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004291 /* i_block is stored in file system block size */
4292 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4293 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4294 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004295 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004296 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004297}
4298
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004299/*
4300 * Post the struct inode info into an on-disk inode location in the
4301 * buffer-cache. This gobbles the caller's reference to the
4302 * buffer_head in the inode location struct.
4303 *
4304 * The caller must have write access to iloc->bh.
4305 */
Mingming Cao617ba132006-10-11 01:20:53 -07004306static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004307 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004308 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004309{
Mingming Cao617ba132006-10-11 01:20:53 -07004310 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4311 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004312 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004313 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004314 int err = 0, rc, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004315 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004316 uid_t i_uid;
4317 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004318
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004319 spin_lock(&ei->i_raw_lock);
4320
4321 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004322 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004323 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07004324 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004325
Jan Karaff9ddf72007-07-18 09:24:20 -04004326 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004327 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004328 i_uid = i_uid_read(inode);
4329 i_gid = i_gid_read(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004330 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004331 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4332 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004333/*
4334 * Fix up interoperability with old kernels. Otherwise, old inodes get
4335 * re-used with the upper 16 bits of the uid/gid intact
4336 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004337 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004338 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004339 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004340 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004341 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004342 } else {
4343 raw_inode->i_uid_high = 0;
4344 raw_inode->i_gid_high = 0;
4345 }
4346 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004347 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4348 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004349 raw_inode->i_uid_high = 0;
4350 raw_inode->i_gid_high = 0;
4351 }
4352 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004353
4354 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4355 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4356 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4357 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4358
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004359 if (ext4_inode_blocks_set(handle, raw_inode, ei)) {
4360 spin_unlock(&ei->i_raw_lock);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004361 goto out_brelse;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004362 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004363 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05004364 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004365 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004366 raw_inode->i_file_acl_high =
4367 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004368 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Jan Karab71fc072012-09-26 21:52:20 -04004369 if (ei->i_disksize != ext4_isize(raw_inode)) {
4370 ext4_isize_set(raw_inode, ei->i_disksize);
4371 need_datasync = 1;
4372 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004373 if (ei->i_disksize > 0x7fffffffULL) {
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004374 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4375 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4376 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004377 cpu_to_le32(EXT4_GOOD_OLD_REV))
4378 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004379 }
4380 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4381 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4382 if (old_valid_dev(inode->i_rdev)) {
4383 raw_inode->i_block[0] =
4384 cpu_to_le32(old_encode_dev(inode->i_rdev));
4385 raw_inode->i_block[1] = 0;
4386 } else {
4387 raw_inode->i_block[0] = 0;
4388 raw_inode->i_block[1] =
4389 cpu_to_le32(new_encode_dev(inode->i_rdev));
4390 raw_inode->i_block[2] = 0;
4391 }
Tao Maf19d5872012-12-10 14:05:51 -05004392 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004393 for (block = 0; block < EXT4_N_BLOCKS; block++)
4394 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05004395 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004396
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004397 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004398 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
4399 if (ei->i_extra_isize) {
4400 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4401 raw_inode->i_version_hi =
4402 cpu_to_le32(inode->i_version >> 32);
4403 raw_inode->i_extra_isize =
4404 cpu_to_le16(ei->i_extra_isize);
4405 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004406 }
4407
Darrick J. Wong814525f2012-04-29 18:31:10 -04004408 ext4_inode_csum_set(inode, raw_inode, ei);
4409
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004410 spin_unlock(&ei->i_raw_lock);
4411
Frank Mayhar830156c2009-09-29 10:07:47 -04004412 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004413 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04004414 if (!err)
4415 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004416 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004417 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04004418 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004419 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4420 if (err)
4421 goto out_brelse;
4422 ext4_update_dynamic_rev(sb);
4423 EXT4_SET_RO_COMPAT_FEATURE(sb,
4424 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4425 ext4_handle_sync(handle);
4426 err = ext4_handle_dirty_super(handle, sb);
4427 }
Jan Karab71fc072012-09-26 21:52:20 -04004428 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004429out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004430 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004431 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004432 return err;
4433}
4434
4435/*
Mingming Cao617ba132006-10-11 01:20:53 -07004436 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004437 *
4438 * We are called from a few places:
4439 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004440 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004441 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004442 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004443 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004444 * - Within flush work (sys_sync(), kupdate and such).
4445 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004446 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004447 * - Within iput_final() -> write_inode_now()
4448 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004449 *
4450 * In all cases it is actually safe for us to return without doing anything,
4451 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004452 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
4453 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004454 *
4455 * Note that we are absolutely dependent upon all inode dirtiers doing the
4456 * right thing: they *must* call mark_inode_dirty() after dirtying info in
4457 * which we are interested.
4458 *
4459 * It would be a bug for them to not do this. The code:
4460 *
4461 * mark_inode_dirty(inode)
4462 * stuff();
4463 * inode->i_size = expr;
4464 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004465 * is in error because write_inode() could occur while `stuff()' is running,
4466 * and the new i_size will be lost. Plus the inode will no longer be on the
4467 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004468 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004469int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004470{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004471 int err;
4472
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004473 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004474 return 0;
4475
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004476 if (EXT4_SB(inode->i_sb)->s_journal) {
4477 if (ext4_journal_current_handle()) {
4478 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4479 dump_stack();
4480 return -EIO;
4481 }
4482
Jan Kara10542c22014-03-04 10:50:50 -05004483 /*
4484 * No need to force transaction in WB_SYNC_NONE mode. Also
4485 * ext4_sync_fs() will force the commit after everything is
4486 * written.
4487 */
4488 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004489 return 0;
4490
4491 err = ext4_force_commit(inode->i_sb);
4492 } else {
4493 struct ext4_iloc iloc;
4494
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04004495 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004496 if (err)
4497 return err;
Jan Kara10542c22014-03-04 10:50:50 -05004498 /*
4499 * sync(2) will flush the whole buffer cache. No need to do
4500 * it here separately for each inode.
4501 */
4502 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04004503 sync_dirty_buffer(iloc.bh);
4504 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004505 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4506 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04004507 err = -EIO;
4508 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004509 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004510 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004511 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004512}
4513
4514/*
Jan Kara53e87262012-12-25 13:29:52 -05004515 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
4516 * buffers that are attached to a page stradding i_size and are undergoing
4517 * commit. In that case we have to wait for commit to finish and try again.
4518 */
4519static void ext4_wait_for_tail_page_commit(struct inode *inode)
4520{
4521 struct page *page;
4522 unsigned offset;
4523 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
4524 tid_t commit_tid = 0;
4525 int ret;
4526
4527 offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
4528 /*
4529 * All buffers in the last page remain valid? Then there's nothing to
4530 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
4531 * blocksize case
4532 */
4533 if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
4534 return;
4535 while (1) {
4536 page = find_lock_page(inode->i_mapping,
4537 inode->i_size >> PAGE_CACHE_SHIFT);
4538 if (!page)
4539 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04004540 ret = __ext4_journalled_invalidatepage(page, offset,
4541 PAGE_CACHE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05004542 unlock_page(page);
4543 page_cache_release(page);
4544 if (ret != -EBUSY)
4545 return;
4546 commit_tid = 0;
4547 read_lock(&journal->j_state_lock);
4548 if (journal->j_committing_transaction)
4549 commit_tid = journal->j_committing_transaction->t_tid;
4550 read_unlock(&journal->j_state_lock);
4551 if (commit_tid)
4552 jbd2_log_wait_commit(journal, commit_tid);
4553 }
4554}
4555
4556/*
Mingming Cao617ba132006-10-11 01:20:53 -07004557 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004558 *
4559 * Called from notify_change.
4560 *
4561 * We want to trap VFS attempts to truncate the file as soon as
4562 * possible. In particular, we want to make sure that when the VFS
4563 * shrinks i_size, we put the inode on the orphan list and modify
4564 * i_disksize immediately, so that during the subsequent flushing of
4565 * dirty pages and freeing of disk blocks, we can guarantee that any
4566 * commit will leave the blocks being flushed in an unused state on
4567 * disk. (On recovery, the inode will get truncated and the blocks will
4568 * be freed, so we have a strong guarantee that no future commit will
4569 * leave these blocks visible to the user.)
4570 *
Jan Kara678aaf42008-07-11 19:27:31 -04004571 * Another thing we have to assure is that if we are in ordered mode
4572 * and inode is still attached to the committing transaction, we must
4573 * we start writeout of all the dirty pages which are being truncated.
4574 * This way we are sure that all the data written in the previous
4575 * transaction are already on disk (truncate waits for pages under
4576 * writeback).
4577 *
4578 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004579 */
Mingming Cao617ba132006-10-11 01:20:53 -07004580int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004581{
4582 struct inode *inode = dentry->d_inode;
4583 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004584 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004585 const unsigned int ia_valid = attr->ia_valid;
4586
4587 error = inode_change_ok(inode, attr);
4588 if (error)
4589 return error;
4590
Dmitry Monakhov12755622010-04-08 22:04:20 +04004591 if (is_quota_modification(inode, attr))
Christoph Hellwig871a2932010-03-03 09:05:07 -05004592 dquot_initialize(inode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004593 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
4594 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004595 handle_t *handle;
4596
4597 /* (user+group)*(old+new) structure, inode write (sb,
4598 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05004599 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
4600 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4601 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004602 if (IS_ERR(handle)) {
4603 error = PTR_ERR(handle);
4604 goto err_out;
4605 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05004606 error = dquot_transfer(inode, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004607 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07004608 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004609 return error;
4610 }
4611 /* Update corresponding info in inode so that everything is in
4612 * one transaction */
4613 if (attr->ia_valid & ATTR_UID)
4614 inode->i_uid = attr->ia_uid;
4615 if (attr->ia_valid & ATTR_GID)
4616 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07004617 error = ext4_mark_inode_dirty(handle, inode);
4618 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004619 }
4620
Jan Kara52083862013-08-17 10:07:17 -04004621 if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
4622 handle_t *handle;
Christoph Hellwig562c72a2011-06-24 14:29:45 -04004623
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004624 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05004625 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4626
Theodore Ts'o0c095c72010-07-27 11:56:06 -04004627 if (attr->ia_size > sbi->s_bitmap_maxbytes)
4628 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05004629 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004630
4631 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4632 inode_inc_iversion(inode);
4633
Jan Kara52083862013-08-17 10:07:17 -04004634 if (S_ISREG(inode->i_mode) &&
4635 (attr->ia_size < inode->i_size)) {
4636 if (ext4_should_order_data(inode)) {
4637 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04004638 attr->ia_size);
Jan Kara52083862013-08-17 10:07:17 -04004639 if (error)
Jan Kara678aaf42008-07-11 19:27:31 -04004640 goto err_out;
Jan Kara52083862013-08-17 10:07:17 -04004641 }
4642 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4643 if (IS_ERR(handle)) {
4644 error = PTR_ERR(handle);
4645 goto err_out;
4646 }
4647 if (ext4_handle_valid(handle)) {
4648 error = ext4_orphan_add(handle, inode);
4649 orphan = 1;
4650 }
Jan Kara90e775b2013-08-17 10:09:31 -04004651 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04004652 EXT4_I(inode)->i_disksize = attr->ia_size;
4653 rc = ext4_mark_inode_dirty(handle, inode);
4654 if (!error)
4655 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04004656 /*
4657 * We have to update i_size under i_data_sem together
4658 * with i_disksize to avoid races with writeback code
4659 * running ext4_wb_update_i_disksize().
4660 */
4661 if (!error)
4662 i_size_write(inode, attr->ia_size);
4663 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04004664 ext4_journal_stop(handle);
4665 if (error) {
4666 ext4_orphan_del(NULL, inode);
Jan Kara678aaf42008-07-11 19:27:31 -04004667 goto err_out;
4668 }
Jan Kara90e775b2013-08-17 10:09:31 -04004669 } else
4670 i_size_write(inode, attr->ia_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004671
Jan Kara52083862013-08-17 10:07:17 -04004672 /*
4673 * Blocks are going to be removed from the inode. Wait
4674 * for dio in flight. Temporarily disable
4675 * dioread_nolock to prevent livelock.
4676 */
4677 if (orphan) {
4678 if (!ext4_should_journal_data(inode)) {
4679 ext4_inode_block_unlocked_dio(inode);
4680 inode_dio_wait(inode);
4681 ext4_inode_resume_unlocked_dio(inode);
4682 } else
4683 ext4_wait_for_tail_page_commit(inode);
Dmitry Monakhov1c9114f2012-09-29 00:55:23 -04004684 }
Jan Kara52083862013-08-17 10:07:17 -04004685 /*
4686 * Truncate pagecache after we've waited for commit
4687 * in data=journal mode to make pages freeable.
4688 */
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07004689 truncate_pagecache(inode, inode->i_size);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004690 }
Jan Kara52083862013-08-17 10:07:17 -04004691 /*
4692 * We want to call ext4_truncate() even if attr->ia_size ==
4693 * inode->i_size for cases like truncation of fallocated space
4694 */
4695 if (attr->ia_valid & ATTR_SIZE)
4696 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004697
Christoph Hellwig10257742010-06-04 11:30:02 +02004698 if (!rc) {
4699 setattr_copy(inode, attr);
4700 mark_inode_dirty(inode);
4701 }
4702
4703 /*
4704 * If the call to ext4_truncate failed to get a transaction handle at
4705 * all, we need to clean up the in-core orphan list manually.
4706 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004707 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004708 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004709
4710 if (!rc && (ia_valid & ATTR_MODE))
Christoph Hellwig64e178a2013-12-20 05:16:44 -08004711 rc = posix_acl_chmod(inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004712
4713err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07004714 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004715 if (!error)
4716 error = rc;
4717 return error;
4718}
4719
Mingming Cao3e3398a2008-07-11 19:27:31 -04004720int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
4721 struct kstat *stat)
4722{
4723 struct inode *inode;
Jan Kara8af8eec2013-05-31 19:39:56 -04004724 unsigned long long delalloc_blocks;
Mingming Cao3e3398a2008-07-11 19:27:31 -04004725
4726 inode = dentry->d_inode;
4727 generic_fillattr(inode, stat);
4728
4729 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05004730 * If there is inline data in the inode, the inode will normally not
4731 * have data blocks allocated (it may have an external xattr block).
4732 * Report at least one sector for such files, so tools like tar, rsync,
4733 * others doen't incorrectly think the file is completely sparse.
4734 */
4735 if (unlikely(ext4_has_inline_data(inode)))
4736 stat->blocks += (stat->size + 511) >> 9;
4737
4738 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04004739 * We can't update i_blocks if the block allocation is delayed
4740 * otherwise in the case of system crash before the real block
4741 * allocation is done, we will have i_blocks inconsistent with
4742 * on-disk file blocks.
4743 * We always keep i_blocks updated together with real
4744 * allocation. But to not confuse with user, stat
4745 * will return the blocks that include the delayed allocation
4746 * blocks for this file.
4747 */
Tao Ma96607552012-05-31 22:54:16 -04004748 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05004749 EXT4_I(inode)->i_reserved_data_blocks);
4750 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04004751 return 0;
4752}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004753
Jan Karafffb2732013-06-04 13:01:11 -04004754static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
4755 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04004756{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004757 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04004758 return ext4_ind_trans_blocks(inode, lblocks);
4759 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04004760}
Theodore Ts'oac51d832008-11-06 16:49:36 -05004761
Mingming Caoa02908f2008-08-19 22:16:07 -04004762/*
4763 * Account for index blocks, block groups bitmaps and block group
4764 * descriptor blocks if modify datablocks and index blocks
4765 * worse case, the indexs blocks spread over different block groups
4766 *
4767 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004768 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04004769 * they could still across block group boundary.
4770 *
4771 * Also account for superblock, inode, quota and xattr blocks
4772 */
Jan Karafffb2732013-06-04 13:01:11 -04004773static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
4774 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04004775{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004776 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
4777 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04004778 int idxblocks;
4779 int ret = 0;
4780
4781 /*
Jan Karafffb2732013-06-04 13:01:11 -04004782 * How many index blocks need to touch to map @lblocks logical blocks
4783 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04004784 */
Jan Karafffb2732013-06-04 13:01:11 -04004785 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04004786
4787 ret = idxblocks;
4788
4789 /*
4790 * Now let's see how many group bitmaps and group descriptors need
4791 * to account
4792 */
Jan Karafffb2732013-06-04 13:01:11 -04004793 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04004794 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04004795 if (groups > ngroups)
4796 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04004797 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4798 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4799
4800 /* bitmaps and block group descriptor blocks */
4801 ret += groups + gdpblocks;
4802
4803 /* Blocks for super block, inode, quota and xattr blocks */
4804 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004805
4806 return ret;
4807}
4808
4809/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004810 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04004811 * the modification of a single pages into a single transaction,
4812 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04004813 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004814 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04004815 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004816 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04004817 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04004818 */
4819int ext4_writepage_trans_blocks(struct inode *inode)
4820{
4821 int bpp = ext4_journal_blocks_per_page(inode);
4822 int ret;
4823
Jan Karafffb2732013-06-04 13:01:11 -04004824 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04004825
4826 /* Account for data blocks for journalled mode */
4827 if (ext4_should_journal_data(inode))
4828 ret += bpp;
4829 return ret;
4830}
Mingming Caof3bd1f32008-08-19 22:16:03 -04004831
4832/*
4833 * Calculate the journal credits for a chunk of data modification.
4834 *
4835 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04004836 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04004837 *
4838 * journal buffers for data blocks are not included here, as DIO
4839 * and fallocate do no need to journal data buffers.
4840 */
4841int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4842{
4843 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4844}
4845
Mingming Caoa02908f2008-08-19 22:16:07 -04004846/*
Mingming Cao617ba132006-10-11 01:20:53 -07004847 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004848 * Give this, we know that the caller already has write access to iloc->bh.
4849 */
Mingming Cao617ba132006-10-11 01:20:53 -07004850int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004851 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004852{
4853 int err = 0;
4854
Theodore Ts'oc64db502012-03-02 12:23:11 -05004855 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004856 inode_inc_iversion(inode);
4857
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004858 /* the do_update_inode consumes one bh->b_count */
4859 get_bh(iloc->bh);
4860
Mingming Caodab291a2006-10-11 01:21:01 -07004861 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04004862 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004863 put_bh(iloc->bh);
4864 return err;
4865}
4866
4867/*
4868 * On success, We end up with an outstanding reference count against
4869 * iloc->bh. This _must_ be cleaned up later.
4870 */
4871
4872int
Mingming Cao617ba132006-10-11 01:20:53 -07004873ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4874 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004875{
Frank Mayhar03901312009-01-07 00:06:22 -05004876 int err;
4877
4878 err = ext4_get_inode_loc(inode, iloc);
4879 if (!err) {
4880 BUFFER_TRACE(iloc->bh, "get_write_access");
4881 err = ext4_journal_get_write_access(handle, iloc->bh);
4882 if (err) {
4883 brelse(iloc->bh);
4884 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004885 }
4886 }
Mingming Cao617ba132006-10-11 01:20:53 -07004887 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004888 return err;
4889}
4890
4891/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004892 * Expand an inode by new_extra_isize bytes.
4893 * Returns 0 on success or negative error number on failure.
4894 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004895static int ext4_expand_extra_isize(struct inode *inode,
4896 unsigned int new_extra_isize,
4897 struct ext4_iloc iloc,
4898 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004899{
4900 struct ext4_inode *raw_inode;
4901 struct ext4_xattr_ibody_header *header;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004902
4903 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4904 return 0;
4905
4906 raw_inode = ext4_raw_inode(&iloc);
4907
4908 header = IHDR(inode, raw_inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004909
4910 /* No extended attributes present */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004911 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
4912 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004913 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4914 new_extra_isize);
4915 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4916 return 0;
4917 }
4918
4919 /* try to expand with EAs present */
4920 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4921 raw_inode, handle);
4922}
4923
4924/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004925 * What we do here is to mark the in-core inode as clean with respect to inode
4926 * dirtiness (it may still be data-dirty).
4927 * This means that the in-core inode may be reaped by prune_icache
4928 * without having to perform any I/O. This is a very good thing,
4929 * because *any* task may call prune_icache - even ones which
4930 * have a transaction open against a different journal.
4931 *
4932 * Is this cheating? Not really. Sure, we haven't written the
4933 * inode out, but prune_icache isn't a user-visible syncing function.
4934 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4935 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004936 */
Mingming Cao617ba132006-10-11 01:20:53 -07004937int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004938{
Mingming Cao617ba132006-10-11 01:20:53 -07004939 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004940 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4941 static unsigned int mnt_count;
4942 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004943
4944 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05004945 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07004946 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05004947 if (ext4_handle_valid(handle) &&
4948 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004949 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004950 /*
4951 * We need extra buffer credits since we may write into EA block
4952 * with this same handle. If journal_extend fails, then it will
4953 * only result in a minor loss of functionality for that inode.
4954 * If this is felt to be critical, then e2fsck should be run to
4955 * force a large enough s_min_extra_isize.
4956 */
4957 if ((jbd2_journal_extend(handle,
4958 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4959 ret = ext4_expand_extra_isize(inode,
4960 sbi->s_want_extra_isize,
4961 iloc, handle);
4962 if (ret) {
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004963 ext4_set_inode_state(inode,
4964 EXT4_STATE_NO_EXPAND);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004965 if (mnt_count !=
4966 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004967 ext4_warning(inode->i_sb,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004968 "Unable to expand inode %lu. Delete"
4969 " some EAs or run e2fsck.",
4970 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004971 mnt_count =
4972 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004973 }
4974 }
4975 }
4976 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004977 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004978 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004979 return err;
4980}
4981
4982/*
Mingming Cao617ba132006-10-11 01:20:53 -07004983 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004984 *
4985 * We're really interested in the case where a file is being extended.
4986 * i_size has been changed by generic_commit_write() and we thus need
4987 * to include the updated inode in the current transaction.
4988 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004989 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004990 * are allocated to the file.
4991 *
4992 * If the inode is marked synchronous, we don't honour that here - doing
4993 * so would cause a commit on atime updates, which we don't bother doing.
4994 * We handle synchronous inodes at the highest possible level.
4995 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04004996void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004997{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004998 handle_t *handle;
4999
Theodore Ts'o9924a922013-02-08 21:59:22 -05005000 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005001 if (IS_ERR(handle))
5002 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005003
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005004 ext4_mark_inode_dirty(handle, inode);
5005
Mingming Cao617ba132006-10-11 01:20:53 -07005006 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005007out:
5008 return;
5009}
5010
5011#if 0
5012/*
5013 * Bind an inode's backing buffer_head into this transaction, to prevent
5014 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07005015 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005016 * returns no iloc structure, so the caller needs to repeat the iloc
5017 * lookup to mark the inode dirty later.
5018 */
Mingming Cao617ba132006-10-11 01:20:53 -07005019static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005020{
Mingming Cao617ba132006-10-11 01:20:53 -07005021 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005022
5023 int err = 0;
5024 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07005025 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005026 if (!err) {
5027 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07005028 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005029 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05005030 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05005031 NULL,
Frank Mayhar03901312009-01-07 00:06:22 -05005032 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005033 brelse(iloc.bh);
5034 }
5035 }
Mingming Cao617ba132006-10-11 01:20:53 -07005036 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005037 return err;
5038}
5039#endif
5040
Mingming Cao617ba132006-10-11 01:20:53 -07005041int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005042{
5043 journal_t *journal;
5044 handle_t *handle;
5045 int err;
5046
5047 /*
5048 * We have to be very careful here: changing a data block's
5049 * journaling status dynamically is dangerous. If we write a
5050 * data block to the journal, change the status and then delete
5051 * that block, we risk forgetting to revoke the old log record
5052 * from the journal and so a subsequent replay can corrupt data.
5053 * So, first we make sure that the journal is empty and that
5054 * nobody is changing anything.
5055 */
5056
Mingming Cao617ba132006-10-11 01:20:53 -07005057 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005058 if (!journal)
5059 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005060 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005061 return -EROFS;
Yongqiang Yang2aff57b2011-12-28 12:02:13 -05005062 /* We have to allocate physical blocks for delalloc blocks
5063 * before flushing journal. otherwise delalloc blocks can not
5064 * be allocated any more. even more truncate on delalloc blocks
5065 * could trigger BUG by flushing delalloc blocks in journal.
5066 * There is no delalloc block in non-journal data mode.
5067 */
5068 if (val && test_opt(inode->i_sb, DELALLOC)) {
5069 err = ext4_alloc_da_blocks(inode);
5070 if (err < 0)
5071 return err;
5072 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005073
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005074 /* Wait for all existing dio workers */
5075 ext4_inode_block_unlocked_dio(inode);
5076 inode_dio_wait(inode);
5077
Mingming Caodab291a2006-10-11 01:21:01 -07005078 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005079
5080 /*
5081 * OK, there are no updates running now, and all cached data is
5082 * synced to disk. We are now in a completely consistent state
5083 * which doesn't have anything in the journal, and we know that
5084 * no filesystem updates are running, so it is safe to modify
5085 * the inode's in-core data-journaling state flag now.
5086 */
5087
5088 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005089 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005090 else {
5091 jbd2_journal_flush(journal);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005092 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005093 }
Mingming Cao617ba132006-10-11 01:20:53 -07005094 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005095
Mingming Caodab291a2006-10-11 01:21:01 -07005096 jbd2_journal_unlock_updates(journal);
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005097 ext4_inode_resume_unlocked_dio(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005098
5099 /* Finally we can mark the inode as dirty. */
5100
Theodore Ts'o9924a922013-02-08 21:59:22 -05005101 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005102 if (IS_ERR(handle))
5103 return PTR_ERR(handle);
5104
Mingming Cao617ba132006-10-11 01:20:53 -07005105 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005106 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005107 ext4_journal_stop(handle);
5108 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005109
5110 return err;
5111}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005112
5113static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5114{
5115 return !buffer_mapped(bh);
5116}
5117
Nick Pigginc2ec1752009-03-31 15:23:21 -07005118int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005119{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005120 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005121 loff_t size;
5122 unsigned long len;
Jan Kara9ea7df52011-06-24 14:29:41 -04005123 int ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005124 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05005125 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005126 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04005127 handle_t *handle;
5128 get_block_t *get_block;
5129 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005130
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005131 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04005132 file_update_time(vma->vm_file);
Jan Kara9ea7df52011-06-24 14:29:41 -04005133 /* Delalloc case is easy... */
5134 if (test_opt(inode->i_sb, DELALLOC) &&
5135 !ext4_should_journal_data(inode) &&
5136 !ext4_nonda_switch(inode->i_sb)) {
5137 do {
5138 ret = __block_page_mkwrite(vma, vmf,
5139 ext4_da_get_block_prep);
5140 } while (ret == -ENOSPC &&
5141 ext4_should_retry_alloc(inode->i_sb, &retries));
5142 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005143 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04005144
5145 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005146 size = i_size_read(inode);
5147 /* Page got truncated from under us? */
5148 if (page->mapping != mapping || page_offset(page) > size) {
5149 unlock_page(page);
5150 ret = VM_FAULT_NOPAGE;
5151 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04005152 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005153
5154 if (page->index == size >> PAGE_CACHE_SHIFT)
5155 len = size & ~PAGE_CACHE_MASK;
5156 else
5157 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005158 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04005159 * Return if we have all the buffers mapped. This avoids the need to do
5160 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005161 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005162 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05005163 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5164 0, len, NULL,
5165 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04005166 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08005167 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005168 ret = VM_FAULT_LOCKED;
5169 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005170 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005171 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005172 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005173 /* OK, we need to fill the hole... */
5174 if (ext4_should_dioread_nolock(inode))
5175 get_block = ext4_get_block_write;
5176 else
5177 get_block = ext4_get_block;
5178retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05005179 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
5180 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04005181 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07005182 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04005183 goto out;
5184 }
5185 ret = __block_page_mkwrite(vma, vmf, get_block);
5186 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05005187 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Jan Kara9ea7df52011-06-24 14:29:41 -04005188 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
5189 unlock_page(page);
5190 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04005191 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04005192 goto out;
5193 }
5194 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
5195 }
5196 ext4_journal_stop(handle);
5197 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
5198 goto retry_alloc;
5199out_ret:
5200 ret = block_page_mkwrite_return(ret);
5201out:
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005202 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005203 return ret;
5204}