blob: b6fa0c4087e9adb3cee4eed99f443b5121b9c903 [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 *
15 * Goal-directed block allocation by Stephen Tweedie
16 * (sct@redhat.com), 1993, 1998
17 * Big-endian to little-endian byte-swapping/bitmaps by
18 * David S. Miller (davem@caip.rutgers.edu), 1995
19 * 64-bit file support on 64-bit platforms by Jakub Jelinek
20 * (jj@sunsite.ms.mff.cuni.cz)
21 *
Mingming Cao617ba132006-10-11 01:20:53 -070022 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070023 */
24
25#include <linux/module.h>
26#include <linux/fs.h>
27#include <linux/time.h>
Mingming Caodab291a2006-10-11 01:21:01 -070028#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070029#include <linux/highuid.h>
30#include <linux/pagemap.h>
31#include <linux/quotaops.h>
32#include <linux/string.h>
33#include <linux/buffer_head.h>
34#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040035#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070036#include <linux/mpage.h>
37#include <linux/uio.h>
38#include <linux/bio.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040039#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070040#include "xattr.h"
41#include "acl.h"
Mingming Caod2a17632008-07-14 17:52:37 -040042#include "ext4_extents.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070043
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040044#define MPAGE_DA_EXTENT_TAIL 0x01
45
Jan Kara678aaf42008-07-11 19:27:31 -040046static inline int ext4_begin_ordered_truncate(struct inode *inode,
47 loff_t new_size)
48{
49 return jbd2_journal_begin_ordered_truncate(&EXT4_I(inode)->jinode,
50 new_size);
51}
52
Alex Tomas64769242008-07-11 19:27:31 -040053static void ext4_invalidatepage(struct page *page, unsigned long offset);
54
Dave Kleikampac27a0e2006-10-11 01:20:50 -070055/*
56 * Test whether an inode is a fast symlink.
57 */
Mingming Cao617ba132006-10-11 01:20:53 -070058static int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070059{
Mingming Cao617ba132006-10-11 01:20:53 -070060 int ea_blocks = EXT4_I(inode)->i_file_acl ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -070061 (inode->i_sb->s_blocksize >> 9) : 0;
62
63 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
64}
65
66/*
Mingming Cao617ba132006-10-11 01:20:53 -070067 * The ext4 forget function must perform a revoke if we are freeing data
Dave Kleikampac27a0e2006-10-11 01:20:50 -070068 * which has been journaled. Metadata (eg. indirect blocks) must be
69 * revoked in all cases.
70 *
71 * "bh" may be NULL: a metadata block may have been freed from memory
72 * but there may still be a record of it in the journal, and that record
73 * still needs to be revoked.
74 */
Mingming Cao617ba132006-10-11 01:20:53 -070075int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode,
76 struct buffer_head *bh, ext4_fsblk_t blocknr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070077{
78 int err;
79
80 might_sleep();
81
82 BUFFER_TRACE(bh, "enter");
83
84 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
85 "data mode %lx\n",
86 bh, is_metadata, inode->i_mode,
87 test_opt(inode->i_sb, DATA_FLAGS));
88
89 /* Never use the revoke function if we are doing full data
90 * journaling: there is no need to, and a V1 superblock won't
91 * support it. Otherwise, only skip the revoke on un-journaled
92 * data blocks. */
93
Mingming Cao617ba132006-10-11 01:20:53 -070094 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
95 (!is_metadata && !ext4_should_journal_data(inode))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -070096 if (bh) {
Mingming Caodab291a2006-10-11 01:21:01 -070097 BUFFER_TRACE(bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -070098 return ext4_journal_forget(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070099 }
100 return 0;
101 }
102
103 /*
104 * data!=journal && (is_metadata || should_journal_data(inode))
105 */
Mingming Cao617ba132006-10-11 01:20:53 -0700106 BUFFER_TRACE(bh, "call ext4_journal_revoke");
107 err = ext4_journal_revoke(handle, blocknr, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700108 if (err)
Harvey Harrison46e665e2008-04-17 10:38:59 -0400109 ext4_abort(inode->i_sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700110 "error %d when attempting revoke", err);
111 BUFFER_TRACE(bh, "exit");
112 return err;
113}
114
115/*
116 * Work out how many blocks we need to proceed with the next chunk of a
117 * truncate transaction.
118 */
119static unsigned long blocks_for_truncate(struct inode *inode)
120{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500121 ext4_lblk_t needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700122
123 needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9);
124
125 /* Give ourselves just enough room to cope with inodes in which
126 * i_blocks is corrupt: we've seen disk corruptions in the past
127 * which resulted in random data in an inode which looked enough
Mingming Cao617ba132006-10-11 01:20:53 -0700128 * like a regular file for ext4 to try to delete it. Things
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700129 * will go a bit crazy if that happens, but at least we should
130 * try not to panic the whole kernel. */
131 if (needed < 2)
132 needed = 2;
133
134 /* But we need to bound the transaction so we don't overflow the
135 * journal. */
Mingming Cao617ba132006-10-11 01:20:53 -0700136 if (needed > EXT4_MAX_TRANS_DATA)
137 needed = EXT4_MAX_TRANS_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700138
Mingming Cao617ba132006-10-11 01:20:53 -0700139 return EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700140}
141
142/*
143 * Truncate transactions can be complex and absolutely huge. So we need to
144 * be able to restart the transaction at a conventient checkpoint to make
145 * sure we don't overflow the journal.
146 *
147 * start_transaction gets us a new handle for a truncate transaction,
148 * and extend_transaction tries to extend the existing one a bit. If
149 * extend fails, we need to propagate the failure up and restart the
150 * transaction in the top-level truncate loop. --sct
151 */
152static handle_t *start_transaction(struct inode *inode)
153{
154 handle_t *result;
155
Mingming Cao617ba132006-10-11 01:20:53 -0700156 result = ext4_journal_start(inode, blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700157 if (!IS_ERR(result))
158 return result;
159
Mingming Cao617ba132006-10-11 01:20:53 -0700160 ext4_std_error(inode->i_sb, PTR_ERR(result));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700161 return result;
162}
163
164/*
165 * Try to extend this transaction for the purposes of truncation.
166 *
167 * Returns 0 if we managed to create more room. If we can't create more
168 * room, and the transaction must be restarted we return 1.
169 */
170static int try_to_extend_transaction(handle_t *handle, struct inode *inode)
171{
Mingming Cao617ba132006-10-11 01:20:53 -0700172 if (handle->h_buffer_credits > EXT4_RESERVE_TRANS_BLOCKS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700173 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700174 if (!ext4_journal_extend(handle, blocks_for_truncate(inode)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700175 return 0;
176 return 1;
177}
178
179/*
180 * Restart the transaction associated with *handle. This does a commit,
181 * so before we call here everything must be consistently dirtied against
182 * this transaction.
183 */
Mingming Cao617ba132006-10-11 01:20:53 -0700184static int ext4_journal_test_restart(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700185{
186 jbd_debug(2, "restarting handle %p\n", handle);
Mingming Cao617ba132006-10-11 01:20:53 -0700187 return ext4_journal_restart(handle, blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700188}
189
190/*
191 * Called at the last iput() if i_nlink is zero.
192 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400193void ext4_delete_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700194{
195 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400196 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700197
Jan Kara678aaf42008-07-11 19:27:31 -0400198 if (ext4_should_order_data(inode))
199 ext4_begin_ordered_truncate(inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700200 truncate_inode_pages(&inode->i_data, 0);
201
202 if (is_bad_inode(inode))
203 goto no_delete;
204
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400205 handle = ext4_journal_start(inode, blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700206 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400207 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700208 /*
209 * If we're going to skip the normal cleanup, we still need to
210 * make sure that the in-core orphan linked list is properly
211 * cleaned up.
212 */
Mingming Cao617ba132006-10-11 01:20:53 -0700213 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700214 goto no_delete;
215 }
216
217 if (IS_SYNC(inode))
218 handle->h_sync = 1;
219 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400220 err = ext4_mark_inode_dirty(handle, inode);
221 if (err) {
222 ext4_warning(inode->i_sb, __func__,
223 "couldn't mark inode dirty (err %d)", err);
224 goto stop_handle;
225 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700226 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700227 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400228
229 /*
230 * ext4_ext_truncate() doesn't reserve any slop when it
231 * restarts journal transactions; therefore there may not be
232 * enough credits left in the handle to remove the inode from
233 * the orphan list and set the dtime field.
234 */
235 if (handle->h_buffer_credits < 3) {
236 err = ext4_journal_extend(handle, 3);
237 if (err > 0)
238 err = ext4_journal_restart(handle, 3);
239 if (err != 0) {
240 ext4_warning(inode->i_sb, __func__,
241 "couldn't extend journal (err %d)", err);
242 stop_handle:
243 ext4_journal_stop(handle);
244 goto no_delete;
245 }
246 }
247
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700248 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700249 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700250 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700251 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700252 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700253 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 * (Well, we could do this if we need to, but heck - it works)
255 */
Mingming Cao617ba132006-10-11 01:20:53 -0700256 ext4_orphan_del(handle, inode);
257 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700258
259 /*
260 * One subtle ordering requirement: if anything has gone wrong
261 * (transaction abort, IO errors, whatever), then we can still
262 * do these next steps (the fs will already have been marked as
263 * having errors), but we can't free the inode if the mark_dirty
264 * fails.
265 */
Mingming Cao617ba132006-10-11 01:20:53 -0700266 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700267 /* If that failed, just do the required in-core inode clear. */
268 clear_inode(inode);
269 else
Mingming Cao617ba132006-10-11 01:20:53 -0700270 ext4_free_inode(handle, inode);
271 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700272 return;
273no_delete:
274 clear_inode(inode); /* We must guarantee clearing of inode... */
275}
276
277typedef struct {
278 __le32 *p;
279 __le32 key;
280 struct buffer_head *bh;
281} Indirect;
282
283static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
284{
285 p->key = *(p->p = v);
286 p->bh = bh;
287}
288
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700289/**
Mingming Cao617ba132006-10-11 01:20:53 -0700290 * ext4_block_to_path - parse the block number into array of offsets
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700291 * @inode: inode in question (we are only interested in its superblock)
292 * @i_block: block number to be parsed
293 * @offsets: array to store the offsets in
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400294 * @boundary: set this non-zero if the referred-to block is likely to be
295 * followed (on disk) by an indirect block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700296 *
Mingming Cao617ba132006-10-11 01:20:53 -0700297 * To store the locations of file's data ext4 uses a data structure common
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700298 * for UNIX filesystems - tree of pointers anchored in the inode, with
299 * data blocks at leaves and indirect blocks in intermediate nodes.
300 * This function translates the block number into path in that tree -
301 * return value is the path length and @offsets[n] is the offset of
302 * pointer to (n+1)th node in the nth one. If @block is out of range
303 * (negative or too large) warning is printed and zero returned.
304 *
305 * Note: function doesn't find node addresses, so no IO is needed. All
306 * we need to know is the capacity of indirect blocks (taken from the
307 * inode->i_sb).
308 */
309
310/*
311 * Portability note: the last comparison (check that we fit into triple
312 * indirect block) is spelled differently, because otherwise on an
313 * architecture with 32-bit longs and 8Kb pages we might get into trouble
314 * if our filesystem had 8Kb blocks. We might use long long, but that would
315 * kill us on x86. Oh, well, at least the sign propagation does not matter -
316 * i_block would have to be negative in the very beginning, so we would not
317 * get there at all.
318 */
319
Mingming Cao617ba132006-10-11 01:20:53 -0700320static int ext4_block_to_path(struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500321 ext4_lblk_t i_block,
322 ext4_lblk_t offsets[4], int *boundary)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700323{
Mingming Cao617ba132006-10-11 01:20:53 -0700324 int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb);
325 int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb);
326 const long direct_blocks = EXT4_NDIR_BLOCKS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700327 indirect_blocks = ptrs,
328 double_blocks = (1 << (ptrs_bits * 2));
329 int n = 0;
330 int final = 0;
331
332 if (i_block < 0) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400333 ext4_warning(inode->i_sb, "ext4_block_to_path", "block < 0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700334 } else if (i_block < direct_blocks) {
335 offsets[n++] = i_block;
336 final = direct_blocks;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400337 } else if ((i_block -= direct_blocks) < indirect_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700338 offsets[n++] = EXT4_IND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700339 offsets[n++] = i_block;
340 final = ptrs;
341 } else if ((i_block -= indirect_blocks) < double_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700342 offsets[n++] = EXT4_DIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700343 offsets[n++] = i_block >> ptrs_bits;
344 offsets[n++] = i_block & (ptrs - 1);
345 final = ptrs;
346 } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
Mingming Cao617ba132006-10-11 01:20:53 -0700347 offsets[n++] = EXT4_TIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700348 offsets[n++] = i_block >> (ptrs_bits * 2);
349 offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
350 offsets[n++] = i_block & (ptrs - 1);
351 final = ptrs;
352 } else {
Eric Sandeene2b46572008-01-28 23:58:27 -0500353 ext4_warning(inode->i_sb, "ext4_block_to_path",
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500354 "block %lu > max",
Eric Sandeene2b46572008-01-28 23:58:27 -0500355 i_block + direct_blocks +
356 indirect_blocks + double_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700357 }
358 if (boundary)
359 *boundary = final - 1 - (i_block & (ptrs - 1));
360 return n;
361}
362
363/**
Mingming Cao617ba132006-10-11 01:20:53 -0700364 * ext4_get_branch - read the chain of indirect blocks leading to data
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365 * @inode: inode in question
366 * @depth: depth of the chain (1 - direct pointer, etc.)
367 * @offsets: offsets of pointers in inode/indirect blocks
368 * @chain: place to store the result
369 * @err: here we store the error value
370 *
371 * Function fills the array of triples <key, p, bh> and returns %NULL
372 * if everything went OK or the pointer to the last filled triple
373 * (incomplete one) otherwise. Upon the return chain[i].key contains
374 * the number of (i+1)-th block in the chain (as it is stored in memory,
375 * i.e. little-endian 32-bit), chain[i].p contains the address of that
376 * number (it points into struct inode for i==0 and into the bh->b_data
377 * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
378 * block for i>0 and NULL for i==0. In other words, it holds the block
379 * numbers of the chain, addresses they were taken from (and where we can
380 * verify that chain did not change) and buffer_heads hosting these
381 * numbers.
382 *
383 * Function stops when it stumbles upon zero pointer (absent block)
384 * (pointer to last triple returned, *@err == 0)
385 * or when it gets an IO error reading an indirect block
386 * (ditto, *@err == -EIO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700387 * or when it reads all @depth-1 indirect blocks successfully and finds
388 * the whole chain, all way to the data (returns %NULL, *err == 0).
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500389 *
390 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500391 * down_read(&EXT4_I(inode)->i_data_sem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700392 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500393static Indirect *ext4_get_branch(struct inode *inode, int depth,
394 ext4_lblk_t *offsets,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700395 Indirect chain[4], int *err)
396{
397 struct super_block *sb = inode->i_sb;
398 Indirect *p = chain;
399 struct buffer_head *bh;
400
401 *err = 0;
402 /* i_data is not going away, no lock needed */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400403 add_chain(chain, NULL, EXT4_I(inode)->i_data + *offsets);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700404 if (!p->key)
405 goto no_block;
406 while (--depth) {
407 bh = sb_bread(sb, le32_to_cpu(p->key));
408 if (!bh)
409 goto failure;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400410 add_chain(++p, bh, (__le32 *)bh->b_data + *++offsets);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700411 /* Reader: end */
412 if (!p->key)
413 goto no_block;
414 }
415 return NULL;
416
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700417failure:
418 *err = -EIO;
419no_block:
420 return p;
421}
422
423/**
Mingming Cao617ba132006-10-11 01:20:53 -0700424 * ext4_find_near - find a place for allocation with sufficient locality
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700425 * @inode: owner
426 * @ind: descriptor of indirect block.
427 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000428 * This function returns the preferred place for block allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700429 * It is used when heuristic for sequential allocation fails.
430 * Rules are:
431 * + if there is a block to the left of our position - allocate near it.
432 * + if pointer will live in indirect block - allocate near that block.
433 * + if pointer will live in inode - allocate in the same
434 * cylinder group.
435 *
436 * In the latter case we colour the starting block by the callers PID to
437 * prevent it from clashing with concurrent allocations for a different inode
438 * in the same block group. The PID is used here so that functionally related
439 * files will be close-by on-disk.
440 *
441 * Caller must make sure that @ind is valid and will stay that way.
442 */
Mingming Cao617ba132006-10-11 01:20:53 -0700443static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700444{
Mingming Cao617ba132006-10-11 01:20:53 -0700445 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400446 __le32 *start = ind->bh ? (__le32 *) ind->bh->b_data : ei->i_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700447 __le32 *p;
Mingming Cao617ba132006-10-11 01:20:53 -0700448 ext4_fsblk_t bg_start;
Valerie Clement74d34872008-02-15 13:43:07 -0500449 ext4_fsblk_t last_block;
Mingming Cao617ba132006-10-11 01:20:53 -0700450 ext4_grpblk_t colour;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700451
452 /* Try to find previous block */
453 for (p = ind->p - 1; p >= start; p--) {
454 if (*p)
455 return le32_to_cpu(*p);
456 }
457
458 /* No such thing, so let's try location of indirect block */
459 if (ind->bh)
460 return ind->bh->b_blocknr;
461
462 /*
463 * It is going to be referred to from the inode itself? OK, just put it
464 * into the same cylinder group then.
465 */
Mingming Cao617ba132006-10-11 01:20:53 -0700466 bg_start = ext4_group_first_block_no(inode->i_sb, ei->i_block_group);
Valerie Clement74d34872008-02-15 13:43:07 -0500467 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
468
469 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
470 colour = (current->pid % 16) *
Mingming Cao617ba132006-10-11 01:20:53 -0700471 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
Valerie Clement74d34872008-02-15 13:43:07 -0500472 else
473 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700474 return bg_start + colour;
475}
476
477/**
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000478 * ext4_find_goal - find a preferred place for allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 * @inode: owner
480 * @block: block we want
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700481 * @partial: pointer to the last triple within a chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700482 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000483 * Normally this function find the preferred place for block allocation,
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800484 * returns it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700485 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500486static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block,
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800487 Indirect *partial)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700488{
Mingming Cao617ba132006-10-11 01:20:53 -0700489 struct ext4_block_alloc_info *block_i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700490
Mingming Cao617ba132006-10-11 01:20:53 -0700491 block_i = EXT4_I(inode)->i_block_alloc_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700492
493 /*
494 * try the heuristic for sequential allocation,
495 * failing that at least try to get decent locality.
496 */
497 if (block_i && (block == block_i->last_alloc_logical_block + 1)
498 && (block_i->last_alloc_physical_block != 0)) {
499 return block_i->last_alloc_physical_block + 1;
500 }
501
Mingming Cao617ba132006-10-11 01:20:53 -0700502 return ext4_find_near(inode, partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700503}
504
505/**
Mingming Cao617ba132006-10-11 01:20:53 -0700506 * ext4_blks_to_allocate: Look up the block map and count the number
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700507 * of direct blocks need to be allocated for the given branch.
508 *
509 * @branch: chain of indirect blocks
510 * @k: number of blocks need for indirect blocks
511 * @blks: number of data blocks to be mapped.
512 * @blocks_to_boundary: the offset in the indirect block
513 *
514 * return the total number of blocks to be allocate, including the
515 * direct and indirect blocks.
516 */
Mingming Cao617ba132006-10-11 01:20:53 -0700517static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned long blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700518 int blocks_to_boundary)
519{
520 unsigned long count = 0;
521
522 /*
523 * Simple case, [t,d]Indirect block(s) has not allocated yet
524 * then it's clear blocks on that path have not allocated
525 */
526 if (k > 0) {
527 /* right now we don't handle cross boundary allocation */
528 if (blks < blocks_to_boundary + 1)
529 count += blks;
530 else
531 count += blocks_to_boundary + 1;
532 return count;
533 }
534
535 count++;
536 while (count < blks && count <= blocks_to_boundary &&
537 le32_to_cpu(*(branch[0].p + count)) == 0) {
538 count++;
539 }
540 return count;
541}
542
543/**
Mingming Cao617ba132006-10-11 01:20:53 -0700544 * ext4_alloc_blocks: multiple allocate blocks needed for a branch
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700545 * @indirect_blks: the number of blocks need to allocate for indirect
546 * blocks
547 *
548 * @new_blocks: on return it will store the new block numbers for
549 * the indirect blocks(if needed) and the first direct block,
550 * @blks: on return it will store the total number of allocated
551 * direct blocks
552 */
Mingming Cao617ba132006-10-11 01:20:53 -0700553static int ext4_alloc_blocks(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400554 ext4_lblk_t iblock, ext4_fsblk_t goal,
555 int indirect_blks, int blks,
556 ext4_fsblk_t new_blocks[4], int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700557{
558 int target, i;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400559 unsigned long count = 0, blk_allocated = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700560 int index = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700561 ext4_fsblk_t current_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700562 int ret = 0;
563
564 /*
565 * Here we try to allocate the requested multiple blocks at once,
566 * on a best-effort basis.
567 * To build a branch, we should allocate blocks for
568 * the indirect blocks(if not allocated yet), and at least
569 * the first direct block of this branch. That's the
570 * minimum number of blocks need to allocate(required)
571 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400572 /* first we try to allocate the indirect blocks */
573 target = indirect_blks;
574 while (target > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700575 count = target;
576 /* allocating blocks for indirect blocks and direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400577 current_block = ext4_new_meta_blocks(handle, inode,
578 goal, &count, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579 if (*err)
580 goto failed_out;
581
582 target -= count;
583 /* allocate blocks for indirect blocks */
584 while (index < indirect_blks && count) {
585 new_blocks[index++] = current_block++;
586 count--;
587 }
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400588 if (count > 0) {
589 /*
590 * save the new block number
591 * for the first direct block
592 */
593 new_blocks[index] = current_block;
594 printk(KERN_INFO "%s returned more blocks than "
595 "requested\n", __func__);
596 WARN_ON(1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597 break;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400598 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700599 }
600
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400601 target = blks - count ;
602 blk_allocated = count;
603 if (!target)
604 goto allocated;
605 /* Now allocate data blocks */
606 count = target;
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400607 /* allocating blocks for data blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400608 current_block = ext4_new_blocks(handle, inode, iblock,
609 goal, &count, err);
610 if (*err && (target == blks)) {
611 /*
612 * if the allocation failed and we didn't allocate
613 * any blocks before
614 */
615 goto failed_out;
616 }
617 if (!*err) {
618 if (target == blks) {
619 /*
620 * save the new block number
621 * for the first direct block
622 */
623 new_blocks[index] = current_block;
624 }
625 blk_allocated += count;
626 }
627allocated:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700628 /* total number of blocks allocated for direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400629 ret = blk_allocated;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700630 *err = 0;
631 return ret;
632failed_out:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400633 for (i = 0; i < index; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500634 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700635 return ret;
636}
637
638/**
Mingming Cao617ba132006-10-11 01:20:53 -0700639 * ext4_alloc_branch - allocate and set up a chain of blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640 * @inode: owner
641 * @indirect_blks: number of allocated indirect blocks
642 * @blks: number of allocated direct blocks
643 * @offsets: offsets (in the blocks) to store the pointers to next.
644 * @branch: place to store the chain in.
645 *
646 * This function allocates blocks, zeroes out all but the last one,
647 * links them into chain and (if we are synchronous) writes them to disk.
648 * In other words, it prepares a branch that can be spliced onto the
649 * inode. It stores the information about that chain in the branch[], in
Mingming Cao617ba132006-10-11 01:20:53 -0700650 * the same format as ext4_get_branch() would do. We are calling it after
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700651 * we had read the existing part of chain and partial points to the last
652 * triple of that (one with zero ->key). Upon the exit we have the same
Mingming Cao617ba132006-10-11 01:20:53 -0700653 * picture as after the successful ext4_get_block(), except that in one
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654 * place chain is disconnected - *branch->p is still zero (we did not
655 * set the last link), but branch->key contains the number that should
656 * be placed into *branch->p to fill that gap.
657 *
658 * If allocation fails we free all blocks we've allocated (and forget
659 * their buffer_heads) and return the error value the from failed
Mingming Cao617ba132006-10-11 01:20:53 -0700660 * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700661 * as described above and return 0.
662 */
Mingming Cao617ba132006-10-11 01:20:53 -0700663static int ext4_alloc_branch(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400664 ext4_lblk_t iblock, int indirect_blks,
665 int *blks, ext4_fsblk_t goal,
666 ext4_lblk_t *offsets, Indirect *branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700667{
668 int blocksize = inode->i_sb->s_blocksize;
669 int i, n = 0;
670 int err = 0;
671 struct buffer_head *bh;
672 int num;
Mingming Cao617ba132006-10-11 01:20:53 -0700673 ext4_fsblk_t new_blocks[4];
674 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700675
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400676 num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700677 *blks, new_blocks, &err);
678 if (err)
679 return err;
680
681 branch[0].key = cpu_to_le32(new_blocks[0]);
682 /*
683 * metadata blocks and data blocks are allocated.
684 */
685 for (n = 1; n <= indirect_blks; n++) {
686 /*
687 * Get buffer_head for parent block, zero it out
688 * and set the pointer to new one, then send
689 * parent to disk.
690 */
691 bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
692 branch[n].bh = bh;
693 lock_buffer(bh);
694 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700695 err = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700696 if (err) {
697 unlock_buffer(bh);
698 brelse(bh);
699 goto failed;
700 }
701
702 memset(bh->b_data, 0, blocksize);
703 branch[n].p = (__le32 *) bh->b_data + offsets[n];
704 branch[n].key = cpu_to_le32(new_blocks[n]);
705 *branch[n].p = branch[n].key;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400706 if (n == indirect_blks) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700707 current_block = new_blocks[n];
708 /*
709 * End of chain, update the last new metablock of
710 * the chain to point to the new allocated
711 * data blocks numbers
712 */
713 for (i=1; i < num; i++)
714 *(branch[n].p + i) = cpu_to_le32(++current_block);
715 }
716 BUFFER_TRACE(bh, "marking uptodate");
717 set_buffer_uptodate(bh);
718 unlock_buffer(bh);
719
Mingming Cao617ba132006-10-11 01:20:53 -0700720 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
721 err = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700722 if (err)
723 goto failed;
724 }
725 *blks = num;
726 return err;
727failed:
728 /* Allocation failed, free what we already allocated */
729 for (i = 1; i <= n ; i++) {
Mingming Caodab291a2006-10-11 01:21:01 -0700730 BUFFER_TRACE(branch[i].bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -0700731 ext4_journal_forget(handle, branch[i].bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700732 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400733 for (i = 0; i < indirect_blks; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500734 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735
Alex Tomasc9de5602008-01-29 00:19:52 -0500736 ext4_free_blocks(handle, inode, new_blocks[i], num, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737
738 return err;
739}
740
741/**
Mingming Cao617ba132006-10-11 01:20:53 -0700742 * ext4_splice_branch - splice the allocated branch onto inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700743 * @inode: owner
744 * @block: (logical) number of block we are adding
745 * @chain: chain of indirect blocks (with a missing link - see
Mingming Cao617ba132006-10-11 01:20:53 -0700746 * ext4_alloc_branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700747 * @where: location of missing link
748 * @num: number of indirect blocks we are adding
749 * @blks: number of direct blocks we are adding
750 *
751 * This function fills the missing link and does all housekeeping needed in
752 * inode (->i_blocks, etc.). In case of success we end up with the full
753 * chain to new block and return 0.
754 */
Mingming Cao617ba132006-10-11 01:20:53 -0700755static int ext4_splice_branch(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500756 ext4_lblk_t block, Indirect *where, int num, int blks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700757{
758 int i;
759 int err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700760 struct ext4_block_alloc_info *block_i;
761 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700762
Mingming Cao617ba132006-10-11 01:20:53 -0700763 block_i = EXT4_I(inode)->i_block_alloc_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700764 /*
765 * If we're splicing into a [td]indirect block (as opposed to the
766 * inode) then we need to get write access to the [td]indirect block
767 * before the splice.
768 */
769 if (where->bh) {
770 BUFFER_TRACE(where->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700771 err = ext4_journal_get_write_access(handle, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700772 if (err)
773 goto err_out;
774 }
775 /* That's it */
776
777 *where->p = where->key;
778
779 /*
780 * Update the host buffer_head or inode to point to more just allocated
781 * direct blocks blocks
782 */
783 if (num == 0 && blks > 1) {
784 current_block = le32_to_cpu(where->key) + 1;
785 for (i = 1; i < blks; i++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400786 *(where->p + i) = cpu_to_le32(current_block++);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700787 }
788
789 /*
790 * update the most recently allocated logical & physical block
791 * in i_block_alloc_info, to assist find the proper goal block for next
792 * allocation
793 */
794 if (block_i) {
795 block_i->last_alloc_logical_block = block + blks - 1;
796 block_i->last_alloc_physical_block =
797 le32_to_cpu(where[num].key) + blks - 1;
798 }
799
800 /* We are done with atomic stuff, now do the rest of housekeeping */
801
Kalpak Shahef7f3832007-07-18 09:15:20 -0400802 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700803 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700804
805 /* had we spliced it onto indirect block? */
806 if (where->bh) {
807 /*
808 * If we spliced it onto an indirect block, we haven't
809 * altered the inode. Note however that if it is being spliced
810 * onto an indirect block at the very end of the file (the
811 * file is growing) then we *will* alter the inode to reflect
812 * the new i_size. But that is not done here - it is done in
Mingming Cao617ba132006-10-11 01:20:53 -0700813 * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700814 */
815 jbd_debug(5, "splicing indirect only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700816 BUFFER_TRACE(where->bh, "call ext4_journal_dirty_metadata");
817 err = ext4_journal_dirty_metadata(handle, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700818 if (err)
819 goto err_out;
820 } else {
821 /*
822 * OK, we spliced it into the inode itself on a direct block.
823 * Inode was dirtied above.
824 */
825 jbd_debug(5, "splicing direct\n");
826 }
827 return err;
828
829err_out:
830 for (i = 1; i <= num; i++) {
Mingming Caodab291a2006-10-11 01:21:01 -0700831 BUFFER_TRACE(where[i].bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -0700832 ext4_journal_forget(handle, where[i].bh);
Alex Tomasc9de5602008-01-29 00:19:52 -0500833 ext4_free_blocks(handle, inode,
834 le32_to_cpu(where[i-1].key), 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500836 ext4_free_blocks(handle, inode, le32_to_cpu(where[num].key), blks, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700837
838 return err;
839}
840
841/*
842 * Allocation strategy is simple: if we have to allocate something, we will
843 * have to go the whole way to leaf. So let's do it before attaching anything
844 * to tree, set linkage between the newborn blocks, write them if sync is
845 * required, recheck the path, free and repeat if check fails, otherwise
846 * set the last missing link (that will protect us from any truncate-generated
847 * removals - all blocks on the path are immune now) and possibly force the
848 * write on the parent block.
849 * That has a nice additional property: no special recovery from the failed
850 * allocations is needed - we simply release blocks and do not touch anything
851 * reachable from inode.
852 *
853 * `handle' can be NULL if create == 0.
854 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700855 * return > 0, # of blocks mapped or allocated.
856 * return = 0, if plain lookup failed.
857 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500858 *
859 *
860 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500861 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
862 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 */
Mingming Cao617ba132006-10-11 01:20:53 -0700864int ext4_get_blocks_handle(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500865 ext4_lblk_t iblock, unsigned long maxblocks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700866 struct buffer_head *bh_result,
867 int create, int extend_disksize)
868{
869 int err = -EIO;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500870 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700871 Indirect chain[4];
872 Indirect *partial;
Mingming Cao617ba132006-10-11 01:20:53 -0700873 ext4_fsblk_t goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700874 int indirect_blks;
875 int blocks_to_boundary = 0;
876 int depth;
Mingming Cao617ba132006-10-11 01:20:53 -0700877 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700878 int count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700879 ext4_fsblk_t first_block = 0;
Mingming Cao61628a32008-07-11 19:27:31 -0400880 loff_t disksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881
882
Alex Tomasa86c6182006-10-11 01:21:03 -0700883 J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700884 J_ASSERT(handle != NULL || create == 0);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500885 depth = ext4_block_to_path(inode, iblock, offsets,
886 &blocks_to_boundary);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700887
888 if (depth == 0)
889 goto out;
890
Mingming Cao617ba132006-10-11 01:20:53 -0700891 partial = ext4_get_branch(inode, depth, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892
893 /* Simplest case - block found, no allocation needed */
894 if (!partial) {
895 first_block = le32_to_cpu(chain[depth - 1].key);
896 clear_buffer_new(bh_result);
897 count++;
898 /*map more blocks*/
899 while (count < maxblocks && count <= blocks_to_boundary) {
Mingming Cao617ba132006-10-11 01:20:53 -0700900 ext4_fsblk_t blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700902 blk = le32_to_cpu(*(chain[depth-1].p + count));
903
904 if (blk == first_block + count)
905 count++;
906 else
907 break;
908 }
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500909 goto got_it;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700910 }
911
912 /* Next simple case - plain lookup or failed read of indirect block */
913 if (!create || err == -EIO)
914 goto cleanup;
915
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700916 /*
917 * Okay, we need to do block allocation. Lazily initialize the block
918 * allocation info here if necessary
919 */
920 if (S_ISREG(inode->i_mode) && (!ei->i_block_alloc_info))
Mingming Cao617ba132006-10-11 01:20:53 -0700921 ext4_init_block_alloc_info(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700922
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800923 goal = ext4_find_goal(inode, iblock, partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700924
925 /* the number of blocks need to allocate for [d,t]indirect blocks */
926 indirect_blks = (chain + depth) - partial - 1;
927
928 /*
929 * Next look up the indirect map to count the totoal number of
930 * direct blocks to allocate for this branch.
931 */
Mingming Cao617ba132006-10-11 01:20:53 -0700932 count = ext4_blks_to_allocate(partial, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700933 maxblocks, blocks_to_boundary);
934 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700935 * Block out ext4_truncate while we alter the tree
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400937 err = ext4_alloc_branch(handle, inode, iblock, indirect_blks,
938 &count, goal,
939 offsets + (partial - chain), partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700940
941 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700942 * The ext4_splice_branch call will free and forget any buffers
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700943 * on the new chain if there is a failure, but that risks using
944 * up transaction credits, especially for bitmaps where the
945 * credits cannot be returned. Can we handle this somehow? We
946 * may need to return -EAGAIN upwards in the worst case. --sct
947 */
948 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -0700949 err = ext4_splice_branch(handle, inode, iblock,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700950 partial, indirect_blks, count);
951 /*
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500952 * i_disksize growing is protected by i_data_sem. Don't forget to
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700953 * protect it if you're about to implement concurrent
Mingming Cao617ba132006-10-11 01:20:53 -0700954 * ext4_get_block() -bzzz
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700955 */
Mingming Cao61628a32008-07-11 19:27:31 -0400956 if (!err && extend_disksize) {
957 disksize = ((loff_t) iblock + count) << inode->i_blkbits;
958 if (disksize > i_size_read(inode))
959 disksize = i_size_read(inode);
960 if (disksize > ei->i_disksize)
961 ei->i_disksize = disksize;
962 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963 if (err)
964 goto cleanup;
965
966 set_buffer_new(bh_result);
967got_it:
968 map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
969 if (count > blocks_to_boundary)
970 set_buffer_boundary(bh_result);
971 err = count;
972 /* Clean up and exit */
973 partial = chain + depth - 1; /* the whole chain */
974cleanup:
975 while (partial > chain) {
976 BUFFER_TRACE(partial->bh, "call brelse");
977 brelse(partial->bh);
978 partial--;
979 }
980 BUFFER_TRACE(bh_result, "returned");
981out:
982 return err;
983}
984
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400985/*
986 * Calculate the number of metadata blocks need to reserve
987 * to allocate @blocks for non extent file based file
988 */
989static int ext4_indirect_calc_metadata_amount(struct inode *inode, int blocks)
990{
991 int icap = EXT4_ADDR_PER_BLOCK(inode->i_sb);
992 int ind_blks, dind_blks, tind_blks;
993
994 /* number of new indirect blocks needed */
995 ind_blks = (blocks + icap - 1) / icap;
996
997 dind_blks = (ind_blks + icap - 1) / icap;
998
999 tind_blks = 1;
1000
1001 return ind_blks + dind_blks + tind_blks;
1002}
1003
1004/*
1005 * Calculate the number of metadata blocks need to reserve
1006 * to allocate given number of blocks
1007 */
1008static int ext4_calc_metadata_amount(struct inode *inode, int blocks)
1009{
Mingming Caocd213222008-08-19 22:16:59 -04001010 if (!blocks)
1011 return 0;
1012
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001013 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
1014 return ext4_ext_calc_metadata_amount(inode, blocks);
1015
1016 return ext4_indirect_calc_metadata_amount(inode, blocks);
1017}
1018
1019static void ext4_da_update_reserve_space(struct inode *inode, int used)
1020{
1021 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1022 int total, mdb, mdb_free;
1023
1024 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1025 /* recalculate the number of metablocks still need to be reserved */
1026 total = EXT4_I(inode)->i_reserved_data_blocks - used;
1027 mdb = ext4_calc_metadata_amount(inode, total);
1028
1029 /* figure out how many metablocks to release */
1030 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1031 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1032
1033 /* Account for allocated meta_blocks */
1034 mdb_free -= EXT4_I(inode)->i_allocated_meta_blocks;
1035
1036 /* update fs free blocks counter for truncate case */
1037 percpu_counter_add(&sbi->s_freeblocks_counter, mdb_free);
1038
1039 /* update per-inode reservations */
1040 BUG_ON(used > EXT4_I(inode)->i_reserved_data_blocks);
1041 EXT4_I(inode)->i_reserved_data_blocks -= used;
1042
1043 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1044 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
1045 EXT4_I(inode)->i_allocated_meta_blocks = 0;
1046 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1047}
1048
Mingming Caof5ab0d12008-02-25 15:29:55 -05001049/*
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001050 * The ext4_get_blocks_wrap() function try to look up the requested blocks,
1051 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -05001052 *
Mingming Caof5ab0d12008-02-25 15:29:55 -05001053 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
1054 * and store the allocated blocks in the result buffer head and mark it
1055 * mapped.
1056 *
1057 * If file type is extents based, it will call ext4_ext_get_blocks(),
1058 * Otherwise, call with ext4_get_blocks_handle() to handle indirect mapping
1059 * based files
1060 *
1061 * On success, it returns the number of blocks being mapped or allocate.
1062 * if create==0 and the blocks are pre-allocated and uninitialized block,
1063 * the result buffer head is unmapped. If the create ==1, it will make sure
1064 * the buffer head is mapped.
1065 *
1066 * It returns 0 if plain look up failed (blocks have not been allocated), in
1067 * that casem, buffer head is unmapped
1068 *
1069 * It returns the error in case of allocation failure.
1070 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001071int ext4_get_blocks_wrap(handle_t *handle, struct inode *inode, sector_t block,
1072 unsigned long max_blocks, struct buffer_head *bh,
Mingming Caod2a17632008-07-14 17:52:37 -04001073 int create, int extend_disksize, int flag)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001074{
1075 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -05001076
1077 clear_buffer_mapped(bh);
1078
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001079 /*
1080 * Try to see if we can get the block without requesting
1081 * for new file system block.
1082 */
1083 down_read((&EXT4_I(inode)->i_data_sem));
1084 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1085 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1086 bh, 0, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001087 } else {
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001088 retval = ext4_get_blocks_handle(handle,
1089 inode, block, max_blocks, bh, 0, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001090 }
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001091 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -05001092
1093 /* If it is only a block(s) look up */
1094 if (!create)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001095 return retval;
1096
1097 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001098 * Returns if the blocks have already allocated
1099 *
1100 * Note that if blocks have been preallocated
1101 * ext4_ext_get_block() returns th create = 0
1102 * with buffer head unmapped.
1103 */
1104 if (retval > 0 && buffer_mapped(bh))
1105 return retval;
1106
1107 /*
1108 * New blocks allocate and/or writing to uninitialized extent
1109 * will possibly result in updating i_data, so we take
1110 * the write lock of i_data_sem, and call get_blocks()
1111 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001112 */
1113 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -04001114
1115 /*
1116 * if the caller is from delayed allocation writeout path
1117 * we have already reserved fs blocks for allocation
1118 * let the underlying get_block() function know to
1119 * avoid double accounting
1120 */
1121 if (flag)
1122 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001123 /*
1124 * We need to check for EXT4 here because migrate
1125 * could have changed the inode type in between
1126 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001127 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1128 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1129 bh, create, extend_disksize);
1130 } else {
1131 retval = ext4_get_blocks_handle(handle, inode, block,
1132 max_blocks, bh, create, extend_disksize);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001133
1134 if (retval > 0 && buffer_new(bh)) {
1135 /*
1136 * We allocated new blocks which will result in
1137 * i_data's format changing. Force the migrate
1138 * to fail by clearing migrate flags
1139 */
1140 EXT4_I(inode)->i_flags = EXT4_I(inode)->i_flags &
1141 ~EXT4_EXT_MIGRATE;
1142 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001143 }
Mingming Caod2a17632008-07-14 17:52:37 -04001144
1145 if (flag) {
1146 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
1147 /*
1148 * Update reserved blocks/metadata blocks
1149 * after successful block allocation
1150 * which were deferred till now
1151 */
1152 if ((retval > 0) && buffer_delay(bh))
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001153 ext4_da_update_reserve_space(inode, retval);
Mingming Caod2a17632008-07-14 17:52:37 -04001154 }
1155
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001156 up_write((&EXT4_I(inode)->i_data_sem));
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001157 return retval;
1158}
1159
Mingming Caof3bd1f32008-08-19 22:16:03 -04001160/* Maximum number of blocks we map for direct IO at once. */
1161#define DIO_MAX_BLOCKS 4096
1162
Mingming Cao617ba132006-10-11 01:20:53 -07001163static int ext4_get_block(struct inode *inode, sector_t iblock,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001164 struct buffer_head *bh_result, int create)
1165{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -08001166 handle_t *handle = ext4_journal_current_handle();
Jan Kara7fb54092008-02-10 01:08:38 -05001167 int ret = 0, started = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001168 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001169 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001170
Jan Kara7fb54092008-02-10 01:08:38 -05001171 if (create && !handle) {
1172 /* Direct IO write... */
1173 if (max_blocks > DIO_MAX_BLOCKS)
1174 max_blocks = DIO_MAX_BLOCKS;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001175 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
1176 handle = ext4_journal_start(inode, dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -05001177 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001178 ret = PTR_ERR(handle);
Jan Kara7fb54092008-02-10 01:08:38 -05001179 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001180 }
Jan Kara7fb54092008-02-10 01:08:38 -05001181 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001182 }
1183
Jan Kara7fb54092008-02-10 01:08:38 -05001184 ret = ext4_get_blocks_wrap(handle, inode, iblock,
Mingming Caod2a17632008-07-14 17:52:37 -04001185 max_blocks, bh_result, create, 0, 0);
Jan Kara7fb54092008-02-10 01:08:38 -05001186 if (ret > 0) {
1187 bh_result->b_size = (ret << inode->i_blkbits);
1188 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001189 }
Jan Kara7fb54092008-02-10 01:08:38 -05001190 if (started)
1191 ext4_journal_stop(handle);
1192out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001193 return ret;
1194}
1195
1196/*
1197 * `handle' can be NULL if create is zero
1198 */
Mingming Cao617ba132006-10-11 01:20:53 -07001199struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001200 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001201{
1202 struct buffer_head dummy;
1203 int fatal = 0, err;
1204
1205 J_ASSERT(handle != NULL || create == 0);
1206
1207 dummy.b_state = 0;
1208 dummy.b_blocknr = -1000;
1209 buffer_trace_init(&dummy.b_history);
Alex Tomasa86c6182006-10-11 01:21:03 -07001210 err = ext4_get_blocks_wrap(handle, inode, block, 1,
Mingming Caod2a17632008-07-14 17:52:37 -04001211 &dummy, create, 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001212 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001213 * ext4_get_blocks_handle() returns number of blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001214 * mapped. 0 in case of a HOLE.
1215 */
1216 if (err > 0) {
1217 if (err > 1)
1218 WARN_ON(1);
1219 err = 0;
1220 }
1221 *errp = err;
1222 if (!err && buffer_mapped(&dummy)) {
1223 struct buffer_head *bh;
1224 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1225 if (!bh) {
1226 *errp = -EIO;
1227 goto err;
1228 }
1229 if (buffer_new(&dummy)) {
1230 J_ASSERT(create != 0);
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001231 J_ASSERT(handle != NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001232
1233 /*
1234 * Now that we do not always journal data, we should
1235 * keep in mind whether this should always journal the
1236 * new buffer as metadata. For now, regular file
Mingming Cao617ba132006-10-11 01:20:53 -07001237 * writes use ext4_get_block instead, so it's not a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001238 * problem.
1239 */
1240 lock_buffer(bh);
1241 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001242 fatal = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001243 if (!fatal && !buffer_uptodate(bh)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001244 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001245 set_buffer_uptodate(bh);
1246 }
1247 unlock_buffer(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001248 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
1249 err = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001250 if (!fatal)
1251 fatal = err;
1252 } else {
1253 BUFFER_TRACE(bh, "not a new buffer");
1254 }
1255 if (fatal) {
1256 *errp = fatal;
1257 brelse(bh);
1258 bh = NULL;
1259 }
1260 return bh;
1261 }
1262err:
1263 return NULL;
1264}
1265
Mingming Cao617ba132006-10-11 01:20:53 -07001266struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001267 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001268{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001269 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001270
Mingming Cao617ba132006-10-11 01:20:53 -07001271 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001272 if (!bh)
1273 return bh;
1274 if (buffer_uptodate(bh))
1275 return bh;
1276 ll_rw_block(READ_META, 1, &bh);
1277 wait_on_buffer(bh);
1278 if (buffer_uptodate(bh))
1279 return bh;
1280 put_bh(bh);
1281 *err = -EIO;
1282 return NULL;
1283}
1284
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001285static int walk_page_buffers(handle_t *handle,
1286 struct buffer_head *head,
1287 unsigned from,
1288 unsigned to,
1289 int *partial,
1290 int (*fn)(handle_t *handle,
1291 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001292{
1293 struct buffer_head *bh;
1294 unsigned block_start, block_end;
1295 unsigned blocksize = head->b_size;
1296 int err, ret = 0;
1297 struct buffer_head *next;
1298
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001299 for (bh = head, block_start = 0;
1300 ret == 0 && (bh != head || !block_start);
1301 block_start = block_end, bh = next)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001302 {
1303 next = bh->b_this_page;
1304 block_end = block_start + blocksize;
1305 if (block_end <= from || block_start >= to) {
1306 if (partial && !buffer_uptodate(bh))
1307 *partial = 1;
1308 continue;
1309 }
1310 err = (*fn)(handle, bh);
1311 if (!ret)
1312 ret = err;
1313 }
1314 return ret;
1315}
1316
1317/*
1318 * To preserve ordering, it is essential that the hole instantiation and
1319 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -07001320 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -07001321 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001322 * prepare_write() is the right place.
1323 *
Mingming Cao617ba132006-10-11 01:20:53 -07001324 * Also, this function can nest inside ext4_writepage() ->
1325 * block_write_full_page(). In that case, we *know* that ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001326 * has generated enough buffer credits to do the whole page. So we won't
1327 * block on the journal in that case, which is good, because the caller may
1328 * be PF_MEMALLOC.
1329 *
Mingming Cao617ba132006-10-11 01:20:53 -07001330 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001331 * quota file writes. If we were to commit the transaction while thus
1332 * reentered, there can be a deadlock - we would be holding a quota
1333 * lock, and the commit would never complete if another thread had a
1334 * transaction open and was blocking on the quota lock - a ranking
1335 * violation.
1336 *
Mingming Caodab291a2006-10-11 01:21:01 -07001337 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001338 * will _not_ run commit under these circumstances because handle->h_ref
1339 * is elevated. We'll still have enough credits for the tiny quotafile
1340 * write.
1341 */
1342static int do_journal_get_write_access(handle_t *handle,
1343 struct buffer_head *bh)
1344{
1345 if (!buffer_mapped(bh) || buffer_freed(bh))
1346 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001347 return ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001348}
1349
Nick Pigginbfc1af62007-10-16 01:25:05 -07001350static int ext4_write_begin(struct file *file, struct address_space *mapping,
1351 loff_t pos, unsigned len, unsigned flags,
1352 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001353{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001354 struct inode *inode = mapping->host;
Andrew Morton7479d2b2007-04-01 23:49:44 -07001355 int ret, needed_blocks = ext4_writepage_trans_blocks(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001356 handle_t *handle;
1357 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001358 struct page *page;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001359 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001360 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001361
1362 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001363 from = pos & (PAGE_CACHE_SIZE - 1);
1364 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365
1366retry:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001367 handle = ext4_journal_start(inode, needed_blocks);
1368 if (IS_ERR(handle)) {
1369 ret = PTR_ERR(handle);
1370 goto out;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001371 }
1372
Jan Karacf108bc2008-07-11 19:27:31 -04001373 page = __grab_cache_page(mapping, index);
1374 if (!page) {
1375 ext4_journal_stop(handle);
1376 ret = -ENOMEM;
1377 goto out;
1378 }
1379 *pagep = page;
1380
Nick Pigginbfc1af62007-10-16 01:25:05 -07001381 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
1382 ext4_get_block);
1383
1384 if (!ret && ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001385 ret = walk_page_buffers(handle, page_buffers(page),
1386 from, to, NULL, do_journal_get_write_access);
1387 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001388
1389 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001390 unlock_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001391 ext4_journal_stop(handle);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001392 page_cache_release(page);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001393 }
1394
Mingming Cao617ba132006-10-11 01:20:53 -07001395 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001396 goto retry;
Andrew Morton7479d2b2007-04-01 23:49:44 -07001397out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001398 return ret;
1399}
1400
Nick Pigginbfc1af62007-10-16 01:25:05 -07001401/* For write_end() in data=journal mode */
1402static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001403{
1404 if (!buffer_mapped(bh) || buffer_freed(bh))
1405 return 0;
1406 set_buffer_uptodate(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001407 return ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001408}
1409
1410/*
1411 * We need to pick up the new inode size which generic_commit_write gave us
1412 * `file' can be NULL - eg, when called from page_symlink().
1413 *
Mingming Cao617ba132006-10-11 01:20:53 -07001414 * ext4 never places buffers on inode->i_mapping->private_list. metadata
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001415 * buffers are managed internally.
1416 */
Nick Pigginbfc1af62007-10-16 01:25:05 -07001417static int ext4_ordered_write_end(struct file *file,
1418 struct address_space *mapping,
1419 loff_t pos, unsigned len, unsigned copied,
1420 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001421{
Mingming Cao617ba132006-10-11 01:20:53 -07001422 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001423 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001424 int ret = 0, ret2;
1425
Jan Kara678aaf42008-07-11 19:27:31 -04001426 ret = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427
1428 if (ret == 0) {
1429 /*
Nick Pigginbfc1af62007-10-16 01:25:05 -07001430 * generic_write_end() will run mark_inode_dirty() if i_size
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001431 * changes. So let's piggyback the i_disksize mark_inode_dirty
1432 * into that.
1433 */
1434 loff_t new_i_size;
1435
Nick Pigginbfc1af62007-10-16 01:25:05 -07001436 new_i_size = pos + copied;
Mingming Cao617ba132006-10-11 01:20:53 -07001437 if (new_i_size > EXT4_I(inode)->i_disksize)
1438 EXT4_I(inode)->i_disksize = new_i_size;
Jan Karacf108bc2008-07-11 19:27:31 -04001439 ret2 = generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001440 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001441 copied = ret2;
1442 if (ret2 < 0)
1443 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444 }
Mingming Cao617ba132006-10-11 01:20:53 -07001445 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001446 if (!ret)
1447 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001448
1449 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001450}
1451
Nick Pigginbfc1af62007-10-16 01:25:05 -07001452static int ext4_writeback_write_end(struct file *file,
1453 struct address_space *mapping,
1454 loff_t pos, unsigned len, unsigned copied,
1455 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001456{
Mingming Cao617ba132006-10-11 01:20:53 -07001457 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001458 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001459 int ret = 0, ret2;
1460 loff_t new_i_size;
1461
Nick Pigginbfc1af62007-10-16 01:25:05 -07001462 new_i_size = pos + copied;
Mingming Cao617ba132006-10-11 01:20:53 -07001463 if (new_i_size > EXT4_I(inode)->i_disksize)
1464 EXT4_I(inode)->i_disksize = new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001465
Jan Karacf108bc2008-07-11 19:27:31 -04001466 ret2 = generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001467 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001468 copied = ret2;
1469 if (ret2 < 0)
1470 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001471
Mingming Cao617ba132006-10-11 01:20:53 -07001472 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001473 if (!ret)
1474 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001475
1476 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001477}
1478
Nick Pigginbfc1af62007-10-16 01:25:05 -07001479static int ext4_journalled_write_end(struct file *file,
1480 struct address_space *mapping,
1481 loff_t pos, unsigned len, unsigned copied,
1482 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001483{
Mingming Cao617ba132006-10-11 01:20:53 -07001484 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001485 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001486 int ret = 0, ret2;
1487 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001488 unsigned from, to;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001489
Nick Pigginbfc1af62007-10-16 01:25:05 -07001490 from = pos & (PAGE_CACHE_SIZE - 1);
1491 to = from + len;
1492
1493 if (copied < len) {
1494 if (!PageUptodate(page))
1495 copied = 0;
1496 page_zero_new_buffers(page, from+copied, to);
1497 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001498
1499 ret = walk_page_buffers(handle, page_buffers(page), from,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001500 to, &partial, write_end_fn);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001501 if (!partial)
1502 SetPageUptodate(page);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001503 if (pos+copied > inode->i_size)
1504 i_size_write(inode, pos+copied);
Mingming Cao617ba132006-10-11 01:20:53 -07001505 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
1506 if (inode->i_size > EXT4_I(inode)->i_disksize) {
1507 EXT4_I(inode)->i_disksize = inode->i_size;
1508 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001509 if (!ret)
1510 ret = ret2;
1511 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001512
Jan Karacf108bc2008-07-11 19:27:31 -04001513 unlock_page(page);
Mingming Cao617ba132006-10-11 01:20:53 -07001514 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001515 if (!ret)
1516 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001517 page_cache_release(page);
1518
1519 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001520}
Mingming Caod2a17632008-07-14 17:52:37 -04001521
1522static int ext4_da_reserve_space(struct inode *inode, int nrblocks)
1523{
1524 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1525 unsigned long md_needed, mdblocks, total = 0;
1526
1527 /*
1528 * recalculate the amount of metadata blocks to reserve
1529 * in order to allocate nrblocks
1530 * worse case is one extent per block
1531 */
1532 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1533 total = EXT4_I(inode)->i_reserved_data_blocks + nrblocks;
1534 mdblocks = ext4_calc_metadata_amount(inode, total);
1535 BUG_ON(mdblocks < EXT4_I(inode)->i_reserved_meta_blocks);
1536
1537 md_needed = mdblocks - EXT4_I(inode)->i_reserved_meta_blocks;
1538 total = md_needed + nrblocks;
1539
1540 if (ext4_has_free_blocks(sbi, total) < total) {
1541 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1542 return -ENOSPC;
1543 }
Mingming Caod2a17632008-07-14 17:52:37 -04001544 /* reduce fs free blocks counter */
1545 percpu_counter_sub(&sbi->s_freeblocks_counter, total);
1546
1547 EXT4_I(inode)->i_reserved_data_blocks += nrblocks;
1548 EXT4_I(inode)->i_reserved_meta_blocks = mdblocks;
1549
1550 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1551 return 0; /* success */
1552}
1553
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001554static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001555{
1556 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1557 int total, mdb, mdb_free, release;
1558
Mingming Caocd213222008-08-19 22:16:59 -04001559 if (!to_free)
1560 return; /* Nothing to release, exit */
1561
Mingming Caod2a17632008-07-14 17:52:37 -04001562 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001563
1564 if (!EXT4_I(inode)->i_reserved_data_blocks) {
1565 /*
1566 * if there is no reserved blocks, but we try to free some
1567 * then the counter is messed up somewhere.
1568 * but since this function is called from invalidate
1569 * page, it's harmless to return without any action
1570 */
1571 printk(KERN_INFO "ext4 delalloc try to release %d reserved "
1572 "blocks for inode %lu, but there is no reserved "
1573 "data blocks\n", to_free, inode->i_ino);
1574 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1575 return;
1576 }
1577
Mingming Caod2a17632008-07-14 17:52:37 -04001578 /* recalculate the number of metablocks still need to be reserved */
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001579 total = EXT4_I(inode)->i_reserved_data_blocks - to_free;
Mingming Caod2a17632008-07-14 17:52:37 -04001580 mdb = ext4_calc_metadata_amount(inode, total);
1581
1582 /* figure out how many metablocks to release */
1583 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1584 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1585
Mingming Caod2a17632008-07-14 17:52:37 -04001586 release = to_free + mdb_free;
1587
1588 /* update fs free blocks counter for truncate case */
1589 percpu_counter_add(&sbi->s_freeblocks_counter, release);
1590
1591 /* update per-inode reservations */
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001592 BUG_ON(to_free > EXT4_I(inode)->i_reserved_data_blocks);
1593 EXT4_I(inode)->i_reserved_data_blocks -= to_free;
Mingming Caod2a17632008-07-14 17:52:37 -04001594
1595 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1596 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
Mingming Caod2a17632008-07-14 17:52:37 -04001597 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1598}
1599
1600static void ext4_da_page_release_reservation(struct page *page,
1601 unsigned long offset)
1602{
1603 int to_release = 0;
1604 struct buffer_head *head, *bh;
1605 unsigned int curr_off = 0;
1606
1607 head = page_buffers(page);
1608 bh = head;
1609 do {
1610 unsigned int next_off = curr_off + bh->b_size;
1611
1612 if ((offset <= curr_off) && (buffer_delay(bh))) {
1613 to_release++;
1614 clear_buffer_delay(bh);
1615 }
1616 curr_off = next_off;
1617 } while ((bh = bh->b_this_page) != head);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001618 ext4_da_release_space(page->mapping->host, to_release);
Mingming Caod2a17632008-07-14 17:52:37 -04001619}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001620
1621/*
Alex Tomas64769242008-07-11 19:27:31 -04001622 * Delayed allocation stuff
1623 */
1624
1625struct mpage_da_data {
1626 struct inode *inode;
1627 struct buffer_head lbh; /* extent of blocks */
1628 unsigned long first_page, next_page; /* extent of pages */
1629 get_block_t *get_block;
1630 struct writeback_control *wbc;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001631 int io_done;
1632 long pages_written;
Alex Tomas64769242008-07-11 19:27:31 -04001633};
1634
1635/*
1636 * mpage_da_submit_io - walks through extent of pages and try to write
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001637 * them with writepage() call back
Alex Tomas64769242008-07-11 19:27:31 -04001638 *
1639 * @mpd->inode: inode
1640 * @mpd->first_page: first page of the extent
1641 * @mpd->next_page: page after the last page of the extent
1642 * @mpd->get_block: the filesystem's block mapper function
1643 *
1644 * By the time mpage_da_submit_io() is called we expect all blocks
1645 * to be allocated. this may be wrong if allocation failed.
1646 *
1647 * As pages are already locked by write_cache_pages(), we can't use it
1648 */
1649static int mpage_da_submit_io(struct mpage_da_data *mpd)
1650{
1651 struct address_space *mapping = mpd->inode->i_mapping;
Alex Tomas64769242008-07-11 19:27:31 -04001652 int ret = 0, err, nr_pages, i;
1653 unsigned long index, end;
1654 struct pagevec pvec;
1655
1656 BUG_ON(mpd->next_page <= mpd->first_page);
Alex Tomas64769242008-07-11 19:27:31 -04001657 pagevec_init(&pvec, 0);
1658 index = mpd->first_page;
1659 end = mpd->next_page - 1;
1660
1661 while (index <= end) {
1662 /* XXX: optimize tail */
1663 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1664 if (nr_pages == 0)
1665 break;
1666 for (i = 0; i < nr_pages; i++) {
1667 struct page *page = pvec.pages[i];
1668
1669 index = page->index;
1670 if (index > end)
1671 break;
1672 index++;
1673
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001674 err = mapping->a_ops->writepage(page, mpd->wbc);
1675 if (!err)
1676 mpd->pages_written++;
Alex Tomas64769242008-07-11 19:27:31 -04001677 /*
1678 * In error case, we have to continue because
1679 * remaining pages are still locked
1680 * XXX: unlock and re-dirty them?
1681 */
1682 if (ret == 0)
1683 ret = err;
1684 }
1685 pagevec_release(&pvec);
1686 }
Alex Tomas64769242008-07-11 19:27:31 -04001687 return ret;
1688}
1689
1690/*
1691 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
1692 *
1693 * @mpd->inode - inode to walk through
1694 * @exbh->b_blocknr - first block on a disk
1695 * @exbh->b_size - amount of space in bytes
1696 * @logical - first logical block to start assignment with
1697 *
1698 * the function goes through all passed space and put actual disk
1699 * block numbers into buffer heads, dropping BH_Delay
1700 */
1701static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
1702 struct buffer_head *exbh)
1703{
1704 struct inode *inode = mpd->inode;
1705 struct address_space *mapping = inode->i_mapping;
1706 int blocks = exbh->b_size >> inode->i_blkbits;
1707 sector_t pblock = exbh->b_blocknr, cur_logical;
1708 struct buffer_head *head, *bh;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001709 pgoff_t index, end;
Alex Tomas64769242008-07-11 19:27:31 -04001710 struct pagevec pvec;
1711 int nr_pages, i;
1712
1713 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1714 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1715 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1716
1717 pagevec_init(&pvec, 0);
1718
1719 while (index <= end) {
1720 /* XXX: optimize tail */
1721 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1722 if (nr_pages == 0)
1723 break;
1724 for (i = 0; i < nr_pages; i++) {
1725 struct page *page = pvec.pages[i];
1726
1727 index = page->index;
1728 if (index > end)
1729 break;
1730 index++;
1731
1732 BUG_ON(!PageLocked(page));
1733 BUG_ON(PageWriteback(page));
1734 BUG_ON(!page_has_buffers(page));
1735
1736 bh = page_buffers(page);
1737 head = bh;
1738
1739 /* skip blocks out of the range */
1740 do {
1741 if (cur_logical >= logical)
1742 break;
1743 cur_logical++;
1744 } while ((bh = bh->b_this_page) != head);
1745
1746 do {
1747 if (cur_logical >= logical + blocks)
1748 break;
Alex Tomas64769242008-07-11 19:27:31 -04001749 if (buffer_delay(bh)) {
1750 bh->b_blocknr = pblock;
1751 clear_buffer_delay(bh);
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04001752 bh->b_bdev = inode->i_sb->s_bdev;
1753 } else if (buffer_unwritten(bh)) {
1754 bh->b_blocknr = pblock;
1755 clear_buffer_unwritten(bh);
1756 set_buffer_mapped(bh);
1757 set_buffer_new(bh);
1758 bh->b_bdev = inode->i_sb->s_bdev;
Mingming Cao61628a32008-07-11 19:27:31 -04001759 } else if (buffer_mapped(bh))
Alex Tomas64769242008-07-11 19:27:31 -04001760 BUG_ON(bh->b_blocknr != pblock);
Alex Tomas64769242008-07-11 19:27:31 -04001761
1762 cur_logical++;
1763 pblock++;
1764 } while ((bh = bh->b_this_page) != head);
1765 }
1766 pagevec_release(&pvec);
1767 }
1768}
1769
1770
1771/*
1772 * __unmap_underlying_blocks - just a helper function to unmap
1773 * set of blocks described by @bh
1774 */
1775static inline void __unmap_underlying_blocks(struct inode *inode,
1776 struct buffer_head *bh)
1777{
1778 struct block_device *bdev = inode->i_sb->s_bdev;
1779 int blocks, i;
1780
1781 blocks = bh->b_size >> inode->i_blkbits;
1782 for (i = 0; i < blocks; i++)
1783 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
1784}
1785
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001786static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd,
1787 sector_t logical, long blk_cnt)
1788{
1789 int nr_pages, i;
1790 pgoff_t index, end;
1791 struct pagevec pvec;
1792 struct inode *inode = mpd->inode;
1793 struct address_space *mapping = inode->i_mapping;
1794
1795 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1796 end = (logical + blk_cnt - 1) >>
1797 (PAGE_CACHE_SHIFT - inode->i_blkbits);
1798 while (index <= end) {
1799 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1800 if (nr_pages == 0)
1801 break;
1802 for (i = 0; i < nr_pages; i++) {
1803 struct page *page = pvec.pages[i];
1804 index = page->index;
1805 if (index > end)
1806 break;
1807 index++;
1808
1809 BUG_ON(!PageLocked(page));
1810 BUG_ON(PageWriteback(page));
1811 block_invalidatepage(page, 0);
1812 ClearPageUptodate(page);
1813 unlock_page(page);
1814 }
1815 }
1816 return;
1817}
1818
Alex Tomas64769242008-07-11 19:27:31 -04001819/*
1820 * mpage_da_map_blocks - go through given space
1821 *
1822 * @mpd->lbh - bh describing space
1823 * @mpd->get_block - the filesystem's block mapper function
1824 *
1825 * The function skips space we know is already mapped to disk blocks.
1826 *
Alex Tomas64769242008-07-11 19:27:31 -04001827 */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001828static int mpage_da_map_blocks(struct mpage_da_data *mpd)
Alex Tomas64769242008-07-11 19:27:31 -04001829{
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001830 int err = 0;
Alex Tomas64769242008-07-11 19:27:31 -04001831 struct buffer_head *lbh = &mpd->lbh;
Alex Tomas64769242008-07-11 19:27:31 -04001832 sector_t next = lbh->b_blocknr;
1833 struct buffer_head new;
1834
1835 /*
1836 * We consider only non-mapped and non-allocated blocks
1837 */
1838 if (buffer_mapped(lbh) && !buffer_delay(lbh))
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001839 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001840
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001841 new.b_state = lbh->b_state;
1842 new.b_blocknr = 0;
1843 new.b_size = lbh->b_size;
Alex Tomas64769242008-07-11 19:27:31 -04001844
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001845 /*
1846 * If we didn't accumulate anything
1847 * to write simply return
1848 */
1849 if (!new.b_size)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001850 return 0;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001851 err = mpd->get_block(mpd->inode, next, &new, 1);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001852 if (err) {
1853
1854 /* If get block returns with error
1855 * we simply return. Later writepage
1856 * will redirty the page and writepages
1857 * will find the dirty page again
1858 */
1859 if (err == -EAGAIN)
1860 return 0;
1861 /*
1862 * get block failure will cause us
1863 * to loop in writepages. Because
1864 * a_ops->writepage won't be able to
1865 * make progress. The page will be redirtied
1866 * by writepage and writepages will again
1867 * try to write the same.
1868 */
1869 printk(KERN_EMERG "%s block allocation failed for inode %lu "
1870 "at logical offset %llu with max blocks "
1871 "%zd with error %d\n",
1872 __func__, mpd->inode->i_ino,
1873 (unsigned long long)next,
1874 lbh->b_size >> mpd->inode->i_blkbits, err);
1875 printk(KERN_EMERG "This should not happen.!! "
1876 "Data will be lost\n");
1877 /* invlaidate all the pages */
1878 ext4_da_block_invalidatepages(mpd, next,
1879 lbh->b_size >> mpd->inode->i_blkbits);
1880 return err;
1881 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001882 BUG_ON(new.b_size == 0);
Alex Tomas64769242008-07-11 19:27:31 -04001883
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001884 if (buffer_new(&new))
1885 __unmap_underlying_blocks(mpd->inode, &new);
Alex Tomas64769242008-07-11 19:27:31 -04001886
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001887 /*
1888 * If blocks are delayed marked, we need to
1889 * put actual blocknr and drop delayed bit
1890 */
1891 if (buffer_delay(lbh) || buffer_unwritten(lbh))
1892 mpage_put_bnr_to_bhs(mpd, next, &new);
1893
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001894 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001895}
1896
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04001897#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
1898 (1 << BH_Delay) | (1 << BH_Unwritten))
Alex Tomas64769242008-07-11 19:27:31 -04001899
1900/*
1901 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
1902 *
1903 * @mpd->lbh - extent of blocks
1904 * @logical - logical number of the block in the file
1905 * @bh - bh of the block (used to access block's state)
1906 *
1907 * the function is used to collect contig. blocks in same state
1908 */
1909static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
1910 sector_t logical, struct buffer_head *bh)
1911{
Alex Tomas64769242008-07-11 19:27:31 -04001912 sector_t next;
Mingming Cao525f4ed2008-08-19 22:15:58 -04001913 size_t b_size = bh->b_size;
1914 struct buffer_head *lbh = &mpd->lbh;
1915 int nrblocks = lbh->b_size >> mpd->inode->i_blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04001916
Mingming Cao525f4ed2008-08-19 22:15:58 -04001917 /* check if thereserved journal credits might overflow */
1918 if (!(EXT4_I(mpd->inode)->i_flags & EXT4_EXTENTS_FL)) {
1919 if (nrblocks >= EXT4_MAX_TRANS_DATA) {
1920 /*
1921 * With non-extent format we are limited by the journal
1922 * credit available. Total credit needed to insert
1923 * nrblocks contiguous blocks is dependent on the
1924 * nrblocks. So limit nrblocks.
1925 */
1926 goto flush_it;
1927 } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) >
1928 EXT4_MAX_TRANS_DATA) {
1929 /*
1930 * Adding the new buffer_head would make it cross the
1931 * allowed limit for which we have journal credit
1932 * reserved. So limit the new bh->b_size
1933 */
1934 b_size = (EXT4_MAX_TRANS_DATA - nrblocks) <<
1935 mpd->inode->i_blkbits;
1936 /* we will do mpage_da_submit_io in the next loop */
1937 }
1938 }
Alex Tomas64769242008-07-11 19:27:31 -04001939 /*
1940 * First block in the extent
1941 */
1942 if (lbh->b_size == 0) {
1943 lbh->b_blocknr = logical;
Mingming Cao525f4ed2008-08-19 22:15:58 -04001944 lbh->b_size = b_size;
Alex Tomas64769242008-07-11 19:27:31 -04001945 lbh->b_state = bh->b_state & BH_FLAGS;
1946 return;
1947 }
1948
Mingming Cao525f4ed2008-08-19 22:15:58 -04001949 next = lbh->b_blocknr + nrblocks;
Alex Tomas64769242008-07-11 19:27:31 -04001950 /*
1951 * Can we merge the block to our big extent?
1952 */
1953 if (logical == next && (bh->b_state & BH_FLAGS) == lbh->b_state) {
Mingming Cao525f4ed2008-08-19 22:15:58 -04001954 lbh->b_size += b_size;
Alex Tomas64769242008-07-11 19:27:31 -04001955 return;
1956 }
1957
Mingming Cao525f4ed2008-08-19 22:15:58 -04001958flush_it:
Alex Tomas64769242008-07-11 19:27:31 -04001959 /*
1960 * We couldn't merge the block to our extent, so we
1961 * need to flush current extent and start new one
1962 */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001963 if (mpage_da_map_blocks(mpd) == 0)
1964 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001965 mpd->io_done = 1;
1966 return;
Alex Tomas64769242008-07-11 19:27:31 -04001967}
1968
1969/*
1970 * __mpage_da_writepage - finds extent of pages and blocks
1971 *
1972 * @page: page to consider
1973 * @wbc: not used, we just follow rules
1974 * @data: context
1975 *
1976 * The function finds extents of pages and scan them for all blocks.
1977 */
1978static int __mpage_da_writepage(struct page *page,
1979 struct writeback_control *wbc, void *data)
1980{
1981 struct mpage_da_data *mpd = data;
1982 struct inode *inode = mpd->inode;
1983 struct buffer_head *bh, *head, fake;
1984 sector_t logical;
1985
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001986 if (mpd->io_done) {
1987 /*
1988 * Rest of the page in the page_vec
1989 * redirty then and skip then. We will
1990 * try to to write them again after
1991 * starting a new transaction
1992 */
1993 redirty_page_for_writepage(wbc, page);
1994 unlock_page(page);
1995 return MPAGE_DA_EXTENT_TAIL;
1996 }
Alex Tomas64769242008-07-11 19:27:31 -04001997 /*
1998 * Can we merge this page to current extent?
1999 */
2000 if (mpd->next_page != page->index) {
2001 /*
2002 * Nope, we can't. So, we map non-allocated blocks
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002003 * and start IO on them using writepage()
Alex Tomas64769242008-07-11 19:27:31 -04002004 */
2005 if (mpd->next_page != mpd->first_page) {
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002006 if (mpage_da_map_blocks(mpd) == 0)
2007 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002008 /*
2009 * skip rest of the page in the page_vec
2010 */
2011 mpd->io_done = 1;
2012 redirty_page_for_writepage(wbc, page);
2013 unlock_page(page);
2014 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002015 }
2016
2017 /*
2018 * Start next extent of pages ...
2019 */
2020 mpd->first_page = page->index;
2021
2022 /*
2023 * ... and blocks
2024 */
2025 mpd->lbh.b_size = 0;
2026 mpd->lbh.b_state = 0;
2027 mpd->lbh.b_blocknr = 0;
2028 }
2029
2030 mpd->next_page = page->index + 1;
2031 logical = (sector_t) page->index <<
2032 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2033
2034 if (!page_has_buffers(page)) {
2035 /*
2036 * There is no attached buffer heads yet (mmap?)
2037 * we treat the page asfull of dirty blocks
2038 */
2039 bh = &fake;
2040 bh->b_size = PAGE_CACHE_SIZE;
2041 bh->b_state = 0;
2042 set_buffer_dirty(bh);
2043 set_buffer_uptodate(bh);
2044 mpage_add_bh_to_extent(mpd, logical, bh);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002045 if (mpd->io_done)
2046 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002047 } else {
2048 /*
2049 * Page with regular buffer heads, just add all dirty ones
2050 */
2051 head = page_buffers(page);
2052 bh = head;
2053 do {
2054 BUG_ON(buffer_locked(bh));
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002055 if (buffer_dirty(bh) &&
2056 (!buffer_mapped(bh) || buffer_delay(bh))) {
Alex Tomas64769242008-07-11 19:27:31 -04002057 mpage_add_bh_to_extent(mpd, logical, bh);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002058 if (mpd->io_done)
2059 return MPAGE_DA_EXTENT_TAIL;
2060 }
Alex Tomas64769242008-07-11 19:27:31 -04002061 logical++;
2062 } while ((bh = bh->b_this_page) != head);
2063 }
2064
2065 return 0;
2066}
2067
2068/*
2069 * mpage_da_writepages - walk the list of dirty pages of the given
2070 * address space, allocates non-allocated blocks, maps newly-allocated
2071 * blocks to existing bhs and issue IO them
2072 *
2073 * @mapping: address space structure to write
2074 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2075 * @get_block: the filesystem's block mapper function.
2076 *
2077 * This is a library function, which implements the writepages()
2078 * address_space_operation.
Alex Tomas64769242008-07-11 19:27:31 -04002079 */
2080static int mpage_da_writepages(struct address_space *mapping,
2081 struct writeback_control *wbc,
2082 get_block_t get_block)
2083{
2084 struct mpage_da_data mpd;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002085 long to_write;
Alex Tomas64769242008-07-11 19:27:31 -04002086 int ret;
2087
2088 if (!get_block)
2089 return generic_writepages(mapping, wbc);
2090
2091 mpd.wbc = wbc;
2092 mpd.inode = mapping->host;
2093 mpd.lbh.b_size = 0;
2094 mpd.lbh.b_state = 0;
2095 mpd.lbh.b_blocknr = 0;
2096 mpd.first_page = 0;
2097 mpd.next_page = 0;
2098 mpd.get_block = get_block;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002099 mpd.io_done = 0;
2100 mpd.pages_written = 0;
2101
2102 to_write = wbc->nr_to_write;
Alex Tomas64769242008-07-11 19:27:31 -04002103
2104 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage, &mpd);
2105
2106 /*
2107 * Handle last extent of pages
2108 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002109 if (!mpd.io_done && mpd.next_page != mpd.first_page) {
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002110 if (mpage_da_map_blocks(&mpd) == 0)
2111 mpage_da_submit_io(&mpd);
Alex Tomas64769242008-07-11 19:27:31 -04002112 }
2113
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002114 wbc->nr_to_write = to_write - mpd.pages_written;
Alex Tomas64769242008-07-11 19:27:31 -04002115 return ret;
2116}
2117
2118/*
2119 * this is a special callback for ->write_begin() only
2120 * it's intention is to return mapped block or reserve space
2121 */
2122static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
2123 struct buffer_head *bh_result, int create)
2124{
2125 int ret = 0;
2126
2127 BUG_ON(create == 0);
2128 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2129
2130 /*
2131 * first, we need to know whether the block is allocated already
2132 * preallocated blocks are unmapped but should treated
2133 * the same as allocated blocks.
2134 */
Mingming Caod2a17632008-07-14 17:52:37 -04002135 ret = ext4_get_blocks_wrap(NULL, inode, iblock, 1, bh_result, 0, 0, 0);
2136 if ((ret == 0) && !buffer_delay(bh_result)) {
2137 /* the block isn't (pre)allocated yet, let's reserve space */
Alex Tomas64769242008-07-11 19:27:31 -04002138 /*
2139 * XXX: __block_prepare_write() unmaps passed block,
2140 * is it OK?
2141 */
Mingming Caod2a17632008-07-14 17:52:37 -04002142 ret = ext4_da_reserve_space(inode, 1);
2143 if (ret)
2144 /* not enough space to reserve */
2145 return ret;
2146
Alex Tomas64769242008-07-11 19:27:31 -04002147 map_bh(bh_result, inode->i_sb, 0);
2148 set_buffer_new(bh_result);
2149 set_buffer_delay(bh_result);
2150 } else if (ret > 0) {
2151 bh_result->b_size = (ret << inode->i_blkbits);
2152 ret = 0;
2153 }
2154
2155 return ret;
2156}
Mingming Caod2a17632008-07-14 17:52:37 -04002157#define EXT4_DELALLOC_RSVED 1
Alex Tomas64769242008-07-11 19:27:31 -04002158static int ext4_da_get_block_write(struct inode *inode, sector_t iblock,
2159 struct buffer_head *bh_result, int create)
2160{
Mingming Cao61628a32008-07-11 19:27:31 -04002161 int ret;
Alex Tomas64769242008-07-11 19:27:31 -04002162 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2163 loff_t disksize = EXT4_I(inode)->i_disksize;
2164 handle_t *handle = NULL;
2165
Mingming Cao61628a32008-07-11 19:27:31 -04002166 handle = ext4_journal_current_handle();
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002167 if (!handle) {
2168 ret = ext4_get_blocks_wrap(handle, inode, iblock, max_blocks,
2169 bh_result, 0, 0, 0);
2170 BUG_ON(!ret);
2171 } else {
2172 ret = ext4_get_blocks_wrap(handle, inode, iblock, max_blocks,
Mingming Caod2a17632008-07-14 17:52:37 -04002173 bh_result, create, 0, EXT4_DELALLOC_RSVED);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002174 }
2175
Alex Tomas64769242008-07-11 19:27:31 -04002176 if (ret > 0) {
2177 bh_result->b_size = (ret << inode->i_blkbits);
2178
2179 /*
2180 * Update on-disk size along with block allocation
2181 * we don't use 'extend_disksize' as size may change
2182 * within already allocated block -bzzz
2183 */
2184 disksize = ((loff_t) iblock + ret) << inode->i_blkbits;
2185 if (disksize > i_size_read(inode))
2186 disksize = i_size_read(inode);
2187 if (disksize > EXT4_I(inode)->i_disksize) {
2188 /*
2189 * XXX: replace with spinlock if seen contended -bzzz
2190 */
2191 down_write(&EXT4_I(inode)->i_data_sem);
2192 if (disksize > EXT4_I(inode)->i_disksize)
2193 EXT4_I(inode)->i_disksize = disksize;
2194 up_write(&EXT4_I(inode)->i_data_sem);
2195
2196 if (EXT4_I(inode)->i_disksize == disksize) {
Mingming Cao61628a32008-07-11 19:27:31 -04002197 ret = ext4_mark_inode_dirty(handle, inode);
2198 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002199 }
2200 }
Alex Tomas64769242008-07-11 19:27:31 -04002201 ret = 0;
2202 }
Alex Tomas64769242008-07-11 19:27:31 -04002203 return ret;
2204}
Mingming Cao61628a32008-07-11 19:27:31 -04002205
2206static int ext4_bh_unmapped_or_delay(handle_t *handle, struct buffer_head *bh)
2207{
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002208 /*
2209 * unmapped buffer is possible for holes.
2210 * delay buffer is possible with delayed allocation
2211 */
2212 return ((!buffer_mapped(bh) || buffer_delay(bh)) && buffer_dirty(bh));
2213}
2214
2215static int ext4_normal_get_block_write(struct inode *inode, sector_t iblock,
2216 struct buffer_head *bh_result, int create)
2217{
2218 int ret = 0;
2219 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2220
2221 /*
2222 * we don't want to do block allocation in writepage
2223 * so call get_block_wrap with create = 0
2224 */
2225 ret = ext4_get_blocks_wrap(NULL, inode, iblock, max_blocks,
2226 bh_result, 0, 0, 0);
2227 if (ret > 0) {
2228 bh_result->b_size = (ret << inode->i_blkbits);
2229 ret = 0;
2230 }
2231 return ret;
Mingming Cao61628a32008-07-11 19:27:31 -04002232}
2233
Mingming Cao61628a32008-07-11 19:27:31 -04002234/*
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002235 * get called vi ext4_da_writepages after taking page lock (have journal handle)
2236 * get called via journal_submit_inode_data_buffers (no journal handle)
2237 * get called via shrink_page_list via pdflush (no journal handle)
2238 * or grab_page_cache when doing write_begin (have journal handle)
Mingming Cao61628a32008-07-11 19:27:31 -04002239 */
Alex Tomas64769242008-07-11 19:27:31 -04002240static int ext4_da_writepage(struct page *page,
2241 struct writeback_control *wbc)
2242{
Alex Tomas64769242008-07-11 19:27:31 -04002243 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002244 loff_t size;
2245 unsigned long len;
Mingming Cao61628a32008-07-11 19:27:31 -04002246 struct buffer_head *page_bufs;
2247 struct inode *inode = page->mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002248
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002249 size = i_size_read(inode);
2250 if (page->index == size >> PAGE_CACHE_SHIFT)
2251 len = size & ~PAGE_CACHE_MASK;
2252 else
2253 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002254
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002255 if (page_has_buffers(page)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002256 page_bufs = page_buffers(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002257 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2258 ext4_bh_unmapped_or_delay)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002259 /*
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002260 * We don't want to do block allocation
2261 * So redirty the page and return
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002262 * We may reach here when we do a journal commit
2263 * via journal_submit_inode_data_buffers.
2264 * If we don't have mapping block we just ignore
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002265 * them. We can also reach here via shrink_page_list
2266 */
2267 redirty_page_for_writepage(wbc, page);
2268 unlock_page(page);
2269 return 0;
2270 }
2271 } else {
2272 /*
2273 * The test for page_has_buffers() is subtle:
2274 * We know the page is dirty but it lost buffers. That means
2275 * that at some moment in time after write_begin()/write_end()
2276 * has been called all buffers have been clean and thus they
2277 * must have been written at least once. So they are all
2278 * mapped and we can happily proceed with mapping them
2279 * and writing the page.
2280 *
2281 * Try to initialize the buffer_heads and check whether
2282 * all are mapped and non delay. We don't want to
2283 * do block allocation here.
2284 */
2285 ret = block_prepare_write(page, 0, PAGE_CACHE_SIZE,
2286 ext4_normal_get_block_write);
2287 if (!ret) {
2288 page_bufs = page_buffers(page);
2289 /* check whether all are mapped and non delay */
2290 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2291 ext4_bh_unmapped_or_delay)) {
2292 redirty_page_for_writepage(wbc, page);
2293 unlock_page(page);
2294 return 0;
2295 }
2296 } else {
2297 /*
2298 * We can't do block allocation here
2299 * so just redity the page and unlock
2300 * and return
Mingming Cao61628a32008-07-11 19:27:31 -04002301 */
Mingming Cao61628a32008-07-11 19:27:31 -04002302 redirty_page_for_writepage(wbc, page);
2303 unlock_page(page);
2304 return 0;
2305 }
Alex Tomas64769242008-07-11 19:27:31 -04002306 }
2307
2308 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002309 ret = nobh_writepage(page, ext4_normal_get_block_write, wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002310 else
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002311 ret = block_write_full_page(page,
2312 ext4_normal_get_block_write,
2313 wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002314
Alex Tomas64769242008-07-11 19:27:31 -04002315 return ret;
2316}
2317
Mingming Cao61628a32008-07-11 19:27:31 -04002318/*
Mingming Cao525f4ed2008-08-19 22:15:58 -04002319 * This is called via ext4_da_writepages() to
2320 * calulate the total number of credits to reserve to fit
2321 * a single extent allocation into a single transaction,
2322 * ext4_da_writpeages() will loop calling this before
2323 * the block allocation.
Mingming Cao61628a32008-07-11 19:27:31 -04002324 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002325
2326static int ext4_da_writepages_trans_blocks(struct inode *inode)
2327{
2328 int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
2329
2330 /*
2331 * With non-extent format the journal credit needed to
2332 * insert nrblocks contiguous block is dependent on
2333 * number of contiguous block. So we will limit
2334 * number of contiguous block to a sane value
2335 */
2336 if (!(inode->i_flags & EXT4_EXTENTS_FL) &&
2337 (max_blocks > EXT4_MAX_TRANS_DATA))
2338 max_blocks = EXT4_MAX_TRANS_DATA;
2339
2340 return ext4_chunk_trans_blocks(inode, max_blocks);
2341}
Mingming Cao61628a32008-07-11 19:27:31 -04002342
Alex Tomas64769242008-07-11 19:27:31 -04002343static int ext4_da_writepages(struct address_space *mapping,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002344 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002345{
Mingming Cao61628a32008-07-11 19:27:31 -04002346 handle_t *handle = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04002347 loff_t range_start = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002348 struct inode *inode = mapping->host;
2349 int needed_blocks, ret = 0, nr_to_writebump = 0;
2350 long to_write, pages_skipped = 0;
2351 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Mingming Cao61628a32008-07-11 19:27:31 -04002352
2353 /*
2354 * No pages to write? This is mainly a kludge to avoid starting
2355 * a transaction for special inodes like journal inode on last iput()
2356 * because that could violate lock ordering on umount
2357 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002358 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Mingming Cao61628a32008-07-11 19:27:31 -04002359 return 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002360 /*
2361 * Make sure nr_to_write is >= sbi->s_mb_stream_request
2362 * This make sure small files blocks are allocated in
2363 * single attempt. This ensure that small files
2364 * get less fragmented.
2365 */
2366 if (wbc->nr_to_write < sbi->s_mb_stream_request) {
2367 nr_to_writebump = sbi->s_mb_stream_request - wbc->nr_to_write;
2368 wbc->nr_to_write = sbi->s_mb_stream_request;
2369 }
Mingming Cao61628a32008-07-11 19:27:31 -04002370
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002371 if (!wbc->range_cyclic)
Mingming Cao61628a32008-07-11 19:27:31 -04002372 /*
2373 * If range_cyclic is not set force range_cont
2374 * and save the old writeback_index
2375 */
2376 wbc->range_cont = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002377
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002378 range_start = wbc->range_start;
2379 pages_skipped = wbc->pages_skipped;
2380
2381restart_loop:
2382 to_write = wbc->nr_to_write;
2383 while (!ret && to_write > 0) {
2384
2385 /*
2386 * we insert one extent at a time. So we need
2387 * credit needed for single extent allocation.
2388 * journalled mode is currently not supported
2389 * by delalloc
2390 */
2391 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002392 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002393
Mingming Cao61628a32008-07-11 19:27:31 -04002394 /* start a new transaction*/
2395 handle = ext4_journal_start(inode, needed_blocks);
2396 if (IS_ERR(handle)) {
2397 ret = PTR_ERR(handle);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002398 printk(KERN_EMERG "%s: jbd2_start: "
2399 "%ld pages, ino %lu; err %d\n", __func__,
2400 wbc->nr_to_write, inode->i_ino, ret);
2401 dump_stack();
Mingming Cao61628a32008-07-11 19:27:31 -04002402 goto out_writepages;
2403 }
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002404 if (ext4_should_order_data(inode)) {
2405 /*
2406 * With ordered mode we need to add
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002407 * the inode to the journal handl
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002408 * when we do block allocation.
2409 */
2410 ret = ext4_jbd2_file_inode(handle, inode);
2411 if (ret) {
2412 ext4_journal_stop(handle);
2413 goto out_writepages;
2414 }
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002415 }
Mingming Cao61628a32008-07-11 19:27:31 -04002416
2417 to_write -= wbc->nr_to_write;
2418 ret = mpage_da_writepages(mapping, wbc,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002419 ext4_da_get_block_write);
Mingming Cao61628a32008-07-11 19:27:31 -04002420 ext4_journal_stop(handle);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002421 if (ret == MPAGE_DA_EXTENT_TAIL) {
2422 /*
2423 * got one extent now try with
2424 * rest of the pages
2425 */
2426 to_write += wbc->nr_to_write;
2427 ret = 0;
2428 } else if (wbc->nr_to_write) {
Mingming Cao61628a32008-07-11 19:27:31 -04002429 /*
2430 * There is no more writeout needed
2431 * or we requested for a noblocking writeout
2432 * and we found the device congested
2433 */
2434 to_write += wbc->nr_to_write;
2435 break;
2436 }
2437 wbc->nr_to_write = to_write;
2438 }
2439
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002440 if (wbc->range_cont && (pages_skipped != wbc->pages_skipped)) {
2441 /* We skipped pages in this loop */
2442 wbc->range_start = range_start;
2443 wbc->nr_to_write = to_write +
2444 wbc->pages_skipped - pages_skipped;
2445 wbc->pages_skipped = pages_skipped;
2446 goto restart_loop;
2447 }
2448
Mingming Cao61628a32008-07-11 19:27:31 -04002449out_writepages:
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002450 wbc->nr_to_write = to_write - nr_to_writebump;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002451 wbc->range_start = range_start;
Mingming Cao61628a32008-07-11 19:27:31 -04002452 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002453}
2454
2455static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
2456 loff_t pos, unsigned len, unsigned flags,
2457 struct page **pagep, void **fsdata)
2458{
Mingming Caod2a17632008-07-14 17:52:37 -04002459 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002460 struct page *page;
2461 pgoff_t index;
2462 unsigned from, to;
2463 struct inode *inode = mapping->host;
2464 handle_t *handle;
2465
2466 index = pos >> PAGE_CACHE_SHIFT;
2467 from = pos & (PAGE_CACHE_SIZE - 1);
2468 to = from + len;
2469
Mingming Caod2a17632008-07-14 17:52:37 -04002470retry:
Alex Tomas64769242008-07-11 19:27:31 -04002471 /*
2472 * With delayed allocation, we don't log the i_disksize update
2473 * if there is delayed block allocation. But we still need
2474 * to journalling the i_disksize update if writes to the end
2475 * of file which has an already mapped buffer.
2476 */
2477 handle = ext4_journal_start(inode, 1);
2478 if (IS_ERR(handle)) {
2479 ret = PTR_ERR(handle);
2480 goto out;
2481 }
2482
2483 page = __grab_cache_page(mapping, index);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002484 if (!page) {
2485 ext4_journal_stop(handle);
2486 ret = -ENOMEM;
2487 goto out;
2488 }
Alex Tomas64769242008-07-11 19:27:31 -04002489 *pagep = page;
2490
2491 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
2492 ext4_da_get_block_prep);
2493 if (ret < 0) {
2494 unlock_page(page);
2495 ext4_journal_stop(handle);
2496 page_cache_release(page);
2497 }
2498
Mingming Caod2a17632008-07-14 17:52:37 -04002499 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
2500 goto retry;
Alex Tomas64769242008-07-11 19:27:31 -04002501out:
2502 return ret;
2503}
2504
Mingming Cao632eaea2008-07-11 19:27:31 -04002505/*
2506 * Check if we should update i_disksize
2507 * when write to the end of file but not require block allocation
2508 */
2509static int ext4_da_should_update_i_disksize(struct page *page,
2510 unsigned long offset)
2511{
2512 struct buffer_head *bh;
2513 struct inode *inode = page->mapping->host;
2514 unsigned int idx;
2515 int i;
2516
2517 bh = page_buffers(page);
2518 idx = offset >> inode->i_blkbits;
2519
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002520 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002521 bh = bh->b_this_page;
2522
2523 if (!buffer_mapped(bh) || (buffer_delay(bh)))
2524 return 0;
2525 return 1;
2526}
2527
Alex Tomas64769242008-07-11 19:27:31 -04002528static int ext4_da_write_end(struct file *file,
2529 struct address_space *mapping,
2530 loff_t pos, unsigned len, unsigned copied,
2531 struct page *page, void *fsdata)
2532{
2533 struct inode *inode = mapping->host;
2534 int ret = 0, ret2;
2535 handle_t *handle = ext4_journal_current_handle();
2536 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002537 unsigned long start, end;
2538
2539 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002540 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04002541
2542 /*
2543 * generic_write_end() will run mark_inode_dirty() if i_size
2544 * changes. So let's piggyback the i_disksize mark_inode_dirty
2545 * into that.
2546 */
2547
2548 new_i_size = pos + copied;
Mingming Cao632eaea2008-07-11 19:27:31 -04002549 if (new_i_size > EXT4_I(inode)->i_disksize) {
2550 if (ext4_da_should_update_i_disksize(page, end)) {
2551 down_write(&EXT4_I(inode)->i_data_sem);
2552 if (new_i_size > EXT4_I(inode)->i_disksize) {
2553 /*
2554 * Updating i_disksize when extending file
2555 * without needing block allocation
2556 */
2557 if (ext4_should_order_data(inode))
2558 ret = ext4_jbd2_file_inode(handle,
2559 inode);
Alex Tomas64769242008-07-11 19:27:31 -04002560
Mingming Cao632eaea2008-07-11 19:27:31 -04002561 EXT4_I(inode)->i_disksize = new_i_size;
2562 }
2563 up_write(&EXT4_I(inode)->i_data_sem);
Alex Tomas64769242008-07-11 19:27:31 -04002564 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002565 }
Alex Tomas64769242008-07-11 19:27:31 -04002566 ret2 = generic_write_end(file, mapping, pos, len, copied,
2567 page, fsdata);
2568 copied = ret2;
2569 if (ret2 < 0)
2570 ret = ret2;
2571 ret2 = ext4_journal_stop(handle);
2572 if (!ret)
2573 ret = ret2;
2574
2575 return ret ? ret : copied;
2576}
2577
2578static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
2579{
Alex Tomas64769242008-07-11 19:27:31 -04002580 /*
2581 * Drop reserved blocks
2582 */
2583 BUG_ON(!PageLocked(page));
2584 if (!page_has_buffers(page))
2585 goto out;
2586
Mingming Caod2a17632008-07-14 17:52:37 -04002587 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04002588
2589out:
2590 ext4_invalidatepage(page, offset);
2591
2592 return;
2593}
2594
2595
2596/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002597 * bmap() is special. It gets used by applications such as lilo and by
2598 * the swapper to find the on-disk block of a specific piece of data.
2599 *
2600 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002601 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002602 * filesystem and enables swap, then they may get a nasty shock when the
2603 * data getting swapped to that swapfile suddenly gets overwritten by
2604 * the original zero's written out previously to the journal and
2605 * awaiting writeback in the kernel's buffer cache.
2606 *
2607 * So, if we see any bmap calls here on a modified, data-journaled file,
2608 * take extra steps to flush any blocks which might be in the cache.
2609 */
Mingming Cao617ba132006-10-11 01:20:53 -07002610static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002611{
2612 struct inode *inode = mapping->host;
2613 journal_t *journal;
2614 int err;
2615
Alex Tomas64769242008-07-11 19:27:31 -04002616 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2617 test_opt(inode->i_sb, DELALLOC)) {
2618 /*
2619 * With delalloc we want to sync the file
2620 * so that we can make sure we allocate
2621 * blocks for file
2622 */
2623 filemap_write_and_wait(mapping);
2624 }
2625
Mingming Cao617ba132006-10-11 01:20:53 -07002626 if (EXT4_I(inode)->i_state & EXT4_STATE_JDATA) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002627 /*
2628 * This is a REALLY heavyweight approach, but the use of
2629 * bmap on dirty files is expected to be extremely rare:
2630 * only if we run lilo or swapon on a freshly made file
2631 * do we expect this to happen.
2632 *
2633 * (bmap requires CAP_SYS_RAWIO so this does not
2634 * represent an unprivileged user DOS attack --- we'd be
2635 * in trouble if mortal users could trigger this path at
2636 * will.)
2637 *
Mingming Cao617ba132006-10-11 01:20:53 -07002638 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002639 * regular files. If somebody wants to bmap a directory
2640 * or symlink and gets confused because the buffer
2641 * hasn't yet been flushed to disk, they deserve
2642 * everything they get.
2643 */
2644
Mingming Cao617ba132006-10-11 01:20:53 -07002645 EXT4_I(inode)->i_state &= ~EXT4_STATE_JDATA;
2646 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002647 jbd2_journal_lock_updates(journal);
2648 err = jbd2_journal_flush(journal);
2649 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002650
2651 if (err)
2652 return 0;
2653 }
2654
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002655 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002656}
2657
2658static int bget_one(handle_t *handle, struct buffer_head *bh)
2659{
2660 get_bh(bh);
2661 return 0;
2662}
2663
2664static int bput_one(handle_t *handle, struct buffer_head *bh)
2665{
2666 put_bh(bh);
2667 return 0;
2668}
2669
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002670/*
Jan Kara678aaf42008-07-11 19:27:31 -04002671 * Note that we don't need to start a transaction unless we're journaling data
2672 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2673 * need to file the inode to the transaction's list in ordered mode because if
2674 * we are writing back data added by write(), the inode is already there and if
2675 * we are writing back data modified via mmap(), noone guarantees in which
2676 * transaction the data will hit the disk. In case we are journaling data, we
2677 * cannot start transaction directly because transaction start ranks above page
2678 * lock so we have to do some magic.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002679 *
Jan Kara678aaf42008-07-11 19:27:31 -04002680 * In all journaling modes block_write_full_page() will start the I/O.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002681 *
2682 * Problem:
2683 *
Mingming Cao617ba132006-10-11 01:20:53 -07002684 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2685 * ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002686 *
2687 * Similar for:
2688 *
Mingming Cao617ba132006-10-11 01:20:53 -07002689 * ext4_file_write() -> generic_file_write() -> __alloc_pages() -> ...
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002690 *
Mingming Cao617ba132006-10-11 01:20:53 -07002691 * Same applies to ext4_get_block(). We will deadlock on various things like
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05002692 * lock_journal and i_data_sem
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002693 *
2694 * Setting PF_MEMALLOC here doesn't work - too many internal memory
2695 * allocations fail.
2696 *
2697 * 16May01: If we're reentered then journal_current_handle() will be
2698 * non-zero. We simply *return*.
2699 *
2700 * 1 July 2001: @@@ FIXME:
2701 * In journalled data mode, a data buffer may be metadata against the
2702 * current transaction. But the same file is part of a shared mapping
2703 * and someone does a writepage() on it.
2704 *
2705 * We will move the buffer onto the async_data list, but *after* it has
2706 * been dirtied. So there's a small window where we have dirty data on
2707 * BJ_Metadata.
2708 *
2709 * Note that this only applies to the last partial page in the file. The
2710 * bit which block_write_full_page() uses prepare/commit for. (That's
2711 * broken code anyway: it's wrong for msync()).
2712 *
2713 * It's a rare case: affects the final partial page, for journalled data
2714 * where the file is subject to bith write() and writepage() in the same
2715 * transction. To fix it we'll need a custom block_write_full_page().
2716 * We'll probably need that anyway for journalling writepage() output.
2717 *
2718 * We don't honour synchronous mounts for writepage(). That would be
2719 * disastrous. Any write() or metadata operation will sync the fs for
2720 * us.
2721 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002722 */
Jan Kara678aaf42008-07-11 19:27:31 -04002723static int __ext4_normal_writepage(struct page *page,
Jan Karacf108bc2008-07-11 19:27:31 -04002724 struct writeback_control *wbc)
2725{
2726 struct inode *inode = page->mapping->host;
2727
2728 if (test_opt(inode->i_sb, NOBH))
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002729 return nobh_writepage(page,
2730 ext4_normal_get_block_write, wbc);
Jan Karacf108bc2008-07-11 19:27:31 -04002731 else
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002732 return block_write_full_page(page,
2733 ext4_normal_get_block_write,
2734 wbc);
Jan Karacf108bc2008-07-11 19:27:31 -04002735}
2736
Jan Kara678aaf42008-07-11 19:27:31 -04002737static int ext4_normal_writepage(struct page *page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002738 struct writeback_control *wbc)
2739{
2740 struct inode *inode = page->mapping->host;
Jan Karacf108bc2008-07-11 19:27:31 -04002741 loff_t size = i_size_read(inode);
2742 loff_t len;
2743
2744 J_ASSERT(PageLocked(page));
Jan Karacf108bc2008-07-11 19:27:31 -04002745 if (page->index == size >> PAGE_CACHE_SHIFT)
2746 len = size & ~PAGE_CACHE_MASK;
2747 else
2748 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002749
2750 if (page_has_buffers(page)) {
2751 /* if page has buffers it should all be mapped
2752 * and allocated. If there are not buffers attached
2753 * to the page we know the page is dirty but it lost
2754 * buffers. That means that at some moment in time
2755 * after write_begin() / write_end() has been called
2756 * all buffers have been clean and thus they must have been
2757 * written at least once. So they are all mapped and we can
2758 * happily proceed with mapping them and writing the page.
2759 */
2760 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2761 ext4_bh_unmapped_or_delay));
2762 }
Jan Karacf108bc2008-07-11 19:27:31 -04002763
2764 if (!ext4_journal_current_handle())
Jan Kara678aaf42008-07-11 19:27:31 -04002765 return __ext4_normal_writepage(page, wbc);
Jan Karacf108bc2008-07-11 19:27:31 -04002766
2767 redirty_page_for_writepage(wbc, page);
2768 unlock_page(page);
2769 return 0;
2770}
2771
2772static int __ext4_journalled_writepage(struct page *page,
2773 struct writeback_control *wbc)
2774{
2775 struct address_space *mapping = page->mapping;
2776 struct inode *inode = mapping->host;
2777 struct buffer_head *page_bufs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002778 handle_t *handle = NULL;
2779 int ret = 0;
2780 int err;
2781
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002782 ret = block_prepare_write(page, 0, PAGE_CACHE_SIZE,
2783 ext4_normal_get_block_write);
Jan Karacf108bc2008-07-11 19:27:31 -04002784 if (ret != 0)
2785 goto out_unlock;
2786
2787 page_bufs = page_buffers(page);
2788 walk_page_buffers(handle, page_bufs, 0, PAGE_CACHE_SIZE, NULL,
2789 bget_one);
2790 /* As soon as we unlock the page, it can go away, but we have
2791 * references to buffers so we are safe */
2792 unlock_page(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002793
Mingming Cao617ba132006-10-11 01:20:53 -07002794 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002795 if (IS_ERR(handle)) {
2796 ret = PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04002797 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002798 }
2799
Jan Karacf108bc2008-07-11 19:27:31 -04002800 ret = walk_page_buffers(handle, page_bufs, 0,
2801 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002802
Jan Karacf108bc2008-07-11 19:27:31 -04002803 err = walk_page_buffers(handle, page_bufs, 0,
2804 PAGE_CACHE_SIZE, NULL, write_end_fn);
2805 if (ret == 0)
2806 ret = err;
Mingming Cao617ba132006-10-11 01:20:53 -07002807 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002808 if (!ret)
2809 ret = err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002810
Jan Karacf108bc2008-07-11 19:27:31 -04002811 walk_page_buffers(handle, page_bufs, 0,
2812 PAGE_CACHE_SIZE, NULL, bput_one);
2813 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
2814 goto out;
2815
2816out_unlock:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002817 unlock_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04002818out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002819 return ret;
2820}
2821
Mingming Cao617ba132006-10-11 01:20:53 -07002822static int ext4_journalled_writepage(struct page *page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002823 struct writeback_control *wbc)
2824{
2825 struct inode *inode = page->mapping->host;
Jan Karacf108bc2008-07-11 19:27:31 -04002826 loff_t size = i_size_read(inode);
2827 loff_t len;
2828
2829 J_ASSERT(PageLocked(page));
Jan Karacf108bc2008-07-11 19:27:31 -04002830 if (page->index == size >> PAGE_CACHE_SHIFT)
2831 len = size & ~PAGE_CACHE_MASK;
2832 else
2833 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002834
2835 if (page_has_buffers(page)) {
2836 /* if page has buffers it should all be mapped
2837 * and allocated. If there are not buffers attached
2838 * to the page we know the page is dirty but it lost
2839 * buffers. That means that at some moment in time
2840 * after write_begin() / write_end() has been called
2841 * all buffers have been clean and thus they must have been
2842 * written at least once. So they are all mapped and we can
2843 * happily proceed with mapping them and writing the page.
2844 */
2845 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2846 ext4_bh_unmapped_or_delay));
2847 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002848
Mingming Cao617ba132006-10-11 01:20:53 -07002849 if (ext4_journal_current_handle())
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002850 goto no_write;
2851
Jan Karacf108bc2008-07-11 19:27:31 -04002852 if (PageChecked(page)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002853 /*
2854 * It's mmapped pagecache. Add buffers and journal it. There
2855 * doesn't seem much point in redirtying the page here.
2856 */
2857 ClearPageChecked(page);
Jan Karacf108bc2008-07-11 19:27:31 -04002858 return __ext4_journalled_writepage(page, wbc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002859 } else {
2860 /*
2861 * It may be a page full of checkpoint-mode buffers. We don't
2862 * really know unless we go poke around in the buffer_heads.
2863 * But block_write_full_page will do the right thing.
2864 */
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002865 return block_write_full_page(page,
2866 ext4_normal_get_block_write,
2867 wbc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002868 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002869no_write:
2870 redirty_page_for_writepage(wbc, page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002871 unlock_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04002872 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002873}
2874
Mingming Cao617ba132006-10-11 01:20:53 -07002875static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002876{
Mingming Cao617ba132006-10-11 01:20:53 -07002877 return mpage_readpage(page, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002878}
2879
2880static int
Mingming Cao617ba132006-10-11 01:20:53 -07002881ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002882 struct list_head *pages, unsigned nr_pages)
2883{
Mingming Cao617ba132006-10-11 01:20:53 -07002884 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002885}
2886
Mingming Cao617ba132006-10-11 01:20:53 -07002887static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002888{
Mingming Cao617ba132006-10-11 01:20:53 -07002889 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002890
2891 /*
2892 * If it's a full truncate we just forget about the pending dirtying
2893 */
2894 if (offset == 0)
2895 ClearPageChecked(page);
2896
Mingming Caodab291a2006-10-11 01:21:01 -07002897 jbd2_journal_invalidatepage(journal, page, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002898}
2899
Mingming Cao617ba132006-10-11 01:20:53 -07002900static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002901{
Mingming Cao617ba132006-10-11 01:20:53 -07002902 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002903
2904 WARN_ON(PageChecked(page));
2905 if (!page_has_buffers(page))
2906 return 0;
Mingming Caodab291a2006-10-11 01:21:01 -07002907 return jbd2_journal_try_to_free_buffers(journal, page, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002908}
2909
2910/*
2911 * If the O_DIRECT write will extend the file then add this inode to the
2912 * orphan list. So recovery will truncate it back to the original size
2913 * if the machine crashes during the write.
2914 *
2915 * If the O_DIRECT write is intantiating holes inside i_size and the machine
Jan Kara7fb54092008-02-10 01:08:38 -05002916 * crashes then stale disk data _may_ be exposed inside the file. But current
2917 * VFS code falls back into buffered path in that case so we are safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002918 */
Mingming Cao617ba132006-10-11 01:20:53 -07002919static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002920 const struct iovec *iov, loff_t offset,
2921 unsigned long nr_segs)
2922{
2923 struct file *file = iocb->ki_filp;
2924 struct inode *inode = file->f_mapping->host;
Mingming Cao617ba132006-10-11 01:20:53 -07002925 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Kara7fb54092008-02-10 01:08:38 -05002926 handle_t *handle;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002927 ssize_t ret;
2928 int orphan = 0;
2929 size_t count = iov_length(iov, nr_segs);
2930
2931 if (rw == WRITE) {
2932 loff_t final_size = offset + count;
2933
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002934 if (final_size > inode->i_size) {
Jan Kara7fb54092008-02-10 01:08:38 -05002935 /* Credits for sb + inode write */
2936 handle = ext4_journal_start(inode, 2);
2937 if (IS_ERR(handle)) {
2938 ret = PTR_ERR(handle);
2939 goto out;
2940 }
Mingming Cao617ba132006-10-11 01:20:53 -07002941 ret = ext4_orphan_add(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05002942 if (ret) {
2943 ext4_journal_stop(handle);
2944 goto out;
2945 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002946 orphan = 1;
2947 ei->i_disksize = inode->i_size;
Jan Kara7fb54092008-02-10 01:08:38 -05002948 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002949 }
2950 }
2951
2952 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2953 offset, nr_segs,
Mingming Cao617ba132006-10-11 01:20:53 -07002954 ext4_get_block, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002955
Jan Kara7fb54092008-02-10 01:08:38 -05002956 if (orphan) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002957 int err;
2958
Jan Kara7fb54092008-02-10 01:08:38 -05002959 /* Credits for sb + inode write */
2960 handle = ext4_journal_start(inode, 2);
2961 if (IS_ERR(handle)) {
2962 /* This is really bad luck. We've written the data
2963 * but cannot extend i_size. Bail out and pretend
2964 * the write failed... */
2965 ret = PTR_ERR(handle);
2966 goto out;
2967 }
2968 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002969 ext4_orphan_del(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05002970 if (ret > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002971 loff_t end = offset + ret;
2972 if (end > inode->i_size) {
2973 ei->i_disksize = end;
2974 i_size_write(inode, end);
2975 /*
2976 * We're going to return a positive `ret'
2977 * here due to non-zero-length I/O, so there's
2978 * no way of reporting error returns from
Mingming Cao617ba132006-10-11 01:20:53 -07002979 * ext4_mark_inode_dirty() to userspace. So
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002980 * ignore it.
2981 */
Mingming Cao617ba132006-10-11 01:20:53 -07002982 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002983 }
2984 }
Mingming Cao617ba132006-10-11 01:20:53 -07002985 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002986 if (ret == 0)
2987 ret = err;
2988 }
2989out:
2990 return ret;
2991}
2992
2993/*
Mingming Cao617ba132006-10-11 01:20:53 -07002994 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002995 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
2996 * much here because ->set_page_dirty is called under VFS locks. The page is
2997 * not necessarily locked.
2998 *
2999 * We cannot just dirty the page and leave attached buffers clean, because the
3000 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3001 * or jbddirty because all the journalling code will explode.
3002 *
3003 * So what we do is to mark the page "pending dirty" and next time writepage
3004 * is called, propagate that into the buffers appropriately.
3005 */
Mingming Cao617ba132006-10-11 01:20:53 -07003006static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003007{
3008 SetPageChecked(page);
3009 return __set_page_dirty_nobuffers(page);
3010}
3011
Mingming Cao617ba132006-10-11 01:20:53 -07003012static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003013 .readpage = ext4_readpage,
3014 .readpages = ext4_readpages,
3015 .writepage = ext4_normal_writepage,
3016 .sync_page = block_sync_page,
3017 .write_begin = ext4_write_begin,
3018 .write_end = ext4_ordered_write_end,
3019 .bmap = ext4_bmap,
3020 .invalidatepage = ext4_invalidatepage,
3021 .releasepage = ext4_releasepage,
3022 .direct_IO = ext4_direct_IO,
3023 .migratepage = buffer_migrate_page,
3024 .is_partially_uptodate = block_is_partially_uptodate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003025};
3026
Mingming Cao617ba132006-10-11 01:20:53 -07003027static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003028 .readpage = ext4_readpage,
3029 .readpages = ext4_readpages,
3030 .writepage = ext4_normal_writepage,
3031 .sync_page = block_sync_page,
3032 .write_begin = ext4_write_begin,
3033 .write_end = ext4_writeback_write_end,
3034 .bmap = ext4_bmap,
3035 .invalidatepage = ext4_invalidatepage,
3036 .releasepage = ext4_releasepage,
3037 .direct_IO = ext4_direct_IO,
3038 .migratepage = buffer_migrate_page,
3039 .is_partially_uptodate = block_is_partially_uptodate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003040};
3041
Mingming Cao617ba132006-10-11 01:20:53 -07003042static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003043 .readpage = ext4_readpage,
3044 .readpages = ext4_readpages,
3045 .writepage = ext4_journalled_writepage,
3046 .sync_page = block_sync_page,
3047 .write_begin = ext4_write_begin,
3048 .write_end = ext4_journalled_write_end,
3049 .set_page_dirty = ext4_journalled_set_page_dirty,
3050 .bmap = ext4_bmap,
3051 .invalidatepage = ext4_invalidatepage,
3052 .releasepage = ext4_releasepage,
3053 .is_partially_uptodate = block_is_partially_uptodate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003054};
3055
Alex Tomas64769242008-07-11 19:27:31 -04003056static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003057 .readpage = ext4_readpage,
3058 .readpages = ext4_readpages,
3059 .writepage = ext4_da_writepage,
3060 .writepages = ext4_da_writepages,
3061 .sync_page = block_sync_page,
3062 .write_begin = ext4_da_write_begin,
3063 .write_end = ext4_da_write_end,
3064 .bmap = ext4_bmap,
3065 .invalidatepage = ext4_da_invalidatepage,
3066 .releasepage = ext4_releasepage,
3067 .direct_IO = ext4_direct_IO,
3068 .migratepage = buffer_migrate_page,
3069 .is_partially_uptodate = block_is_partially_uptodate,
Alex Tomas64769242008-07-11 19:27:31 -04003070};
3071
Mingming Cao617ba132006-10-11 01:20:53 -07003072void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003073{
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04003074 if (ext4_should_order_data(inode) &&
3075 test_opt(inode->i_sb, DELALLOC))
3076 inode->i_mapping->a_ops = &ext4_da_aops;
3077 else if (ext4_should_order_data(inode))
Mingming Cao617ba132006-10-11 01:20:53 -07003078 inode->i_mapping->a_ops = &ext4_ordered_aops;
Alex Tomas64769242008-07-11 19:27:31 -04003079 else if (ext4_should_writeback_data(inode) &&
3080 test_opt(inode->i_sb, DELALLOC))
3081 inode->i_mapping->a_ops = &ext4_da_aops;
Mingming Cao617ba132006-10-11 01:20:53 -07003082 else if (ext4_should_writeback_data(inode))
3083 inode->i_mapping->a_ops = &ext4_writeback_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003084 else
Mingming Cao617ba132006-10-11 01:20:53 -07003085 inode->i_mapping->a_ops = &ext4_journalled_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003086}
3087
3088/*
Mingming Cao617ba132006-10-11 01:20:53 -07003089 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003090 * up to the end of the block which corresponds to `from'.
3091 * This required during truncate. We need to physically zero the tail end
3092 * of that block so it doesn't yield old data if the file is later grown.
3093 */
Jan Karacf108bc2008-07-11 19:27:31 -04003094int ext4_block_truncate_page(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003095 struct address_space *mapping, loff_t from)
3096{
Mingming Cao617ba132006-10-11 01:20:53 -07003097 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003098 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003099 unsigned blocksize, length, pos;
3100 ext4_lblk_t iblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003101 struct inode *inode = mapping->host;
3102 struct buffer_head *bh;
Jan Karacf108bc2008-07-11 19:27:31 -04003103 struct page *page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003104 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003105
Jan Karacf108bc2008-07-11 19:27:31 -04003106 page = grab_cache_page(mapping, from >> PAGE_CACHE_SHIFT);
3107 if (!page)
3108 return -EINVAL;
3109
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003110 blocksize = inode->i_sb->s_blocksize;
3111 length = blocksize - (offset & (blocksize - 1));
3112 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3113
3114 /*
3115 * For "nobh" option, we can only work if we don't need to
3116 * read-in the page - otherwise we create buffers to do the IO.
3117 */
3118 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
Mingming Cao617ba132006-10-11 01:20:53 -07003119 ext4_should_writeback_data(inode) && PageUptodate(page)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003120 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003121 set_page_dirty(page);
3122 goto unlock;
3123 }
3124
3125 if (!page_has_buffers(page))
3126 create_empty_buffers(page, blocksize, 0);
3127
3128 /* Find the buffer that contains "offset" */
3129 bh = page_buffers(page);
3130 pos = blocksize;
3131 while (offset >= pos) {
3132 bh = bh->b_this_page;
3133 iblock++;
3134 pos += blocksize;
3135 }
3136
3137 err = 0;
3138 if (buffer_freed(bh)) {
3139 BUFFER_TRACE(bh, "freed: skip");
3140 goto unlock;
3141 }
3142
3143 if (!buffer_mapped(bh)) {
3144 BUFFER_TRACE(bh, "unmapped");
Mingming Cao617ba132006-10-11 01:20:53 -07003145 ext4_get_block(inode, iblock, bh, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003146 /* unmapped? It's a hole - nothing to do */
3147 if (!buffer_mapped(bh)) {
3148 BUFFER_TRACE(bh, "still unmapped");
3149 goto unlock;
3150 }
3151 }
3152
3153 /* Ok, it's mapped. Make sure it's up-to-date */
3154 if (PageUptodate(page))
3155 set_buffer_uptodate(bh);
3156
3157 if (!buffer_uptodate(bh)) {
3158 err = -EIO;
3159 ll_rw_block(READ, 1, &bh);
3160 wait_on_buffer(bh);
3161 /* Uhhuh. Read error. Complain and punt. */
3162 if (!buffer_uptodate(bh))
3163 goto unlock;
3164 }
3165
Mingming Cao617ba132006-10-11 01:20:53 -07003166 if (ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167 BUFFER_TRACE(bh, "get write access");
Mingming Cao617ba132006-10-11 01:20:53 -07003168 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003169 if (err)
3170 goto unlock;
3171 }
3172
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003173 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003174
3175 BUFFER_TRACE(bh, "zeroed end of block");
3176
3177 err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003178 if (ext4_should_journal_data(inode)) {
3179 err = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003180 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003181 if (ext4_should_order_data(inode))
Jan Kara678aaf42008-07-11 19:27:31 -04003182 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003183 mark_buffer_dirty(bh);
3184 }
3185
3186unlock:
3187 unlock_page(page);
3188 page_cache_release(page);
3189 return err;
3190}
3191
3192/*
3193 * Probably it should be a library function... search for first non-zero word
3194 * or memcmp with zero_page, whatever is better for particular architecture.
3195 * Linus?
3196 */
3197static inline int all_zeroes(__le32 *p, __le32 *q)
3198{
3199 while (p < q)
3200 if (*p++)
3201 return 0;
3202 return 1;
3203}
3204
3205/**
Mingming Cao617ba132006-10-11 01:20:53 -07003206 * ext4_find_shared - find the indirect blocks for partial truncation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003207 * @inode: inode in question
3208 * @depth: depth of the affected branch
Mingming Cao617ba132006-10-11 01:20:53 -07003209 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003210 * @chain: place to store the pointers to partial indirect blocks
3211 * @top: place to the (detached) top of branch
3212 *
Mingming Cao617ba132006-10-11 01:20:53 -07003213 * This is a helper function used by ext4_truncate().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003214 *
3215 * When we do truncate() we may have to clean the ends of several
3216 * indirect blocks but leave the blocks themselves alive. Block is
3217 * partially truncated if some data below the new i_size is refered
3218 * from it (and it is on the path to the first completely truncated
3219 * data block, indeed). We have to free the top of that path along
3220 * with everything to the right of the path. Since no allocation
Mingming Cao617ba132006-10-11 01:20:53 -07003221 * past the truncation point is possible until ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003222 * finishes, we may safely do the latter, but top of branch may
3223 * require special attention - pageout below the truncation point
3224 * might try to populate it.
3225 *
3226 * We atomically detach the top of branch from the tree, store the
3227 * block number of its root in *@top, pointers to buffer_heads of
3228 * partially truncated blocks - in @chain[].bh and pointers to
3229 * their last elements that should not be removed - in
3230 * @chain[].p. Return value is the pointer to last filled element
3231 * of @chain.
3232 *
3233 * The work left to caller to do the actual freeing of subtrees:
3234 * a) free the subtree starting from *@top
3235 * b) free the subtrees whose roots are stored in
3236 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
3237 * c) free the subtrees growing from the inode past the @chain[0].
3238 * (no partially truncated stuff there). */
3239
Mingming Cao617ba132006-10-11 01:20:53 -07003240static Indirect *ext4_find_shared(struct inode *inode, int depth,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003241 ext4_lblk_t offsets[4], Indirect chain[4], __le32 *top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003242{
3243 Indirect *partial, *p;
3244 int k, err;
3245
3246 *top = 0;
3247 /* Make k index the deepest non-null offest + 1 */
3248 for (k = depth; k > 1 && !offsets[k-1]; k--)
3249 ;
Mingming Cao617ba132006-10-11 01:20:53 -07003250 partial = ext4_get_branch(inode, k, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251 /* Writer: pointers */
3252 if (!partial)
3253 partial = chain + k-1;
3254 /*
3255 * If the branch acquired continuation since we've looked at it -
3256 * fine, it should all survive and (new) top doesn't belong to us.
3257 */
3258 if (!partial->key && *partial->p)
3259 /* Writer: end */
3260 goto no_top;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003261 for (p = partial; (p > chain) && all_zeroes((__le32 *) p->bh->b_data, p->p); p--)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003262 ;
3263 /*
3264 * OK, we've found the last block that must survive. The rest of our
3265 * branch should be detached before unlocking. However, if that rest
3266 * of branch is all ours and does not grow immediately from the inode
3267 * it's easier to cheat and just decrement partial->p.
3268 */
3269 if (p == chain + k - 1 && p > chain) {
3270 p->p--;
3271 } else {
3272 *top = *p->p;
Mingming Cao617ba132006-10-11 01:20:53 -07003273 /* Nope, don't do this in ext4. Must leave the tree intact */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003274#if 0
3275 *p->p = 0;
3276#endif
3277 }
3278 /* Writer: end */
3279
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003280 while (partial > p) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003281 brelse(partial->bh);
3282 partial--;
3283 }
3284no_top:
3285 return partial;
3286}
3287
3288/*
3289 * Zero a number of block pointers in either an inode or an indirect block.
3290 * If we restart the transaction we must again get write access to the
3291 * indirect block for further modification.
3292 *
3293 * We release `count' blocks on disk, but (last - first) may be greater
3294 * than `count' because there can be holes in there.
3295 */
Mingming Cao617ba132006-10-11 01:20:53 -07003296static void ext4_clear_blocks(handle_t *handle, struct inode *inode,
3297 struct buffer_head *bh, ext4_fsblk_t block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003298 unsigned long count, __le32 *first, __le32 *last)
3299{
3300 __le32 *p;
3301 if (try_to_extend_transaction(handle, inode)) {
3302 if (bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07003303 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
3304 ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003305 }
Mingming Cao617ba132006-10-11 01:20:53 -07003306 ext4_mark_inode_dirty(handle, inode);
3307 ext4_journal_test_restart(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 if (bh) {
3309 BUFFER_TRACE(bh, "retaking write access");
Mingming Cao617ba132006-10-11 01:20:53 -07003310 ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003311 }
3312 }
3313
3314 /*
3315 * Any buffers which are on the journal will be in memory. We find
Mingming Caodab291a2006-10-11 01:21:01 -07003316 * them on the hash table so jbd2_journal_revoke() will run jbd2_journal_forget()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003317 * on them. We've already detached each block from the file, so
Mingming Caodab291a2006-10-11 01:21:01 -07003318 * bforget() in jbd2_journal_forget() should be safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003319 *
Mingming Caodab291a2006-10-11 01:21:01 -07003320 * AKPM: turn on bforget in jbd2_journal_forget()!!!
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003321 */
3322 for (p = first; p < last; p++) {
3323 u32 nr = le32_to_cpu(*p);
3324 if (nr) {
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003325 struct buffer_head *tbh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003326
3327 *p = 0;
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003328 tbh = sb_find_get_block(inode->i_sb, nr);
3329 ext4_forget(handle, 0, inode, tbh, nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003330 }
3331 }
3332
Alex Tomasc9de5602008-01-29 00:19:52 -05003333 ext4_free_blocks(handle, inode, block_to_free, count, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334}
3335
3336/**
Mingming Cao617ba132006-10-11 01:20:53 -07003337 * ext4_free_data - free a list of data blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003338 * @handle: handle for this transaction
3339 * @inode: inode we are dealing with
3340 * @this_bh: indirect buffer_head which contains *@first and *@last
3341 * @first: array of block numbers
3342 * @last: points immediately past the end of array
3343 *
3344 * We are freeing all blocks refered from that array (numbers are stored as
3345 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
3346 *
3347 * We accumulate contiguous runs of blocks to free. Conveniently, if these
3348 * blocks are contiguous then releasing them at one time will only affect one
3349 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
3350 * actually use a lot of journal space.
3351 *
3352 * @this_bh will be %NULL if @first and @last point into the inode's direct
3353 * block pointers.
3354 */
Mingming Cao617ba132006-10-11 01:20:53 -07003355static void ext4_free_data(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003356 struct buffer_head *this_bh,
3357 __le32 *first, __le32 *last)
3358{
Mingming Cao617ba132006-10-11 01:20:53 -07003359 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003360 unsigned long count = 0; /* Number of blocks in the run */
3361 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
3362 corresponding to
3363 block_to_free */
Mingming Cao617ba132006-10-11 01:20:53 -07003364 ext4_fsblk_t nr; /* Current block # */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003365 __le32 *p; /* Pointer into inode/ind
3366 for current block */
3367 int err;
3368
3369 if (this_bh) { /* For indirect block */
3370 BUFFER_TRACE(this_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07003371 err = ext4_journal_get_write_access(handle, this_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003372 /* Important: if we can't update the indirect pointers
3373 * to the blocks, we can't free them. */
3374 if (err)
3375 return;
3376 }
3377
3378 for (p = first; p < last; p++) {
3379 nr = le32_to_cpu(*p);
3380 if (nr) {
3381 /* accumulate blocks to free if they're contiguous */
3382 if (count == 0) {
3383 block_to_free = nr;
3384 block_to_free_p = p;
3385 count = 1;
3386 } else if (nr == block_to_free + count) {
3387 count++;
3388 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003389 ext4_clear_blocks(handle, inode, this_bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003390 block_to_free,
3391 count, block_to_free_p, p);
3392 block_to_free = nr;
3393 block_to_free_p = p;
3394 count = 1;
3395 }
3396 }
3397 }
3398
3399 if (count > 0)
Mingming Cao617ba132006-10-11 01:20:53 -07003400 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003401 count, block_to_free_p, p);
3402
3403 if (this_bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07003404 BUFFER_TRACE(this_bh, "call ext4_journal_dirty_metadata");
Duane Griffin71dc8fb2008-07-11 19:27:31 -04003405
3406 /*
3407 * The buffer head should have an attached journal head at this
3408 * point. However, if the data is corrupted and an indirect
3409 * block pointed to itself, it would have been detached when
3410 * the block was cleared. Check for this instead of OOPSing.
3411 */
3412 if (bh2jh(this_bh))
3413 ext4_journal_dirty_metadata(handle, this_bh);
3414 else
3415 ext4_error(inode->i_sb, __func__,
3416 "circular indirect block detected, "
3417 "inode=%lu, block=%llu",
3418 inode->i_ino,
3419 (unsigned long long) this_bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003420 }
3421}
3422
3423/**
Mingming Cao617ba132006-10-11 01:20:53 -07003424 * ext4_free_branches - free an array of branches
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003425 * @handle: JBD handle for this transaction
3426 * @inode: inode we are dealing with
3427 * @parent_bh: the buffer_head which contains *@first and *@last
3428 * @first: array of block numbers
3429 * @last: pointer immediately past the end of array
3430 * @depth: depth of the branches to free
3431 *
3432 * We are freeing all blocks refered from these branches (numbers are
3433 * stored as little-endian 32-bit) and updating @inode->i_blocks
3434 * appropriately.
3435 */
Mingming Cao617ba132006-10-11 01:20:53 -07003436static void ext4_free_branches(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003437 struct buffer_head *parent_bh,
3438 __le32 *first, __le32 *last, int depth)
3439{
Mingming Cao617ba132006-10-11 01:20:53 -07003440 ext4_fsblk_t nr;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003441 __le32 *p;
3442
3443 if (is_handle_aborted(handle))
3444 return;
3445
3446 if (depth--) {
3447 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07003448 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003449 p = last;
3450 while (--p >= first) {
3451 nr = le32_to_cpu(*p);
3452 if (!nr)
3453 continue; /* A hole */
3454
3455 /* Go read the buffer for the next level down */
3456 bh = sb_bread(inode->i_sb, nr);
3457
3458 /*
3459 * A read failure? Report error and clear slot
3460 * (should be rare).
3461 */
3462 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07003463 ext4_error(inode->i_sb, "ext4_free_branches",
Mingming Cao2ae02102006-10-11 01:21:11 -07003464 "Read failure, inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003465 inode->i_ino, nr);
3466 continue;
3467 }
3468
3469 /* This zaps the entire block. Bottom up. */
3470 BUFFER_TRACE(bh, "free child branches");
Mingming Cao617ba132006-10-11 01:20:53 -07003471 ext4_free_branches(handle, inode, bh,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003472 (__le32 *) bh->b_data,
3473 (__le32 *) bh->b_data + addr_per_block,
3474 depth);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003475
3476 /*
3477 * We've probably journalled the indirect block several
3478 * times during the truncate. But it's no longer
3479 * needed and we now drop it from the transaction via
Mingming Caodab291a2006-10-11 01:21:01 -07003480 * jbd2_journal_revoke().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003481 *
3482 * That's easy if it's exclusively part of this
3483 * transaction. But if it's part of the committing
Mingming Caodab291a2006-10-11 01:21:01 -07003484 * transaction then jbd2_journal_forget() will simply
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003485 * brelse() it. That means that if the underlying
Mingming Cao617ba132006-10-11 01:20:53 -07003486 * block is reallocated in ext4_get_block(),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003487 * unmap_underlying_metadata() will find this block
3488 * and will try to get rid of it. damn, damn.
3489 *
3490 * If this block has already been committed to the
3491 * journal, a revoke record will be written. And
3492 * revoke records must be emitted *before* clearing
3493 * this block's bit in the bitmaps.
3494 */
Mingming Cao617ba132006-10-11 01:20:53 -07003495 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003496
3497 /*
3498 * Everything below this this pointer has been
3499 * released. Now let this top-of-subtree go.
3500 *
3501 * We want the freeing of this indirect block to be
3502 * atomic in the journal with the updating of the
3503 * bitmap block which owns it. So make some room in
3504 * the journal.
3505 *
3506 * We zero the parent pointer *after* freeing its
3507 * pointee in the bitmaps, so if extend_transaction()
3508 * for some reason fails to put the bitmap changes and
3509 * the release into the same transaction, recovery
3510 * will merely complain about releasing a free block,
3511 * rather than leaking blocks.
3512 */
3513 if (is_handle_aborted(handle))
3514 return;
3515 if (try_to_extend_transaction(handle, inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003516 ext4_mark_inode_dirty(handle, inode);
3517 ext4_journal_test_restart(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003518 }
3519
Alex Tomasc9de5602008-01-29 00:19:52 -05003520 ext4_free_blocks(handle, inode, nr, 1, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003521
3522 if (parent_bh) {
3523 /*
3524 * The block which we have just freed is
3525 * pointed to by an indirect block: journal it
3526 */
3527 BUFFER_TRACE(parent_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07003528 if (!ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003529 parent_bh)){
3530 *p = 0;
3531 BUFFER_TRACE(parent_bh,
Mingming Cao617ba132006-10-11 01:20:53 -07003532 "call ext4_journal_dirty_metadata");
3533 ext4_journal_dirty_metadata(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003534 parent_bh);
3535 }
3536 }
3537 }
3538 } else {
3539 /* We have reached the bottom of the tree. */
3540 BUFFER_TRACE(parent_bh, "free data blocks");
Mingming Cao617ba132006-10-11 01:20:53 -07003541 ext4_free_data(handle, inode, parent_bh, first, last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003542 }
3543}
3544
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003545int ext4_can_truncate(struct inode *inode)
3546{
3547 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3548 return 0;
3549 if (S_ISREG(inode->i_mode))
3550 return 1;
3551 if (S_ISDIR(inode->i_mode))
3552 return 1;
3553 if (S_ISLNK(inode->i_mode))
3554 return !ext4_inode_is_fast_symlink(inode);
3555 return 0;
3556}
3557
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003558/*
Mingming Cao617ba132006-10-11 01:20:53 -07003559 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003560 *
Mingming Cao617ba132006-10-11 01:20:53 -07003561 * We block out ext4_get_block() block instantiations across the entire
3562 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003563 * simultaneously on behalf of the same inode.
3564 *
3565 * As we work through the truncate and commmit bits of it to the journal there
3566 * is one core, guiding principle: the file's tree must always be consistent on
3567 * disk. We must be able to restart the truncate after a crash.
3568 *
3569 * The file's tree may be transiently inconsistent in memory (although it
3570 * probably isn't), but whenever we close off and commit a journal transaction,
3571 * the contents of (the filesystem + the journal) must be consistent and
3572 * restartable. It's pretty simple, really: bottom up, right to left (although
3573 * left-to-right works OK too).
3574 *
3575 * Note that at recovery time, journal replay occurs *before* the restart of
3576 * truncate against the orphan inode list.
3577 *
3578 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003579 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003580 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003581 * ext4_truncate() to have another go. So there will be instantiated blocks
3582 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003583 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003584 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003585 */
Mingming Cao617ba132006-10-11 01:20:53 -07003586void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003587{
3588 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -07003589 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003590 __le32 *i_data = ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07003591 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003592 struct address_space *mapping = inode->i_mapping;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003593 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003594 Indirect chain[4];
3595 Indirect *partial;
3596 __le32 nr = 0;
3597 int n;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003598 ext4_lblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003599 unsigned blocksize = inode->i_sb->s_blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003600
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003601 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003602 return;
3603
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003604 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
Jan Karacf108bc2008-07-11 19:27:31 -04003605 ext4_ext_truncate(inode);
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003606 return;
3607 }
Alex Tomasa86c6182006-10-11 01:21:03 -07003608
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003609 handle = start_transaction(inode);
Jan Karacf108bc2008-07-11 19:27:31 -04003610 if (IS_ERR(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003611 return; /* AKPM: return what? */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003612
3613 last_block = (inode->i_size + blocksize-1)
Mingming Cao617ba132006-10-11 01:20:53 -07003614 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003615
Jan Karacf108bc2008-07-11 19:27:31 -04003616 if (inode->i_size & (blocksize - 1))
3617 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
3618 goto out_stop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003619
Mingming Cao617ba132006-10-11 01:20:53 -07003620 n = ext4_block_to_path(inode, last_block, offsets, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003621 if (n == 0)
3622 goto out_stop; /* error */
3623
3624 /*
3625 * OK. This truncate is going to happen. We add the inode to the
3626 * orphan list, so that if this truncate spans multiple transactions,
3627 * and we crash, we will resume the truncate when the filesystem
3628 * recovers. It also marks the inode dirty, to catch the new size.
3629 *
3630 * Implication: the file must always be in a sane, consistent
3631 * truncatable state while each transaction commits.
3632 */
Mingming Cao617ba132006-10-11 01:20:53 -07003633 if (ext4_orphan_add(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003634 goto out_stop;
3635
3636 /*
Mingming Cao632eaea2008-07-11 19:27:31 -04003637 * From here we block out all ext4_get_block() callers who want to
3638 * modify the block allocation tree.
3639 */
3640 down_write(&ei->i_data_sem);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04003641
3642 ext4_discard_reservation(inode);
3643
Mingming Cao632eaea2008-07-11 19:27:31 -04003644 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003645 * The orphan list entry will now protect us from any crash which
3646 * occurs before the truncate completes, so it is now safe to propagate
3647 * the new, shorter inode size (held for now in i_size) into the
3648 * on-disk inode. We do this via i_disksize, which is the value which
Mingming Cao617ba132006-10-11 01:20:53 -07003649 * ext4 *really* writes onto the disk inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003650 */
3651 ei->i_disksize = inode->i_size;
3652
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003653 if (n == 1) { /* direct blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003654 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
3655 i_data + EXT4_NDIR_BLOCKS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003656 goto do_indirects;
3657 }
3658
Mingming Cao617ba132006-10-11 01:20:53 -07003659 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003660 /* Kill the top of shared branch (not detached) */
3661 if (nr) {
3662 if (partial == chain) {
3663 /* Shared branch grows from the inode */
Mingming Cao617ba132006-10-11 01:20:53 -07003664 ext4_free_branches(handle, inode, NULL,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003665 &nr, &nr+1, (chain+n-1) - partial);
3666 *partial->p = 0;
3667 /*
3668 * We mark the inode dirty prior to restart,
3669 * and prior to stop. No need for it here.
3670 */
3671 } else {
3672 /* Shared branch grows from an indirect block */
3673 BUFFER_TRACE(partial->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07003674 ext4_free_branches(handle, inode, partial->bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003675 partial->p,
3676 partial->p+1, (chain+n-1) - partial);
3677 }
3678 }
3679 /* Clear the ends of indirect blocks on the shared branch */
3680 while (partial > chain) {
Mingming Cao617ba132006-10-11 01:20:53 -07003681 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003682 (__le32*)partial->bh->b_data+addr_per_block,
3683 (chain+n-1) - partial);
3684 BUFFER_TRACE(partial->bh, "call brelse");
3685 brelse (partial->bh);
3686 partial--;
3687 }
3688do_indirects:
3689 /* Kill the remaining (whole) subtrees */
3690 switch (offsets[0]) {
3691 default:
Mingming Cao617ba132006-10-11 01:20:53 -07003692 nr = i_data[EXT4_IND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003693 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07003694 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
3695 i_data[EXT4_IND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003696 }
Mingming Cao617ba132006-10-11 01:20:53 -07003697 case EXT4_IND_BLOCK:
3698 nr = i_data[EXT4_DIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003699 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07003700 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
3701 i_data[EXT4_DIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003702 }
Mingming Cao617ba132006-10-11 01:20:53 -07003703 case EXT4_DIND_BLOCK:
3704 nr = i_data[EXT4_TIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003705 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07003706 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
3707 i_data[EXT4_TIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003708 }
Mingming Cao617ba132006-10-11 01:20:53 -07003709 case EXT4_TIND_BLOCK:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710 ;
3711 }
3712
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05003713 up_write(&ei->i_data_sem);
Kalpak Shahef7f3832007-07-18 09:15:20 -04003714 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07003715 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003716
3717 /*
3718 * In a multi-transaction truncate, we only make the final transaction
3719 * synchronous
3720 */
3721 if (IS_SYNC(inode))
3722 handle->h_sync = 1;
3723out_stop:
3724 /*
3725 * If this was a simple ftruncate(), and the file will remain alive
3726 * then we need to clear up the orphan record which we created above.
3727 * However, if this was a real unlink then we were called by
Mingming Cao617ba132006-10-11 01:20:53 -07003728 * ext4_delete_inode(), and we allow that function to clean up the
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003729 * orphan info for us.
3730 */
3731 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07003732 ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003733
Mingming Cao617ba132006-10-11 01:20:53 -07003734 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003735}
3736
Mingming Cao617ba132006-10-11 01:20:53 -07003737static ext4_fsblk_t ext4_get_inode_block(struct super_block *sb,
3738 unsigned long ino, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003739{
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003740 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003741 unsigned long offset;
Mingming Cao617ba132006-10-11 01:20:53 -07003742 ext4_fsblk_t block;
Akinobu Mitac0a4ef32008-04-17 10:38:59 -04003743 struct ext4_group_desc *gdp;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003744
Mingming Cao617ba132006-10-11 01:20:53 -07003745 if (!ext4_valid_inum(sb, ino)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003746 /*
3747 * This error is already checked for in namei.c unless we are
3748 * looking at an NFS filehandle, in which case no error
3749 * report is needed
3750 */
3751 return 0;
3752 }
3753
Mingming Cao617ba132006-10-11 01:20:53 -07003754 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
Akinobu Mitac0a4ef32008-04-17 10:38:59 -04003755 gdp = ext4_get_group_desc(sb, block_group, NULL);
3756 if (!gdp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003757 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003758
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003759 /*
3760 * Figure out the offset within the block group inode table
3761 */
Mingming Cao617ba132006-10-11 01:20:53 -07003762 offset = ((ino - 1) % EXT4_INODES_PER_GROUP(sb)) *
3763 EXT4_INODE_SIZE(sb);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07003764 block = ext4_inode_table(sb, gdp) +
3765 (offset >> EXT4_BLOCK_SIZE_BITS(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003766
3767 iloc->block_group = block_group;
Mingming Cao617ba132006-10-11 01:20:53 -07003768 iloc->offset = offset & (EXT4_BLOCK_SIZE(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003769 return block;
3770}
3771
3772/*
Mingming Cao617ba132006-10-11 01:20:53 -07003773 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003774 * underlying buffer_head on success. If 'in_mem' is true, we have all
3775 * data in memory that is needed to recreate the on-disk version of this
3776 * inode.
3777 */
Mingming Cao617ba132006-10-11 01:20:53 -07003778static int __ext4_get_inode_loc(struct inode *inode,
3779 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003780{
Mingming Cao617ba132006-10-11 01:20:53 -07003781 ext4_fsblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003782 struct buffer_head *bh;
3783
Mingming Cao617ba132006-10-11 01:20:53 -07003784 block = ext4_get_inode_block(inode->i_sb, inode->i_ino, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003785 if (!block)
3786 return -EIO;
3787
3788 bh = sb_getblk(inode->i_sb, block);
3789 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07003790 ext4_error (inode->i_sb, "ext4_get_inode_loc",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003791 "unable to read inode block - "
Mingming Cao2ae02102006-10-11 01:21:11 -07003792 "inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003793 inode->i_ino, block);
3794 return -EIO;
3795 }
3796 if (!buffer_uptodate(bh)) {
3797 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04003798
3799 /*
3800 * If the buffer has the write error flag, we have failed
3801 * to write out another inode in the same block. In this
3802 * case, we don't have to read the block because we may
3803 * read the old inode data successfully.
3804 */
3805 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3806 set_buffer_uptodate(bh);
3807
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003808 if (buffer_uptodate(bh)) {
3809 /* someone brought it uptodate while we waited */
3810 unlock_buffer(bh);
3811 goto has_buffer;
3812 }
3813
3814 /*
3815 * If we have all information of the inode in memory and this
3816 * is the only valid inode in the block, we need not read the
3817 * block.
3818 */
3819 if (in_mem) {
3820 struct buffer_head *bitmap_bh;
Mingming Cao617ba132006-10-11 01:20:53 -07003821 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003822 int inodes_per_buffer;
3823 int inode_offset, i;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003824 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003825 int start;
3826
3827 block_group = (inode->i_ino - 1) /
Mingming Cao617ba132006-10-11 01:20:53 -07003828 EXT4_INODES_PER_GROUP(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003829 inodes_per_buffer = bh->b_size /
Mingming Cao617ba132006-10-11 01:20:53 -07003830 EXT4_INODE_SIZE(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003831 inode_offset = ((inode->i_ino - 1) %
Mingming Cao617ba132006-10-11 01:20:53 -07003832 EXT4_INODES_PER_GROUP(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003833 start = inode_offset & ~(inodes_per_buffer - 1);
3834
3835 /* Is the inode bitmap in cache? */
Mingming Cao617ba132006-10-11 01:20:53 -07003836 desc = ext4_get_group_desc(inode->i_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003837 block_group, NULL);
3838 if (!desc)
3839 goto make_io;
3840
3841 bitmap_bh = sb_getblk(inode->i_sb,
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07003842 ext4_inode_bitmap(inode->i_sb, desc));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003843 if (!bitmap_bh)
3844 goto make_io;
3845
3846 /*
3847 * If the inode bitmap isn't in cache then the
3848 * optimisation may end up performing two reads instead
3849 * of one, so skip it.
3850 */
3851 if (!buffer_uptodate(bitmap_bh)) {
3852 brelse(bitmap_bh);
3853 goto make_io;
3854 }
3855 for (i = start; i < start + inodes_per_buffer; i++) {
3856 if (i == inode_offset)
3857 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003858 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003859 break;
3860 }
3861 brelse(bitmap_bh);
3862 if (i == start + inodes_per_buffer) {
3863 /* all other inodes are free, so skip I/O */
3864 memset(bh->b_data, 0, bh->b_size);
3865 set_buffer_uptodate(bh);
3866 unlock_buffer(bh);
3867 goto has_buffer;
3868 }
3869 }
3870
3871make_io:
3872 /*
3873 * There are other valid inodes in the buffer, this inode
3874 * has in-inode xattrs, or we don't have this inode in memory.
3875 * Read the block from disk.
3876 */
3877 get_bh(bh);
3878 bh->b_end_io = end_buffer_read_sync;
3879 submit_bh(READ_META, bh);
3880 wait_on_buffer(bh);
3881 if (!buffer_uptodate(bh)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003882 ext4_error(inode->i_sb, "ext4_get_inode_loc",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003883 "unable to read inode block - "
Mingming Cao2ae02102006-10-11 01:21:11 -07003884 "inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003885 inode->i_ino, block);
3886 brelse(bh);
3887 return -EIO;
3888 }
3889 }
3890has_buffer:
3891 iloc->bh = bh;
3892 return 0;
3893}
3894
Mingming Cao617ba132006-10-11 01:20:53 -07003895int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003896{
3897 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003898 return __ext4_get_inode_loc(inode, iloc,
3899 !(EXT4_I(inode)->i_state & EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003900}
3901
Mingming Cao617ba132006-10-11 01:20:53 -07003902void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003903{
Mingming Cao617ba132006-10-11 01:20:53 -07003904 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003905
3906 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07003907 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003908 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003909 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003910 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003911 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003912 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003913 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003914 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003915 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003916 inode->i_flags |= S_DIRSYNC;
3917}
3918
Jan Karaff9ddf72007-07-18 09:24:20 -04003919/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3920void ext4_get_inode_flags(struct ext4_inode_info *ei)
3921{
3922 unsigned int flags = ei->vfs_inode.i_flags;
3923
3924 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3925 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
3926 if (flags & S_SYNC)
3927 ei->i_flags |= EXT4_SYNC_FL;
3928 if (flags & S_APPEND)
3929 ei->i_flags |= EXT4_APPEND_FL;
3930 if (flags & S_IMMUTABLE)
3931 ei->i_flags |= EXT4_IMMUTABLE_FL;
3932 if (flags & S_NOATIME)
3933 ei->i_flags |= EXT4_NOATIME_FL;
3934 if (flags & S_DIRSYNC)
3935 ei->i_flags |= EXT4_DIRSYNC_FL;
3936}
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003937static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
3938 struct ext4_inode_info *ei)
3939{
3940 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003941 struct inode *inode = &(ei->vfs_inode);
3942 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003943
3944 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3945 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3946 /* we are using combined 48 bit field */
3947 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3948 le32_to_cpu(raw_inode->i_blocks_lo);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003949 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
3950 /* i_blocks represent file system block size */
3951 return i_blocks << (inode->i_blkbits - 9);
3952 } else {
3953 return i_blocks;
3954 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003955 } else {
3956 return le32_to_cpu(raw_inode->i_blocks_lo);
3957 }
3958}
Jan Karaff9ddf72007-07-18 09:24:20 -04003959
David Howells1d1fe1e2008-02-07 00:15:37 -08003960struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003961{
Mingming Cao617ba132006-10-11 01:20:53 -07003962 struct ext4_iloc iloc;
3963 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08003964 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003965 struct buffer_head *bh;
David Howells1d1fe1e2008-02-07 00:15:37 -08003966 struct inode *inode;
3967 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003968 int block;
3969
David Howells1d1fe1e2008-02-07 00:15:37 -08003970 inode = iget_locked(sb, ino);
3971 if (!inode)
3972 return ERR_PTR(-ENOMEM);
3973 if (!(inode->i_state & I_NEW))
3974 return inode;
3975
3976 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07003977#ifdef CONFIG_EXT4DEV_FS_POSIX_ACL
3978 ei->i_acl = EXT4_ACL_NOT_CACHED;
3979 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003980#endif
3981 ei->i_block_alloc_info = NULL;
3982
David Howells1d1fe1e2008-02-07 00:15:37 -08003983 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3984 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003985 goto bad_inode;
3986 bh = iloc.bh;
Mingming Cao617ba132006-10-11 01:20:53 -07003987 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003988 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
3989 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3990 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003991 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003992 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3993 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
3994 }
3995 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003996
3997 ei->i_state = 0;
3998 ei->i_dir_start_lookup = 0;
3999 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4000 /* We now have enough fields to check if the inode was active or not.
4001 * This is needed because nfsd might try to access dead inodes
4002 * the test is that same one that e2fsck uses
4003 * NeilBrown 1999oct15
4004 */
4005 if (inode->i_nlink == 0) {
4006 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07004007 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004008 /* this inode is deleted */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004009 brelse(bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004010 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004011 goto bad_inode;
4012 }
4013 /* The only unlinked inodes we let through here have
4014 * valid i_mode and are being read by the orphan
4015 * recovery code: that's fine, we're about to complete
4016 * the process of deleting those. */
4017 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004018 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004019 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004020 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07004021 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004022 cpu_to_le32(EXT4_OS_HURD)) {
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004023 ei->i_file_acl |=
4024 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004025 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004026 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004027 ei->i_disksize = inode->i_size;
4028 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4029 ei->i_block_group = iloc.block_group;
4030 /*
4031 * NOTE! The in-memory inode i_data array is in little-endian order
4032 * even on big-endian machines: we do NOT byteswap the block numbers!
4033 */
Mingming Cao617ba132006-10-11 01:20:53 -07004034 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004035 ei->i_data[block] = raw_inode->i_block[block];
4036 INIT_LIST_HEAD(&ei->i_orphan);
4037
Eric Sandeen0040d982008-02-05 22:36:43 -05004038 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004039 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
Mingming Cao617ba132006-10-11 01:20:53 -07004040 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004041 EXT4_INODE_SIZE(inode->i_sb)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004042 brelse(bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004043 ret = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004044 goto bad_inode;
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004045 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004046 if (ei->i_extra_isize == 0) {
4047 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004048 ei->i_extra_isize = sizeof(struct ext4_inode) -
4049 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004050 } else {
4051 __le32 *magic = (void *)raw_inode +
Mingming Cao617ba132006-10-11 01:20:53 -07004052 EXT4_GOOD_OLD_INODE_SIZE +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004053 ei->i_extra_isize;
Mingming Cao617ba132006-10-11 01:20:53 -07004054 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
4055 ei->i_state |= EXT4_STATE_XATTR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004056 }
4057 } else
4058 ei->i_extra_isize = 0;
4059
Kalpak Shahef7f3832007-07-18 09:15:20 -04004060 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4061 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4062 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4063 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4064
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004065 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4066 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4067 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4068 inode->i_version |=
4069 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4070 }
4071
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004072 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004073 inode->i_op = &ext4_file_inode_operations;
4074 inode->i_fop = &ext4_file_operations;
4075 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004076 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004077 inode->i_op = &ext4_dir_inode_operations;
4078 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004079 } else if (S_ISLNK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004080 if (ext4_inode_is_fast_symlink(inode))
4081 inode->i_op = &ext4_fast_symlink_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004082 else {
Mingming Cao617ba132006-10-11 01:20:53 -07004083 inode->i_op = &ext4_symlink_inode_operations;
4084 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004085 }
4086 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004087 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004088 if (raw_inode->i_block[0])
4089 init_special_inode(inode, inode->i_mode,
4090 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4091 else
4092 init_special_inode(inode, inode->i_mode,
4093 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4094 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004095 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004096 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004097 unlock_new_inode(inode);
4098 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004099
4100bad_inode:
David Howells1d1fe1e2008-02-07 00:15:37 -08004101 iget_failed(inode);
4102 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004103}
4104
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004105static int ext4_inode_blocks_set(handle_t *handle,
4106 struct ext4_inode *raw_inode,
4107 struct ext4_inode_info *ei)
4108{
4109 struct inode *inode = &(ei->vfs_inode);
4110 u64 i_blocks = inode->i_blocks;
4111 struct super_block *sb = inode->i_sb;
4112 int err = 0;
4113
4114 if (i_blocks <= ~0U) {
4115 /*
4116 * i_blocks can be represnted in a 32 bit variable
4117 * as multiple of 512 bytes
4118 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004119 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004120 raw_inode->i_blocks_high = 0;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004121 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004122 } else if (i_blocks <= 0xffffffffffffULL) {
4123 /*
4124 * i_blocks can be represented in a 48 bit variable
4125 * as multiple of 512 bytes
4126 */
4127 err = ext4_update_rocompat_feature(handle, sb,
4128 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
4129 if (err)
4130 goto err_out;
4131 /* i_block is stored in the split 48 bit fields */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004132 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004133 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004134 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004135 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004136 /*
4137 * i_blocks should be represented in a 48 bit variable
4138 * as multiple of file system block size
4139 */
4140 err = ext4_update_rocompat_feature(handle, sb,
4141 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
4142 if (err)
4143 goto err_out;
4144 ei->i_flags |= EXT4_HUGE_FILE_FL;
4145 /* i_block is stored in file system block size */
4146 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4147 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4148 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004149 }
4150err_out:
4151 return err;
4152}
4153
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004154/*
4155 * Post the struct inode info into an on-disk inode location in the
4156 * buffer-cache. This gobbles the caller's reference to the
4157 * buffer_head in the inode location struct.
4158 *
4159 * The caller must have write access to iloc->bh.
4160 */
Mingming Cao617ba132006-10-11 01:20:53 -07004161static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004162 struct inode *inode,
Mingming Cao617ba132006-10-11 01:20:53 -07004163 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004164{
Mingming Cao617ba132006-10-11 01:20:53 -07004165 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4166 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004167 struct buffer_head *bh = iloc->bh;
4168 int err = 0, rc, block;
4169
4170 /* For fields not not tracking in the in-memory inode,
4171 * initialise them to zero for new inodes. */
Mingming Cao617ba132006-10-11 01:20:53 -07004172 if (ei->i_state & EXT4_STATE_NEW)
4173 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004174
Jan Karaff9ddf72007-07-18 09:24:20 -04004175 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004176 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004177 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004178 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
4179 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
4180/*
4181 * Fix up interoperability with old kernels. Otherwise, old inodes get
4182 * re-used with the upper 16 bits of the uid/gid intact
4183 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004184 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004185 raw_inode->i_uid_high =
4186 cpu_to_le16(high_16_bits(inode->i_uid));
4187 raw_inode->i_gid_high =
4188 cpu_to_le16(high_16_bits(inode->i_gid));
4189 } else {
4190 raw_inode->i_uid_high = 0;
4191 raw_inode->i_gid_high = 0;
4192 }
4193 } else {
4194 raw_inode->i_uid_low =
4195 cpu_to_le16(fs_high2lowuid(inode->i_uid));
4196 raw_inode->i_gid_low =
4197 cpu_to_le16(fs_high2lowgid(inode->i_gid));
4198 raw_inode->i_uid_high = 0;
4199 raw_inode->i_gid_high = 0;
4200 }
4201 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004202
4203 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4204 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4205 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4206 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4207
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004208 if (ext4_inode_blocks_set(handle, raw_inode, ei))
4209 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004210 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04004211 /* clear the migrate flag in the raw_inode */
4212 raw_inode->i_flags = cpu_to_le32(ei->i_flags & ~EXT4_EXT_MIGRATE);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07004213 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
4214 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004215 raw_inode->i_file_acl_high =
4216 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004217 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004218 ext4_isize_set(raw_inode, ei->i_disksize);
4219 if (ei->i_disksize > 0x7fffffffULL) {
4220 struct super_block *sb = inode->i_sb;
4221 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4222 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4223 EXT4_SB(sb)->s_es->s_rev_level ==
4224 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
4225 /* If this is the first large file
4226 * created, add a flag to the superblock.
4227 */
4228 err = ext4_journal_get_write_access(handle,
4229 EXT4_SB(sb)->s_sbh);
4230 if (err)
4231 goto out_brelse;
4232 ext4_update_dynamic_rev(sb);
4233 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07004234 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004235 sb->s_dirt = 1;
4236 handle->h_sync = 1;
4237 err = ext4_journal_dirty_metadata(handle,
4238 EXT4_SB(sb)->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004239 }
4240 }
4241 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4242 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4243 if (old_valid_dev(inode->i_rdev)) {
4244 raw_inode->i_block[0] =
4245 cpu_to_le32(old_encode_dev(inode->i_rdev));
4246 raw_inode->i_block[1] = 0;
4247 } else {
4248 raw_inode->i_block[0] = 0;
4249 raw_inode->i_block[1] =
4250 cpu_to_le32(new_encode_dev(inode->i_rdev));
4251 raw_inode->i_block[2] = 0;
4252 }
Mingming Cao617ba132006-10-11 01:20:53 -07004253 } else for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004254 raw_inode->i_block[block] = ei->i_data[block];
4255
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004256 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
4257 if (ei->i_extra_isize) {
4258 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4259 raw_inode->i_version_hi =
4260 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004261 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004262 }
4263
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004264
Mingming Cao617ba132006-10-11 01:20:53 -07004265 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
4266 rc = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004267 if (!err)
4268 err = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07004269 ei->i_state &= ~EXT4_STATE_NEW;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004270
4271out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004272 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004273 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004274 return err;
4275}
4276
4277/*
Mingming Cao617ba132006-10-11 01:20:53 -07004278 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004279 *
4280 * We are called from a few places:
4281 *
4282 * - Within generic_file_write() for O_SYNC files.
4283 * Here, there will be no transaction running. We wait for any running
4284 * trasnaction to commit.
4285 *
4286 * - Within sys_sync(), kupdate and such.
4287 * We wait on commit, if tol to.
4288 *
4289 * - Within prune_icache() (PF_MEMALLOC == true)
4290 * Here we simply return. We can't afford to block kswapd on the
4291 * journal commit.
4292 *
4293 * In all cases it is actually safe for us to return without doing anything,
4294 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07004295 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004296 * knfsd.
4297 *
4298 * Note that we are absolutely dependent upon all inode dirtiers doing the
4299 * right thing: they *must* call mark_inode_dirty() after dirtying info in
4300 * which we are interested.
4301 *
4302 * It would be a bug for them to not do this. The code:
4303 *
4304 * mark_inode_dirty(inode)
4305 * stuff();
4306 * inode->i_size = expr;
4307 *
4308 * is in error because a kswapd-driven write_inode() could occur while
4309 * `stuff()' is running, and the new i_size will be lost. Plus the inode
4310 * will no longer be on the superblock's dirty inode list.
4311 */
Mingming Cao617ba132006-10-11 01:20:53 -07004312int ext4_write_inode(struct inode *inode, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004313{
4314 if (current->flags & PF_MEMALLOC)
4315 return 0;
4316
Mingming Cao617ba132006-10-11 01:20:53 -07004317 if (ext4_journal_current_handle()) {
Mingming Caob38bd332007-07-19 01:48:35 -07004318 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004319 dump_stack();
4320 return -EIO;
4321 }
4322
4323 if (!wait)
4324 return 0;
4325
Mingming Cao617ba132006-10-11 01:20:53 -07004326 return ext4_force_commit(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004327}
4328
4329/*
Mingming Cao617ba132006-10-11 01:20:53 -07004330 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004331 *
4332 * Called from notify_change.
4333 *
4334 * We want to trap VFS attempts to truncate the file as soon as
4335 * possible. In particular, we want to make sure that when the VFS
4336 * shrinks i_size, we put the inode on the orphan list and modify
4337 * i_disksize immediately, so that during the subsequent flushing of
4338 * dirty pages and freeing of disk blocks, we can guarantee that any
4339 * commit will leave the blocks being flushed in an unused state on
4340 * disk. (On recovery, the inode will get truncated and the blocks will
4341 * be freed, so we have a strong guarantee that no future commit will
4342 * leave these blocks visible to the user.)
4343 *
Jan Kara678aaf42008-07-11 19:27:31 -04004344 * Another thing we have to assure is that if we are in ordered mode
4345 * and inode is still attached to the committing transaction, we must
4346 * we start writeout of all the dirty pages which are being truncated.
4347 * This way we are sure that all the data written in the previous
4348 * transaction are already on disk (truncate waits for pages under
4349 * writeback).
4350 *
4351 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004352 */
Mingming Cao617ba132006-10-11 01:20:53 -07004353int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004354{
4355 struct inode *inode = dentry->d_inode;
4356 int error, rc = 0;
4357 const unsigned int ia_valid = attr->ia_valid;
4358
4359 error = inode_change_ok(inode, attr);
4360 if (error)
4361 return error;
4362
4363 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
4364 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
4365 handle_t *handle;
4366
4367 /* (user+group)*(old+new) structure, inode write (sb,
4368 * inode block, ? - but truncate inode update has it) */
Mingming Cao617ba132006-10-11 01:20:53 -07004369 handle = ext4_journal_start(inode, 2*(EXT4_QUOTA_INIT_BLOCKS(inode->i_sb)+
4370 EXT4_QUOTA_DEL_BLOCKS(inode->i_sb))+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004371 if (IS_ERR(handle)) {
4372 error = PTR_ERR(handle);
4373 goto err_out;
4374 }
4375 error = DQUOT_TRANSFER(inode, attr) ? -EDQUOT : 0;
4376 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07004377 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004378 return error;
4379 }
4380 /* Update corresponding info in inode so that everything is in
4381 * one transaction */
4382 if (attr->ia_valid & ATTR_UID)
4383 inode->i_uid = attr->ia_uid;
4384 if (attr->ia_valid & ATTR_GID)
4385 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07004386 error = ext4_mark_inode_dirty(handle, inode);
4387 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004388 }
4389
Eric Sandeene2b46572008-01-28 23:58:27 -05004390 if (attr->ia_valid & ATTR_SIZE) {
4391 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
4392 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4393
4394 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
4395 error = -EFBIG;
4396 goto err_out;
4397 }
4398 }
4399 }
4400
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004401 if (S_ISREG(inode->i_mode) &&
4402 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
4403 handle_t *handle;
4404
Mingming Cao617ba132006-10-11 01:20:53 -07004405 handle = ext4_journal_start(inode, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004406 if (IS_ERR(handle)) {
4407 error = PTR_ERR(handle);
4408 goto err_out;
4409 }
4410
Mingming Cao617ba132006-10-11 01:20:53 -07004411 error = ext4_orphan_add(handle, inode);
4412 EXT4_I(inode)->i_disksize = attr->ia_size;
4413 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004414 if (!error)
4415 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07004416 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04004417
4418 if (ext4_should_order_data(inode)) {
4419 error = ext4_begin_ordered_truncate(inode,
4420 attr->ia_size);
4421 if (error) {
4422 /* Do as much error cleanup as possible */
4423 handle = ext4_journal_start(inode, 3);
4424 if (IS_ERR(handle)) {
4425 ext4_orphan_del(NULL, inode);
4426 goto err_out;
4427 }
4428 ext4_orphan_del(handle, inode);
4429 ext4_journal_stop(handle);
4430 goto err_out;
4431 }
4432 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004433 }
4434
4435 rc = inode_setattr(inode, attr);
4436
Mingming Cao617ba132006-10-11 01:20:53 -07004437 /* If inode_setattr's call to ext4_truncate failed to get a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004438 * transaction handle at all, we need to clean up the in-core
4439 * orphan list manually. */
4440 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004441 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004442
4443 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07004444 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004445
4446err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07004447 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004448 if (!error)
4449 error = rc;
4450 return error;
4451}
4452
Mingming Cao3e3398a2008-07-11 19:27:31 -04004453int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
4454 struct kstat *stat)
4455{
4456 struct inode *inode;
4457 unsigned long delalloc_blocks;
4458
4459 inode = dentry->d_inode;
4460 generic_fillattr(inode, stat);
4461
4462 /*
4463 * We can't update i_blocks if the block allocation is delayed
4464 * otherwise in the case of system crash before the real block
4465 * allocation is done, we will have i_blocks inconsistent with
4466 * on-disk file blocks.
4467 * We always keep i_blocks updated together with real
4468 * allocation. But to not confuse with user, stat
4469 * will return the blocks that include the delayed allocation
4470 * blocks for this file.
4471 */
4472 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
4473 delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
4474 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
4475
4476 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
4477 return 0;
4478}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004479
Mingming Caoa02908f2008-08-19 22:16:07 -04004480static int ext4_indirect_trans_blocks(struct inode *inode, int nrblocks,
4481 int chunk)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004482{
Mingming Caoa02908f2008-08-19 22:16:07 -04004483 int indirects;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004484
Mingming Caoa02908f2008-08-19 22:16:07 -04004485 /* if nrblocks are contiguous */
4486 if (chunk) {
4487 /*
4488 * With N contiguous data blocks, it need at most
4489 * N/EXT4_ADDR_PER_BLOCK(inode->i_sb) indirect blocks
4490 * 2 dindirect blocks
4491 * 1 tindirect block
4492 */
4493 indirects = nrblocks / EXT4_ADDR_PER_BLOCK(inode->i_sb);
4494 return indirects + 3;
4495 }
4496 /*
4497 * if nrblocks are not contiguous, worse case, each block touch
4498 * a indirect block, and each indirect block touch a double indirect
4499 * block, plus a triple indirect block
4500 */
4501 indirects = nrblocks * 2 + 1;
4502 return indirects;
4503}
Alex Tomasa86c6182006-10-11 01:21:03 -07004504
Mingming Caoa02908f2008-08-19 22:16:07 -04004505static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
4506{
4507 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL))
4508 return ext4_indirect_trans_blocks(inode, nrblocks, 0);
4509 return ext4_ext_index_trans_blocks(inode, nrblocks, 0);
4510}
4511/*
4512 * Account for index blocks, block groups bitmaps and block group
4513 * descriptor blocks if modify datablocks and index blocks
4514 * worse case, the indexs blocks spread over different block groups
4515 *
4516 * If datablocks are discontiguous, they are possible to spread over
4517 * different block groups too. If they are contiugous, with flexbg,
4518 * they could still across block group boundary.
4519 *
4520 * Also account for superblock, inode, quota and xattr blocks
4521 */
4522int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
4523{
4524 int groups, gdpblocks;
4525 int idxblocks;
4526 int ret = 0;
4527
4528 /*
4529 * How many index blocks need to touch to modify nrblocks?
4530 * The "Chunk" flag indicating whether the nrblocks is
4531 * physically contiguous on disk
4532 *
4533 * For Direct IO and fallocate, they calls get_block to allocate
4534 * one single extent at a time, so they could set the "Chunk" flag
4535 */
4536 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
4537
4538 ret = idxblocks;
4539
4540 /*
4541 * Now let's see how many group bitmaps and group descriptors need
4542 * to account
4543 */
4544 groups = idxblocks;
4545 if (chunk)
4546 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004547 else
Mingming Caoa02908f2008-08-19 22:16:07 -04004548 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004549
Mingming Caoa02908f2008-08-19 22:16:07 -04004550 gdpblocks = groups;
4551 if (groups > EXT4_SB(inode->i_sb)->s_groups_count)
4552 groups = EXT4_SB(inode->i_sb)->s_groups_count;
4553 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4554 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4555
4556 /* bitmaps and block group descriptor blocks */
4557 ret += groups + gdpblocks;
4558
4559 /* Blocks for super block, inode, quota and xattr blocks */
4560 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004561
4562 return ret;
4563}
4564
4565/*
Mingming Caoa02908f2008-08-19 22:16:07 -04004566 * Calulate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04004567 * the modification of a single pages into a single transaction,
4568 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04004569 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004570 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04004571 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004572 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04004573 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04004574 */
4575int ext4_writepage_trans_blocks(struct inode *inode)
4576{
4577 int bpp = ext4_journal_blocks_per_page(inode);
4578 int ret;
4579
4580 ret = ext4_meta_trans_blocks(inode, bpp, 0);
4581
4582 /* Account for data blocks for journalled mode */
4583 if (ext4_should_journal_data(inode))
4584 ret += bpp;
4585 return ret;
4586}
Mingming Caof3bd1f32008-08-19 22:16:03 -04004587
4588/*
4589 * Calculate the journal credits for a chunk of data modification.
4590 *
4591 * This is called from DIO, fallocate or whoever calling
4592 * ext4_get_blocks_wrap() to map/allocate a chunk of contigous disk blocks.
4593 *
4594 * journal buffers for data blocks are not included here, as DIO
4595 * and fallocate do no need to journal data buffers.
4596 */
4597int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4598{
4599 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4600}
4601
Mingming Caoa02908f2008-08-19 22:16:07 -04004602/*
Mingming Cao617ba132006-10-11 01:20:53 -07004603 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004604 * Give this, we know that the caller already has write access to iloc->bh.
4605 */
Mingming Cao617ba132006-10-11 01:20:53 -07004606int ext4_mark_iloc_dirty(handle_t *handle,
4607 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004608{
4609 int err = 0;
4610
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004611 if (test_opt(inode->i_sb, I_VERSION))
4612 inode_inc_iversion(inode);
4613
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004614 /* the do_update_inode consumes one bh->b_count */
4615 get_bh(iloc->bh);
4616
Mingming Caodab291a2006-10-11 01:21:01 -07004617 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Mingming Cao617ba132006-10-11 01:20:53 -07004618 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004619 put_bh(iloc->bh);
4620 return err;
4621}
4622
4623/*
4624 * On success, We end up with an outstanding reference count against
4625 * iloc->bh. This _must_ be cleaned up later.
4626 */
4627
4628int
Mingming Cao617ba132006-10-11 01:20:53 -07004629ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4630 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004631{
4632 int err = 0;
4633 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004634 err = ext4_get_inode_loc(inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004635 if (!err) {
4636 BUFFER_TRACE(iloc->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004637 err = ext4_journal_get_write_access(handle, iloc->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004638 if (err) {
4639 brelse(iloc->bh);
4640 iloc->bh = NULL;
4641 }
4642 }
4643 }
Mingming Cao617ba132006-10-11 01:20:53 -07004644 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004645 return err;
4646}
4647
4648/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004649 * Expand an inode by new_extra_isize bytes.
4650 * Returns 0 on success or negative error number on failure.
4651 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004652static int ext4_expand_extra_isize(struct inode *inode,
4653 unsigned int new_extra_isize,
4654 struct ext4_iloc iloc,
4655 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004656{
4657 struct ext4_inode *raw_inode;
4658 struct ext4_xattr_ibody_header *header;
4659 struct ext4_xattr_entry *entry;
4660
4661 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4662 return 0;
4663
4664 raw_inode = ext4_raw_inode(&iloc);
4665
4666 header = IHDR(inode, raw_inode);
4667 entry = IFIRST(header);
4668
4669 /* No extended attributes present */
4670 if (!(EXT4_I(inode)->i_state & EXT4_STATE_XATTR) ||
4671 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
4672 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4673 new_extra_isize);
4674 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4675 return 0;
4676 }
4677
4678 /* try to expand with EAs present */
4679 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4680 raw_inode, handle);
4681}
4682
4683/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004684 * What we do here is to mark the in-core inode as clean with respect to inode
4685 * dirtiness (it may still be data-dirty).
4686 * This means that the in-core inode may be reaped by prune_icache
4687 * without having to perform any I/O. This is a very good thing,
4688 * because *any* task may call prune_icache - even ones which
4689 * have a transaction open against a different journal.
4690 *
4691 * Is this cheating? Not really. Sure, we haven't written the
4692 * inode out, but prune_icache isn't a user-visible syncing function.
4693 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4694 * we start and wait on commits.
4695 *
4696 * Is this efficient/effective? Well, we're being nice to the system
4697 * by cleaning up our inodes proactively so they can be reaped
4698 * without I/O. But we are potentially leaving up to five seconds'
4699 * worth of inodes floating about which prune_icache wants us to
4700 * write out. One way to fix that would be to get prune_icache()
4701 * to do a write_super() to free up some memory. It has the desired
4702 * effect.
4703 */
Mingming Cao617ba132006-10-11 01:20:53 -07004704int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004705{
Mingming Cao617ba132006-10-11 01:20:53 -07004706 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004707 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4708 static unsigned int mnt_count;
4709 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004710
4711 might_sleep();
Mingming Cao617ba132006-10-11 01:20:53 -07004712 err = ext4_reserve_inode_write(handle, inode, &iloc);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004713 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
4714 !(EXT4_I(inode)->i_state & EXT4_STATE_NO_EXPAND)) {
4715 /*
4716 * We need extra buffer credits since we may write into EA block
4717 * with this same handle. If journal_extend fails, then it will
4718 * only result in a minor loss of functionality for that inode.
4719 * If this is felt to be critical, then e2fsck should be run to
4720 * force a large enough s_min_extra_isize.
4721 */
4722 if ((jbd2_journal_extend(handle,
4723 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4724 ret = ext4_expand_extra_isize(inode,
4725 sbi->s_want_extra_isize,
4726 iloc, handle);
4727 if (ret) {
4728 EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND;
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004729 if (mnt_count !=
4730 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04004731 ext4_warning(inode->i_sb, __func__,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004732 "Unable to expand inode %lu. Delete"
4733 " some EAs or run e2fsck.",
4734 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004735 mnt_count =
4736 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004737 }
4738 }
4739 }
4740 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004741 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004742 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004743 return err;
4744}
4745
4746/*
Mingming Cao617ba132006-10-11 01:20:53 -07004747 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004748 *
4749 * We're really interested in the case where a file is being extended.
4750 * i_size has been changed by generic_commit_write() and we thus need
4751 * to include the updated inode in the current transaction.
4752 *
4753 * Also, DQUOT_ALLOC_SPACE() will always dirty the inode when blocks
4754 * are allocated to the file.
4755 *
4756 * If the inode is marked synchronous, we don't honour that here - doing
4757 * so would cause a commit on atime updates, which we don't bother doing.
4758 * We handle synchronous inodes at the highest possible level.
4759 */
Mingming Cao617ba132006-10-11 01:20:53 -07004760void ext4_dirty_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004761{
Mingming Cao617ba132006-10-11 01:20:53 -07004762 handle_t *current_handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004763 handle_t *handle;
4764
Mingming Cao617ba132006-10-11 01:20:53 -07004765 handle = ext4_journal_start(inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004766 if (IS_ERR(handle))
4767 goto out;
4768 if (current_handle &&
4769 current_handle->h_transaction != handle->h_transaction) {
4770 /* This task has a transaction open against a different fs */
4771 printk(KERN_EMERG "%s: transactions do not match!\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04004772 __func__);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004773 } else {
4774 jbd_debug(5, "marking dirty. outer handle=%p\n",
4775 current_handle);
Mingming Cao617ba132006-10-11 01:20:53 -07004776 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004777 }
Mingming Cao617ba132006-10-11 01:20:53 -07004778 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004779out:
4780 return;
4781}
4782
4783#if 0
4784/*
4785 * Bind an inode's backing buffer_head into this transaction, to prevent
4786 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07004787 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004788 * returns no iloc structure, so the caller needs to repeat the iloc
4789 * lookup to mark the inode dirty later.
4790 */
Mingming Cao617ba132006-10-11 01:20:53 -07004791static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004792{
Mingming Cao617ba132006-10-11 01:20:53 -07004793 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004794
4795 int err = 0;
4796 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004797 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004798 if (!err) {
4799 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07004800 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004801 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004802 err = ext4_journal_dirty_metadata(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004803 iloc.bh);
4804 brelse(iloc.bh);
4805 }
4806 }
Mingming Cao617ba132006-10-11 01:20:53 -07004807 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808 return err;
4809}
4810#endif
4811
Mingming Cao617ba132006-10-11 01:20:53 -07004812int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004813{
4814 journal_t *journal;
4815 handle_t *handle;
4816 int err;
4817
4818 /*
4819 * We have to be very careful here: changing a data block's
4820 * journaling status dynamically is dangerous. If we write a
4821 * data block to the journal, change the status and then delete
4822 * that block, we risk forgetting to revoke the old log record
4823 * from the journal and so a subsequent replay can corrupt data.
4824 * So, first we make sure that the journal is empty and that
4825 * nobody is changing anything.
4826 */
4827
Mingming Cao617ba132006-10-11 01:20:53 -07004828 journal = EXT4_JOURNAL(inode);
Dave Hansend6995942007-07-18 08:33:51 -04004829 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004830 return -EROFS;
4831
Mingming Caodab291a2006-10-11 01:21:01 -07004832 jbd2_journal_lock_updates(journal);
4833 jbd2_journal_flush(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004834
4835 /*
4836 * OK, there are no updates running now, and all cached data is
4837 * synced to disk. We are now in a completely consistent state
4838 * which doesn't have anything in the journal, and we know that
4839 * no filesystem updates are running, so it is safe to modify
4840 * the inode's in-core data-journaling state flag now.
4841 */
4842
4843 if (val)
Mingming Cao617ba132006-10-11 01:20:53 -07004844 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004845 else
Mingming Cao617ba132006-10-11 01:20:53 -07004846 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
4847 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004848
Mingming Caodab291a2006-10-11 01:21:01 -07004849 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004850
4851 /* Finally we can mark the inode as dirty. */
4852
Mingming Cao617ba132006-10-11 01:20:53 -07004853 handle = ext4_journal_start(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004854 if (IS_ERR(handle))
4855 return PTR_ERR(handle);
4856
Mingming Cao617ba132006-10-11 01:20:53 -07004857 err = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004858 handle->h_sync = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07004859 ext4_journal_stop(handle);
4860 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004861
4862 return err;
4863}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004864
4865static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4866{
4867 return !buffer_mapped(bh);
4868}
4869
4870int ext4_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4871{
4872 loff_t size;
4873 unsigned long len;
4874 int ret = -EINVAL;
4875 struct file *file = vma->vm_file;
4876 struct inode *inode = file->f_path.dentry->d_inode;
4877 struct address_space *mapping = inode->i_mapping;
4878
4879 /*
4880 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
4881 * get i_mutex because we are already holding mmap_sem.
4882 */
4883 down_read(&inode->i_alloc_sem);
4884 size = i_size_read(inode);
4885 if (page->mapping != mapping || size <= page_offset(page)
4886 || !PageUptodate(page)) {
4887 /* page got truncated from under us? */
4888 goto out_unlock;
4889 }
4890 ret = 0;
4891 if (PageMappedToDisk(page))
4892 goto out_unlock;
4893
4894 if (page->index == size >> PAGE_CACHE_SHIFT)
4895 len = size & ~PAGE_CACHE_MASK;
4896 else
4897 len = PAGE_CACHE_SIZE;
4898
4899 if (page_has_buffers(page)) {
4900 /* return if we have all the buffers mapped */
4901 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
4902 ext4_bh_unmapped))
4903 goto out_unlock;
4904 }
4905 /*
4906 * OK, we need to fill the hole... Do write_begin write_end
4907 * to do block allocation/reservation.We are not holding
4908 * inode.i__mutex here. That allow * parallel write_begin,
4909 * write_end call. lock_page prevent this from happening
4910 * on the same page though
4911 */
4912 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
4913 len, AOP_FLAG_UNINTERRUPTIBLE, &page, NULL);
4914 if (ret < 0)
4915 goto out_unlock;
4916 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
4917 len, len, page, NULL);
4918 if (ret < 0)
4919 goto out_unlock;
4920 ret = 0;
4921out_unlock:
4922 up_read(&inode->i_alloc_sem);
4923 return ret;
4924}