blob: d47264cafee00e2f95e90460d67c42c2bc1d7656 [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
21#include <linux/module.h>
22#include <linux/fs.h>
23#include <linux/time.h>
Mingming Caodab291a2006-10-11 01:21:01 -070024#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <linux/highuid.h>
26#include <linux/pagemap.h>
27#include <linux/quotaops.h>
28#include <linux/string.h>
29#include <linux/buffer_head.h>
30#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040031#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000033#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070034#include <linux/uio.h>
35#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040036#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050037#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080038#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Theodore Ts'oa8901d32010-12-17 10:40:47 -050040#include <linux/ratelimit.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040041
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040042#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070043#include "xattr.h"
44#include "acl.h"
Mingming Caod2a17632008-07-14 17:52:37 -040045#include "ext4_extents.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
Jan Kara678aaf42008-07-11 19:27:31 -040052static inline int ext4_begin_ordered_truncate(struct inode *inode,
53 loff_t new_size)
54{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -050055 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -050056 /*
57 * If jinode is zero, then we never opened the file for
58 * writing, so there's no need to call
59 * jbd2_journal_begin_ordered_truncate() since there's no
60 * outstanding writes we need to flush.
61 */
62 if (!EXT4_I(inode)->jinode)
63 return 0;
64 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
65 EXT4_I(inode)->jinode,
66 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -040067}
68
Alex Tomas64769242008-07-11 19:27:31 -040069static void ext4_invalidatepage(struct page *page, unsigned long offset);
Theodore Ts'ocb20d512010-10-27 21:30:09 -040070static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
71 struct buffer_head *bh_result, int create);
72static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode);
73static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate);
74static int __ext4_journalled_writepage(struct page *page, unsigned int len);
75static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Alex Tomas64769242008-07-11 19:27:31 -040076
Dave Kleikampac27a0e2006-10-11 01:20:50 -070077/*
78 * Test whether an inode is a fast symlink.
79 */
Mingming Cao617ba132006-10-11 01:20:53 -070080static int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070081{
Mingming Cao617ba132006-10-11 01:20:53 -070082 int ea_blocks = EXT4_I(inode)->i_file_acl ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -070083 (inode->i_sb->s_blocksize >> 9) : 0;
84
85 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
86}
87
88/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -070089 * Restart the transaction associated with *handle. This does a commit,
90 * so before we call here everything must be consistently dirtied against
91 * this transaction.
92 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -050093int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -040094 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070095{
Jan Kara487caee2009-08-17 22:17:20 -040096 int ret;
97
98 /*
Theodore Ts'oe35fd662010-05-16 19:00:00 -040099 * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
Jan Kara487caee2009-08-17 22:17:20 -0400100 * moment, get_block can be called only for blocks inside i_size since
101 * page cache has been already dropped and writes are blocked by
102 * i_mutex. So we can safely drop the i_data_sem here.
103 */
Frank Mayhar03901312009-01-07 00:06:22 -0500104 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700105 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400106 up_write(&EXT4_I(inode)->i_data_sem);
Amir Goldstein8e8eaab2011-02-27 23:32:12 -0500107 ret = ext4_journal_restart(handle, nblocks);
Jan Kara487caee2009-08-17 22:17:20 -0400108 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500109 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400110
111 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700112}
113
114/*
115 * Called at the last iput() if i_nlink is zero.
116 */
Al Viro0930fcc2010-06-07 13:16:22 -0400117void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700118{
119 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400120 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700121
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500122 trace_ext4_evict_inode(inode);
Al Viro0930fcc2010-06-07 13:16:22 -0400123 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400124 /*
125 * When journalling data dirty buffers are tracked only in the
126 * journal. So although mm thinks everything is clean and
127 * ready for reaping the inode might still have some pages to
128 * write in the running transaction or waiting to be
129 * checkpointed. Thus calling jbd2_journal_invalidatepage()
130 * (via truncate_inode_pages()) to discard these buffers can
131 * cause data loss. Also even if we did not discard these
132 * buffers, we would have no way to find them after the inode
133 * is reaped and thus user could see stale data if he tries to
134 * read them before the transaction is checkpointed. So be
135 * careful and force everything to disk here... We use
136 * ei->i_datasync_tid to store the newest transaction
137 * containing inode's data.
138 *
139 * Note that directories do not have this problem because they
140 * don't use page cache.
141 */
142 if (ext4_should_journal_data(inode) &&
143 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode))) {
144 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
145 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
146
147 jbd2_log_start_commit(journal, commit_tid);
148 jbd2_log_wait_commit(journal, commit_tid);
149 filemap_write_and_wait(&inode->i_data);
150 }
Al Viro0930fcc2010-06-07 13:16:22 -0400151 truncate_inode_pages(&inode->i_data, 0);
152 goto no_delete;
153 }
154
Christoph Hellwig907f4552010-03-03 09:05:06 -0500155 if (!is_bad_inode(inode))
Christoph Hellwig871a2932010-03-03 09:05:07 -0500156 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500157
Jan Kara678aaf42008-07-11 19:27:31 -0400158 if (ext4_should_order_data(inode))
159 ext4_begin_ordered_truncate(inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700160 truncate_inode_pages(&inode->i_data, 0);
161
162 if (is_bad_inode(inode))
163 goto no_delete;
164
Theodore Ts'o9f125d62011-06-27 19:16:04 -0400165 handle = ext4_journal_start(inode, ext4_blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700166 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400167 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700168 /*
169 * If we're going to skip the normal cleanup, we still need to
170 * make sure that the in-core orphan linked list is properly
171 * cleaned up.
172 */
Mingming Cao617ba132006-10-11 01:20:53 -0700173 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700174 goto no_delete;
175 }
176
177 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500178 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700179 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400180 err = ext4_mark_inode_dirty(handle, inode);
181 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500182 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400183 "couldn't mark inode dirty (err %d)", err);
184 goto stop_handle;
185 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700186 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700187 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400188
189 /*
190 * ext4_ext_truncate() doesn't reserve any slop when it
191 * restarts journal transactions; therefore there may not be
192 * enough credits left in the handle to remove the inode from
193 * the orphan list and set the dtime field.
194 */
Frank Mayhar03901312009-01-07 00:06:22 -0500195 if (!ext4_handle_has_enough_credits(handle, 3)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400196 err = ext4_journal_extend(handle, 3);
197 if (err > 0)
198 err = ext4_journal_restart(handle, 3);
199 if (err != 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500200 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400201 "couldn't extend journal (err %d)", err);
202 stop_handle:
203 ext4_journal_stop(handle);
Theodore Ts'o45388212010-07-29 15:06:10 -0400204 ext4_orphan_del(NULL, inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400205 goto no_delete;
206 }
207 }
208
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700209 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700210 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700211 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700212 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700213 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700214 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700215 * (Well, we could do this if we need to, but heck - it works)
216 */
Mingming Cao617ba132006-10-11 01:20:53 -0700217 ext4_orphan_del(handle, inode);
218 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700219
220 /*
221 * One subtle ordering requirement: if anything has gone wrong
222 * (transaction abort, IO errors, whatever), then we can still
223 * do these next steps (the fs will already have been marked as
224 * having errors), but we can't free the inode if the mark_dirty
225 * fails.
226 */
Mingming Cao617ba132006-10-11 01:20:53 -0700227 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700228 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400229 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700230 else
Mingming Cao617ba132006-10-11 01:20:53 -0700231 ext4_free_inode(handle, inode);
232 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233 return;
234no_delete:
Al Viro0930fcc2010-06-07 13:16:22 -0400235 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700236}
237
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300238#ifdef CONFIG_QUOTA
239qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100240{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300241 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100242}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300243#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500244
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400245/*
246 * Calculate the number of metadata blocks need to reserve
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500247 * to allocate a block located at @lblock
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400248 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -0500249static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400250{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400251 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500252 return ext4_ext_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400253
Amir Goldstein8bb2b242011-06-27 17:10:28 -0400254 return ext4_ind_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400255}
256
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500257/*
258 * Called with i_data_sem down, which is important since we can call
259 * ext4_discard_preallocations() from here.
260 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500261void ext4_da_update_reserve_space(struct inode *inode,
262 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400263{
264 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500265 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400266
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500267 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'of8ec9d62010-01-01 01:00:21 -0500268 trace_ext4_da_update_reserve_space(inode, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500269 if (unlikely(used > ei->i_reserved_data_blocks)) {
270 ext4_msg(inode->i_sb, KERN_NOTICE, "%s: ino %lu, used %d "
271 "with only %d reserved data blocks\n",
272 __func__, inode->i_ino, used,
273 ei->i_reserved_data_blocks);
274 WARN_ON(1);
275 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400276 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400277
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500278 /* Update per-inode reservations */
279 ei->i_reserved_data_blocks -= used;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500280 ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks;
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400281 percpu_counter_sub(&sbi->s_dirtyblocks_counter,
282 used + ei->i_allocated_meta_blocks);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500283 ei->i_allocated_meta_blocks = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500284
285 if (ei->i_reserved_data_blocks == 0) {
286 /*
287 * We can release all of the reserved metadata blocks
288 * only when we have written all of the delayed
289 * allocation blocks.
290 */
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400291 percpu_counter_sub(&sbi->s_dirtyblocks_counter,
292 ei->i_reserved_meta_blocks);
Theodore Ts'oee5f4d92010-01-01 02:36:15 -0500293 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500294 ei->i_da_metadata_calc_len = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500295 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400296 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100297
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400298 /* Update quota subsystem for data blocks */
299 if (quota_claim)
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500300 dquot_claim_block(inode, used);
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400301 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500302 /*
303 * We did fallocate with an offset that is already delayed
304 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400305 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500306 */
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400307 dquot_release_reservation_block(inode, used);
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500308 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400309
310 /*
311 * If we have done all the pending block allocations and if
312 * there aren't any writers on the inode, we can discard the
313 * inode's preallocations.
314 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500315 if ((ei->i_reserved_data_blocks == 0) &&
316 (atomic_read(&inode->i_writecount) == 0))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400317 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400318}
319
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400320static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400321 unsigned int line,
322 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400323{
Theodore Ts'o24676da2010-05-16 21:00:00 -0400324 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
325 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400326 ext4_error_inode(inode, func, line, map->m_pblk,
327 "lblock %lu mapped to illegal pblock "
328 "(length %d)", (unsigned long) map->m_lblk,
329 map->m_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400330 return -EIO;
331 }
332 return 0;
333}
334
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400335#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400336 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400337
Mingming Caof5ab0d12008-02-25 15:29:55 -0500338/*
Theodore Ts'o1f945332009-09-30 22:57:41 -0400339 * Return the number of contiguous dirty pages in a given inode
340 * starting at page frame idx.
Theodore Ts'o55138e02009-09-29 13:31:31 -0400341 */
342static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx,
343 unsigned int max_pages)
344{
345 struct address_space *mapping = inode->i_mapping;
346 pgoff_t index;
347 struct pagevec pvec;
348 pgoff_t num = 0;
349 int i, nr_pages, done = 0;
350
351 if (max_pages == 0)
352 return 0;
353 pagevec_init(&pvec, 0);
354 while (!done) {
355 index = idx;
356 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
357 PAGECACHE_TAG_DIRTY,
358 (pgoff_t)PAGEVEC_SIZE);
359 if (nr_pages == 0)
360 break;
361 for (i = 0; i < nr_pages; i++) {
362 struct page *page = pvec.pages[i];
363 struct buffer_head *bh, *head;
364
365 lock_page(page);
366 if (unlikely(page->mapping != mapping) ||
367 !PageDirty(page) ||
368 PageWriteback(page) ||
369 page->index != idx) {
370 done = 1;
371 unlock_page(page);
372 break;
373 }
Theodore Ts'o1f945332009-09-30 22:57:41 -0400374 if (page_has_buffers(page)) {
375 bh = head = page_buffers(page);
376 do {
377 if (!buffer_delay(bh) &&
378 !buffer_unwritten(bh))
379 done = 1;
380 bh = bh->b_this_page;
381 } while (!done && (bh != head));
382 }
Theodore Ts'o55138e02009-09-29 13:31:31 -0400383 unlock_page(page);
384 if (done)
385 break;
386 idx++;
387 num++;
Eric Sandeen659c6002010-10-27 21:30:03 -0400388 if (num >= max_pages) {
389 done = 1;
Theodore Ts'o55138e02009-09-29 13:31:31 -0400390 break;
Eric Sandeen659c6002010-10-27 21:30:03 -0400391 }
Theodore Ts'o55138e02009-09-29 13:31:31 -0400392 }
393 pagevec_release(&pvec);
394 }
395 return num;
396}
397
398/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400399 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400400 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500401 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500402 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
403 * and store the allocated blocks in the result buffer head and mark it
404 * mapped.
405 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400406 * If file type is extents based, it will call ext4_ext_map_blocks(),
407 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500408 * based files
409 *
410 * On success, it returns the number of blocks being mapped or allocate.
411 * if create==0 and the blocks are pre-allocated and uninitialized block,
412 * the result buffer head is unmapped. If the create ==1, it will make sure
413 * the buffer head is mapped.
414 *
415 * It returns 0 if plain look up failed (blocks have not been allocated), in
416 * that casem, buffer head is unmapped
417 *
418 * It returns the error in case of allocation failure.
419 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400420int ext4_map_blocks(handle_t *handle, struct inode *inode,
421 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500422{
423 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500424
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400425 map->m_flags = 0;
426 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
427 "logical block %lu\n", inode->i_ino, flags, map->m_len,
428 (unsigned long) map->m_lblk);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500429 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400430 * Try to see if we can get the block without requesting a new
431 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500432 */
433 down_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400434 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400435 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500436 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400437 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500438 }
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500439 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500440
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400441 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400442 int ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400443 if (ret != 0)
444 return ret;
445 }
446
Mingming Caof5ab0d12008-02-25 15:29:55 -0500447 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400448 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500449 return retval;
450
451 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500452 * Returns if the blocks have already allocated
453 *
454 * Note that if blocks have been preallocated
455 * ext4_ext_get_block() returns th create = 0
456 * with buffer head unmapped.
457 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400458 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Mingming Caof5ab0d12008-02-25 15:29:55 -0500459 return retval;
460
461 /*
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400462 * When we call get_blocks without the create flag, the
463 * BH_Unwritten flag could have gotten set if the blocks
464 * requested were part of a uninitialized extent. We need to
465 * clear this flag now that we are committed to convert all or
466 * part of the uninitialized extent to be an initialized
467 * extent. This is because we need to avoid the combination
468 * of BH_Unwritten and BH_Mapped flags being simultaneously
469 * set on the buffer_head.
470 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400471 map->m_flags &= ~EXT4_MAP_UNWRITTEN;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400472
473 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500474 * New blocks allocate and/or writing to uninitialized extent
475 * will possibly result in updating i_data, so we take
476 * the write lock of i_data_sem, and call get_blocks()
477 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500478 */
479 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -0400480
481 /*
482 * if the caller is from delayed allocation writeout path
483 * we have already reserved fs blocks for allocation
484 * let the underlying get_block() function know to
485 * avoid double accounting
486 */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400487 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Theodore Ts'of2321092011-01-10 12:12:36 -0500488 ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500489 /*
490 * We need to check for EXT4 here because migrate
491 * could have changed the inode type in between
492 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400493 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400494 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500495 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400496 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400497
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400498 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400499 /*
500 * We allocated new blocks which will result in
501 * i_data's format changing. Force the migrate
502 * to fail by clearing migrate flags
503 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500504 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400505 }
Mingming Caod2a17632008-07-14 17:52:37 -0400506
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500507 /*
508 * Update reserved blocks/metadata blocks after successful
509 * block allocation which had been deferred till now. We don't
510 * support fallocate for non extent files. So we can update
511 * reserve space here.
512 */
513 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500514 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500515 ext4_da_update_reserve_space(inode, retval, 1);
516 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400517 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Theodore Ts'of2321092011-01-10 12:12:36 -0500518 ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400519
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500520 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400521 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400522 int ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400523 if (ret != 0)
524 return ret;
525 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500526 return retval;
527}
528
Mingming Caof3bd1f32008-08-19 22:16:03 -0400529/* Maximum number of blocks we map for direct IO at once. */
530#define DIO_MAX_BLOCKS 4096
531
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400532static int _ext4_get_block(struct inode *inode, sector_t iblock,
533 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -0800535 handle_t *handle = ext4_journal_current_handle();
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400536 struct ext4_map_blocks map;
Jan Kara7fb54092008-02-10 01:08:38 -0500537 int ret = 0, started = 0;
Mingming Caof3bd1f32008-08-19 22:16:03 -0400538 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700539
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400540 map.m_lblk = iblock;
541 map.m_len = bh->b_size >> inode->i_blkbits;
542
543 if (flags && !handle) {
Jan Kara7fb54092008-02-10 01:08:38 -0500544 /* Direct IO write... */
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400545 if (map.m_len > DIO_MAX_BLOCKS)
546 map.m_len = DIO_MAX_BLOCKS;
547 dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
Mingming Caof3bd1f32008-08-19 22:16:03 -0400548 handle = ext4_journal_start(inode, dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -0500549 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700550 ret = PTR_ERR(handle);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400551 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700552 }
Jan Kara7fb54092008-02-10 01:08:38 -0500553 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554 }
555
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400556 ret = ext4_map_blocks(handle, inode, &map, flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500557 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400558 map_bh(bh, inode->i_sb, map.m_pblk);
559 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
560 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500561 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700562 }
Jan Kara7fb54092008-02-10 01:08:38 -0500563 if (started)
564 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565 return ret;
566}
567
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400568int ext4_get_block(struct inode *inode, sector_t iblock,
569 struct buffer_head *bh, int create)
570{
571 return _ext4_get_block(inode, iblock, bh,
572 create ? EXT4_GET_BLOCKS_CREATE : 0);
573}
574
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700575/*
576 * `handle' can be NULL if create is zero
577 */
Mingming Cao617ba132006-10-11 01:20:53 -0700578struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500579 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400581 struct ext4_map_blocks map;
582 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700583 int fatal = 0, err;
584
585 J_ASSERT(handle != NULL || create == 0);
586
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400587 map.m_lblk = block;
588 map.m_len = 1;
589 err = ext4_map_blocks(handle, inode, &map,
590 create ? EXT4_GET_BLOCKS_CREATE : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700591
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400592 if (err < 0)
593 *errp = err;
594 if (err <= 0)
595 return NULL;
596 *errp = 0;
597
598 bh = sb_getblk(inode->i_sb, map.m_pblk);
599 if (!bh) {
600 *errp = -EIO;
601 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700602 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400603 if (map.m_flags & EXT4_MAP_NEW) {
604 J_ASSERT(create != 0);
605 J_ASSERT(handle != NULL);
606
607 /*
608 * Now that we do not always journal data, we should
609 * keep in mind whether this should always journal the
610 * new buffer as metadata. For now, regular file
611 * writes use ext4_get_block instead, so it's not a
612 * problem.
613 */
614 lock_buffer(bh);
615 BUFFER_TRACE(bh, "call get_create_access");
616 fatal = ext4_journal_get_create_access(handle, bh);
617 if (!fatal && !buffer_uptodate(bh)) {
618 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
619 set_buffer_uptodate(bh);
620 }
621 unlock_buffer(bh);
622 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
623 err = ext4_handle_dirty_metadata(handle, inode, bh);
624 if (!fatal)
625 fatal = err;
626 } else {
627 BUFFER_TRACE(bh, "not a new buffer");
628 }
629 if (fatal) {
630 *errp = fatal;
631 brelse(bh);
632 bh = NULL;
633 }
634 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700635}
636
Mingming Cao617ba132006-10-11 01:20:53 -0700637struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500638 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400640 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700641
Mingming Cao617ba132006-10-11 01:20:53 -0700642 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700643 if (!bh)
644 return bh;
645 if (buffer_uptodate(bh))
646 return bh;
647 ll_rw_block(READ_META, 1, &bh);
648 wait_on_buffer(bh);
649 if (buffer_uptodate(bh))
650 return bh;
651 put_bh(bh);
652 *err = -EIO;
653 return NULL;
654}
655
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400656static int walk_page_buffers(handle_t *handle,
657 struct buffer_head *head,
658 unsigned from,
659 unsigned to,
660 int *partial,
661 int (*fn)(handle_t *handle,
662 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700663{
664 struct buffer_head *bh;
665 unsigned block_start, block_end;
666 unsigned blocksize = head->b_size;
667 int err, ret = 0;
668 struct buffer_head *next;
669
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400670 for (bh = head, block_start = 0;
671 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400672 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673 next = bh->b_this_page;
674 block_end = block_start + blocksize;
675 if (block_end <= from || block_start >= to) {
676 if (partial && !buffer_uptodate(bh))
677 *partial = 1;
678 continue;
679 }
680 err = (*fn)(handle, bh);
681 if (!ret)
682 ret = err;
683 }
684 return ret;
685}
686
687/*
688 * To preserve ordering, it is essential that the hole instantiation and
689 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700690 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700691 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 * prepare_write() is the right place.
693 *
Mingming Cao617ba132006-10-11 01:20:53 -0700694 * Also, this function can nest inside ext4_writepage() ->
695 * block_write_full_page(). In that case, we *know* that ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700696 * has generated enough buffer credits to do the whole page. So we won't
697 * block on the journal in that case, which is good, because the caller may
698 * be PF_MEMALLOC.
699 *
Mingming Cao617ba132006-10-11 01:20:53 -0700700 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700701 * quota file writes. If we were to commit the transaction while thus
702 * reentered, there can be a deadlock - we would be holding a quota
703 * lock, and the commit would never complete if another thread had a
704 * transaction open and was blocking on the quota lock - a ranking
705 * violation.
706 *
Mingming Caodab291a2006-10-11 01:21:01 -0700707 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700708 * will _not_ run commit under these circumstances because handle->h_ref
709 * is elevated. We'll still have enough credits for the tiny quotafile
710 * write.
711 */
712static int do_journal_get_write_access(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400713 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714{
Jan Kara56d35a42010-08-05 14:41:42 -0400715 int dirty = buffer_dirty(bh);
716 int ret;
717
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700718 if (!buffer_mapped(bh) || buffer_freed(bh))
719 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -0400720 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +0200721 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -0400722 * the dirty bit as jbd2_journal_get_write_access() could complain
723 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +0200724 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -0400725 * the bit before releasing a page lock and thus writeback cannot
726 * ever write the buffer.
727 */
728 if (dirty)
729 clear_buffer_dirty(bh);
730 ret = ext4_journal_get_write_access(handle, bh);
731 if (!ret && dirty)
732 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
733 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734}
735
Jiaying Zhang744692d2010-03-04 16:14:02 -0500736static int ext4_get_block_write(struct inode *inode, sector_t iblock,
737 struct buffer_head *bh_result, int create);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700738static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400739 loff_t pos, unsigned len, unsigned flags,
740 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400742 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400743 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700744 handle_t *handle;
745 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400746 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400747 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400748 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700749
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400750 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400751 /*
752 * Reserve one block more for addition to orphan list in case
753 * we allocate blocks but write fails for some reason
754 */
755 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400756 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400757 from = pos & (PAGE_CACHE_SIZE - 1);
758 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700759
760retry:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400761 handle = ext4_journal_start(inode, needed_blocks);
762 if (IS_ERR(handle)) {
763 ret = PTR_ERR(handle);
764 goto out;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700765 }
766
Jan Karaebd36102009-02-22 21:09:59 -0500767 /* We cannot recurse into the filesystem as the transaction is already
768 * started */
769 flags |= AOP_FLAG_NOFS;
770
Nick Piggin54566b22009-01-04 12:00:53 -0800771 page = grab_cache_page_write_begin(mapping, index, flags);
Jan Karacf108bc2008-07-11 19:27:31 -0400772 if (!page) {
773 ext4_journal_stop(handle);
774 ret = -ENOMEM;
775 goto out;
776 }
777 *pagep = page;
778
Jiaying Zhang744692d2010-03-04 16:14:02 -0500779 if (ext4_should_dioread_nolock(inode))
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200780 ret = __block_write_begin(page, pos, len, ext4_get_block_write);
Jiaying Zhang744692d2010-03-04 16:14:02 -0500781 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200782 ret = __block_write_begin(page, pos, len, ext4_get_block);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700783
784 if (!ret && ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700785 ret = walk_page_buffers(handle, page_buffers(page),
786 from, to, NULL, do_journal_get_write_access);
787 }
Nick Pigginbfc1af62007-10-16 01:25:05 -0700788
789 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400790 unlock_page(page);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400791 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400792 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200793 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400794 * outside i_size. Trim these off again. Don't need
795 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400796 *
797 * Add inode to orphan list in case we crash before
798 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400799 */
Jan Karaffacfa72009-07-13 16:22:22 -0400800 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400801 ext4_orphan_add(handle, inode);
802
803 ext4_journal_stop(handle);
804 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -0500805 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400806 /*
Jan Karaffacfa72009-07-13 16:22:22 -0400807 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400808 * still be on the orphan list; we need to
809 * make sure the inode is removed from the
810 * orphan list in that case.
811 */
812 if (inode->i_nlink)
813 ext4_orphan_del(NULL, inode);
814 }
Nick Pigginbfc1af62007-10-16 01:25:05 -0700815 }
816
Mingming Cao617ba132006-10-11 01:20:53 -0700817 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700818 goto retry;
Andrew Morton7479d2b2007-04-01 23:49:44 -0700819out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700820 return ret;
821}
822
Nick Pigginbfc1af62007-10-16 01:25:05 -0700823/* For write_end() in data=journal mode */
824static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825{
826 if (!buffer_mapped(bh) || buffer_freed(bh))
827 return 0;
828 set_buffer_uptodate(bh);
Frank Mayhar03901312009-01-07 00:06:22 -0500829 return ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700830}
831
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400832static int ext4_generic_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400833 struct address_space *mapping,
834 loff_t pos, unsigned len, unsigned copied,
835 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400836{
837 int i_size_changed = 0;
838 struct inode *inode = mapping->host;
839 handle_t *handle = ext4_journal_current_handle();
840
841 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
842
843 /*
844 * No need to use i_size_read() here, the i_size
845 * cannot change under us because we hold i_mutex.
846 *
847 * But it's important to update i_size while still holding page lock:
848 * page writeout could otherwise come in and zero beyond i_size.
849 */
850 if (pos + copied > inode->i_size) {
851 i_size_write(inode, pos + copied);
852 i_size_changed = 1;
853 }
854
855 if (pos + copied > EXT4_I(inode)->i_disksize) {
856 /* We need to mark inode dirty even if
857 * new_i_size is less that inode->i_size
858 * bu greater than i_disksize.(hint delalloc)
859 */
860 ext4_update_i_disksize(inode, (pos + copied));
861 i_size_changed = 1;
862 }
863 unlock_page(page);
864 page_cache_release(page);
865
866 /*
867 * Don't mark the inode dirty under page lock. First, it unnecessarily
868 * makes the holding time of page lock longer. Second, it forces lock
869 * ordering of page lock and transaction start for journaling
870 * filesystems.
871 */
872 if (i_size_changed)
873 ext4_mark_inode_dirty(handle, inode);
874
875 return copied;
876}
877
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700878/*
879 * We need to pick up the new inode size which generic_commit_write gave us
880 * `file' can be NULL - eg, when called from page_symlink().
881 *
Mingming Cao617ba132006-10-11 01:20:53 -0700882 * ext4 never places buffers on inode->i_mapping->private_list. metadata
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700883 * buffers are managed internally.
884 */
Nick Pigginbfc1af62007-10-16 01:25:05 -0700885static int ext4_ordered_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400886 struct address_space *mapping,
887 loff_t pos, unsigned len, unsigned copied,
888 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700889{
Mingming Cao617ba132006-10-11 01:20:53 -0700890 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -0400891 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892 int ret = 0, ret2;
893
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400894 trace_ext4_ordered_write_end(inode, pos, len, copied);
Jan Kara678aaf42008-07-11 19:27:31 -0400895 ret = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700896
897 if (ret == 0) {
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400898 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -0700899 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -0400900 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -0400901 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400902 /* if we have allocated more blocks and copied
903 * less. We will have blocks allocated outside
904 * inode->i_size. So truncate them
905 */
906 ext4_orphan_add(handle, inode);
Roel Kluinf8a87d82008-04-29 22:01:18 -0400907 if (ret2 < 0)
908 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700909 }
Mingming Cao617ba132006-10-11 01:20:53 -0700910 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700911 if (!ret)
912 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700913
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400914 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -0500915 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400916 /*
Jan Karaffacfa72009-07-13 16:22:22 -0400917 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400918 * on the orphan list; we need to make sure the inode
919 * is removed from the orphan list in that case.
920 */
921 if (inode->i_nlink)
922 ext4_orphan_del(NULL, inode);
923 }
924
925
Nick Pigginbfc1af62007-10-16 01:25:05 -0700926 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700927}
928
Nick Pigginbfc1af62007-10-16 01:25:05 -0700929static int ext4_writeback_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400930 struct address_space *mapping,
931 loff_t pos, unsigned len, unsigned copied,
932 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700933{
Mingming Cao617ba132006-10-11 01:20:53 -0700934 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -0400935 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936 int ret = 0, ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700937
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400938 trace_ext4_writeback_write_end(inode, pos, len, copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400939 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -0700940 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -0400941 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -0400942 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400943 /* if we have allocated more blocks and copied
944 * less. We will have blocks allocated outside
945 * inode->i_size. So truncate them
946 */
947 ext4_orphan_add(handle, inode);
948
Roel Kluinf8a87d82008-04-29 22:01:18 -0400949 if (ret2 < 0)
950 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951
Mingming Cao617ba132006-10-11 01:20:53 -0700952 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700953 if (!ret)
954 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700955
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400956 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -0500957 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400958 /*
Jan Karaffacfa72009-07-13 16:22:22 -0400959 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -0400960 * on the orphan list; we need to make sure the inode
961 * is removed from the orphan list in that case.
962 */
963 if (inode->i_nlink)
964 ext4_orphan_del(NULL, inode);
965 }
966
Nick Pigginbfc1af62007-10-16 01:25:05 -0700967 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700968}
969
Nick Pigginbfc1af62007-10-16 01:25:05 -0700970static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400971 struct address_space *mapping,
972 loff_t pos, unsigned len, unsigned copied,
973 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974{
Mingming Cao617ba132006-10-11 01:20:53 -0700975 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -0700976 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700977 int ret = 0, ret2;
978 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700979 unsigned from, to;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -0400980 loff_t new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400982 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700983 from = pos & (PAGE_CACHE_SIZE - 1);
984 to = from + len;
985
986 if (copied < len) {
987 if (!PageUptodate(page))
988 copied = 0;
989 page_zero_new_buffers(page, from+copied, to);
990 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700991
992 ret = walk_page_buffers(handle, page_buffers(page), from,
Nick Pigginbfc1af62007-10-16 01:25:05 -0700993 to, &partial, write_end_fn);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700994 if (!partial)
995 SetPageUptodate(page);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -0400996 new_i_size = pos + copied;
997 if (new_i_size > inode->i_size)
Nick Pigginbfc1af62007-10-16 01:25:05 -0700998 i_size_write(inode, pos+copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500999 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001000 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001001 if (new_i_size > EXT4_I(inode)->i_disksize) {
1002 ext4_update_i_disksize(inode, new_i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001003 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001004 if (!ret)
1005 ret = ret2;
1006 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001007
Jan Karacf108bc2008-07-11 19:27:31 -04001008 unlock_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001009 page_cache_release(page);
Jan Karaffacfa72009-07-13 16:22:22 -04001010 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001011 /* if we have allocated more blocks and copied
1012 * less. We will have blocks allocated outside
1013 * inode->i_size. So truncate them
1014 */
1015 ext4_orphan_add(handle, inode);
1016
Mingming Cao617ba132006-10-11 01:20:53 -07001017 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001018 if (!ret)
1019 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001020 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001021 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001022 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001023 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001024 * on the orphan list; we need to make sure the inode
1025 * is removed from the orphan list in that case.
1026 */
1027 if (inode->i_nlink)
1028 ext4_orphan_del(NULL, inode);
1029 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001030
1031 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001032}
Mingming Caod2a17632008-07-14 17:52:37 -04001033
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001034/*
1035 * Reserve a single block located at lblock
1036 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -05001037static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -04001038{
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001039 int retries = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01001040 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001041 struct ext4_inode_info *ei = EXT4_I(inode);
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001042 unsigned long md_needed;
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001043 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001044
1045 /*
1046 * recalculate the amount of metadata blocks to reserve
1047 * in order to allocate nrblocks
1048 * worse case is one extent per block
1049 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001050repeat:
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001051 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001052 md_needed = ext4_calc_metadata_amount(inode, lblock);
Theodore Ts'of8ec9d62010-01-01 01:00:21 -05001053 trace_ext4_da_reserve_space(inode, md_needed);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001054 spin_unlock(&ei->i_block_reservation_lock);
Mingming Caod2a17632008-07-14 17:52:37 -04001055
Mingming Cao60e58e02009-01-22 18:13:05 +01001056 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001057 * We will charge metadata quota at writeout time; this saves
1058 * us from metadata over-estimation, though we may go over by
1059 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001060 */
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001061 ret = dquot_reserve_block(inode, 1);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001062 if (ret)
1063 return ret;
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001064 /*
1065 * We do still charge estimated metadata to the sb though;
1066 * we cannot afford to run out of free blocks.
1067 */
Allison Henderson55f020d2011-05-25 07:41:26 -04001068 if (ext4_claim_free_blocks(sbi, md_needed + 1, 0)) {
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001069 dquot_release_reservation_block(inode, 1);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001070 if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
1071 yield();
1072 goto repeat;
1073 }
Mingming Caod2a17632008-07-14 17:52:37 -04001074 return -ENOSPC;
1075 }
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001076 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001077 ei->i_reserved_data_blocks++;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001078 ei->i_reserved_meta_blocks += md_needed;
1079 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001080
Mingming Caod2a17632008-07-14 17:52:37 -04001081 return 0; /* success */
1082}
1083
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001084static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001085{
1086 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001087 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001088
Mingming Caocd213222008-08-19 22:16:59 -04001089 if (!to_free)
1090 return; /* Nothing to release, exit */
1091
Mingming Caod2a17632008-07-14 17:52:37 -04001092 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001093
Li Zefan5a58ec82010-05-17 02:00:00 -04001094 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001095 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001096 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001097 * if there aren't enough reserved blocks, then the
1098 * counter is messed up somewhere. Since this
1099 * function is called from invalidate page, it's
1100 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001101 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001102 ext4_msg(inode->i_sb, KERN_NOTICE, "ext4_da_release_space: "
1103 "ino %lu, to_free %d with only %d reserved "
1104 "data blocks\n", inode->i_ino, to_free,
1105 ei->i_reserved_data_blocks);
1106 WARN_ON(1);
1107 to_free = ei->i_reserved_data_blocks;
1108 }
1109 ei->i_reserved_data_blocks -= to_free;
1110
1111 if (ei->i_reserved_data_blocks == 0) {
1112 /*
1113 * We can release all of the reserved metadata blocks
1114 * only when we have written all of the delayed
1115 * allocation blocks.
1116 */
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001117 percpu_counter_sub(&sbi->s_dirtyblocks_counter,
1118 ei->i_reserved_meta_blocks);
Theodore Ts'oee5f4d92010-01-01 02:36:15 -05001119 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001120 ei->i_da_metadata_calc_len = 0;
Mingming Caocd213222008-08-19 22:16:59 -04001121 }
1122
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001123 /* update fs dirty data blocks counter */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001124 percpu_counter_sub(&sbi->s_dirtyblocks_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001125
Mingming Caod2a17632008-07-14 17:52:37 -04001126 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001127
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001128 dquot_release_reservation_block(inode, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001129}
1130
1131static void ext4_da_page_release_reservation(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001132 unsigned long offset)
Mingming Caod2a17632008-07-14 17:52:37 -04001133{
1134 int to_release = 0;
1135 struct buffer_head *head, *bh;
1136 unsigned int curr_off = 0;
1137
1138 head = page_buffers(page);
1139 bh = head;
1140 do {
1141 unsigned int next_off = curr_off + bh->b_size;
1142
1143 if ((offset <= curr_off) && (buffer_delay(bh))) {
1144 to_release++;
1145 clear_buffer_delay(bh);
1146 }
1147 curr_off = next_off;
1148 } while ((bh = bh->b_this_page) != head);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001149 ext4_da_release_space(page->mapping->host, to_release);
Mingming Caod2a17632008-07-14 17:52:37 -04001150}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151
1152/*
Alex Tomas64769242008-07-11 19:27:31 -04001153 * Delayed allocation stuff
1154 */
1155
Alex Tomas64769242008-07-11 19:27:31 -04001156/*
1157 * mpage_da_submit_io - walks through extent of pages and try to write
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001158 * them with writepage() call back
Alex Tomas64769242008-07-11 19:27:31 -04001159 *
1160 * @mpd->inode: inode
1161 * @mpd->first_page: first page of the extent
1162 * @mpd->next_page: page after the last page of the extent
Alex Tomas64769242008-07-11 19:27:31 -04001163 *
1164 * By the time mpage_da_submit_io() is called we expect all blocks
1165 * to be allocated. this may be wrong if allocation failed.
1166 *
1167 * As pages are already locked by write_cache_pages(), we can't use it
1168 */
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001169static int mpage_da_submit_io(struct mpage_da_data *mpd,
1170 struct ext4_map_blocks *map)
Alex Tomas64769242008-07-11 19:27:31 -04001171{
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001172 struct pagevec pvec;
1173 unsigned long index, end;
1174 int ret = 0, err, nr_pages, i;
1175 struct inode *inode = mpd->inode;
1176 struct address_space *mapping = inode->i_mapping;
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001177 loff_t size = i_size_read(inode);
Theodore Ts'o3ecdb3a2010-10-27 21:30:10 -04001178 unsigned int len, block_start;
1179 struct buffer_head *bh, *page_bufs = NULL;
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001180 int journal_data = ext4_should_journal_data(inode);
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001181 sector_t pblock = 0, cur_logical = 0;
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001182 struct ext4_io_submit io_submit;
Alex Tomas64769242008-07-11 19:27:31 -04001183
1184 BUG_ON(mpd->next_page <= mpd->first_page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001185 memset(&io_submit, 0, sizeof(io_submit));
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001186 /*
1187 * We need to start from the first_page to the next_page - 1
1188 * to make sure we also write the mapped dirty buffer_heads.
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001189 * If we look at mpd->b_blocknr we would only be looking
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001190 * at the currently mapped buffer_heads.
1191 */
Alex Tomas64769242008-07-11 19:27:31 -04001192 index = mpd->first_page;
1193 end = mpd->next_page - 1;
1194
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001195 pagevec_init(&pvec, 0);
Alex Tomas64769242008-07-11 19:27:31 -04001196 while (index <= end) {
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001197 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
Alex Tomas64769242008-07-11 19:27:31 -04001198 if (nr_pages == 0)
1199 break;
1200 for (i = 0; i < nr_pages; i++) {
Theodore Ts'o97498952011-02-26 14:08:01 -05001201 int commit_write = 0, skip_page = 0;
Alex Tomas64769242008-07-11 19:27:31 -04001202 struct page *page = pvec.pages[i];
1203
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001204 index = page->index;
1205 if (index > end)
1206 break;
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001207
1208 if (index == size >> PAGE_CACHE_SHIFT)
1209 len = size & ~PAGE_CACHE_MASK;
1210 else
1211 len = PAGE_CACHE_SIZE;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001212 if (map) {
1213 cur_logical = index << (PAGE_CACHE_SHIFT -
1214 inode->i_blkbits);
1215 pblock = map->m_pblk + (cur_logical -
1216 map->m_lblk);
1217 }
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001218 index++;
1219
1220 BUG_ON(!PageLocked(page));
1221 BUG_ON(PageWriteback(page));
1222
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001223 /*
1224 * If the page does not have buffers (for
1225 * whatever reason), try to create them using
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001226 * __block_write_begin. If this fails,
Theodore Ts'o97498952011-02-26 14:08:01 -05001227 * skip the page and move on.
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001228 */
1229 if (!page_has_buffers(page)) {
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001230 if (__block_write_begin(page, 0, len,
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001231 noalloc_get_block_write)) {
Theodore Ts'o97498952011-02-26 14:08:01 -05001232 skip_page:
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001233 unlock_page(page);
1234 continue;
1235 }
1236 commit_write = 1;
1237 }
Theodore Ts'o3ecdb3a2010-10-27 21:30:10 -04001238
1239 bh = page_bufs = page_buffers(page);
1240 block_start = 0;
1241 do {
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001242 if (!bh)
Theodore Ts'o97498952011-02-26 14:08:01 -05001243 goto skip_page;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001244 if (map && (cur_logical >= map->m_lblk) &&
1245 (cur_logical <= (map->m_lblk +
1246 (map->m_len - 1)))) {
1247 if (buffer_delay(bh)) {
1248 clear_buffer_delay(bh);
1249 bh->b_blocknr = pblock;
1250 }
1251 if (buffer_unwritten(bh) ||
1252 buffer_mapped(bh))
1253 BUG_ON(bh->b_blocknr != pblock);
1254 if (map->m_flags & EXT4_MAP_UNINIT)
1255 set_buffer_uninit(bh);
1256 clear_buffer_unwritten(bh);
1257 }
1258
Theodore Ts'o97498952011-02-26 14:08:01 -05001259 /* skip page if block allocation undone */
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001260 if (buffer_delay(bh) || buffer_unwritten(bh))
Theodore Ts'o97498952011-02-26 14:08:01 -05001261 skip_page = 1;
Theodore Ts'o3ecdb3a2010-10-27 21:30:10 -04001262 bh = bh->b_this_page;
1263 block_start += bh->b_size;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001264 cur_logical++;
1265 pblock++;
1266 } while (bh != page_bufs);
1267
Theodore Ts'o97498952011-02-26 14:08:01 -05001268 if (skip_page)
1269 goto skip_page;
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001270
1271 if (commit_write)
1272 /* mark the buffer_heads as dirty & uptodate */
1273 block_commit_write(page, 0, len);
1274
Theodore Ts'o97498952011-02-26 14:08:01 -05001275 clear_page_dirty_for_io(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001276 /*
1277 * Delalloc doesn't support data journalling,
1278 * but eventually maybe we'll lift this
1279 * restriction.
1280 */
1281 if (unlikely(journal_data && PageChecked(page)))
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001282 err = __ext4_journalled_writepage(page, len);
Theodore Ts'o14490322010-12-14 15:27:50 -05001283 else if (test_opt(inode->i_sb, MBLK_IO_SUBMIT))
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001284 err = ext4_bio_write_page(&io_submit, page,
1285 len, mpd->wbc);
Theodore Ts'o14490322010-12-14 15:27:50 -05001286 else
1287 err = block_write_full_page(page,
1288 noalloc_get_block_write, mpd->wbc);
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001289
1290 if (!err)
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001291 mpd->pages_written++;
Alex Tomas64769242008-07-11 19:27:31 -04001292 /*
1293 * In error case, we have to continue because
1294 * remaining pages are still locked
Alex Tomas64769242008-07-11 19:27:31 -04001295 */
1296 if (ret == 0)
1297 ret = err;
1298 }
1299 pagevec_release(&pvec);
1300 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001301 ext4_io_submit(&io_submit);
Alex Tomas64769242008-07-11 19:27:31 -04001302 return ret;
1303}
1304
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001305static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001306{
1307 int nr_pages, i;
1308 pgoff_t index, end;
1309 struct pagevec pvec;
1310 struct inode *inode = mpd->inode;
1311 struct address_space *mapping = inode->i_mapping;
1312
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001313 index = mpd->first_page;
1314 end = mpd->next_page - 1;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001315 while (index <= end) {
1316 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1317 if (nr_pages == 0)
1318 break;
1319 for (i = 0; i < nr_pages; i++) {
1320 struct page *page = pvec.pages[i];
Jan Kara9b1d09982010-03-03 16:19:32 -05001321 if (page->index > end)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001322 break;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001323 BUG_ON(!PageLocked(page));
1324 BUG_ON(PageWriteback(page));
1325 block_invalidatepage(page, 0);
1326 ClearPageUptodate(page);
1327 unlock_page(page);
1328 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001329 index = pvec.pages[nr_pages - 1]->index + 1;
1330 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001331 }
1332 return;
1333}
1334
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001335static void ext4_print_free_blocks(struct inode *inode)
1336{
1337 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o16939182009-09-26 17:43:59 -04001338 printk(KERN_CRIT "Total free blocks count %lld\n",
1339 ext4_count_free_blocks(inode->i_sb));
1340 printk(KERN_CRIT "Free/Dirty block details\n");
1341 printk(KERN_CRIT "free_blocks=%lld\n",
1342 (long long) percpu_counter_sum(&sbi->s_freeblocks_counter));
1343 printk(KERN_CRIT "dirty_blocks=%lld\n",
1344 (long long) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
1345 printk(KERN_CRIT "Block reservation details\n");
1346 printk(KERN_CRIT "i_reserved_data_blocks=%u\n",
1347 EXT4_I(inode)->i_reserved_data_blocks);
1348 printk(KERN_CRIT "i_reserved_meta_blocks=%u\n",
1349 EXT4_I(inode)->i_reserved_meta_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001350 return;
1351}
1352
Theodore Ts'ob920c752009-05-14 00:54:29 -04001353/*
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001354 * mpage_da_map_and_submit - go through given space, map them
1355 * if necessary, and then submit them for I/O
Alex Tomas64769242008-07-11 19:27:31 -04001356 *
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001357 * @mpd - bh describing space
Alex Tomas64769242008-07-11 19:27:31 -04001358 *
1359 * The function skips space we know is already mapped to disk blocks.
1360 *
Alex Tomas64769242008-07-11 19:27:31 -04001361 */
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001362static void mpage_da_map_and_submit(struct mpage_da_data *mpd)
Alex Tomas64769242008-07-11 19:27:31 -04001363{
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001364 int err, blks, get_blocks_flags;
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001365 struct ext4_map_blocks map, *mapp = NULL;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001366 sector_t next = mpd->b_blocknr;
1367 unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits;
1368 loff_t disksize = EXT4_I(mpd->inode)->i_disksize;
1369 handle_t *handle = NULL;
Alex Tomas64769242008-07-11 19:27:31 -04001370
1371 /*
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001372 * If the blocks are mapped already, or we couldn't accumulate
1373 * any blocks, then proceed immediately to the submission stage.
Alex Tomas64769242008-07-11 19:27:31 -04001374 */
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001375 if ((mpd->b_size == 0) ||
1376 ((mpd->b_state & (1 << BH_Mapped)) &&
1377 !(mpd->b_state & (1 << BH_Delay)) &&
1378 !(mpd->b_state & (1 << BH_Unwritten))))
1379 goto submit_io;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001380
1381 handle = ext4_journal_current_handle();
1382 BUG_ON(!handle);
1383
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04001384 /*
Eric Sandeen79e83032010-07-27 11:56:07 -04001385 * Call ext4_map_blocks() to allocate any delayed allocation
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001386 * blocks, or to convert an uninitialized extent to be
1387 * initialized (in the case where we have written into
1388 * one or more preallocated blocks).
1389 *
1390 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to
1391 * indicate that we are on the delayed allocation path. This
1392 * affects functions in many different parts of the allocation
1393 * call path. This flag exists primarily because we don't
Eric Sandeen79e83032010-07-27 11:56:07 -04001394 * want to change *many* call functions, so ext4_map_blocks()
Theodore Ts'of2321092011-01-10 12:12:36 -05001395 * will set the EXT4_STATE_DELALLOC_RESERVED flag once the
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001396 * inode's allocation semaphore is taken.
1397 *
1398 * If the blocks in questions were delalloc blocks, set
1399 * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting
1400 * variables are updated after the blocks have been allocated.
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04001401 */
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001402 map.m_lblk = next;
1403 map.m_len = max_blocks;
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05001404 get_blocks_flags = EXT4_GET_BLOCKS_CREATE;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001405 if (ext4_should_dioread_nolock(mpd->inode))
1406 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001407 if (mpd->b_state & (1 << BH_Delay))
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05001408 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
1409
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001410 blks = ext4_map_blocks(handle, mpd->inode, &map, get_blocks_flags);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001411 if (blks < 0) {
Eric Sandeene3570632010-07-27 11:56:08 -04001412 struct super_block *sb = mpd->inode->i_sb;
1413
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001414 err = blks;
Theodore Ts'oed5bde02009-02-23 10:48:07 -05001415 /*
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001416 * If get block returns EAGAIN or ENOSPC and there
Theodore Ts'o97498952011-02-26 14:08:01 -05001417 * appears to be free blocks we will just let
1418 * mpage_da_submit_io() unlock all of the pages.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001419 */
1420 if (err == -EAGAIN)
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001421 goto submit_io;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001422
1423 if (err == -ENOSPC &&
Eric Sandeene3570632010-07-27 11:56:08 -04001424 ext4_count_free_blocks(sb)) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001425 mpd->retval = err;
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001426 goto submit_io;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001427 }
1428
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001429 /*
Theodore Ts'oed5bde02009-02-23 10:48:07 -05001430 * get block failure will cause us to loop in
1431 * writepages, because a_ops->writepage won't be able
1432 * to make progress. The page will be redirtied by
1433 * writepage and writepages will again try to write
1434 * the same.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001435 */
Eric Sandeene3570632010-07-27 11:56:08 -04001436 if (!(EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)) {
1437 ext4_msg(sb, KERN_CRIT,
1438 "delayed block allocation failed for inode %lu "
1439 "at logical offset %llu with max blocks %zd "
1440 "with error %d", mpd->inode->i_ino,
1441 (unsigned long long) next,
1442 mpd->b_size >> mpd->inode->i_blkbits, err);
1443 ext4_msg(sb, KERN_CRIT,
1444 "This should not happen!! Data will be lost\n");
1445 if (err == -ENOSPC)
1446 ext4_print_free_blocks(mpd->inode);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001447 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001448 /* invalidate all the pages */
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001449 ext4_da_block_invalidatepages(mpd);
Curt Wohlgemuthe0fd9b92011-02-26 12:25:52 -05001450
1451 /* Mark this page range as having been completed */
1452 mpd->io_done = 1;
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001453 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001454 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001455 BUG_ON(blks == 0);
1456
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001457 mapp = &map;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001458 if (map.m_flags & EXT4_MAP_NEW) {
1459 struct block_device *bdev = mpd->inode->i_sb->s_bdev;
1460 int i;
Alex Tomas64769242008-07-11 19:27:31 -04001461
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001462 for (i = 0; i < map.m_len; i++)
1463 unmap_underlying_metadata(bdev, map.m_pblk + i);
1464 }
Alex Tomas64769242008-07-11 19:27:31 -04001465
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001466 if (ext4_should_order_data(mpd->inode)) {
1467 err = ext4_jbd2_file_inode(handle, mpd->inode);
1468 if (err)
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001469 /* This only happens if the journal is aborted */
1470 return;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001471 }
1472
1473 /*
Jan Kara03f5d8b2009-06-09 00:17:05 -04001474 * Update on-disk size along with block allocation.
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001475 */
1476 disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits;
1477 if (disksize > i_size_read(mpd->inode))
1478 disksize = i_size_read(mpd->inode);
1479 if (disksize > EXT4_I(mpd->inode)->i_disksize) {
1480 ext4_update_i_disksize(mpd->inode, disksize);
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001481 err = ext4_mark_inode_dirty(handle, mpd->inode);
1482 if (err)
1483 ext4_error(mpd->inode->i_sb,
1484 "Failed to mark inode %lu dirty",
1485 mpd->inode->i_ino);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04001486 }
1487
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001488submit_io:
Theodore Ts'o1de3e3d2010-10-27 21:30:10 -04001489 mpage_da_submit_io(mpd, mapp);
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001490 mpd->io_done = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001491}
1492
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04001493#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
1494 (1 << BH_Delay) | (1 << BH_Unwritten))
Alex Tomas64769242008-07-11 19:27:31 -04001495
1496/*
1497 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
1498 *
1499 * @mpd->lbh - extent of blocks
1500 * @logical - logical number of the block in the file
1501 * @bh - bh of the block (used to access block's state)
1502 *
1503 * the function is used to collect contig. blocks in same state
1504 */
1505static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001506 sector_t logical, size_t b_size,
1507 unsigned long b_state)
Alex Tomas64769242008-07-11 19:27:31 -04001508{
Alex Tomas64769242008-07-11 19:27:31 -04001509 sector_t next;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001510 int nrblocks = mpd->b_size >> mpd->inode->i_blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04001511
Eric Sandeenc445e3e2010-05-16 04:00:00 -04001512 /*
1513 * XXX Don't go larger than mballoc is willing to allocate
1514 * This is a stopgap solution. We eventually need to fold
1515 * mpage_da_submit_io() into this function and then call
Eric Sandeen79e83032010-07-27 11:56:07 -04001516 * ext4_map_blocks() multiple times in a loop
Eric Sandeenc445e3e2010-05-16 04:00:00 -04001517 */
1518 if (nrblocks >= 8*1024*1024/mpd->inode->i_sb->s_blocksize)
1519 goto flush_it;
1520
Mingming Cao525f4ed2008-08-19 22:15:58 -04001521 /* check if thereserved journal credits might overflow */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001522 if (!(ext4_test_inode_flag(mpd->inode, EXT4_INODE_EXTENTS))) {
Mingming Cao525f4ed2008-08-19 22:15:58 -04001523 if (nrblocks >= EXT4_MAX_TRANS_DATA) {
1524 /*
1525 * With non-extent format we are limited by the journal
1526 * credit available. Total credit needed to insert
1527 * nrblocks contiguous blocks is dependent on the
1528 * nrblocks. So limit nrblocks.
1529 */
1530 goto flush_it;
1531 } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) >
1532 EXT4_MAX_TRANS_DATA) {
1533 /*
1534 * Adding the new buffer_head would make it cross the
1535 * allowed limit for which we have journal credit
1536 * reserved. So limit the new bh->b_size
1537 */
1538 b_size = (EXT4_MAX_TRANS_DATA - nrblocks) <<
1539 mpd->inode->i_blkbits;
1540 /* we will do mpage_da_submit_io in the next loop */
1541 }
1542 }
Alex Tomas64769242008-07-11 19:27:31 -04001543 /*
1544 * First block in the extent
1545 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001546 if (mpd->b_size == 0) {
1547 mpd->b_blocknr = logical;
1548 mpd->b_size = b_size;
1549 mpd->b_state = b_state & BH_FLAGS;
Alex Tomas64769242008-07-11 19:27:31 -04001550 return;
1551 }
1552
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001553 next = mpd->b_blocknr + nrblocks;
Alex Tomas64769242008-07-11 19:27:31 -04001554 /*
1555 * Can we merge the block to our big extent?
1556 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001557 if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) {
1558 mpd->b_size += b_size;
Alex Tomas64769242008-07-11 19:27:31 -04001559 return;
1560 }
1561
Mingming Cao525f4ed2008-08-19 22:15:58 -04001562flush_it:
Alex Tomas64769242008-07-11 19:27:31 -04001563 /*
1564 * We couldn't merge the block to our extent, so we
1565 * need to flush current extent and start new one
1566 */
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04001567 mpage_da_map_and_submit(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001568 return;
Alex Tomas64769242008-07-11 19:27:31 -04001569}
1570
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001571static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001572{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001573 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001574}
1575
Alex Tomas64769242008-07-11 19:27:31 -04001576/*
Theodore Ts'ob920c752009-05-14 00:54:29 -04001577 * This is a special get_blocks_t callback which is used by
1578 * ext4_da_write_begin(). It will either return mapped block or
1579 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001580 *
1581 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1582 * We also have b_blocknr = -1 and b_bdev initialized properly
1583 *
1584 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1585 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1586 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001587 */
1588static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001589 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001590{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001591 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001592 int ret = 0;
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04001593 sector_t invalid_block = ~((sector_t) 0xffff);
1594
1595 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1596 invalid_block = ~0;
Alex Tomas64769242008-07-11 19:27:31 -04001597
1598 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001599 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1600
1601 map.m_lblk = iblock;
1602 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001603
1604 /*
1605 * first, we need to know whether the block is allocated already
1606 * preallocated blocks are unmapped but should treated
1607 * the same as allocated blocks.
1608 */
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001609 ret = ext4_map_blocks(NULL, inode, &map, 0);
1610 if (ret < 0)
1611 return ret;
1612 if (ret == 0) {
1613 if (buffer_delay(bh))
1614 return 0; /* Not sure this could or should happen */
Alex Tomas64769242008-07-11 19:27:31 -04001615 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +02001616 * XXX: __block_write_begin() unmaps passed block, is it OK?
Alex Tomas64769242008-07-11 19:27:31 -04001617 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001618 ret = ext4_da_reserve_space(inode, iblock);
Mingming Caod2a17632008-07-14 17:52:37 -04001619 if (ret)
1620 /* not enough space to reserve */
1621 return ret;
1622
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001623 map_bh(bh, inode->i_sb, invalid_block);
1624 set_buffer_new(bh);
1625 set_buffer_delay(bh);
1626 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001627 }
1628
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001629 map_bh(bh, inode->i_sb, map.m_pblk);
1630 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
1631
1632 if (buffer_unwritten(bh)) {
1633 /* A delayed write to unwritten bh should be marked
1634 * new and mapped. Mapped ensures that we don't do
1635 * get_block multiple times when we write to the same
1636 * offset and new ensures that we do proper zero out
1637 * for partial write.
1638 */
1639 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001640 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001641 }
1642 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001643}
Mingming Cao61628a32008-07-11 19:27:31 -04001644
Theodore Ts'ob920c752009-05-14 00:54:29 -04001645/*
1646 * This function is used as a standard get_block_t calback function
1647 * when there is no desire to allocate any blocks. It is used as a
Christoph Hellwigebdec242010-10-06 10:47:23 +02001648 * callback function for block_write_begin() and block_write_full_page().
Christoph Hellwig206f7ab2010-06-14 14:42:49 -04001649 * These functions should only try to map a single block at a time.
Theodore Ts'ob920c752009-05-14 00:54:29 -04001650 *
1651 * Since this function doesn't do block allocations even if the caller
1652 * requests it by passing in create=1, it is critically important that
1653 * any caller checks to make sure that any buffer heads are returned
1654 * by this function are either all already mapped or marked for
Christoph Hellwig206f7ab2010-06-14 14:42:49 -04001655 * delayed allocation before calling block_write_full_page(). Otherwise,
1656 * b_blocknr could be left unitialized, and the page write functions will
1657 * be taken by surprise.
Theodore Ts'ob920c752009-05-14 00:54:29 -04001658 */
1659static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001660 struct buffer_head *bh_result, int create)
1661{
Theodore Ts'oa2dc52b2009-05-12 13:51:29 -04001662 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001663 return _ext4_get_block(inode, iblock, bh_result, 0);
Mingming Cao61628a32008-07-11 19:27:31 -04001664}
1665
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001666static int bget_one(handle_t *handle, struct buffer_head *bh)
1667{
1668 get_bh(bh);
1669 return 0;
1670}
1671
1672static int bput_one(handle_t *handle, struct buffer_head *bh)
1673{
1674 put_bh(bh);
1675 return 0;
1676}
1677
1678static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001679 unsigned int len)
1680{
1681 struct address_space *mapping = page->mapping;
1682 struct inode *inode = mapping->host;
1683 struct buffer_head *page_bufs;
1684 handle_t *handle = NULL;
1685 int ret = 0;
1686 int err;
1687
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001688 ClearPageChecked(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001689 page_bufs = page_buffers(page);
1690 BUG_ON(!page_bufs);
1691 walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one);
1692 /* As soon as we unlock the page, it can go away, but we have
1693 * references to buffers so we are safe */
1694 unlock_page(page);
1695
1696 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
1697 if (IS_ERR(handle)) {
1698 ret = PTR_ERR(handle);
1699 goto out;
1700 }
1701
1702 ret = walk_page_buffers(handle, page_bufs, 0, len, NULL,
1703 do_journal_get_write_access);
1704
1705 err = walk_page_buffers(handle, page_bufs, 0, len, NULL,
1706 write_end_fn);
1707 if (ret == 0)
1708 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001709 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001710 err = ext4_journal_stop(handle);
1711 if (!ret)
1712 ret = err;
1713
1714 walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001715 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001716out:
1717 return ret;
1718}
1719
Jiaying Zhang744692d2010-03-04 16:14:02 -05001720static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode);
1721static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate);
1722
Mingming Cao61628a32008-07-11 19:27:31 -04001723/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001724 * Note that we don't need to start a transaction unless we're journaling data
1725 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1726 * need to file the inode to the transaction's list in ordered mode because if
1727 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001728 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001729 * transaction the data will hit the disk. In case we are journaling data, we
1730 * cannot start transaction directly because transaction start ranks above page
1731 * lock so we have to do some magic.
1732 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001733 * This function can get called via...
1734 * - ext4_da_writepages after taking page lock (have journal handle)
1735 * - journal_submit_inode_data_buffers (no journal handle)
1736 * - shrink_page_list via pdflush (no journal handle)
1737 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001738 *
1739 * We don't do any block allocation in this function. If we have page with
1740 * multiple blocks we need to write those buffer_heads that are mapped. This
1741 * is important for mmaped based write. So if we do with blocksize 1K
1742 * truncate(f, 1024);
1743 * a = mmap(f, 0, 4096);
1744 * a[0] = 'a';
1745 * truncate(f, 4096);
1746 * we have in the page first buffer_head mapped via page_mkwrite call back
1747 * but other bufer_heads would be unmapped but dirty(dirty done via the
1748 * do_wp_page). So writepage should write the first block. If we modify
1749 * the mmap area beyond 1024 we will again get a page_fault and the
1750 * page_mkwrite callback will do the block allocation and mark the
1751 * buffer_heads mapped.
1752 *
1753 * We redirty the page if we have any buffer_heads that is either delay or
1754 * unwritten in the page.
1755 *
1756 * We can get recursively called as show below.
1757 *
1758 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1759 * ext4_writepage()
1760 *
1761 * But since we don't do any block allocation we should not deadlock.
1762 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001763 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001764static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001765 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001766{
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001767 int ret = 0, commit_write = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001768 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001769 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001770 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001771 struct inode *inode = page->mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04001772
Lukas Czernera9c667f2011-06-06 09:51:52 -04001773 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001774 size = i_size_read(inode);
1775 if (page->index == size >> PAGE_CACHE_SHIFT)
1776 len = size & ~PAGE_CACHE_MASK;
1777 else
1778 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001779
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001780 /*
1781 * If the page does not have buffers (for whatever reason),
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001782 * try to create them using __block_write_begin. If this
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001783 * fails, redirty the page and move on.
1784 */
Theodore Ts'ob1142e82010-10-28 17:33:57 -04001785 if (!page_has_buffers(page)) {
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001786 if (__block_write_begin(page, 0, len,
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001787 noalloc_get_block_write)) {
1788 redirty_page:
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001789 redirty_page_for_writepage(wbc, page);
1790 unlock_page(page);
1791 return 0;
1792 }
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001793 commit_write = 1;
1794 }
1795 page_bufs = page_buffers(page);
1796 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1797 ext4_bh_delay_or_unwritten)) {
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001798 /*
Theodore Ts'ob1142e82010-10-28 17:33:57 -04001799 * We don't want to do block allocation, so redirty
1800 * the page and return. We may reach here when we do
1801 * a journal commit via journal_submit_inode_data_buffers.
1802 * We can also reach here via shrink_page_list
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001803 */
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001804 goto redirty_page;
1805 }
1806 if (commit_write)
Aneesh Kumar K.Ved9b3e32008-11-07 09:06:45 -05001807 /* now mark the buffer_heads as dirty and uptodate */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04001808 block_commit_write(page, 0, len);
Alex Tomas64769242008-07-11 19:27:31 -04001809
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001810 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001811 /*
1812 * It's mmapped pagecache. Add buffers and journal it. There
1813 * doesn't seem much point in redirtying the page here.
1814 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05001815 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001816
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001817 if (buffer_uninit(page_bufs)) {
Jiaying Zhang744692d2010-03-04 16:14:02 -05001818 ext4_set_bh_endio(page_bufs, inode);
1819 ret = block_write_full_page_endio(page, noalloc_get_block_write,
1820 wbc, ext4_end_io_buffer_write);
1821 } else
Theodore Ts'ob920c752009-05-14 00:54:29 -04001822 ret = block_write_full_page(page, noalloc_get_block_write,
1823 wbc);
Alex Tomas64769242008-07-11 19:27:31 -04001824
Alex Tomas64769242008-07-11 19:27:31 -04001825 return ret;
1826}
1827
Mingming Cao61628a32008-07-11 19:27:31 -04001828/*
Mingming Cao525f4ed2008-08-19 22:15:58 -04001829 * This is called via ext4_da_writepages() to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001830 * calculate the total number of credits to reserve to fit
Mingming Cao525f4ed2008-08-19 22:15:58 -04001831 * a single extent allocation into a single transaction,
1832 * ext4_da_writpeages() will loop calling this before
1833 * the block allocation.
Mingming Cao61628a32008-07-11 19:27:31 -04001834 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04001835
1836static int ext4_da_writepages_trans_blocks(struct inode *inode)
1837{
1838 int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
1839
1840 /*
1841 * With non-extent format the journal credit needed to
1842 * insert nrblocks contiguous block is dependent on
1843 * number of contiguous block. So we will limit
1844 * number of contiguous block to a sane value
1845 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001846 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) &&
Mingming Cao525f4ed2008-08-19 22:15:58 -04001847 (max_blocks > EXT4_MAX_TRANS_DATA))
1848 max_blocks = EXT4_MAX_TRANS_DATA;
1849
1850 return ext4_chunk_trans_blocks(inode, max_blocks);
1851}
Mingming Cao61628a32008-07-11 19:27:31 -04001852
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001853/*
1854 * write_cache_pages_da - walk the list of dirty pages of the given
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001855 * address space and accumulate pages that need writing, and call
Theodore Ts'o168fc022011-02-26 14:09:20 -05001856 * mpage_da_map_and_submit to map a single contiguous memory region
1857 * and then write them.
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001858 */
1859static int write_cache_pages_da(struct address_space *mapping,
1860 struct writeback_control *wbc,
Eric Sandeen72f84e62010-10-27 21:30:13 -04001861 struct mpage_da_data *mpd,
1862 pgoff_t *done_index)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001863{
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001864 struct buffer_head *bh, *head;
Theodore Ts'o168fc022011-02-26 14:09:20 -05001865 struct inode *inode = mapping->host;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001866 struct pagevec pvec;
1867 unsigned int nr_pages;
1868 sector_t logical;
1869 pgoff_t index, end;
1870 long nr_to_write = wbc->nr_to_write;
1871 int i, tag, ret = 0;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001872
Theodore Ts'o168fc022011-02-26 14:09:20 -05001873 memset(mpd, 0, sizeof(struct mpage_da_data));
1874 mpd->wbc = wbc;
1875 mpd->inode = inode;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001876 pagevec_init(&pvec, 0);
1877 index = wbc->range_start >> PAGE_CACHE_SHIFT;
1878 end = wbc->range_end >> PAGE_CACHE_SHIFT;
1879
Wu Fengguang6e6938b2010-06-06 10:38:15 -06001880 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04001881 tag = PAGECACHE_TAG_TOWRITE;
1882 else
1883 tag = PAGECACHE_TAG_DIRTY;
1884
Eric Sandeen72f84e62010-10-27 21:30:13 -04001885 *done_index = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001886 while (index <= end) {
Eric Sandeen5b41d922010-10-27 21:30:13 -04001887 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001888 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
1889 if (nr_pages == 0)
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001890 return 0;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001891
1892 for (i = 0; i < nr_pages; i++) {
1893 struct page *page = pvec.pages[i];
1894
1895 /*
1896 * At this point, the page may be truncated or
1897 * invalidated (changing page->mapping to NULL), or
1898 * even swizzled back from swapper_space to tmpfs file
1899 * mapping. However, page->index will not change
1900 * because we have a reference on the page.
1901 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001902 if (page->index > end)
1903 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001904
Eric Sandeen72f84e62010-10-27 21:30:13 -04001905 *done_index = page->index + 1;
1906
Theodore Ts'o78aaced2011-02-26 14:09:14 -05001907 /*
1908 * If we can't merge this page, and we have
1909 * accumulated an contiguous region, write it
1910 */
1911 if ((mpd->next_page != page->index) &&
1912 (mpd->next_page != mpd->first_page)) {
1913 mpage_da_map_and_submit(mpd);
1914 goto ret_extent_tail;
1915 }
1916
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001917 lock_page(page);
1918
1919 /*
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001920 * If the page is no longer dirty, or its
1921 * mapping no longer corresponds to inode we
1922 * are writing (which means it has been
1923 * truncated or invalidated), or the page is
1924 * already under writeback and we are not
1925 * doing a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001926 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001927 if (!PageDirty(page) ||
1928 (PageWriteback(page) &&
1929 (wbc->sync_mode == WB_SYNC_NONE)) ||
1930 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001931 unlock_page(page);
1932 continue;
1933 }
1934
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04001935 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001936 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001937
Theodore Ts'o168fc022011-02-26 14:09:20 -05001938 if (mpd->next_page != page->index)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001939 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001940 mpd->next_page = page->index + 1;
1941 logical = (sector_t) page->index <<
1942 (PAGE_CACHE_SHIFT - inode->i_blkbits);
1943
1944 if (!page_has_buffers(page)) {
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001945 mpage_add_bh_to_extent(mpd, logical,
1946 PAGE_CACHE_SIZE,
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001947 (1 << BH_Dirty) | (1 << BH_Uptodate));
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001948 if (mpd->io_done)
1949 goto ret_extent_tail;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001950 } else {
1951 /*
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001952 * Page with regular buffer heads,
1953 * just add all dirty ones
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001954 */
1955 head = page_buffers(page);
1956 bh = head;
1957 do {
1958 BUG_ON(buffer_locked(bh));
1959 /*
1960 * We need to try to allocate
1961 * unmapped blocks in the same page.
1962 * Otherwise we won't make progress
1963 * with the page in ext4_writepage
1964 */
1965 if (ext4_bh_delay_or_unwritten(NULL, bh)) {
1966 mpage_add_bh_to_extent(mpd, logical,
1967 bh->b_size,
1968 bh->b_state);
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001969 if (mpd->io_done)
1970 goto ret_extent_tail;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001971 } else if (buffer_dirty(bh) && (buffer_mapped(bh))) {
1972 /*
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001973 * mapped dirty buffer. We need
1974 * to update the b_state
1975 * because we look at b_state
1976 * in mpage_da_map_blocks. We
1977 * don't update b_size because
1978 * if we find an unmapped
1979 * buffer_head later we need to
1980 * use the b_state flag of that
1981 * buffer_head.
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05001982 */
1983 if (mpd->b_size == 0)
1984 mpd->b_state = bh->b_state & BH_FLAGS;
1985 }
1986 logical++;
1987 } while ((bh = bh->b_this_page) != head);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001988 }
1989
1990 if (nr_to_write > 0) {
1991 nr_to_write--;
1992 if (nr_to_write == 0 &&
Theodore Ts'o4f01b022011-02-26 14:07:37 -05001993 wbc->sync_mode == WB_SYNC_NONE)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04001994 /*
1995 * We stop writing back only if we are
1996 * not doing integrity sync. In case of
1997 * integrity sync we have to keep going
1998 * because someone may be concurrently
1999 * dirtying pages, and we might have
2000 * synced a lot of newly appeared dirty
2001 * pages, but have not synced all of the
2002 * old dirty pages.
2003 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002004 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002005 }
2006 }
2007 pagevec_release(&pvec);
2008 cond_resched();
2009 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002010 return 0;
2011ret_extent_tail:
2012 ret = MPAGE_DA_EXTENT_TAIL;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002013out:
2014 pagevec_release(&pvec);
2015 cond_resched();
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002016 return ret;
2017}
2018
2019
Alex Tomas64769242008-07-11 19:27:31 -04002020static int ext4_da_writepages(struct address_space *mapping,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002021 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002022{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002023 pgoff_t index;
2024 int range_whole = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002025 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002026 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002027 struct inode *inode = mapping->host;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002028 int pages_written = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002029 unsigned int max_pages;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002030 int range_cyclic, cycled = 1, io_done = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002031 int needed_blocks, ret = 0;
2032 long desired_nr_to_write, nr_to_writebump = 0;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002033 loff_t range_start = wbc->range_start;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002034 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Eric Sandeen72f84e62010-10-27 21:30:13 -04002035 pgoff_t done_index = 0;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002036 pgoff_t end;
Mingming Cao61628a32008-07-11 19:27:31 -04002037
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002038 trace_ext4_da_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002039
Mingming Cao61628a32008-07-11 19:27:31 -04002040 /*
2041 * No pages to write? This is mainly a kludge to avoid starting
2042 * a transaction for special inodes like journal inode on last iput()
2043 * because that could violate lock ordering on umount
2044 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002045 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Mingming Cao61628a32008-07-11 19:27:31 -04002046 return 0;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002047
2048 /*
2049 * If the filesystem has aborted, it is read-only, so return
2050 * right away instead of dumping stack traces later on that
2051 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002052 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002053 * the latter could be true if the filesystem is mounted
2054 * read-only, and in that case, ext4_da_writepages should
2055 * *never* be called, so if that ever happens, we would want
2056 * the stack trace.
2057 */
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002058 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED))
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002059 return -EROFS;
2060
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002061 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2062 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002063
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002064 range_cyclic = wbc->range_cyclic;
2065 if (wbc->range_cyclic) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002066 index = mapping->writeback_index;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002067 if (index)
2068 cycled = 0;
2069 wbc->range_start = index << PAGE_CACHE_SHIFT;
2070 wbc->range_end = LLONG_MAX;
2071 wbc->range_cyclic = 0;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002072 end = -1;
2073 } else {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002074 index = wbc->range_start >> PAGE_CACHE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002075 end = wbc->range_end >> PAGE_CACHE_SHIFT;
2076 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002077
Theodore Ts'o55138e02009-09-29 13:31:31 -04002078 /*
2079 * This works around two forms of stupidity. The first is in
2080 * the writeback code, which caps the maximum number of pages
2081 * written to be 1024 pages. This is wrong on multiple
2082 * levels; different architectues have a different page size,
2083 * which changes the maximum amount of data which gets
2084 * written. Secondly, 4 megabytes is way too small. XFS
2085 * forces this value to be 16 megabytes by multiplying
2086 * nr_to_write parameter by four, and then relies on its
2087 * allocator to allocate larger extents to make them
2088 * contiguous. Unfortunately this brings us to the second
2089 * stupidity, which is that ext4's mballoc code only allocates
2090 * at most 2048 blocks. So we force contiguous writes up to
2091 * the number of dirty blocks in the inode, or
2092 * sbi->max_writeback_mb_bump whichever is smaller.
2093 */
2094 max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT);
Eric Sandeenb443e732010-10-27 21:30:03 -04002095 if (!range_cyclic && range_whole) {
2096 if (wbc->nr_to_write == LONG_MAX)
2097 desired_nr_to_write = wbc->nr_to_write;
2098 else
2099 desired_nr_to_write = wbc->nr_to_write * 8;
2100 } else
Theodore Ts'o55138e02009-09-29 13:31:31 -04002101 desired_nr_to_write = ext4_num_dirty_pages(inode, index,
2102 max_pages);
2103 if (desired_nr_to_write > max_pages)
2104 desired_nr_to_write = max_pages;
2105
2106 if (wbc->nr_to_write < desired_nr_to_write) {
2107 nr_to_writebump = desired_nr_to_write - wbc->nr_to_write;
2108 wbc->nr_to_write = desired_nr_to_write;
2109 }
2110
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002111retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002112 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002113 tag_pages_for_writeback(mapping, index, end);
2114
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002115 while (!ret && wbc->nr_to_write > 0) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002116
2117 /*
2118 * we insert one extent at a time. So we need
2119 * credit needed for single extent allocation.
2120 * journalled mode is currently not supported
2121 * by delalloc
2122 */
2123 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002124 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002125
Mingming Cao61628a32008-07-11 19:27:31 -04002126 /* start a new transaction*/
2127 handle = ext4_journal_start(inode, needed_blocks);
2128 if (IS_ERR(handle)) {
2129 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002130 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002131 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002132 wbc->nr_to_write, inode->i_ino, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002133 goto out_writepages;
2134 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002135
2136 /*
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002137 * Now call write_cache_pages_da() to find the next
Theodore Ts'of63e6002009-02-23 16:42:39 -05002138 * contiguous region of logical blocks that need
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002139 * blocks to be allocated by ext4 and submit them.
Theodore Ts'of63e6002009-02-23 16:42:39 -05002140 */
Eric Sandeen72f84e62010-10-27 21:30:13 -04002141 ret = write_cache_pages_da(mapping, wbc, &mpd, &done_index);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002142 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002143 * If we have a contiguous extent of pages and we
Theodore Ts'of63e6002009-02-23 16:42:39 -05002144 * haven't done the I/O yet, map the blocks and submit
2145 * them for I/O.
2146 */
2147 if (!mpd.io_done && mpd.next_page != mpd.first_page) {
Theodore Ts'o5a87b7a2010-10-27 21:30:09 -04002148 mpage_da_map_and_submit(&mpd);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002149 ret = MPAGE_DA_EXTENT_TAIL;
2150 }
Theodore Ts'ob3a3ca82009-08-31 23:13:11 -04002151 trace_ext4_da_write_pages(inode, &mpd);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002152 wbc->nr_to_write -= mpd.pages_written;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002153
Mingming Cao61628a32008-07-11 19:27:31 -04002154 ext4_journal_stop(handle);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002155
Eric Sandeen8f64b322009-02-26 00:57:35 -05002156 if ((mpd.retval == -ENOSPC) && sbi->s_journal) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002157 /* commit the transaction which would
2158 * free blocks released in the transaction
2159 * and try again
2160 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002161 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002162 ret = 0;
2163 } else if (ret == MPAGE_DA_EXTENT_TAIL) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002164 /*
2165 * got one extent now try with
2166 * rest of the pages
2167 */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002168 pages_written += mpd.pages_written;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002169 ret = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002170 io_done = 1;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002171 } else if (wbc->nr_to_write)
Mingming Cao61628a32008-07-11 19:27:31 -04002172 /*
2173 * There is no more writeout needed
2174 * or we requested for a noblocking writeout
2175 * and we found the device congested
2176 */
Mingming Cao61628a32008-07-11 19:27:31 -04002177 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002178 }
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002179 if (!io_done && !cycled) {
2180 cycled = 1;
2181 index = 0;
2182 wbc->range_start = index << PAGE_CACHE_SHIFT;
2183 wbc->range_end = mapping->writeback_index - 1;
2184 goto retry;
2185 }
Mingming Cao61628a32008-07-11 19:27:31 -04002186
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002187 /* Update index */
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002188 wbc->range_cyclic = range_cyclic;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002189 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2190 /*
2191 * set the writeback_index so that range_cyclic
2192 * mode will write it back later
2193 */
Eric Sandeen72f84e62010-10-27 21:30:13 -04002194 mapping->writeback_index = done_index;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002195
Mingming Cao61628a32008-07-11 19:27:31 -04002196out_writepages:
Richard Kennedy2faf2e12009-12-25 15:46:07 -05002197 wbc->nr_to_write -= nr_to_writebump;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002198 wbc->range_start = range_start;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002199 trace_ext4_da_writepages_result(inode, wbc, ret, pages_written);
Mingming Cao61628a32008-07-11 19:27:31 -04002200 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002201}
2202
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002203#define FALL_BACK_TO_NONDELALLOC 1
2204static int ext4_nonda_switch(struct super_block *sb)
2205{
2206 s64 free_blocks, dirty_blocks;
2207 struct ext4_sb_info *sbi = EXT4_SB(sb);
2208
2209 /*
2210 * switch to non delalloc mode if we are running low
2211 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002212 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002213 * accumulated on each CPU without updating global counters
2214 * Delalloc need an accurate free block accounting. So switch
2215 * to non delalloc when we are near to error range.
2216 */
2217 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
2218 dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyblocks_counter);
2219 if (2 * free_blocks < 3 * dirty_blocks ||
2220 free_blocks < (dirty_blocks + EXT4_FREEBLOCKS_WATERMARK)) {
2221 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002222 * free block count is less than 150% of dirty blocks
2223 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002224 */
2225 return 1;
2226 }
Eric Sandeenc8afb442009-12-23 07:58:12 -05002227 /*
2228 * Even if we don't switch but are nearing capacity,
2229 * start pushing delalloc when 1/2 of free blocks are dirty.
2230 */
2231 if (free_blocks < 2 * dirty_blocks)
2232 writeback_inodes_sb_if_idle(sb);
2233
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002234 return 0;
2235}
2236
Alex Tomas64769242008-07-11 19:27:31 -04002237static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002238 loff_t pos, unsigned len, unsigned flags,
2239 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002240{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002241 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002242 struct page *page;
2243 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002244 struct inode *inode = mapping->host;
2245 handle_t *handle;
2246
2247 index = pos >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002248
2249 if (ext4_nonda_switch(inode->i_sb)) {
2250 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2251 return ext4_write_begin(file, mapping, pos,
2252 len, flags, pagep, fsdata);
2253 }
2254 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002255 trace_ext4_da_write_begin(inode, pos, len, flags);
Mingming Caod2a17632008-07-14 17:52:37 -04002256retry:
Alex Tomas64769242008-07-11 19:27:31 -04002257 /*
2258 * With delayed allocation, we don't log the i_disksize update
2259 * if there is delayed block allocation. But we still need
2260 * to journalling the i_disksize update if writes to the end
2261 * of file which has an already mapped buffer.
2262 */
2263 handle = ext4_journal_start(inode, 1);
2264 if (IS_ERR(handle)) {
2265 ret = PTR_ERR(handle);
2266 goto out;
2267 }
Jan Karaebd36102009-02-22 21:09:59 -05002268 /* We cannot recurse into the filesystem as the transaction is already
2269 * started */
2270 flags |= AOP_FLAG_NOFS;
Alex Tomas64769242008-07-11 19:27:31 -04002271
Nick Piggin54566b22009-01-04 12:00:53 -08002272 page = grab_cache_page_write_begin(mapping, index, flags);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002273 if (!page) {
2274 ext4_journal_stop(handle);
2275 ret = -ENOMEM;
2276 goto out;
2277 }
Alex Tomas64769242008-07-11 19:27:31 -04002278 *pagep = page;
2279
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002280 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04002281 if (ret < 0) {
2282 unlock_page(page);
2283 ext4_journal_stop(handle);
2284 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002285 /*
2286 * block_write_begin may have instantiated a few blocks
2287 * outside i_size. Trim these off again. Don't need
2288 * i_size_read because we hold i_mutex.
2289 */
2290 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002291 ext4_truncate_failed_write(inode);
Alex Tomas64769242008-07-11 19:27:31 -04002292 }
2293
Mingming Caod2a17632008-07-14 17:52:37 -04002294 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
2295 goto retry;
Alex Tomas64769242008-07-11 19:27:31 -04002296out:
2297 return ret;
2298}
2299
Mingming Cao632eaea2008-07-11 19:27:31 -04002300/*
2301 * Check if we should update i_disksize
2302 * when write to the end of file but not require block allocation
2303 */
2304static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002305 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002306{
2307 struct buffer_head *bh;
2308 struct inode *inode = page->mapping->host;
2309 unsigned int idx;
2310 int i;
2311
2312 bh = page_buffers(page);
2313 idx = offset >> inode->i_blkbits;
2314
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002315 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002316 bh = bh->b_this_page;
2317
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002318 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002319 return 0;
2320 return 1;
2321}
2322
Alex Tomas64769242008-07-11 19:27:31 -04002323static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002324 struct address_space *mapping,
2325 loff_t pos, unsigned len, unsigned copied,
2326 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002327{
2328 struct inode *inode = mapping->host;
2329 int ret = 0, ret2;
2330 handle_t *handle = ext4_journal_current_handle();
2331 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002332 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002333 int write_mode = (int)(unsigned long)fsdata;
2334
2335 if (write_mode == FALL_BACK_TO_NONDELALLOC) {
2336 if (ext4_should_order_data(inode)) {
2337 return ext4_ordered_write_end(file, mapping, pos,
2338 len, copied, page, fsdata);
2339 } else if (ext4_should_writeback_data(inode)) {
2340 return ext4_writeback_write_end(file, mapping, pos,
2341 len, copied, page, fsdata);
2342 } else {
2343 BUG();
2344 }
2345 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002346
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002347 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04002348 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002349 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04002350
2351 /*
2352 * generic_write_end() will run mark_inode_dirty() if i_size
2353 * changes. So let's piggyback the i_disksize mark_inode_dirty
2354 * into that.
2355 */
2356
2357 new_i_size = pos + copied;
Mingming Cao632eaea2008-07-11 19:27:31 -04002358 if (new_i_size > EXT4_I(inode)->i_disksize) {
2359 if (ext4_da_should_update_i_disksize(page, end)) {
2360 down_write(&EXT4_I(inode)->i_data_sem);
2361 if (new_i_size > EXT4_I(inode)->i_disksize) {
2362 /*
2363 * Updating i_disksize when extending file
2364 * without needing block allocation
2365 */
2366 if (ext4_should_order_data(inode))
2367 ret = ext4_jbd2_file_inode(handle,
2368 inode);
Alex Tomas64769242008-07-11 19:27:31 -04002369
Mingming Cao632eaea2008-07-11 19:27:31 -04002370 EXT4_I(inode)->i_disksize = new_i_size;
2371 }
2372 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04002373 /* We need to mark inode dirty even if
2374 * new_i_size is less that inode->i_size
2375 * bu greater than i_disksize.(hint delalloc)
2376 */
2377 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04002378 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002379 }
Alex Tomas64769242008-07-11 19:27:31 -04002380 ret2 = generic_write_end(file, mapping, pos, len, copied,
2381 page, fsdata);
2382 copied = ret2;
2383 if (ret2 < 0)
2384 ret = ret2;
2385 ret2 = ext4_journal_stop(handle);
2386 if (!ret)
2387 ret = ret2;
2388
2389 return ret ? ret : copied;
2390}
2391
2392static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
2393{
Alex Tomas64769242008-07-11 19:27:31 -04002394 /*
2395 * Drop reserved blocks
2396 */
2397 BUG_ON(!PageLocked(page));
2398 if (!page_has_buffers(page))
2399 goto out;
2400
Mingming Caod2a17632008-07-14 17:52:37 -04002401 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04002402
2403out:
2404 ext4_invalidatepage(page, offset);
2405
2406 return;
2407}
2408
Theodore Ts'occd25062009-02-26 01:04:07 -05002409/*
2410 * Force all delayed allocation blocks to be allocated for a given inode.
2411 */
2412int ext4_alloc_da_blocks(struct inode *inode)
2413{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04002414 trace_ext4_alloc_da_blocks(inode);
2415
Theodore Ts'occd25062009-02-26 01:04:07 -05002416 if (!EXT4_I(inode)->i_reserved_data_blocks &&
2417 !EXT4_I(inode)->i_reserved_meta_blocks)
2418 return 0;
2419
2420 /*
2421 * We do something simple for now. The filemap_flush() will
2422 * also start triggering a write of the data blocks, which is
2423 * not strictly speaking necessary (and for users of
2424 * laptop_mode, not even desirable). However, to do otherwise
2425 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002426 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002427 * ext4_da_writepages() ->
2428 * write_cache_pages() ---> (via passed in callback function)
2429 * __mpage_da_writepage() -->
2430 * mpage_add_bh_to_extent()
2431 * mpage_da_map_blocks()
2432 *
2433 * The problem is that write_cache_pages(), located in
2434 * mm/page-writeback.c, marks pages clean in preparation for
2435 * doing I/O, which is not desirable if we're not planning on
2436 * doing I/O at all.
2437 *
2438 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08002439 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05002440 * would be ugly in the extreme. So instead we would need to
2441 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002442 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05002443 * write out the pages, but rather only collect contiguous
2444 * logical block extents, call the multi-block allocator, and
2445 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002446 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002447 * For now, though, we'll cheat by calling filemap_flush(),
2448 * which will map the blocks, and start the I/O, but not
2449 * actually wait for the I/O to complete.
2450 */
2451 return filemap_flush(inode->i_mapping);
2452}
Alex Tomas64769242008-07-11 19:27:31 -04002453
2454/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002455 * bmap() is special. It gets used by applications such as lilo and by
2456 * the swapper to find the on-disk block of a specific piece of data.
2457 *
2458 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002459 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002460 * filesystem and enables swap, then they may get a nasty shock when the
2461 * data getting swapped to that swapfile suddenly gets overwritten by
2462 * the original zero's written out previously to the journal and
2463 * awaiting writeback in the kernel's buffer cache.
2464 *
2465 * So, if we see any bmap calls here on a modified, data-journaled file,
2466 * take extra steps to flush any blocks which might be in the cache.
2467 */
Mingming Cao617ba132006-10-11 01:20:53 -07002468static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002469{
2470 struct inode *inode = mapping->host;
2471 journal_t *journal;
2472 int err;
2473
Alex Tomas64769242008-07-11 19:27:31 -04002474 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2475 test_opt(inode->i_sb, DELALLOC)) {
2476 /*
2477 * With delalloc we want to sync the file
2478 * so that we can make sure we allocate
2479 * blocks for file
2480 */
2481 filemap_write_and_wait(mapping);
2482 }
2483
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002484 if (EXT4_JOURNAL(inode) &&
2485 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002486 /*
2487 * This is a REALLY heavyweight approach, but the use of
2488 * bmap on dirty files is expected to be extremely rare:
2489 * only if we run lilo or swapon on a freshly made file
2490 * do we expect this to happen.
2491 *
2492 * (bmap requires CAP_SYS_RAWIO so this does not
2493 * represent an unprivileged user DOS attack --- we'd be
2494 * in trouble if mortal users could trigger this path at
2495 * will.)
2496 *
Mingming Cao617ba132006-10-11 01:20:53 -07002497 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002498 * regular files. If somebody wants to bmap a directory
2499 * or symlink and gets confused because the buffer
2500 * hasn't yet been flushed to disk, they deserve
2501 * everything they get.
2502 */
2503
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002504 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002505 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002506 jbd2_journal_lock_updates(journal);
2507 err = jbd2_journal_flush(journal);
2508 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002509
2510 if (err)
2511 return 0;
2512 }
2513
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002514 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002515}
2516
Mingming Cao617ba132006-10-11 01:20:53 -07002517static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002518{
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002519 trace_ext4_readpage(page);
Mingming Cao617ba132006-10-11 01:20:53 -07002520 return mpage_readpage(page, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002521}
2522
2523static int
Mingming Cao617ba132006-10-11 01:20:53 -07002524ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002525 struct list_head *pages, unsigned nr_pages)
2526{
Mingming Cao617ba132006-10-11 01:20:53 -07002527 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002528}
2529
Jiaying Zhang744692d2010-03-04 16:14:02 -05002530static void ext4_invalidatepage_free_endio(struct page *page, unsigned long offset)
2531{
2532 struct buffer_head *head, *bh;
2533 unsigned int curr_off = 0;
2534
2535 if (!page_has_buffers(page))
2536 return;
2537 head = bh = page_buffers(page);
2538 do {
2539 if (offset <= curr_off && test_clear_buffer_uninit(bh)
2540 && bh->b_private) {
2541 ext4_free_io_end(bh->b_private);
2542 bh->b_private = NULL;
2543 bh->b_end_io = NULL;
2544 }
2545 curr_off = curr_off + bh->b_size;
2546 bh = bh->b_this_page;
2547 } while (bh != head);
2548}
2549
Mingming Cao617ba132006-10-11 01:20:53 -07002550static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002551{
Mingming Cao617ba132006-10-11 01:20:53 -07002552 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002553
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002554 trace_ext4_invalidatepage(page, offset);
2555
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002556 /*
Jiaying Zhang744692d2010-03-04 16:14:02 -05002557 * free any io_end structure allocated for buffers to be discarded
2558 */
2559 if (ext4_should_dioread_nolock(page->mapping->host))
2560 ext4_invalidatepage_free_endio(page, offset);
2561 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002562 * If it's a full truncate we just forget about the pending dirtying
2563 */
2564 if (offset == 0)
2565 ClearPageChecked(page);
2566
Frank Mayhar03901312009-01-07 00:06:22 -05002567 if (journal)
2568 jbd2_journal_invalidatepage(journal, page, offset);
2569 else
2570 block_invalidatepage(page, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002571}
2572
Mingming Cao617ba132006-10-11 01:20:53 -07002573static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002574{
Mingming Cao617ba132006-10-11 01:20:53 -07002575 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002576
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002577 trace_ext4_releasepage(page);
2578
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002579 WARN_ON(PageChecked(page));
2580 if (!page_has_buffers(page))
2581 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05002582 if (journal)
2583 return jbd2_journal_try_to_free_buffers(journal, page, wait);
2584 else
2585 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002586}
2587
2588/*
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002589 * ext4_get_block used when preparing for a DIO write or buffer write.
2590 * We allocate an uinitialized extent if blocks haven't been allocated.
2591 * The extent will be converted to initialized after the IO is complete.
2592 */
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002593static int ext4_get_block_write(struct inode *inode, sector_t iblock,
Mingming Cao4c0425f2009-09-28 15:48:41 -04002594 struct buffer_head *bh_result, int create)
2595{
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002596 ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002597 inode->i_ino, create);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002598 return _ext4_get_block(inode, iblock, bh_result,
2599 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002600}
2601
Mingming Cao4c0425f2009-09-28 15:48:41 -04002602static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
Christoph Hellwig552ef8022010-07-27 11:56:06 -04002603 ssize_t size, void *private, int ret,
2604 bool is_async)
Mingming Cao4c0425f2009-09-28 15:48:41 -04002605{
Christoph Hellwig72c50522011-06-24 14:29:48 -04002606 struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002607 ext4_io_end_t *io_end = iocb->private;
2608 struct workqueue_struct *wq;
Jiaying Zhang744692d2010-03-04 16:14:02 -05002609 unsigned long flags;
2610 struct ext4_inode_info *ei;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002611
Mingming4b70df12009-11-03 14:44:54 -05002612 /* if not async direct IO or dio with 0 bytes write, just return */
2613 if (!io_end || !size)
Christoph Hellwig552ef8022010-07-27 11:56:06 -04002614 goto out;
Mingming4b70df12009-11-03 14:44:54 -05002615
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002616 ext_debug("ext4_end_io_dio(): io_end 0x%p"
2617 "for inode %lu, iocb 0x%p, offset %llu, size %llu\n",
2618 iocb->private, io_end->inode->i_ino, iocb, offset,
2619 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002620
2621 /* if not aio dio with unwritten extents, just free io and return */
Theodore Ts'obd2d0212010-10-27 21:30:10 -04002622 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002623 ext4_free_io_end(io_end);
2624 iocb->private = NULL;
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002625out:
2626 if (is_async)
2627 aio_complete(iocb, ret, 0);
Christoph Hellwig72c50522011-06-24 14:29:48 -04002628 inode_dio_done(inode);
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002629 return;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002630 }
2631
Mingming Cao4c0425f2009-09-28 15:48:41 -04002632 io_end->offset = offset;
2633 io_end->size = size;
jiayingz@google.com (Jiaying Zhang)5b3ff232010-07-27 11:56:06 -04002634 if (is_async) {
2635 io_end->iocb = iocb;
2636 io_end->result = ret;
2637 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04002638 wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
2639
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002640 /* Add the io_end to per-inode completed aio dio list*/
Jiaying Zhang744692d2010-03-04 16:14:02 -05002641 ei = EXT4_I(io_end->inode);
2642 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
2643 list_add_tail(&io_end->list, &ei->i_completed_io_list);
2644 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
Eric Sandeenc999af22010-10-27 21:30:07 -04002645
2646 /* queue the work to convert unwritten extents to written */
2647 queue_work(wq, &io_end->work);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002648 iocb->private = NULL;
Christoph Hellwig72c50522011-06-24 14:29:48 -04002649
2650 /* XXX: probably should move into the real I/O completion handler */
2651 inode_dio_done(inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002652}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002653
Jiaying Zhang744692d2010-03-04 16:14:02 -05002654static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate)
2655{
2656 ext4_io_end_t *io_end = bh->b_private;
2657 struct workqueue_struct *wq;
2658 struct inode *inode;
2659 unsigned long flags;
2660
2661 if (!test_clear_buffer_uninit(bh) || !io_end)
2662 goto out;
2663
2664 if (!(io_end->inode->i_sb->s_flags & MS_ACTIVE)) {
2665 printk("sb umounted, discard end_io request for inode %lu\n",
2666 io_end->inode->i_ino);
2667 ext4_free_io_end(io_end);
2668 goto out;
2669 }
2670
Theodore Ts'obd2d0212010-10-27 21:30:10 -04002671 io_end->flag = EXT4_IO_END_UNWRITTEN;
Jiaying Zhang744692d2010-03-04 16:14:02 -05002672 inode = io_end->inode;
2673
2674 /* Add the io_end to per-inode completed io list*/
2675 spin_lock_irqsave(&EXT4_I(inode)->i_completed_io_lock, flags);
2676 list_add_tail(&io_end->list, &EXT4_I(inode)->i_completed_io_list);
2677 spin_unlock_irqrestore(&EXT4_I(inode)->i_completed_io_lock, flags);
2678
2679 wq = EXT4_SB(inode->i_sb)->dio_unwritten_wq;
2680 /* queue the work to convert unwritten extents to written */
2681 queue_work(wq, &io_end->work);
2682out:
2683 bh->b_private = NULL;
2684 bh->b_end_io = NULL;
2685 clear_buffer_uninit(bh);
2686 end_buffer_async_write(bh, uptodate);
2687}
2688
2689static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode)
2690{
2691 ext4_io_end_t *io_end;
2692 struct page *page = bh->b_page;
2693 loff_t offset = (sector_t)page->index << PAGE_CACHE_SHIFT;
2694 size_t size = bh->b_size;
2695
2696retry:
2697 io_end = ext4_init_io_end(inode, GFP_ATOMIC);
2698 if (!io_end) {
Andrew Morton6db26ff2011-01-12 16:59:13 -08002699 pr_warn_ratelimited("%s: allocation fail\n", __func__);
Jiaying Zhang744692d2010-03-04 16:14:02 -05002700 schedule();
2701 goto retry;
2702 }
2703 io_end->offset = offset;
2704 io_end->size = size;
2705 /*
2706 * We need to hold a reference to the page to make sure it
2707 * doesn't get evicted before ext4_end_io_work() has a chance
2708 * to convert the extent from written to unwritten.
2709 */
2710 io_end->page = page;
2711 get_page(io_end->page);
2712
2713 bh->b_private = io_end;
2714 bh->b_end_io = ext4_end_io_buffer_write;
2715 return 0;
2716}
2717
Mingming Cao4c0425f2009-09-28 15:48:41 -04002718/*
2719 * For ext4 extent files, ext4 will do direct-io write to holes,
2720 * preallocated extents, and those write extend the file, no need to
2721 * fall back to buffered IO.
2722 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002723 * For holes, we fallocate those blocks, mark them as uninitialized
Mingming Cao4c0425f2009-09-28 15:48:41 -04002724 * If those blocks were preallocated, we mark sure they are splited, but
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04002725 * still keep the range to write as uninitialized.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002726 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002727 * The unwrritten extents will be converted to written when DIO is completed.
2728 * For async direct IO, since the IO may still pending when return, we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002729 * set up an end_io call back function, which will do the conversion
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002730 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002731 *
2732 * If the O_DIRECT write will extend the file then add this inode to the
2733 * orphan list. So recovery will truncate it back to the original size
2734 * if the machine crashes during the write.
2735 *
2736 */
2737static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
2738 const struct iovec *iov, loff_t offset,
2739 unsigned long nr_segs)
2740{
2741 struct file *file = iocb->ki_filp;
2742 struct inode *inode = file->f_mapping->host;
2743 ssize_t ret;
2744 size_t count = iov_length(iov, nr_segs);
2745
2746 loff_t final_size = offset + count;
2747 if (rw == WRITE && final_size <= inode->i_size) {
2748 /*
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002749 * We could direct write to holes and fallocate.
2750 *
2751 * Allocated blocks to fill the hole are marked as uninitialized
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002752 * to prevent parallel buffered read to expose the stale data
Mingming Cao4c0425f2009-09-28 15:48:41 -04002753 * before DIO complete the data IO.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002754 *
2755 * As to previously fallocated extents, ext4 get_block
Mingming Cao4c0425f2009-09-28 15:48:41 -04002756 * will just simply mark the buffer mapped but still
2757 * keep the extents uninitialized.
2758 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002759 * for non AIO case, we will convert those unwritten extents
2760 * to written after return back from blockdev_direct_IO.
2761 *
2762 * for async DIO, the conversion needs to be defered when
2763 * the IO is completed. The ext4 end_io callback function
2764 * will be called to take care of the conversion work.
2765 * Here for async case, we allocate an io_end structure to
2766 * hook to the iocb.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002767 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002768 iocb->private = NULL;
2769 EXT4_I(inode)->cur_aio_dio = NULL;
2770 if (!is_sync_kiocb(iocb)) {
Jiaying Zhang744692d2010-03-04 16:14:02 -05002771 iocb->private = ext4_init_io_end(inode, GFP_NOFS);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002772 if (!iocb->private)
2773 return -ENOMEM;
2774 /*
2775 * we save the io structure for current async
Eric Sandeen79e83032010-07-27 11:56:07 -04002776 * direct IO, so that later ext4_map_blocks()
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002777 * could flag the io structure whether there
2778 * is a unwritten extents needs to be converted
2779 * when IO is completed.
2780 */
2781 EXT4_I(inode)->cur_aio_dio = iocb->private;
2782 }
2783
Christoph Hellwigaacfc19c2011-06-24 14:29:47 -04002784 ret = __blockdev_direct_IO(rw, iocb, inode,
Mingming Cao4c0425f2009-09-28 15:48:41 -04002785 inode->i_sb->s_bdev, iov,
2786 offset, nr_segs,
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002787 ext4_get_block_write,
Christoph Hellwigaacfc19c2011-06-24 14:29:47 -04002788 ext4_end_io_dio,
2789 NULL,
2790 DIO_LOCKING | DIO_SKIP_HOLES);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002791 if (iocb->private)
2792 EXT4_I(inode)->cur_aio_dio = NULL;
2793 /*
2794 * The io_end structure takes a reference to the inode,
2795 * that structure needs to be destroyed and the
2796 * reference to the inode need to be dropped, when IO is
2797 * complete, even with 0 byte write, or failed.
2798 *
2799 * In the successful AIO DIO case, the io_end structure will be
2800 * desctroyed and the reference to the inode will be dropped
2801 * after the end_io call back function is called.
2802 *
2803 * In the case there is 0 byte write, or error case, since
2804 * VFS direct IO won't invoke the end_io call back function,
2805 * we need to free the end_io structure here.
2806 */
2807 if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
2808 ext4_free_io_end(iocb->private);
2809 iocb->private = NULL;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002810 } else if (ret > 0 && ext4_test_inode_state(inode,
2811 EXT4_STATE_DIO_UNWRITTEN)) {
Mingming109f5562009-11-10 10:48:08 -05002812 int err;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002813 /*
2814 * for non AIO case, since the IO is already
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002815 * completed, we could do the conversion right here
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002816 */
Mingming109f5562009-11-10 10:48:08 -05002817 err = ext4_convert_unwritten_extents(inode,
2818 offset, ret);
2819 if (err < 0)
2820 ret = err;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002821 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
Mingming109f5562009-11-10 10:48:08 -05002822 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04002823 return ret;
2824 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002825
2826 /* for write the the end of file case, we fall back to old way */
Mingming Cao4c0425f2009-09-28 15:48:41 -04002827 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
2828}
2829
2830static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
2831 const struct iovec *iov, loff_t offset,
2832 unsigned long nr_segs)
2833{
2834 struct file *file = iocb->ki_filp;
2835 struct inode *inode = file->f_mapping->host;
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002836 ssize_t ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002837
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002838 trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002839 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002840 ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
2841 else
2842 ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
2843 trace_ext4_direct_IO_exit(inode, offset,
2844 iov_length(iov, nr_segs), rw, ret);
2845 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002846}
2847
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002848/*
Mingming Cao617ba132006-10-11 01:20:53 -07002849 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002850 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
2851 * much here because ->set_page_dirty is called under VFS locks. The page is
2852 * not necessarily locked.
2853 *
2854 * We cannot just dirty the page and leave attached buffers clean, because the
2855 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
2856 * or jbddirty because all the journalling code will explode.
2857 *
2858 * So what we do is to mark the page "pending dirty" and next time writepage
2859 * is called, propagate that into the buffers appropriately.
2860 */
Mingming Cao617ba132006-10-11 01:20:53 -07002861static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002862{
2863 SetPageChecked(page);
2864 return __set_page_dirty_nobuffers(page);
2865}
2866
Mingming Cao617ba132006-10-11 01:20:53 -07002867static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002868 .readpage = ext4_readpage,
2869 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002870 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002871 .write_begin = ext4_write_begin,
2872 .write_end = ext4_ordered_write_end,
2873 .bmap = ext4_bmap,
2874 .invalidatepage = ext4_invalidatepage,
2875 .releasepage = ext4_releasepage,
2876 .direct_IO = ext4_direct_IO,
2877 .migratepage = buffer_migrate_page,
2878 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02002879 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002880};
2881
Mingming Cao617ba132006-10-11 01:20:53 -07002882static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002883 .readpage = ext4_readpage,
2884 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002885 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002886 .write_begin = ext4_write_begin,
2887 .write_end = ext4_writeback_write_end,
2888 .bmap = ext4_bmap,
2889 .invalidatepage = ext4_invalidatepage,
2890 .releasepage = ext4_releasepage,
2891 .direct_IO = ext4_direct_IO,
2892 .migratepage = buffer_migrate_page,
2893 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02002894 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002895};
2896
Mingming Cao617ba132006-10-11 01:20:53 -07002897static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002898 .readpage = ext4_readpage,
2899 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002900 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002901 .write_begin = ext4_write_begin,
2902 .write_end = ext4_journalled_write_end,
2903 .set_page_dirty = ext4_journalled_set_page_dirty,
2904 .bmap = ext4_bmap,
2905 .invalidatepage = ext4_invalidatepage,
2906 .releasepage = ext4_releasepage,
2907 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02002908 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002909};
2910
Alex Tomas64769242008-07-11 19:27:31 -04002911static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002912 .readpage = ext4_readpage,
2913 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002914 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002915 .writepages = ext4_da_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07002916 .write_begin = ext4_da_write_begin,
2917 .write_end = ext4_da_write_end,
2918 .bmap = ext4_bmap,
2919 .invalidatepage = ext4_da_invalidatepage,
2920 .releasepage = ext4_releasepage,
2921 .direct_IO = ext4_direct_IO,
2922 .migratepage = buffer_migrate_page,
2923 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02002924 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04002925};
2926
Mingming Cao617ba132006-10-11 01:20:53 -07002927void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002928{
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002929 if (ext4_should_order_data(inode) &&
2930 test_opt(inode->i_sb, DELALLOC))
2931 inode->i_mapping->a_ops = &ext4_da_aops;
2932 else if (ext4_should_order_data(inode))
Mingming Cao617ba132006-10-11 01:20:53 -07002933 inode->i_mapping->a_ops = &ext4_ordered_aops;
Alex Tomas64769242008-07-11 19:27:31 -04002934 else if (ext4_should_writeback_data(inode) &&
2935 test_opt(inode->i_sb, DELALLOC))
2936 inode->i_mapping->a_ops = &ext4_da_aops;
Mingming Cao617ba132006-10-11 01:20:53 -07002937 else if (ext4_should_writeback_data(inode))
2938 inode->i_mapping->a_ops = &ext4_writeback_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002939 else
Mingming Cao617ba132006-10-11 01:20:53 -07002940 inode->i_mapping->a_ops = &ext4_journalled_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002941}
2942
2943/*
Mingming Cao617ba132006-10-11 01:20:53 -07002944 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002945 * up to the end of the block which corresponds to `from'.
2946 * This required during truncate. We need to physically zero the tail end
2947 * of that block so it doesn't yield old data if the file is later grown.
2948 */
Jan Karacf108bc2008-07-11 19:27:31 -04002949int ext4_block_truncate_page(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002950 struct address_space *mapping, loff_t from)
2951{
Allison Henderson30848852011-05-25 07:41:32 -04002952 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2953 unsigned length;
2954 unsigned blocksize;
2955 struct inode *inode = mapping->host;
2956
2957 blocksize = inode->i_sb->s_blocksize;
2958 length = blocksize - (offset & (blocksize - 1));
2959
2960 return ext4_block_zero_page_range(handle, mapping, from, length);
2961}
2962
2963/*
2964 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
2965 * starting from file offset 'from'. The range to be zero'd must
2966 * be contained with in one block. If the specified range exceeds
2967 * the end of the block it will be shortened to end of the block
2968 * that cooresponds to 'from'
2969 */
2970int ext4_block_zero_page_range(handle_t *handle,
2971 struct address_space *mapping, loff_t from, loff_t length)
2972{
Mingming Cao617ba132006-10-11 01:20:53 -07002973 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002974 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Allison Henderson30848852011-05-25 07:41:32 -04002975 unsigned blocksize, max, pos;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002976 ext4_lblk_t iblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002977 struct inode *inode = mapping->host;
2978 struct buffer_head *bh;
Jan Karacf108bc2008-07-11 19:27:31 -04002979 struct page *page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002980 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002981
Theodore Ts'of4a01012009-07-05 22:08:16 -04002982 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
2983 mapping_gfp_mask(mapping) & ~__GFP_FS);
Jan Karacf108bc2008-07-11 19:27:31 -04002984 if (!page)
2985 return -EINVAL;
2986
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002987 blocksize = inode->i_sb->s_blocksize;
Allison Henderson30848852011-05-25 07:41:32 -04002988 max = blocksize - (offset & (blocksize - 1));
2989
2990 /*
2991 * correct length if it does not fall between
2992 * 'from' and the end of the block
2993 */
2994 if (length > max || length < 0)
2995 length = max;
2996
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002997 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
2998
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002999 if (!page_has_buffers(page))
3000 create_empty_buffers(page, blocksize, 0);
3001
3002 /* Find the buffer that contains "offset" */
3003 bh = page_buffers(page);
3004 pos = blocksize;
3005 while (offset >= pos) {
3006 bh = bh->b_this_page;
3007 iblock++;
3008 pos += blocksize;
3009 }
3010
3011 err = 0;
3012 if (buffer_freed(bh)) {
3013 BUFFER_TRACE(bh, "freed: skip");
3014 goto unlock;
3015 }
3016
3017 if (!buffer_mapped(bh)) {
3018 BUFFER_TRACE(bh, "unmapped");
Mingming Cao617ba132006-10-11 01:20:53 -07003019 ext4_get_block(inode, iblock, bh, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003020 /* unmapped? It's a hole - nothing to do */
3021 if (!buffer_mapped(bh)) {
3022 BUFFER_TRACE(bh, "still unmapped");
3023 goto unlock;
3024 }
3025 }
3026
3027 /* Ok, it's mapped. Make sure it's up-to-date */
3028 if (PageUptodate(page))
3029 set_buffer_uptodate(bh);
3030
3031 if (!buffer_uptodate(bh)) {
3032 err = -EIO;
3033 ll_rw_block(READ, 1, &bh);
3034 wait_on_buffer(bh);
3035 /* Uhhuh. Read error. Complain and punt. */
3036 if (!buffer_uptodate(bh))
3037 goto unlock;
3038 }
3039
Mingming Cao617ba132006-10-11 01:20:53 -07003040 if (ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003041 BUFFER_TRACE(bh, "get write access");
Mingming Cao617ba132006-10-11 01:20:53 -07003042 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003043 if (err)
3044 goto unlock;
3045 }
3046
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003047 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003048
3049 BUFFER_TRACE(bh, "zeroed end of block");
3050
3051 err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003052 if (ext4_should_journal_data(inode)) {
Frank Mayhar03901312009-01-07 00:06:22 -05003053 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003054 } else {
Theodore Ts'o8aefcd52011-01-10 12:29:43 -05003055 if (ext4_should_order_data(inode) && EXT4_I(inode)->jinode)
Jan Kara678aaf42008-07-11 19:27:31 -04003056 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003057 mark_buffer_dirty(bh);
3058 }
3059
3060unlock:
3061 unlock_page(page);
3062 page_cache_release(page);
3063 return err;
3064}
3065
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003066int ext4_can_truncate(struct inode *inode)
3067{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003068 if (S_ISREG(inode->i_mode))
3069 return 1;
3070 if (S_ISDIR(inode->i_mode))
3071 return 1;
3072 if (S_ISLNK(inode->i_mode))
3073 return !ext4_inode_is_fast_symlink(inode);
3074 return 0;
3075}
3076
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003077/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003078 * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3079 * associated with the given offset and length
3080 *
3081 * @inode: File inode
3082 * @offset: The offset where the hole will begin
3083 * @len: The length of the hole
3084 *
3085 * Returns: 0 on sucess or negative on failure
3086 */
3087
3088int ext4_punch_hole(struct file *file, loff_t offset, loff_t length)
3089{
3090 struct inode *inode = file->f_path.dentry->d_inode;
3091 if (!S_ISREG(inode->i_mode))
3092 return -ENOTSUPP;
3093
3094 if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
3095 /* TODO: Add support for non extent hole punching */
3096 return -ENOTSUPP;
3097 }
3098
3099 return ext4_ext_punch_hole(file, offset, length);
3100}
3101
3102/*
Mingming Cao617ba132006-10-11 01:20:53 -07003103 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003104 *
Mingming Cao617ba132006-10-11 01:20:53 -07003105 * We block out ext4_get_block() block instantiations across the entire
3106 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003107 * simultaneously on behalf of the same inode.
3108 *
3109 * As we work through the truncate and commmit bits of it to the journal there
3110 * is one core, guiding principle: the file's tree must always be consistent on
3111 * disk. We must be able to restart the truncate after a crash.
3112 *
3113 * The file's tree may be transiently inconsistent in memory (although it
3114 * probably isn't), but whenever we close off and commit a journal transaction,
3115 * the contents of (the filesystem + the journal) must be consistent and
3116 * restartable. It's pretty simple, really: bottom up, right to left (although
3117 * left-to-right works OK too).
3118 *
3119 * Note that at recovery time, journal replay occurs *before* the restart of
3120 * truncate against the orphan inode list.
3121 *
3122 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003123 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003124 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003125 * ext4_truncate() to have another go. So there will be instantiated blocks
3126 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003127 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003128 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003129 */
Mingming Cao617ba132006-10-11 01:20:53 -07003130void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003131{
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003132 trace_ext4_truncate_enter(inode);
3133
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003134 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003135 return;
3136
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003137 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003138
Theodore Ts'o5534fb52009-09-17 09:34:16 -04003139 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003140 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05003141
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003142 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Jan Karacf108bc2008-07-11 19:27:31 -04003143 ext4_ext_truncate(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003144 else
3145 ext4_ind_truncate(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07003146
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003147 trace_ext4_truncate_exit(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003148}
3149
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003150/*
Mingming Cao617ba132006-10-11 01:20:53 -07003151 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003152 * underlying buffer_head on success. If 'in_mem' is true, we have all
3153 * data in memory that is needed to recreate the on-disk version of this
3154 * inode.
3155 */
Mingming Cao617ba132006-10-11 01:20:53 -07003156static int __ext4_get_inode_loc(struct inode *inode,
3157 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003158{
Theodore Ts'o240799c2008-10-09 23:53:47 -04003159 struct ext4_group_desc *gdp;
3160 struct buffer_head *bh;
3161 struct super_block *sb = inode->i_sb;
3162 ext4_fsblk_t block;
3163 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003164
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003165 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003166 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167 return -EIO;
3168
Theodore Ts'o240799c2008-10-09 23:53:47 -04003169 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3170 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3171 if (!gdp)
3172 return -EIO;
3173
3174 /*
3175 * Figure out the offset within the block group inode table
3176 */
Tao Ma00d09882011-05-09 10:26:41 -04003177 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003178 inode_offset = ((inode->i_ino - 1) %
3179 EXT4_INODES_PER_GROUP(sb));
3180 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3181 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3182
3183 bh = sb_getblk(sb, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003184 if (!bh) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003185 EXT4_ERROR_INODE_BLOCK(inode, block,
3186 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003187 return -EIO;
3188 }
3189 if (!buffer_uptodate(bh)) {
3190 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04003191
3192 /*
3193 * If the buffer has the write error flag, we have failed
3194 * to write out another inode in the same block. In this
3195 * case, we don't have to read the block because we may
3196 * read the old inode data successfully.
3197 */
3198 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3199 set_buffer_uptodate(bh);
3200
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003201 if (buffer_uptodate(bh)) {
3202 /* someone brought it uptodate while we waited */
3203 unlock_buffer(bh);
3204 goto has_buffer;
3205 }
3206
3207 /*
3208 * If we have all information of the inode in memory and this
3209 * is the only valid inode in the block, we need not read the
3210 * block.
3211 */
3212 if (in_mem) {
3213 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003214 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003215
Theodore Ts'o240799c2008-10-09 23:53:47 -04003216 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003217
3218 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003219 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003220 if (!bitmap_bh)
3221 goto make_io;
3222
3223 /*
3224 * If the inode bitmap isn't in cache then the
3225 * optimisation may end up performing two reads instead
3226 * of one, so skip it.
3227 */
3228 if (!buffer_uptodate(bitmap_bh)) {
3229 brelse(bitmap_bh);
3230 goto make_io;
3231 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04003232 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003233 if (i == inode_offset)
3234 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003235 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003236 break;
3237 }
3238 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003239 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003240 /* all other inodes are free, so skip I/O */
3241 memset(bh->b_data, 0, bh->b_size);
3242 set_buffer_uptodate(bh);
3243 unlock_buffer(bh);
3244 goto has_buffer;
3245 }
3246 }
3247
3248make_io:
3249 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04003250 * If we need to do any I/O, try to pre-readahead extra
3251 * blocks from the inode table.
3252 */
3253 if (EXT4_SB(sb)->s_inode_readahead_blks) {
3254 ext4_fsblk_t b, end, table;
3255 unsigned num;
3256
3257 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003258 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003259 b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
3260 if (table > b)
3261 b = table;
3262 end = b + EXT4_SB(sb)->s_inode_readahead_blks;
3263 num = EXT4_INODES_PER_GROUP(sb);
3264 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3265 EXT4_FEATURE_RO_COMPAT_GDT_CSUM))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05003266 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003267 table += num / inodes_per_block;
3268 if (end > table)
3269 end = table;
3270 while (b <= end)
3271 sb_breadahead(sb, b++);
3272 }
3273
3274 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275 * There are other valid inodes in the buffer, this inode
3276 * has in-inode xattrs, or we don't have this inode in memory.
3277 * Read the block from disk.
3278 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003279 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003280 get_bh(bh);
3281 bh->b_end_io = end_buffer_read_sync;
3282 submit_bh(READ_META, bh);
3283 wait_on_buffer(bh);
3284 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003285 EXT4_ERROR_INODE_BLOCK(inode, block,
3286 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287 brelse(bh);
3288 return -EIO;
3289 }
3290 }
3291has_buffer:
3292 iloc->bh = bh;
3293 return 0;
3294}
3295
Mingming Cao617ba132006-10-11 01:20:53 -07003296int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003297{
3298 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003299 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003300 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003301}
3302
Mingming Cao617ba132006-10-11 01:20:53 -07003303void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003304{
Mingming Cao617ba132006-10-11 01:20:53 -07003305 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003306
3307 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07003308 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003309 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003310 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003311 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003312 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003313 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003314 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003315 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003316 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003317 inode->i_flags |= S_DIRSYNC;
3318}
3319
Jan Karaff9ddf72007-07-18 09:24:20 -04003320/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3321void ext4_get_inode_flags(struct ext4_inode_info *ei)
3322{
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003323 unsigned int vfs_fl;
3324 unsigned long old_fl, new_fl;
Jan Karaff9ddf72007-07-18 09:24:20 -04003325
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003326 do {
3327 vfs_fl = ei->vfs_inode.i_flags;
3328 old_fl = ei->i_flags;
3329 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3330 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
3331 EXT4_DIRSYNC_FL);
3332 if (vfs_fl & S_SYNC)
3333 new_fl |= EXT4_SYNC_FL;
3334 if (vfs_fl & S_APPEND)
3335 new_fl |= EXT4_APPEND_FL;
3336 if (vfs_fl & S_IMMUTABLE)
3337 new_fl |= EXT4_IMMUTABLE_FL;
3338 if (vfs_fl & S_NOATIME)
3339 new_fl |= EXT4_NOATIME_FL;
3340 if (vfs_fl & S_DIRSYNC)
3341 new_fl |= EXT4_DIRSYNC_FL;
3342 } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
Jan Karaff9ddf72007-07-18 09:24:20 -04003343}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003344
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003345static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003346 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003347{
3348 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003349 struct inode *inode = &(ei->vfs_inode);
3350 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003351
3352 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3353 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3354 /* we are using combined 48 bit field */
3355 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3356 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04003357 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003358 /* i_blocks represent file system block size */
3359 return i_blocks << (inode->i_blkbits - 9);
3360 } else {
3361 return i_blocks;
3362 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003363 } else {
3364 return le32_to_cpu(raw_inode->i_blocks_lo);
3365 }
3366}
Jan Karaff9ddf72007-07-18 09:24:20 -04003367
David Howells1d1fe1e2008-02-07 00:15:37 -08003368struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003369{
Mingming Cao617ba132006-10-11 01:20:53 -07003370 struct ext4_iloc iloc;
3371 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08003372 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08003373 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05003374 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08003375 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003376 int block;
3377
David Howells1d1fe1e2008-02-07 00:15:37 -08003378 inode = iget_locked(sb, ino);
3379 if (!inode)
3380 return ERR_PTR(-ENOMEM);
3381 if (!(inode->i_state & I_NEW))
3382 return inode;
3383
3384 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05003385 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003386
David Howells1d1fe1e2008-02-07 00:15:37 -08003387 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3388 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003389 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07003390 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003391 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
3392 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3393 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003394 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003395 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3396 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
3397 }
3398 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003399
Theodore Ts'o353eb832011-01-10 12:18:25 -05003400 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003401 ei->i_dir_start_lookup = 0;
3402 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3403 /* We now have enough fields to check if the inode was active or not.
3404 * This is needed because nfsd might try to access dead inodes
3405 * the test is that same one that e2fsck uses
3406 * NeilBrown 1999oct15
3407 */
3408 if (inode->i_nlink == 0) {
3409 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07003410 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003411 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08003412 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003413 goto bad_inode;
3414 }
3415 /* The only unlinked inodes we let through here have
3416 * valid i_mode and are being read by the orphan
3417 * recovery code: that's fine, we're about to complete
3418 * the process of deleting those. */
3419 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003420 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003421 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05003422 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04003423 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07003424 ei->i_file_acl |=
3425 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003426 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003427 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03003428#ifdef CONFIG_QUOTA
3429 ei->i_reserved_quota = 0;
3430#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003431 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3432 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04003433 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003434 /*
3435 * NOTE! The in-memory inode i_data array is in little-endian order
3436 * even on big-endian machines: we do NOT byteswap the block numbers!
3437 */
Mingming Cao617ba132006-10-11 01:20:53 -07003438 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003439 ei->i_data[block] = raw_inode->i_block[block];
3440 INIT_LIST_HEAD(&ei->i_orphan);
3441
Jan Karab436b9b2009-12-08 23:51:10 -05003442 /*
3443 * Set transaction id's of transactions that have to be committed
3444 * to finish f[data]sync. We set them to currently running transaction
3445 * as we cannot be sure that the inode or some of its metadata isn't
3446 * part of the transaction - the inode could have been reclaimed and
3447 * now it is reread from disk.
3448 */
3449 if (journal) {
3450 transaction_t *transaction;
3451 tid_t tid;
3452
Theodore Ts'oa931da62010-08-03 21:35:12 -04003453 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05003454 if (journal->j_running_transaction)
3455 transaction = journal->j_running_transaction;
3456 else
3457 transaction = journal->j_committing_transaction;
3458 if (transaction)
3459 tid = transaction->t_tid;
3460 else
3461 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04003462 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05003463 ei->i_sync_tid = tid;
3464 ei->i_datasync_tid = tid;
3465 }
3466
Eric Sandeen0040d982008-02-05 22:36:43 -05003467 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003468 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
Mingming Cao617ba132006-10-11 01:20:53 -07003469 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Kirill Korotaeve5d28612007-06-23 17:16:51 -07003470 EXT4_INODE_SIZE(inode->i_sb)) {
David Howells1d1fe1e2008-02-07 00:15:37 -08003471 ret = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003472 goto bad_inode;
Kirill Korotaeve5d28612007-06-23 17:16:51 -07003473 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003474 if (ei->i_extra_isize == 0) {
3475 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07003476 ei->i_extra_isize = sizeof(struct ext4_inode) -
3477 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003478 } else {
3479 __le32 *magic = (void *)raw_inode +
Mingming Cao617ba132006-10-11 01:20:53 -07003480 EXT4_GOOD_OLD_INODE_SIZE +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003481 ei->i_extra_isize;
Mingming Cao617ba132006-10-11 01:20:53 -07003482 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003483 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003484 }
3485 } else
3486 ei->i_extra_isize = 0;
3487
Kalpak Shahef7f3832007-07-18 09:15:20 -04003488 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
3489 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
3490 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
3491 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
3492
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003493 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
3494 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3495 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3496 inode->i_version |=
3497 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
3498 }
3499
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04003500 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04003501 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05003502 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04003503 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
3504 ei->i_file_acl);
Theodore Ts'o485c26e2009-04-24 13:43:20 -04003505 ret = -EIO;
3506 goto bad_inode;
Theodore Ts'o07a03822010-06-14 09:54:48 -04003507 } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04003508 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
3509 (S_ISLNK(inode->i_mode) &&
3510 !ext4_inode_is_fast_symlink(inode)))
3511 /* Validate extent which is part of inode */
3512 ret = ext4_ext_check_inode(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003513 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04003514 (S_ISLNK(inode->i_mode) &&
3515 !ext4_inode_is_fast_symlink(inode))) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003516 /* Validate block references which are part of inode */
Theodore Ts'o1f7d1e72011-06-27 19:16:02 -04003517 ret = ext4_ind_check_inode(inode);
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04003518 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05003519 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003520 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04003521
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003522 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003523 inode->i_op = &ext4_file_inode_operations;
3524 inode->i_fop = &ext4_file_operations;
3525 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003526 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003527 inode->i_op = &ext4_dir_inode_operations;
3528 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003529 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00003530 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003531 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00003532 nd_terminate_link(ei->i_data, inode->i_size,
3533 sizeof(ei->i_data) - 1);
3534 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003535 inode->i_op = &ext4_symlink_inode_operations;
3536 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003537 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003538 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
3539 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003540 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003541 if (raw_inode->i_block[0])
3542 init_special_inode(inode, inode->i_mode,
3543 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
3544 else
3545 init_special_inode(inode, inode->i_mode,
3546 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003547 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003548 ret = -EIO;
Theodore Ts'o24676da2010-05-16 21:00:00 -04003549 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04003550 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003551 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003552 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07003553 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08003554 unlock_new_inode(inode);
3555 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003556
3557bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05003558 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08003559 iget_failed(inode);
3560 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003561}
3562
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003563static int ext4_inode_blocks_set(handle_t *handle,
3564 struct ext4_inode *raw_inode,
3565 struct ext4_inode_info *ei)
3566{
3567 struct inode *inode = &(ei->vfs_inode);
3568 u64 i_blocks = inode->i_blocks;
3569 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003570
3571 if (i_blocks <= ~0U) {
3572 /*
3573 * i_blocks can be represnted in a 32 bit variable
3574 * as multiple of 512 bytes
3575 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003576 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003577 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003578 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04003579 return 0;
3580 }
3581 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
3582 return -EFBIG;
3583
3584 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003585 /*
3586 * i_blocks can be represented in a 48 bit variable
3587 * as multiple of 512 bytes
3588 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003589 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003590 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003591 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003592 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003593 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003594 /* i_block is stored in file system block size */
3595 i_blocks = i_blocks >> (inode->i_blkbits - 9);
3596 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
3597 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003598 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04003599 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003600}
3601
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003602/*
3603 * Post the struct inode info into an on-disk inode location in the
3604 * buffer-cache. This gobbles the caller's reference to the
3605 * buffer_head in the inode location struct.
3606 *
3607 * The caller must have write access to iloc->bh.
3608 */
Mingming Cao617ba132006-10-11 01:20:53 -07003609static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003610 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04003611 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003612{
Mingming Cao617ba132006-10-11 01:20:53 -07003613 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
3614 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003615 struct buffer_head *bh = iloc->bh;
3616 int err = 0, rc, block;
3617
3618 /* For fields not not tracking in the in-memory inode,
3619 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003620 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07003621 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003622
Jan Karaff9ddf72007-07-18 09:24:20 -04003623 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003624 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003625 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003626 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
3627 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
3628/*
3629 * Fix up interoperability with old kernels. Otherwise, old inodes get
3630 * re-used with the upper 16 bits of the uid/gid intact
3631 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003632 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003633 raw_inode->i_uid_high =
3634 cpu_to_le16(high_16_bits(inode->i_uid));
3635 raw_inode->i_gid_high =
3636 cpu_to_le16(high_16_bits(inode->i_gid));
3637 } else {
3638 raw_inode->i_uid_high = 0;
3639 raw_inode->i_gid_high = 0;
3640 }
3641 } else {
3642 raw_inode->i_uid_low =
3643 cpu_to_le16(fs_high2lowuid(inode->i_uid));
3644 raw_inode->i_gid_low =
3645 cpu_to_le16(fs_high2lowgid(inode->i_gid));
3646 raw_inode->i_uid_high = 0;
3647 raw_inode->i_gid_high = 0;
3648 }
3649 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04003650
3651 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
3652 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
3653 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
3654 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
3655
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003656 if (ext4_inode_blocks_set(handle, raw_inode, ei))
3657 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003658 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05003659 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07003660 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
3661 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07003662 raw_inode->i_file_acl_high =
3663 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05003664 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003665 ext4_isize_set(raw_inode, ei->i_disksize);
3666 if (ei->i_disksize > 0x7fffffffULL) {
3667 struct super_block *sb = inode->i_sb;
3668 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
3669 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
3670 EXT4_SB(sb)->s_es->s_rev_level ==
3671 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
3672 /* If this is the first large file
3673 * created, add a flag to the superblock.
3674 */
3675 err = ext4_journal_get_write_access(handle,
3676 EXT4_SB(sb)->s_sbh);
3677 if (err)
3678 goto out_brelse;
3679 ext4_update_dynamic_rev(sb);
3680 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07003681 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003682 sb->s_dirt = 1;
Frank Mayhar03901312009-01-07 00:06:22 -05003683 ext4_handle_sync(handle);
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05003684 err = ext4_handle_dirty_metadata(handle, NULL,
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003685 EXT4_SB(sb)->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003686 }
3687 }
3688 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
3689 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
3690 if (old_valid_dev(inode->i_rdev)) {
3691 raw_inode->i_block[0] =
3692 cpu_to_le32(old_encode_dev(inode->i_rdev));
3693 raw_inode->i_block[1] = 0;
3694 } else {
3695 raw_inode->i_block[0] = 0;
3696 raw_inode->i_block[1] =
3697 cpu_to_le32(new_encode_dev(inode->i_rdev));
3698 raw_inode->i_block[2] = 0;
3699 }
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003700 } else
3701 for (block = 0; block < EXT4_N_BLOCKS; block++)
3702 raw_inode->i_block[block] = ei->i_data[block];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003703
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003704 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
3705 if (ei->i_extra_isize) {
3706 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3707 raw_inode->i_version_hi =
3708 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003709 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003710 }
3711
Frank Mayhar830156c2009-09-29 10:07:47 -04003712 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05003713 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04003714 if (!err)
3715 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003716 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003717
Jan Karab436b9b2009-12-08 23:51:10 -05003718 ext4_update_inode_fsync_trans(handle, inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003719out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003720 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07003721 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003722 return err;
3723}
3724
3725/*
Mingming Cao617ba132006-10-11 01:20:53 -07003726 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003727 *
3728 * We are called from a few places:
3729 *
3730 * - Within generic_file_write() for O_SYNC files.
3731 * Here, there will be no transaction running. We wait for any running
3732 * trasnaction to commit.
3733 *
3734 * - Within sys_sync(), kupdate and such.
3735 * We wait on commit, if tol to.
3736 *
3737 * - Within prune_icache() (PF_MEMALLOC == true)
3738 * Here we simply return. We can't afford to block kswapd on the
3739 * journal commit.
3740 *
3741 * In all cases it is actually safe for us to return without doing anything,
3742 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07003743 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003744 * knfsd.
3745 *
3746 * Note that we are absolutely dependent upon all inode dirtiers doing the
3747 * right thing: they *must* call mark_inode_dirty() after dirtying info in
3748 * which we are interested.
3749 *
3750 * It would be a bug for them to not do this. The code:
3751 *
3752 * mark_inode_dirty(inode)
3753 * stuff();
3754 * inode->i_size = expr;
3755 *
3756 * is in error because a kswapd-driven write_inode() could occur while
3757 * `stuff()' is running, and the new i_size will be lost. Plus the inode
3758 * will no longer be on the superblock's dirty inode list.
3759 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01003760int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003761{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04003762 int err;
3763
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003764 if (current->flags & PF_MEMALLOC)
3765 return 0;
3766
Frank Mayhar91ac6f42009-09-09 22:33:47 -04003767 if (EXT4_SB(inode->i_sb)->s_journal) {
3768 if (ext4_journal_current_handle()) {
3769 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
3770 dump_stack();
3771 return -EIO;
3772 }
3773
Christoph Hellwiga9185b42010-03-05 09:21:37 +01003774 if (wbc->sync_mode != WB_SYNC_ALL)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04003775 return 0;
3776
3777 err = ext4_force_commit(inode->i_sb);
3778 } else {
3779 struct ext4_iloc iloc;
3780
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04003781 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04003782 if (err)
3783 return err;
Christoph Hellwiga9185b42010-03-05 09:21:37 +01003784 if (wbc->sync_mode == WB_SYNC_ALL)
Frank Mayhar830156c2009-09-29 10:07:47 -04003785 sync_dirty_buffer(iloc.bh);
3786 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003787 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
3788 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04003789 err = -EIO;
3790 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04003791 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003792 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04003793 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003794}
3795
3796/*
Mingming Cao617ba132006-10-11 01:20:53 -07003797 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003798 *
3799 * Called from notify_change.
3800 *
3801 * We want to trap VFS attempts to truncate the file as soon as
3802 * possible. In particular, we want to make sure that when the VFS
3803 * shrinks i_size, we put the inode on the orphan list and modify
3804 * i_disksize immediately, so that during the subsequent flushing of
3805 * dirty pages and freeing of disk blocks, we can guarantee that any
3806 * commit will leave the blocks being flushed in an unused state on
3807 * disk. (On recovery, the inode will get truncated and the blocks will
3808 * be freed, so we have a strong guarantee that no future commit will
3809 * leave these blocks visible to the user.)
3810 *
Jan Kara678aaf42008-07-11 19:27:31 -04003811 * Another thing we have to assure is that if we are in ordered mode
3812 * and inode is still attached to the committing transaction, we must
3813 * we start writeout of all the dirty pages which are being truncated.
3814 * This way we are sure that all the data written in the previous
3815 * transaction are already on disk (truncate waits for pages under
3816 * writeback).
3817 *
3818 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003819 */
Mingming Cao617ba132006-10-11 01:20:53 -07003820int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003821{
3822 struct inode *inode = dentry->d_inode;
3823 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04003824 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003825 const unsigned int ia_valid = attr->ia_valid;
3826
3827 error = inode_change_ok(inode, attr);
3828 if (error)
3829 return error;
3830
Dmitry Monakhov12755622010-04-08 22:04:20 +04003831 if (is_quota_modification(inode, attr))
Christoph Hellwig871a2932010-03-03 09:05:07 -05003832 dquot_initialize(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003833 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
3834 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
3835 handle_t *handle;
3836
3837 /* (user+group)*(old+new) structure, inode write (sb,
3838 * inode block, ? - but truncate inode update has it) */
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -05003839 handle = ext4_journal_start(inode, (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+
Dmitry Monakhov194074a2009-12-08 22:42:28 -05003840 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb))+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003841 if (IS_ERR(handle)) {
3842 error = PTR_ERR(handle);
3843 goto err_out;
3844 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05003845 error = dquot_transfer(inode, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003846 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07003847 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003848 return error;
3849 }
3850 /* Update corresponding info in inode so that everything is in
3851 * one transaction */
3852 if (attr->ia_valid & ATTR_UID)
3853 inode->i_uid = attr->ia_uid;
3854 if (attr->ia_valid & ATTR_GID)
3855 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07003856 error = ext4_mark_inode_dirty(handle, inode);
3857 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003858 }
3859
Eric Sandeene2b46572008-01-28 23:58:27 -05003860 if (attr->ia_valid & ATTR_SIZE) {
Christoph Hellwig562c72a2011-06-24 14:29:45 -04003861 inode_dio_wait(inode);
3862
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003863 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05003864 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3865
Theodore Ts'o0c095c72010-07-27 11:56:06 -04003866 if (attr->ia_size > sbi->s_bitmap_maxbytes)
3867 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05003868 }
3869 }
3870
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003871 if (S_ISREG(inode->i_mode) &&
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003872 attr->ia_valid & ATTR_SIZE &&
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04003873 (attr->ia_size < inode->i_size)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003874 handle_t *handle;
3875
Mingming Cao617ba132006-10-11 01:20:53 -07003876 handle = ext4_journal_start(inode, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003877 if (IS_ERR(handle)) {
3878 error = PTR_ERR(handle);
3879 goto err_out;
3880 }
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04003881 if (ext4_handle_valid(handle)) {
3882 error = ext4_orphan_add(handle, inode);
3883 orphan = 1;
3884 }
Mingming Cao617ba132006-10-11 01:20:53 -07003885 EXT4_I(inode)->i_disksize = attr->ia_size;
3886 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003887 if (!error)
3888 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07003889 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04003890
3891 if (ext4_should_order_data(inode)) {
3892 error = ext4_begin_ordered_truncate(inode,
3893 attr->ia_size);
3894 if (error) {
3895 /* Do as much error cleanup as possible */
3896 handle = ext4_journal_start(inode, 3);
3897 if (IS_ERR(handle)) {
3898 ext4_orphan_del(NULL, inode);
3899 goto err_out;
3900 }
3901 ext4_orphan_del(handle, inode);
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04003902 orphan = 0;
Jan Kara678aaf42008-07-11 19:27:31 -04003903 ext4_journal_stop(handle);
3904 goto err_out;
3905 }
3906 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003907 }
3908
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04003909 if (attr->ia_valid & ATTR_SIZE) {
3910 if (attr->ia_size != i_size_read(inode)) {
3911 truncate_setsize(inode, attr->ia_size);
3912 ext4_truncate(inode);
3913 } else if (ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
3914 ext4_truncate(inode);
3915 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003916
Christoph Hellwig10257742010-06-04 11:30:02 +02003917 if (!rc) {
3918 setattr_copy(inode, attr);
3919 mark_inode_dirty(inode);
3920 }
3921
3922 /*
3923 * If the call to ext4_truncate failed to get a transaction handle at
3924 * all, we need to clean up the in-core orphan list manually.
3925 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04003926 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07003927 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003928
3929 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07003930 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003931
3932err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07003933 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003934 if (!error)
3935 error = rc;
3936 return error;
3937}
3938
Mingming Cao3e3398a2008-07-11 19:27:31 -04003939int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
3940 struct kstat *stat)
3941{
3942 struct inode *inode;
3943 unsigned long delalloc_blocks;
3944
3945 inode = dentry->d_inode;
3946 generic_fillattr(inode, stat);
3947
3948 /*
3949 * We can't update i_blocks if the block allocation is delayed
3950 * otherwise in the case of system crash before the real block
3951 * allocation is done, we will have i_blocks inconsistent with
3952 * on-disk file blocks.
3953 * We always keep i_blocks updated together with real
3954 * allocation. But to not confuse with user, stat
3955 * will return the blocks that include the delayed allocation
3956 * blocks for this file.
3957 */
Mingming Cao3e3398a2008-07-11 19:27:31 -04003958 delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
Mingming Cao3e3398a2008-07-11 19:27:31 -04003959
3960 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
3961 return 0;
3962}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003963
Mingming Caoa02908f2008-08-19 22:16:07 -04003964static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
3965{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003966 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Amir Goldstein8bb2b242011-06-27 17:10:28 -04003967 return ext4_ind_trans_blocks(inode, nrblocks, chunk);
Theodore Ts'oac51d832008-11-06 16:49:36 -05003968 return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
Mingming Caoa02908f2008-08-19 22:16:07 -04003969}
Theodore Ts'oac51d832008-11-06 16:49:36 -05003970
Mingming Caoa02908f2008-08-19 22:16:07 -04003971/*
3972 * Account for index blocks, block groups bitmaps and block group
3973 * descriptor blocks if modify datablocks and index blocks
3974 * worse case, the indexs blocks spread over different block groups
3975 *
3976 * If datablocks are discontiguous, they are possible to spread over
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02003977 * different block groups too. If they are contiuguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04003978 * they could still across block group boundary.
3979 *
3980 * Also account for superblock, inode, quota and xattr blocks
3981 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04003982static int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
Mingming Caoa02908f2008-08-19 22:16:07 -04003983{
Theodore Ts'o8df96752009-05-01 08:50:38 -04003984 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
3985 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04003986 int idxblocks;
3987 int ret = 0;
3988
3989 /*
3990 * How many index blocks need to touch to modify nrblocks?
3991 * The "Chunk" flag indicating whether the nrblocks is
3992 * physically contiguous on disk
3993 *
3994 * For Direct IO and fallocate, they calls get_block to allocate
3995 * one single extent at a time, so they could set the "Chunk" flag
3996 */
3997 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
3998
3999 ret = idxblocks;
4000
4001 /*
4002 * Now let's see how many group bitmaps and group descriptors need
4003 * to account
4004 */
4005 groups = idxblocks;
4006 if (chunk)
4007 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004008 else
Mingming Caoa02908f2008-08-19 22:16:07 -04004009 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004010
Mingming Caoa02908f2008-08-19 22:16:07 -04004011 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04004012 if (groups > ngroups)
4013 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04004014 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4015 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4016
4017 /* bitmaps and block group descriptor blocks */
4018 ret += groups + gdpblocks;
4019
4020 /* Blocks for super block, inode, quota and xattr blocks */
4021 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004022
4023 return ret;
4024}
4025
4026/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004027 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04004028 * the modification of a single pages into a single transaction,
4029 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04004030 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004031 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04004032 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004033 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04004034 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04004035 */
4036int ext4_writepage_trans_blocks(struct inode *inode)
4037{
4038 int bpp = ext4_journal_blocks_per_page(inode);
4039 int ret;
4040
4041 ret = ext4_meta_trans_blocks(inode, bpp, 0);
4042
4043 /* Account for data blocks for journalled mode */
4044 if (ext4_should_journal_data(inode))
4045 ret += bpp;
4046 return ret;
4047}
Mingming Caof3bd1f32008-08-19 22:16:03 -04004048
4049/*
4050 * Calculate the journal credits for a chunk of data modification.
4051 *
4052 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04004053 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04004054 *
4055 * journal buffers for data blocks are not included here, as DIO
4056 * and fallocate do no need to journal data buffers.
4057 */
4058int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4059{
4060 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4061}
4062
Mingming Caoa02908f2008-08-19 22:16:07 -04004063/*
Mingming Cao617ba132006-10-11 01:20:53 -07004064 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004065 * Give this, we know that the caller already has write access to iloc->bh.
4066 */
Mingming Cao617ba132006-10-11 01:20:53 -07004067int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004068 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004069{
4070 int err = 0;
4071
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004072 if (test_opt(inode->i_sb, I_VERSION))
4073 inode_inc_iversion(inode);
4074
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004075 /* the do_update_inode consumes one bh->b_count */
4076 get_bh(iloc->bh);
4077
Mingming Caodab291a2006-10-11 01:21:01 -07004078 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04004079 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004080 put_bh(iloc->bh);
4081 return err;
4082}
4083
4084/*
4085 * On success, We end up with an outstanding reference count against
4086 * iloc->bh. This _must_ be cleaned up later.
4087 */
4088
4089int
Mingming Cao617ba132006-10-11 01:20:53 -07004090ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4091 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004092{
Frank Mayhar03901312009-01-07 00:06:22 -05004093 int err;
4094
4095 err = ext4_get_inode_loc(inode, iloc);
4096 if (!err) {
4097 BUFFER_TRACE(iloc->bh, "get_write_access");
4098 err = ext4_journal_get_write_access(handle, iloc->bh);
4099 if (err) {
4100 brelse(iloc->bh);
4101 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004102 }
4103 }
Mingming Cao617ba132006-10-11 01:20:53 -07004104 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004105 return err;
4106}
4107
4108/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004109 * Expand an inode by new_extra_isize bytes.
4110 * Returns 0 on success or negative error number on failure.
4111 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004112static int ext4_expand_extra_isize(struct inode *inode,
4113 unsigned int new_extra_isize,
4114 struct ext4_iloc iloc,
4115 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004116{
4117 struct ext4_inode *raw_inode;
4118 struct ext4_xattr_ibody_header *header;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004119
4120 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4121 return 0;
4122
4123 raw_inode = ext4_raw_inode(&iloc);
4124
4125 header = IHDR(inode, raw_inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004126
4127 /* No extended attributes present */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004128 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
4129 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004130 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4131 new_extra_isize);
4132 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4133 return 0;
4134 }
4135
4136 /* try to expand with EAs present */
4137 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4138 raw_inode, handle);
4139}
4140
4141/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004142 * What we do here is to mark the in-core inode as clean with respect to inode
4143 * dirtiness (it may still be data-dirty).
4144 * This means that the in-core inode may be reaped by prune_icache
4145 * without having to perform any I/O. This is a very good thing,
4146 * because *any* task may call prune_icache - even ones which
4147 * have a transaction open against a different journal.
4148 *
4149 * Is this cheating? Not really. Sure, we haven't written the
4150 * inode out, but prune_icache isn't a user-visible syncing function.
4151 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4152 * we start and wait on commits.
4153 *
4154 * Is this efficient/effective? Well, we're being nice to the system
4155 * by cleaning up our inodes proactively so they can be reaped
4156 * without I/O. But we are potentially leaving up to five seconds'
4157 * worth of inodes floating about which prune_icache wants us to
4158 * write out. One way to fix that would be to get prune_icache()
4159 * to do a write_super() to free up some memory. It has the desired
4160 * effect.
4161 */
Mingming Cao617ba132006-10-11 01:20:53 -07004162int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004163{
Mingming Cao617ba132006-10-11 01:20:53 -07004164 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004165 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4166 static unsigned int mnt_count;
4167 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004168
4169 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05004170 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07004171 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05004172 if (ext4_handle_valid(handle) &&
4173 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004174 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004175 /*
4176 * We need extra buffer credits since we may write into EA block
4177 * with this same handle. If journal_extend fails, then it will
4178 * only result in a minor loss of functionality for that inode.
4179 * If this is felt to be critical, then e2fsck should be run to
4180 * force a large enough s_min_extra_isize.
4181 */
4182 if ((jbd2_journal_extend(handle,
4183 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4184 ret = ext4_expand_extra_isize(inode,
4185 sbi->s_want_extra_isize,
4186 iloc, handle);
4187 if (ret) {
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004188 ext4_set_inode_state(inode,
4189 EXT4_STATE_NO_EXPAND);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004190 if (mnt_count !=
4191 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004192 ext4_warning(inode->i_sb,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004193 "Unable to expand inode %lu. Delete"
4194 " some EAs or run e2fsck.",
4195 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004196 mnt_count =
4197 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004198 }
4199 }
4200 }
4201 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004202 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004203 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004204 return err;
4205}
4206
4207/*
Mingming Cao617ba132006-10-11 01:20:53 -07004208 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004209 *
4210 * We're really interested in the case where a file is being extended.
4211 * i_size has been changed by generic_commit_write() and we thus need
4212 * to include the updated inode in the current transaction.
4213 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004214 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004215 * are allocated to the file.
4216 *
4217 * If the inode is marked synchronous, we don't honour that here - doing
4218 * so would cause a commit on atime updates, which we don't bother doing.
4219 * We handle synchronous inodes at the highest possible level.
4220 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04004221void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004222{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004223 handle_t *handle;
4224
Mingming Cao617ba132006-10-11 01:20:53 -07004225 handle = ext4_journal_start(inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004226 if (IS_ERR(handle))
4227 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004228
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004229 ext4_mark_inode_dirty(handle, inode);
4230
Mingming Cao617ba132006-10-11 01:20:53 -07004231 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004232out:
4233 return;
4234}
4235
4236#if 0
4237/*
4238 * Bind an inode's backing buffer_head into this transaction, to prevent
4239 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07004240 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004241 * returns no iloc structure, so the caller needs to repeat the iloc
4242 * lookup to mark the inode dirty later.
4243 */
Mingming Cao617ba132006-10-11 01:20:53 -07004244static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004245{
Mingming Cao617ba132006-10-11 01:20:53 -07004246 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004247
4248 int err = 0;
4249 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004250 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004251 if (!err) {
4252 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07004253 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004254 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05004255 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004256 NULL,
Frank Mayhar03901312009-01-07 00:06:22 -05004257 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004258 brelse(iloc.bh);
4259 }
4260 }
Mingming Cao617ba132006-10-11 01:20:53 -07004261 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004262 return err;
4263}
4264#endif
4265
Mingming Cao617ba132006-10-11 01:20:53 -07004266int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004267{
4268 journal_t *journal;
4269 handle_t *handle;
4270 int err;
4271
4272 /*
4273 * We have to be very careful here: changing a data block's
4274 * journaling status dynamically is dangerous. If we write a
4275 * data block to the journal, change the status and then delete
4276 * that block, we risk forgetting to revoke the old log record
4277 * from the journal and so a subsequent replay can corrupt data.
4278 * So, first we make sure that the journal is empty and that
4279 * nobody is changing anything.
4280 */
4281
Mingming Cao617ba132006-10-11 01:20:53 -07004282 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004283 if (!journal)
4284 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04004285 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004286 return -EROFS;
4287
Mingming Caodab291a2006-10-11 01:21:01 -07004288 jbd2_journal_lock_updates(journal);
4289 jbd2_journal_flush(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004290
4291 /*
4292 * OK, there are no updates running now, and all cached data is
4293 * synced to disk. We are now in a completely consistent state
4294 * which doesn't have anything in the journal, and we know that
4295 * no filesystem updates are running, so it is safe to modify
4296 * the inode's in-core data-journaling state flag now.
4297 */
4298
4299 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004300 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004301 else
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004302 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Mingming Cao617ba132006-10-11 01:20:53 -07004303 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004304
Mingming Caodab291a2006-10-11 01:21:01 -07004305 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004306
4307 /* Finally we can mark the inode as dirty. */
4308
Mingming Cao617ba132006-10-11 01:20:53 -07004309 handle = ext4_journal_start(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004310 if (IS_ERR(handle))
4311 return PTR_ERR(handle);
4312
Mingming Cao617ba132006-10-11 01:20:53 -07004313 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004314 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07004315 ext4_journal_stop(handle);
4316 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004317
4318 return err;
4319}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004320
4321static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4322{
4323 return !buffer_mapped(bh);
4324}
4325
Nick Pigginc2ec1752009-03-31 15:23:21 -07004326int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004327{
Nick Pigginc2ec1752009-03-31 15:23:21 -07004328 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004329 loff_t size;
4330 unsigned long len;
Jan Kara9ea7df52011-06-24 14:29:41 -04004331 int ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004332 struct file *file = vma->vm_file;
4333 struct inode *inode = file->f_path.dentry->d_inode;
4334 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04004335 handle_t *handle;
4336 get_block_t *get_block;
4337 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004338
4339 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04004340 * This check is racy but catches the common case. We rely on
4341 * __block_page_mkwrite() to do a reliable check.
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004342 */
Jan Kara9ea7df52011-06-24 14:29:41 -04004343 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
4344 /* Delalloc case is easy... */
4345 if (test_opt(inode->i_sb, DELALLOC) &&
4346 !ext4_should_journal_data(inode) &&
4347 !ext4_nonda_switch(inode->i_sb)) {
4348 do {
4349 ret = __block_page_mkwrite(vma, vmf,
4350 ext4_da_get_block_prep);
4351 } while (ret == -ENOSPC &&
4352 ext4_should_retry_alloc(inode->i_sb, &retries));
4353 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004354 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04004355
4356 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04004357 size = i_size_read(inode);
4358 /* Page got truncated from under us? */
4359 if (page->mapping != mapping || page_offset(page) > size) {
4360 unlock_page(page);
4361 ret = VM_FAULT_NOPAGE;
4362 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04004363 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004364
4365 if (page->index == size >> PAGE_CACHE_SHIFT)
4366 len = size & ~PAGE_CACHE_MASK;
4367 else
4368 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004369 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04004370 * Return if we have all the buffers mapped. This avoids the need to do
4371 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004372 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004373 if (page_has_buffers(page)) {
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004374 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004375 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04004376 /* Wait so that we don't change page under IO */
4377 wait_on_page_writeback(page);
4378 ret = VM_FAULT_LOCKED;
4379 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004380 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004381 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04004382 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04004383 /* OK, we need to fill the hole... */
4384 if (ext4_should_dioread_nolock(inode))
4385 get_block = ext4_get_block_write;
4386 else
4387 get_block = ext4_get_block;
4388retry_alloc:
4389 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
4390 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07004391 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04004392 goto out;
4393 }
4394 ret = __block_page_mkwrite(vma, vmf, get_block);
4395 if (!ret && ext4_should_journal_data(inode)) {
4396 if (walk_page_buffers(handle, page_buffers(page), 0,
4397 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
4398 unlock_page(page);
4399 ret = VM_FAULT_SIGBUS;
4400 goto out;
4401 }
4402 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
4403 }
4404 ext4_journal_stop(handle);
4405 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
4406 goto retry_alloc;
4407out_ret:
4408 ret = block_page_mkwrite_return(ret);
4409out:
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004410 return ret;
4411}