blob: 24518b57733efcd5f7b57cd3ffc02dd64dfb9dc2 [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
Jan Kara678aaf42008-07-11 19:27:31 -040044static inline int ext4_begin_ordered_truncate(struct inode *inode,
45 loff_t new_size)
46{
47 return jbd2_journal_begin_ordered_truncate(&EXT4_I(inode)->jinode,
48 new_size);
49}
50
Alex Tomas64769242008-07-11 19:27:31 -040051static void ext4_invalidatepage(struct page *page, unsigned long offset);
52
Dave Kleikampac27a0e2006-10-11 01:20:50 -070053/*
54 * Test whether an inode is a fast symlink.
55 */
Mingming Cao617ba132006-10-11 01:20:53 -070056static int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070057{
Mingming Cao617ba132006-10-11 01:20:53 -070058 int ea_blocks = EXT4_I(inode)->i_file_acl ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -070059 (inode->i_sb->s_blocksize >> 9) : 0;
60
61 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
62}
63
64/*
Mingming Cao617ba132006-10-11 01:20:53 -070065 * The ext4 forget function must perform a revoke if we are freeing data
Dave Kleikampac27a0e2006-10-11 01:20:50 -070066 * which has been journaled. Metadata (eg. indirect blocks) must be
67 * revoked in all cases.
68 *
69 * "bh" may be NULL: a metadata block may have been freed from memory
70 * but there may still be a record of it in the journal, and that record
71 * still needs to be revoked.
72 */
Mingming Cao617ba132006-10-11 01:20:53 -070073int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode,
74 struct buffer_head *bh, ext4_fsblk_t blocknr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070075{
76 int err;
77
78 might_sleep();
79
80 BUFFER_TRACE(bh, "enter");
81
82 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
83 "data mode %lx\n",
84 bh, is_metadata, inode->i_mode,
85 test_opt(inode->i_sb, DATA_FLAGS));
86
87 /* Never use the revoke function if we are doing full data
88 * journaling: there is no need to, and a V1 superblock won't
89 * support it. Otherwise, only skip the revoke on un-journaled
90 * data blocks. */
91
Mingming Cao617ba132006-10-11 01:20:53 -070092 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
93 (!is_metadata && !ext4_should_journal_data(inode))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -070094 if (bh) {
Mingming Caodab291a2006-10-11 01:21:01 -070095 BUFFER_TRACE(bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -070096 return ext4_journal_forget(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070097 }
98 return 0;
99 }
100
101 /*
102 * data!=journal && (is_metadata || should_journal_data(inode))
103 */
Mingming Cao617ba132006-10-11 01:20:53 -0700104 BUFFER_TRACE(bh, "call ext4_journal_revoke");
105 err = ext4_journal_revoke(handle, blocknr, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700106 if (err)
Harvey Harrison46e665e2008-04-17 10:38:59 -0400107 ext4_abort(inode->i_sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700108 "error %d when attempting revoke", err);
109 BUFFER_TRACE(bh, "exit");
110 return err;
111}
112
113/*
114 * Work out how many blocks we need to proceed with the next chunk of a
115 * truncate transaction.
116 */
117static unsigned long blocks_for_truncate(struct inode *inode)
118{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500119 ext4_lblk_t needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700120
121 needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9);
122
123 /* Give ourselves just enough room to cope with inodes in which
124 * i_blocks is corrupt: we've seen disk corruptions in the past
125 * which resulted in random data in an inode which looked enough
Mingming Cao617ba132006-10-11 01:20:53 -0700126 * like a regular file for ext4 to try to delete it. Things
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700127 * will go a bit crazy if that happens, but at least we should
128 * try not to panic the whole kernel. */
129 if (needed < 2)
130 needed = 2;
131
132 /* But we need to bound the transaction so we don't overflow the
133 * journal. */
Mingming Cao617ba132006-10-11 01:20:53 -0700134 if (needed > EXT4_MAX_TRANS_DATA)
135 needed = EXT4_MAX_TRANS_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700136
Mingming Cao617ba132006-10-11 01:20:53 -0700137 return EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700138}
139
140/*
141 * Truncate transactions can be complex and absolutely huge. So we need to
142 * be able to restart the transaction at a conventient checkpoint to make
143 * sure we don't overflow the journal.
144 *
145 * start_transaction gets us a new handle for a truncate transaction,
146 * and extend_transaction tries to extend the existing one a bit. If
147 * extend fails, we need to propagate the failure up and restart the
148 * transaction in the top-level truncate loop. --sct
149 */
150static handle_t *start_transaction(struct inode *inode)
151{
152 handle_t *result;
153
Mingming Cao617ba132006-10-11 01:20:53 -0700154 result = ext4_journal_start(inode, blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700155 if (!IS_ERR(result))
156 return result;
157
Mingming Cao617ba132006-10-11 01:20:53 -0700158 ext4_std_error(inode->i_sb, PTR_ERR(result));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700159 return result;
160}
161
162/*
163 * Try to extend this transaction for the purposes of truncation.
164 *
165 * Returns 0 if we managed to create more room. If we can't create more
166 * room, and the transaction must be restarted we return 1.
167 */
168static int try_to_extend_transaction(handle_t *handle, struct inode *inode)
169{
Mingming Cao617ba132006-10-11 01:20:53 -0700170 if (handle->h_buffer_credits > EXT4_RESERVE_TRANS_BLOCKS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700171 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700172 if (!ext4_journal_extend(handle, blocks_for_truncate(inode)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700173 return 0;
174 return 1;
175}
176
177/*
178 * Restart the transaction associated with *handle. This does a commit,
179 * so before we call here everything must be consistently dirtied against
180 * this transaction.
181 */
Mingming Cao617ba132006-10-11 01:20:53 -0700182static int ext4_journal_test_restart(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700183{
184 jbd_debug(2, "restarting handle %p\n", handle);
Mingming Cao617ba132006-10-11 01:20:53 -0700185 return ext4_journal_restart(handle, blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700186}
187
188/*
189 * Called at the last iput() if i_nlink is zero.
190 */
Mingming Cao617ba132006-10-11 01:20:53 -0700191void ext4_delete_inode (struct inode * inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700192{
193 handle_t *handle;
194
Jan Kara678aaf42008-07-11 19:27:31 -0400195 if (ext4_should_order_data(inode))
196 ext4_begin_ordered_truncate(inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700197 truncate_inode_pages(&inode->i_data, 0);
198
199 if (is_bad_inode(inode))
200 goto no_delete;
201
202 handle = start_transaction(inode);
203 if (IS_ERR(handle)) {
204 /*
205 * If we're going to skip the normal cleanup, we still need to
206 * make sure that the in-core orphan linked list is properly
207 * cleaned up.
208 */
Mingming Cao617ba132006-10-11 01:20:53 -0700209 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700210 goto no_delete;
211 }
212
213 if (IS_SYNC(inode))
214 handle->h_sync = 1;
215 inode->i_size = 0;
216 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700217 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700218 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700219 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700220 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700221 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700223 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700224 * (Well, we could do this if we need to, but heck - it works)
225 */
Mingming Cao617ba132006-10-11 01:20:53 -0700226 ext4_orphan_del(handle, inode);
227 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700228
229 /*
230 * One subtle ordering requirement: if anything has gone wrong
231 * (transaction abort, IO errors, whatever), then we can still
232 * do these next steps (the fs will already have been marked as
233 * having errors), but we can't free the inode if the mark_dirty
234 * fails.
235 */
Mingming Cao617ba132006-10-11 01:20:53 -0700236 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700237 /* If that failed, just do the required in-core inode clear. */
238 clear_inode(inode);
239 else
Mingming Cao617ba132006-10-11 01:20:53 -0700240 ext4_free_inode(handle, inode);
241 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 return;
243no_delete:
244 clear_inode(inode); /* We must guarantee clearing of inode... */
245}
246
247typedef struct {
248 __le32 *p;
249 __le32 key;
250 struct buffer_head *bh;
251} Indirect;
252
253static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
254{
255 p->key = *(p->p = v);
256 p->bh = bh;
257}
258
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700259/**
Mingming Cao617ba132006-10-11 01:20:53 -0700260 * ext4_block_to_path - parse the block number into array of offsets
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700261 * @inode: inode in question (we are only interested in its superblock)
262 * @i_block: block number to be parsed
263 * @offsets: array to store the offsets in
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400264 * @boundary: set this non-zero if the referred-to block is likely to be
265 * followed (on disk) by an indirect block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266 *
Mingming Cao617ba132006-10-11 01:20:53 -0700267 * To store the locations of file's data ext4 uses a data structure common
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268 * for UNIX filesystems - tree of pointers anchored in the inode, with
269 * data blocks at leaves and indirect blocks in intermediate nodes.
270 * This function translates the block number into path in that tree -
271 * return value is the path length and @offsets[n] is the offset of
272 * pointer to (n+1)th node in the nth one. If @block is out of range
273 * (negative or too large) warning is printed and zero returned.
274 *
275 * Note: function doesn't find node addresses, so no IO is needed. All
276 * we need to know is the capacity of indirect blocks (taken from the
277 * inode->i_sb).
278 */
279
280/*
281 * Portability note: the last comparison (check that we fit into triple
282 * indirect block) is spelled differently, because otherwise on an
283 * architecture with 32-bit longs and 8Kb pages we might get into trouble
284 * if our filesystem had 8Kb blocks. We might use long long, but that would
285 * kill us on x86. Oh, well, at least the sign propagation does not matter -
286 * i_block would have to be negative in the very beginning, so we would not
287 * get there at all.
288 */
289
Mingming Cao617ba132006-10-11 01:20:53 -0700290static int ext4_block_to_path(struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500291 ext4_lblk_t i_block,
292 ext4_lblk_t offsets[4], int *boundary)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700293{
Mingming Cao617ba132006-10-11 01:20:53 -0700294 int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb);
295 int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb);
296 const long direct_blocks = EXT4_NDIR_BLOCKS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700297 indirect_blocks = ptrs,
298 double_blocks = (1 << (ptrs_bits * 2));
299 int n = 0;
300 int final = 0;
301
302 if (i_block < 0) {
Mingming Cao617ba132006-10-11 01:20:53 -0700303 ext4_warning (inode->i_sb, "ext4_block_to_path", "block < 0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700304 } else if (i_block < direct_blocks) {
305 offsets[n++] = i_block;
306 final = direct_blocks;
307 } else if ( (i_block -= direct_blocks) < indirect_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700308 offsets[n++] = EXT4_IND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700309 offsets[n++] = i_block;
310 final = ptrs;
311 } else if ((i_block -= indirect_blocks) < double_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700312 offsets[n++] = EXT4_DIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700313 offsets[n++] = i_block >> ptrs_bits;
314 offsets[n++] = i_block & (ptrs - 1);
315 final = ptrs;
316 } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
Mingming Cao617ba132006-10-11 01:20:53 -0700317 offsets[n++] = EXT4_TIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700318 offsets[n++] = i_block >> (ptrs_bits * 2);
319 offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
320 offsets[n++] = i_block & (ptrs - 1);
321 final = ptrs;
322 } else {
Eric Sandeene2b46572008-01-28 23:58:27 -0500323 ext4_warning(inode->i_sb, "ext4_block_to_path",
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500324 "block %lu > max",
Eric Sandeene2b46572008-01-28 23:58:27 -0500325 i_block + direct_blocks +
326 indirect_blocks + double_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700327 }
328 if (boundary)
329 *boundary = final - 1 - (i_block & (ptrs - 1));
330 return n;
331}
332
333/**
Mingming Cao617ba132006-10-11 01:20:53 -0700334 * ext4_get_branch - read the chain of indirect blocks leading to data
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700335 * @inode: inode in question
336 * @depth: depth of the chain (1 - direct pointer, etc.)
337 * @offsets: offsets of pointers in inode/indirect blocks
338 * @chain: place to store the result
339 * @err: here we store the error value
340 *
341 * Function fills the array of triples <key, p, bh> and returns %NULL
342 * if everything went OK or the pointer to the last filled triple
343 * (incomplete one) otherwise. Upon the return chain[i].key contains
344 * the number of (i+1)-th block in the chain (as it is stored in memory,
345 * i.e. little-endian 32-bit), chain[i].p contains the address of that
346 * number (it points into struct inode for i==0 and into the bh->b_data
347 * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
348 * block for i>0 and NULL for i==0. In other words, it holds the block
349 * numbers of the chain, addresses they were taken from (and where we can
350 * verify that chain did not change) and buffer_heads hosting these
351 * numbers.
352 *
353 * Function stops when it stumbles upon zero pointer (absent block)
354 * (pointer to last triple returned, *@err == 0)
355 * or when it gets an IO error reading an indirect block
356 * (ditto, *@err == -EIO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700357 * or when it reads all @depth-1 indirect blocks successfully and finds
358 * the whole chain, all way to the data (returns %NULL, *err == 0).
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500359 *
360 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500361 * down_read(&EXT4_I(inode)->i_data_sem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700362 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500363static Indirect *ext4_get_branch(struct inode *inode, int depth,
364 ext4_lblk_t *offsets,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365 Indirect chain[4], int *err)
366{
367 struct super_block *sb = inode->i_sb;
368 Indirect *p = chain;
369 struct buffer_head *bh;
370
371 *err = 0;
372 /* i_data is not going away, no lock needed */
Mingming Cao617ba132006-10-11 01:20:53 -0700373 add_chain (chain, NULL, EXT4_I(inode)->i_data + *offsets);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700374 if (!p->key)
375 goto no_block;
376 while (--depth) {
377 bh = sb_bread(sb, le32_to_cpu(p->key));
378 if (!bh)
379 goto failure;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700380 add_chain(++p, bh, (__le32*)bh->b_data + *++offsets);
381 /* Reader: end */
382 if (!p->key)
383 goto no_block;
384 }
385 return NULL;
386
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700387failure:
388 *err = -EIO;
389no_block:
390 return p;
391}
392
393/**
Mingming Cao617ba132006-10-11 01:20:53 -0700394 * ext4_find_near - find a place for allocation with sufficient locality
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700395 * @inode: owner
396 * @ind: descriptor of indirect block.
397 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000398 * This function returns the preferred place for block allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700399 * It is used when heuristic for sequential allocation fails.
400 * Rules are:
401 * + if there is a block to the left of our position - allocate near it.
402 * + if pointer will live in indirect block - allocate near that block.
403 * + if pointer will live in inode - allocate in the same
404 * cylinder group.
405 *
406 * In the latter case we colour the starting block by the callers PID to
407 * prevent it from clashing with concurrent allocations for a different inode
408 * in the same block group. The PID is used here so that functionally related
409 * files will be close-by on-disk.
410 *
411 * Caller must make sure that @ind is valid and will stay that way.
412 */
Mingming Cao617ba132006-10-11 01:20:53 -0700413static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700414{
Mingming Cao617ba132006-10-11 01:20:53 -0700415 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700416 __le32 *start = ind->bh ? (__le32*) ind->bh->b_data : ei->i_data;
417 __le32 *p;
Mingming Cao617ba132006-10-11 01:20:53 -0700418 ext4_fsblk_t bg_start;
Valerie Clement74d34872008-02-15 13:43:07 -0500419 ext4_fsblk_t last_block;
Mingming Cao617ba132006-10-11 01:20:53 -0700420 ext4_grpblk_t colour;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700421
422 /* Try to find previous block */
423 for (p = ind->p - 1; p >= start; p--) {
424 if (*p)
425 return le32_to_cpu(*p);
426 }
427
428 /* No such thing, so let's try location of indirect block */
429 if (ind->bh)
430 return ind->bh->b_blocknr;
431
432 /*
433 * It is going to be referred to from the inode itself? OK, just put it
434 * into the same cylinder group then.
435 */
Mingming Cao617ba132006-10-11 01:20:53 -0700436 bg_start = ext4_group_first_block_no(inode->i_sb, ei->i_block_group);
Valerie Clement74d34872008-02-15 13:43:07 -0500437 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
438
439 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
440 colour = (current->pid % 16) *
Mingming Cao617ba132006-10-11 01:20:53 -0700441 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
Valerie Clement74d34872008-02-15 13:43:07 -0500442 else
443 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700444 return bg_start + colour;
445}
446
447/**
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000448 * ext4_find_goal - find a preferred place for allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700449 * @inode: owner
450 * @block: block we want
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700451 * @partial: pointer to the last triple within a chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700452 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000453 * Normally this function find the preferred place for block allocation,
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800454 * returns it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700455 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500456static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block,
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800457 Indirect *partial)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700458{
Mingming Cao617ba132006-10-11 01:20:53 -0700459 struct ext4_block_alloc_info *block_i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700460
Mingming Cao617ba132006-10-11 01:20:53 -0700461 block_i = EXT4_I(inode)->i_block_alloc_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700462
463 /*
464 * try the heuristic for sequential allocation,
465 * failing that at least try to get decent locality.
466 */
467 if (block_i && (block == block_i->last_alloc_logical_block + 1)
468 && (block_i->last_alloc_physical_block != 0)) {
469 return block_i->last_alloc_physical_block + 1;
470 }
471
Mingming Cao617ba132006-10-11 01:20:53 -0700472 return ext4_find_near(inode, partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700473}
474
475/**
Mingming Cao617ba132006-10-11 01:20:53 -0700476 * ext4_blks_to_allocate: Look up the block map and count the number
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 * of direct blocks need to be allocated for the given branch.
478 *
479 * @branch: chain of indirect blocks
480 * @k: number of blocks need for indirect blocks
481 * @blks: number of data blocks to be mapped.
482 * @blocks_to_boundary: the offset in the indirect block
483 *
484 * return the total number of blocks to be allocate, including the
485 * direct and indirect blocks.
486 */
Mingming Cao617ba132006-10-11 01:20:53 -0700487static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned long blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700488 int blocks_to_boundary)
489{
490 unsigned long count = 0;
491
492 /*
493 * Simple case, [t,d]Indirect block(s) has not allocated yet
494 * then it's clear blocks on that path have not allocated
495 */
496 if (k > 0) {
497 /* right now we don't handle cross boundary allocation */
498 if (blks < blocks_to_boundary + 1)
499 count += blks;
500 else
501 count += blocks_to_boundary + 1;
502 return count;
503 }
504
505 count++;
506 while (count < blks && count <= blocks_to_boundary &&
507 le32_to_cpu(*(branch[0].p + count)) == 0) {
508 count++;
509 }
510 return count;
511}
512
513/**
Mingming Cao617ba132006-10-11 01:20:53 -0700514 * ext4_alloc_blocks: multiple allocate blocks needed for a branch
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700515 * @indirect_blks: the number of blocks need to allocate for indirect
516 * blocks
517 *
518 * @new_blocks: on return it will store the new block numbers for
519 * the indirect blocks(if needed) and the first direct block,
520 * @blks: on return it will store the total number of allocated
521 * direct blocks
522 */
Mingming Cao617ba132006-10-11 01:20:53 -0700523static int ext4_alloc_blocks(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400524 ext4_lblk_t iblock, ext4_fsblk_t goal,
525 int indirect_blks, int blks,
526 ext4_fsblk_t new_blocks[4], int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700527{
528 int target, i;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400529 unsigned long count = 0, blk_allocated = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530 int index = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700531 ext4_fsblk_t current_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700532 int ret = 0;
533
534 /*
535 * Here we try to allocate the requested multiple blocks at once,
536 * on a best-effort basis.
537 * To build a branch, we should allocate blocks for
538 * the indirect blocks(if not allocated yet), and at least
539 * the first direct block of this branch. That's the
540 * minimum number of blocks need to allocate(required)
541 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400542 /* first we try to allocate the indirect blocks */
543 target = indirect_blks;
544 while (target > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700545 count = target;
546 /* allocating blocks for indirect blocks and direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400547 current_block = ext4_new_meta_blocks(handle, inode,
548 goal, &count, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700549 if (*err)
550 goto failed_out;
551
552 target -= count;
553 /* allocate blocks for indirect blocks */
554 while (index < indirect_blks && count) {
555 new_blocks[index++] = current_block++;
556 count--;
557 }
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400558 if (count > 0) {
559 /*
560 * save the new block number
561 * for the first direct block
562 */
563 new_blocks[index] = current_block;
564 printk(KERN_INFO "%s returned more blocks than "
565 "requested\n", __func__);
566 WARN_ON(1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700567 break;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400568 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700569 }
570
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400571 target = blks - count ;
572 blk_allocated = count;
573 if (!target)
574 goto allocated;
575 /* Now allocate data blocks */
576 count = target;
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400577 /* allocating blocks for data blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400578 current_block = ext4_new_blocks(handle, inode, iblock,
579 goal, &count, err);
580 if (*err && (target == blks)) {
581 /*
582 * if the allocation failed and we didn't allocate
583 * any blocks before
584 */
585 goto failed_out;
586 }
587 if (!*err) {
588 if (target == blks) {
589 /*
590 * save the new block number
591 * for the first direct block
592 */
593 new_blocks[index] = current_block;
594 }
595 blk_allocated += count;
596 }
597allocated:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700598 /* total number of blocks allocated for direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400599 ret = blk_allocated;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700600 *err = 0;
601 return ret;
602failed_out:
603 for (i = 0; i <index; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500604 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700605 return ret;
606}
607
608/**
Mingming Cao617ba132006-10-11 01:20:53 -0700609 * ext4_alloc_branch - allocate and set up a chain of blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700610 * @inode: owner
611 * @indirect_blks: number of allocated indirect blocks
612 * @blks: number of allocated direct blocks
613 * @offsets: offsets (in the blocks) to store the pointers to next.
614 * @branch: place to store the chain in.
615 *
616 * This function allocates blocks, zeroes out all but the last one,
617 * links them into chain and (if we are synchronous) writes them to disk.
618 * In other words, it prepares a branch that can be spliced onto the
619 * inode. It stores the information about that chain in the branch[], in
Mingming Cao617ba132006-10-11 01:20:53 -0700620 * the same format as ext4_get_branch() would do. We are calling it after
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700621 * we had read the existing part of chain and partial points to the last
622 * triple of that (one with zero ->key). Upon the exit we have the same
Mingming Cao617ba132006-10-11 01:20:53 -0700623 * picture as after the successful ext4_get_block(), except that in one
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700624 * place chain is disconnected - *branch->p is still zero (we did not
625 * set the last link), but branch->key contains the number that should
626 * be placed into *branch->p to fill that gap.
627 *
628 * If allocation fails we free all blocks we've allocated (and forget
629 * their buffer_heads) and return the error value the from failed
Mingming Cao617ba132006-10-11 01:20:53 -0700630 * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631 * as described above and return 0.
632 */
Mingming Cao617ba132006-10-11 01:20:53 -0700633static int ext4_alloc_branch(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400634 ext4_lblk_t iblock, int indirect_blks,
635 int *blks, ext4_fsblk_t goal,
636 ext4_lblk_t *offsets, Indirect *branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700637{
638 int blocksize = inode->i_sb->s_blocksize;
639 int i, n = 0;
640 int err = 0;
641 struct buffer_head *bh;
642 int num;
Mingming Cao617ba132006-10-11 01:20:53 -0700643 ext4_fsblk_t new_blocks[4];
644 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400646 num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700647 *blks, new_blocks, &err);
648 if (err)
649 return err;
650
651 branch[0].key = cpu_to_le32(new_blocks[0]);
652 /*
653 * metadata blocks and data blocks are allocated.
654 */
655 for (n = 1; n <= indirect_blks; n++) {
656 /*
657 * Get buffer_head for parent block, zero it out
658 * and set the pointer to new one, then send
659 * parent to disk.
660 */
661 bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
662 branch[n].bh = bh;
663 lock_buffer(bh);
664 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700665 err = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700666 if (err) {
667 unlock_buffer(bh);
668 brelse(bh);
669 goto failed;
670 }
671
672 memset(bh->b_data, 0, blocksize);
673 branch[n].p = (__le32 *) bh->b_data + offsets[n];
674 branch[n].key = cpu_to_le32(new_blocks[n]);
675 *branch[n].p = branch[n].key;
676 if ( n == indirect_blks) {
677 current_block = new_blocks[n];
678 /*
679 * End of chain, update the last new metablock of
680 * the chain to point to the new allocated
681 * data blocks numbers
682 */
683 for (i=1; i < num; i++)
684 *(branch[n].p + i) = cpu_to_le32(++current_block);
685 }
686 BUFFER_TRACE(bh, "marking uptodate");
687 set_buffer_uptodate(bh);
688 unlock_buffer(bh);
689
Mingming Cao617ba132006-10-11 01:20:53 -0700690 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
691 err = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 if (err)
693 goto failed;
694 }
695 *blks = num;
696 return err;
697failed:
698 /* Allocation failed, free what we already allocated */
699 for (i = 1; i <= n ; i++) {
Mingming Caodab291a2006-10-11 01:21:01 -0700700 BUFFER_TRACE(branch[i].bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -0700701 ext4_journal_forget(handle, branch[i].bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702 }
703 for (i = 0; i <indirect_blks; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500704 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700705
Alex Tomasc9de5602008-01-29 00:19:52 -0500706 ext4_free_blocks(handle, inode, new_blocks[i], num, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700707
708 return err;
709}
710
711/**
Mingming Cao617ba132006-10-11 01:20:53 -0700712 * ext4_splice_branch - splice the allocated branch onto inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713 * @inode: owner
714 * @block: (logical) number of block we are adding
715 * @chain: chain of indirect blocks (with a missing link - see
Mingming Cao617ba132006-10-11 01:20:53 -0700716 * ext4_alloc_branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717 * @where: location of missing link
718 * @num: number of indirect blocks we are adding
719 * @blks: number of direct blocks we are adding
720 *
721 * This function fills the missing link and does all housekeeping needed in
722 * inode (->i_blocks, etc.). In case of success we end up with the full
723 * chain to new block and return 0.
724 */
Mingming Cao617ba132006-10-11 01:20:53 -0700725static int ext4_splice_branch(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500726 ext4_lblk_t block, Indirect *where, int num, int blks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700727{
728 int i;
729 int err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700730 struct ext4_block_alloc_info *block_i;
731 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700732
Mingming Cao617ba132006-10-11 01:20:53 -0700733 block_i = EXT4_I(inode)->i_block_alloc_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734 /*
735 * If we're splicing into a [td]indirect block (as opposed to the
736 * inode) then we need to get write access to the [td]indirect block
737 * before the splice.
738 */
739 if (where->bh) {
740 BUFFER_TRACE(where->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700741 err = ext4_journal_get_write_access(handle, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700742 if (err)
743 goto err_out;
744 }
745 /* That's it */
746
747 *where->p = where->key;
748
749 /*
750 * Update the host buffer_head or inode to point to more just allocated
751 * direct blocks blocks
752 */
753 if (num == 0 && blks > 1) {
754 current_block = le32_to_cpu(where->key) + 1;
755 for (i = 1; i < blks; i++)
756 *(where->p + i ) = cpu_to_le32(current_block++);
757 }
758
759 /*
760 * update the most recently allocated logical & physical block
761 * in i_block_alloc_info, to assist find the proper goal block for next
762 * allocation
763 */
764 if (block_i) {
765 block_i->last_alloc_logical_block = block + blks - 1;
766 block_i->last_alloc_physical_block =
767 le32_to_cpu(where[num].key) + blks - 1;
768 }
769
770 /* We are done with atomic stuff, now do the rest of housekeeping */
771
Kalpak Shahef7f3832007-07-18 09:15:20 -0400772 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700773 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700774
775 /* had we spliced it onto indirect block? */
776 if (where->bh) {
777 /*
778 * If we spliced it onto an indirect block, we haven't
779 * altered the inode. Note however that if it is being spliced
780 * onto an indirect block at the very end of the file (the
781 * file is growing) then we *will* alter the inode to reflect
782 * the new i_size. But that is not done here - it is done in
Mingming Cao617ba132006-10-11 01:20:53 -0700783 * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700784 */
785 jbd_debug(5, "splicing indirect only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700786 BUFFER_TRACE(where->bh, "call ext4_journal_dirty_metadata");
787 err = ext4_journal_dirty_metadata(handle, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788 if (err)
789 goto err_out;
790 } else {
791 /*
792 * OK, we spliced it into the inode itself on a direct block.
793 * Inode was dirtied above.
794 */
795 jbd_debug(5, "splicing direct\n");
796 }
797 return err;
798
799err_out:
800 for (i = 1; i <= num; i++) {
Mingming Caodab291a2006-10-11 01:21:01 -0700801 BUFFER_TRACE(where[i].bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -0700802 ext4_journal_forget(handle, where[i].bh);
Alex Tomasc9de5602008-01-29 00:19:52 -0500803 ext4_free_blocks(handle, inode,
804 le32_to_cpu(where[i-1].key), 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700805 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500806 ext4_free_blocks(handle, inode, le32_to_cpu(where[num].key), blks, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700807
808 return err;
809}
810
811/*
812 * Allocation strategy is simple: if we have to allocate something, we will
813 * have to go the whole way to leaf. So let's do it before attaching anything
814 * to tree, set linkage between the newborn blocks, write them if sync is
815 * required, recheck the path, free and repeat if check fails, otherwise
816 * set the last missing link (that will protect us from any truncate-generated
817 * removals - all blocks on the path are immune now) and possibly force the
818 * write on the parent block.
819 * That has a nice additional property: no special recovery from the failed
820 * allocations is needed - we simply release blocks and do not touch anything
821 * reachable from inode.
822 *
823 * `handle' can be NULL if create == 0.
824 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825 * return > 0, # of blocks mapped or allocated.
826 * return = 0, if plain lookup failed.
827 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500828 *
829 *
830 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500831 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
832 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700833 */
Mingming Cao617ba132006-10-11 01:20:53 -0700834int ext4_get_blocks_handle(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500835 ext4_lblk_t iblock, unsigned long maxblocks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700836 struct buffer_head *bh_result,
837 int create, int extend_disksize)
838{
839 int err = -EIO;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500840 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700841 Indirect chain[4];
842 Indirect *partial;
Mingming Cao617ba132006-10-11 01:20:53 -0700843 ext4_fsblk_t goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700844 int indirect_blks;
845 int blocks_to_boundary = 0;
846 int depth;
Mingming Cao617ba132006-10-11 01:20:53 -0700847 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700848 int count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700849 ext4_fsblk_t first_block = 0;
Mingming Cao61628a32008-07-11 19:27:31 -0400850 loff_t disksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700851
852
Alex Tomasa86c6182006-10-11 01:21:03 -0700853 J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700854 J_ASSERT(handle != NULL || create == 0);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500855 depth = ext4_block_to_path(inode, iblock, offsets,
856 &blocks_to_boundary);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700857
858 if (depth == 0)
859 goto out;
860
Mingming Cao617ba132006-10-11 01:20:53 -0700861 partial = ext4_get_branch(inode, depth, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862
863 /* Simplest case - block found, no allocation needed */
864 if (!partial) {
865 first_block = le32_to_cpu(chain[depth - 1].key);
866 clear_buffer_new(bh_result);
867 count++;
868 /*map more blocks*/
869 while (count < maxblocks && count <= blocks_to_boundary) {
Mingming Cao617ba132006-10-11 01:20:53 -0700870 ext4_fsblk_t blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700871
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700872 blk = le32_to_cpu(*(chain[depth-1].p + count));
873
874 if (blk == first_block + count)
875 count++;
876 else
877 break;
878 }
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500879 goto got_it;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880 }
881
882 /* Next simple case - plain lookup or failed read of indirect block */
883 if (!create || err == -EIO)
884 goto cleanup;
885
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700886 /*
887 * Okay, we need to do block allocation. Lazily initialize the block
888 * allocation info here if necessary
889 */
890 if (S_ISREG(inode->i_mode) && (!ei->i_block_alloc_info))
Mingming Cao617ba132006-10-11 01:20:53 -0700891 ext4_init_block_alloc_info(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800893 goal = ext4_find_goal(inode, iblock, partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894
895 /* the number of blocks need to allocate for [d,t]indirect blocks */
896 indirect_blks = (chain + depth) - partial - 1;
897
898 /*
899 * Next look up the indirect map to count the totoal number of
900 * direct blocks to allocate for this branch.
901 */
Mingming Cao617ba132006-10-11 01:20:53 -0700902 count = ext4_blks_to_allocate(partial, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700903 maxblocks, blocks_to_boundary);
904 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700905 * Block out ext4_truncate while we alter the tree
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400907 err = ext4_alloc_branch(handle, inode, iblock, indirect_blks,
908 &count, goal,
909 offsets + (partial - chain), partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700910
911 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700912 * The ext4_splice_branch call will free and forget any buffers
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700913 * on the new chain if there is a failure, but that risks using
914 * up transaction credits, especially for bitmaps where the
915 * credits cannot be returned. Can we handle this somehow? We
916 * may need to return -EAGAIN upwards in the worst case. --sct
917 */
918 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -0700919 err = ext4_splice_branch(handle, inode, iblock,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700920 partial, indirect_blks, count);
921 /*
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500922 * i_disksize growing is protected by i_data_sem. Don't forget to
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700923 * protect it if you're about to implement concurrent
Mingming Cao617ba132006-10-11 01:20:53 -0700924 * ext4_get_block() -bzzz
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700925 */
Mingming Cao61628a32008-07-11 19:27:31 -0400926 if (!err && extend_disksize) {
927 disksize = ((loff_t) iblock + count) << inode->i_blkbits;
928 if (disksize > i_size_read(inode))
929 disksize = i_size_read(inode);
930 if (disksize > ei->i_disksize)
931 ei->i_disksize = disksize;
932 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700933 if (err)
934 goto cleanup;
935
936 set_buffer_new(bh_result);
937got_it:
938 map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
939 if (count > blocks_to_boundary)
940 set_buffer_boundary(bh_result);
941 err = count;
942 /* Clean up and exit */
943 partial = chain + depth - 1; /* the whole chain */
944cleanup:
945 while (partial > chain) {
946 BUFFER_TRACE(partial->bh, "call brelse");
947 brelse(partial->bh);
948 partial--;
949 }
950 BUFFER_TRACE(bh_result, "returned");
951out:
952 return err;
953}
954
Jan Kara7fb54092008-02-10 01:08:38 -0500955/* Maximum number of blocks we map for direct IO at once. */
956#define DIO_MAX_BLOCKS 4096
957/*
958 * Number of credits we need for writing DIO_MAX_BLOCKS:
959 * We need sb + group descriptor + bitmap + inode -> 4
960 * For B blocks with A block pointers per block we need:
961 * 1 (triple ind.) + (B/A/A + 2) (doubly ind.) + (B/A + 2) (indirect).
962 * If we plug in 4096 for B and 256 for A (for 1KB block size), we get 25.
963 */
964#define DIO_CREDITS 25
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700965
Mingming Caof5ab0d12008-02-25 15:29:55 -0500966
967/*
968 *
969 *
970 * ext4_ext4 get_block() wrapper function
971 * It will do a look up first, and returns if the blocks already mapped.
972 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
973 * and store the allocated blocks in the result buffer head and mark it
974 * mapped.
975 *
976 * If file type is extents based, it will call ext4_ext_get_blocks(),
977 * Otherwise, call with ext4_get_blocks_handle() to handle indirect mapping
978 * based files
979 *
980 * On success, it returns the number of blocks being mapped or allocate.
981 * if create==0 and the blocks are pre-allocated and uninitialized block,
982 * the result buffer head is unmapped. If the create ==1, it will make sure
983 * the buffer head is mapped.
984 *
985 * It returns 0 if plain look up failed (blocks have not been allocated), in
986 * that casem, buffer head is unmapped
987 *
988 * It returns the error in case of allocation failure.
989 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500990int ext4_get_blocks_wrap(handle_t *handle, struct inode *inode, sector_t block,
991 unsigned long max_blocks, struct buffer_head *bh,
Mingming Caod2a17632008-07-14 17:52:37 -0400992 int create, int extend_disksize, int flag)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500993{
994 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500995
996 clear_buffer_mapped(bh);
997
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500998 /*
999 * Try to see if we can get the block without requesting
1000 * for new file system block.
1001 */
1002 down_read((&EXT4_I(inode)->i_data_sem));
1003 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1004 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1005 bh, 0, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001006 } else {
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001007 retval = ext4_get_blocks_handle(handle,
1008 inode, block, max_blocks, bh, 0, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001009 }
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001010 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -05001011
1012 /* If it is only a block(s) look up */
1013 if (!create)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001014 return retval;
1015
1016 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001017 * Returns if the blocks have already allocated
1018 *
1019 * Note that if blocks have been preallocated
1020 * ext4_ext_get_block() returns th create = 0
1021 * with buffer head unmapped.
1022 */
1023 if (retval > 0 && buffer_mapped(bh))
1024 return retval;
1025
1026 /*
1027 * New blocks allocate and/or writing to uninitialized extent
1028 * will possibly result in updating i_data, so we take
1029 * the write lock of i_data_sem, and call get_blocks()
1030 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001031 */
1032 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -04001033
1034 /*
1035 * if the caller is from delayed allocation writeout path
1036 * we have already reserved fs blocks for allocation
1037 * let the underlying get_block() function know to
1038 * avoid double accounting
1039 */
1040 if (flag)
1041 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001042 /*
1043 * We need to check for EXT4 here because migrate
1044 * could have changed the inode type in between
1045 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001046 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1047 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1048 bh, create, extend_disksize);
1049 } else {
1050 retval = ext4_get_blocks_handle(handle, inode, block,
1051 max_blocks, bh, create, extend_disksize);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001052
1053 if (retval > 0 && buffer_new(bh)) {
1054 /*
1055 * We allocated new blocks which will result in
1056 * i_data's format changing. Force the migrate
1057 * to fail by clearing migrate flags
1058 */
1059 EXT4_I(inode)->i_flags = EXT4_I(inode)->i_flags &
1060 ~EXT4_EXT_MIGRATE;
1061 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001062 }
Mingming Caod2a17632008-07-14 17:52:37 -04001063
1064 if (flag) {
1065 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
1066 /*
1067 * Update reserved blocks/metadata blocks
1068 * after successful block allocation
1069 * which were deferred till now
1070 */
1071 if ((retval > 0) && buffer_delay(bh))
1072 ext4_da_release_space(inode, retval, 0);
1073 }
1074
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001075 up_write((&EXT4_I(inode)->i_data_sem));
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001076 return retval;
1077}
1078
Mingming Cao617ba132006-10-11 01:20:53 -07001079static int ext4_get_block(struct inode *inode, sector_t iblock,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001080 struct buffer_head *bh_result, int create)
1081{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -08001082 handle_t *handle = ext4_journal_current_handle();
Jan Kara7fb54092008-02-10 01:08:38 -05001083 int ret = 0, started = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
1085
Jan Kara7fb54092008-02-10 01:08:38 -05001086 if (create && !handle) {
1087 /* Direct IO write... */
1088 if (max_blocks > DIO_MAX_BLOCKS)
1089 max_blocks = DIO_MAX_BLOCKS;
1090 handle = ext4_journal_start(inode, DIO_CREDITS +
1091 2 * EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb));
1092 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001093 ret = PTR_ERR(handle);
Jan Kara7fb54092008-02-10 01:08:38 -05001094 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001095 }
Jan Kara7fb54092008-02-10 01:08:38 -05001096 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097 }
1098
Jan Kara7fb54092008-02-10 01:08:38 -05001099 ret = ext4_get_blocks_wrap(handle, inode, iblock,
Mingming Caod2a17632008-07-14 17:52:37 -04001100 max_blocks, bh_result, create, 0, 0);
Jan Kara7fb54092008-02-10 01:08:38 -05001101 if (ret > 0) {
1102 bh_result->b_size = (ret << inode->i_blkbits);
1103 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001104 }
Jan Kara7fb54092008-02-10 01:08:38 -05001105 if (started)
1106 ext4_journal_stop(handle);
1107out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001108 return ret;
1109}
1110
1111/*
1112 * `handle' can be NULL if create is zero
1113 */
Mingming Cao617ba132006-10-11 01:20:53 -07001114struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001115 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001116{
1117 struct buffer_head dummy;
1118 int fatal = 0, err;
1119
1120 J_ASSERT(handle != NULL || create == 0);
1121
1122 dummy.b_state = 0;
1123 dummy.b_blocknr = -1000;
1124 buffer_trace_init(&dummy.b_history);
Alex Tomasa86c6182006-10-11 01:21:03 -07001125 err = ext4_get_blocks_wrap(handle, inode, block, 1,
Mingming Caod2a17632008-07-14 17:52:37 -04001126 &dummy, create, 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001127 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001128 * ext4_get_blocks_handle() returns number of blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001129 * mapped. 0 in case of a HOLE.
1130 */
1131 if (err > 0) {
1132 if (err > 1)
1133 WARN_ON(1);
1134 err = 0;
1135 }
1136 *errp = err;
1137 if (!err && buffer_mapped(&dummy)) {
1138 struct buffer_head *bh;
1139 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1140 if (!bh) {
1141 *errp = -EIO;
1142 goto err;
1143 }
1144 if (buffer_new(&dummy)) {
1145 J_ASSERT(create != 0);
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001146 J_ASSERT(handle != NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001147
1148 /*
1149 * Now that we do not always journal data, we should
1150 * keep in mind whether this should always journal the
1151 * new buffer as metadata. For now, regular file
Mingming Cao617ba132006-10-11 01:20:53 -07001152 * writes use ext4_get_block instead, so it's not a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001153 * problem.
1154 */
1155 lock_buffer(bh);
1156 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001157 fatal = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001158 if (!fatal && !buffer_uptodate(bh)) {
1159 memset(bh->b_data,0,inode->i_sb->s_blocksize);
1160 set_buffer_uptodate(bh);
1161 }
1162 unlock_buffer(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001163 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
1164 err = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001165 if (!fatal)
1166 fatal = err;
1167 } else {
1168 BUFFER_TRACE(bh, "not a new buffer");
1169 }
1170 if (fatal) {
1171 *errp = fatal;
1172 brelse(bh);
1173 bh = NULL;
1174 }
1175 return bh;
1176 }
1177err:
1178 return NULL;
1179}
1180
Mingming Cao617ba132006-10-11 01:20:53 -07001181struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001182 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001183{
1184 struct buffer_head * bh;
1185
Mingming Cao617ba132006-10-11 01:20:53 -07001186 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001187 if (!bh)
1188 return bh;
1189 if (buffer_uptodate(bh))
1190 return bh;
1191 ll_rw_block(READ_META, 1, &bh);
1192 wait_on_buffer(bh);
1193 if (buffer_uptodate(bh))
1194 return bh;
1195 put_bh(bh);
1196 *err = -EIO;
1197 return NULL;
1198}
1199
1200static int walk_page_buffers( handle_t *handle,
1201 struct buffer_head *head,
1202 unsigned from,
1203 unsigned to,
1204 int *partial,
1205 int (*fn)( handle_t *handle,
1206 struct buffer_head *bh))
1207{
1208 struct buffer_head *bh;
1209 unsigned block_start, block_end;
1210 unsigned blocksize = head->b_size;
1211 int err, ret = 0;
1212 struct buffer_head *next;
1213
1214 for ( bh = head, block_start = 0;
1215 ret == 0 && (bh != head || !block_start);
1216 block_start = block_end, bh = next)
1217 {
1218 next = bh->b_this_page;
1219 block_end = block_start + blocksize;
1220 if (block_end <= from || block_start >= to) {
1221 if (partial && !buffer_uptodate(bh))
1222 *partial = 1;
1223 continue;
1224 }
1225 err = (*fn)(handle, bh);
1226 if (!ret)
1227 ret = err;
1228 }
1229 return ret;
1230}
1231
1232/*
1233 * To preserve ordering, it is essential that the hole instantiation and
1234 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -07001235 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -07001236 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001237 * prepare_write() is the right place.
1238 *
Mingming Cao617ba132006-10-11 01:20:53 -07001239 * Also, this function can nest inside ext4_writepage() ->
1240 * block_write_full_page(). In that case, we *know* that ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001241 * has generated enough buffer credits to do the whole page. So we won't
1242 * block on the journal in that case, which is good, because the caller may
1243 * be PF_MEMALLOC.
1244 *
Mingming Cao617ba132006-10-11 01:20:53 -07001245 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001246 * quota file writes. If we were to commit the transaction while thus
1247 * reentered, there can be a deadlock - we would be holding a quota
1248 * lock, and the commit would never complete if another thread had a
1249 * transaction open and was blocking on the quota lock - a ranking
1250 * violation.
1251 *
Mingming Caodab291a2006-10-11 01:21:01 -07001252 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001253 * will _not_ run commit under these circumstances because handle->h_ref
1254 * is elevated. We'll still have enough credits for the tiny quotafile
1255 * write.
1256 */
1257static int do_journal_get_write_access(handle_t *handle,
1258 struct buffer_head *bh)
1259{
1260 if (!buffer_mapped(bh) || buffer_freed(bh))
1261 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001262 return ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001263}
1264
Nick Pigginbfc1af62007-10-16 01:25:05 -07001265static int ext4_write_begin(struct file *file, struct address_space *mapping,
1266 loff_t pos, unsigned len, unsigned flags,
1267 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001268{
Nick Pigginbfc1af62007-10-16 01:25:05 -07001269 struct inode *inode = mapping->host;
Andrew Morton7479d2b2007-04-01 23:49:44 -07001270 int ret, needed_blocks = ext4_writepage_trans_blocks(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001271 handle_t *handle;
1272 int retries = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001273 struct page *page;
1274 pgoff_t index;
1275 unsigned from, to;
1276
1277 index = pos >> PAGE_CACHE_SHIFT;
1278 from = pos & (PAGE_CACHE_SIZE - 1);
1279 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001280
1281retry:
Nick Pigginbfc1af62007-10-16 01:25:05 -07001282 handle = ext4_journal_start(inode, needed_blocks);
1283 if (IS_ERR(handle)) {
Nick Pigginbfc1af62007-10-16 01:25:05 -07001284 ret = PTR_ERR(handle);
1285 goto out;
1286 }
1287
Jan Karacf108bc2008-07-11 19:27:31 -04001288 page = __grab_cache_page(mapping, index);
1289 if (!page) {
1290 ext4_journal_stop(handle);
1291 ret = -ENOMEM;
1292 goto out;
1293 }
1294 *pagep = page;
1295
Nick Pigginbfc1af62007-10-16 01:25:05 -07001296 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
1297 ext4_get_block);
1298
1299 if (!ret && ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001300 ret = walk_page_buffers(handle, page_buffers(page),
1301 from, to, NULL, do_journal_get_write_access);
1302 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001303
1304 if (ret) {
Nick Pigginbfc1af62007-10-16 01:25:05 -07001305 unlock_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001306 ext4_journal_stop(handle);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001307 page_cache_release(page);
1308 }
1309
Mingming Cao617ba132006-10-11 01:20:53 -07001310 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001311 goto retry;
Andrew Morton7479d2b2007-04-01 23:49:44 -07001312out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001313 return ret;
1314}
1315
Nick Pigginbfc1af62007-10-16 01:25:05 -07001316/* For write_end() in data=journal mode */
1317static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001318{
1319 if (!buffer_mapped(bh) || buffer_freed(bh))
1320 return 0;
1321 set_buffer_uptodate(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001322 return ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001323}
1324
1325/*
1326 * We need to pick up the new inode size which generic_commit_write gave us
1327 * `file' can be NULL - eg, when called from page_symlink().
1328 *
Mingming Cao617ba132006-10-11 01:20:53 -07001329 * ext4 never places buffers on inode->i_mapping->private_list. metadata
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001330 * buffers are managed internally.
1331 */
Nick Pigginbfc1af62007-10-16 01:25:05 -07001332static int ext4_ordered_write_end(struct file *file,
1333 struct address_space *mapping,
1334 loff_t pos, unsigned len, unsigned copied,
1335 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001336{
Mingming Cao617ba132006-10-11 01:20:53 -07001337 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001338 struct inode *inode = mapping->host;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001339 unsigned from, to;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001340 int ret = 0, ret2;
1341
Nick Pigginbfc1af62007-10-16 01:25:05 -07001342 from = pos & (PAGE_CACHE_SIZE - 1);
1343 to = from + len;
1344
Jan Kara678aaf42008-07-11 19:27:31 -04001345 ret = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001346
1347 if (ret == 0) {
1348 /*
Nick Pigginbfc1af62007-10-16 01:25:05 -07001349 * generic_write_end() will run mark_inode_dirty() if i_size
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001350 * changes. So let's piggyback the i_disksize mark_inode_dirty
1351 * into that.
1352 */
1353 loff_t new_i_size;
1354
Nick Pigginbfc1af62007-10-16 01:25:05 -07001355 new_i_size = pos + copied;
Mingming Cao617ba132006-10-11 01:20:53 -07001356 if (new_i_size > EXT4_I(inode)->i_disksize)
1357 EXT4_I(inode)->i_disksize = new_i_size;
Jan Karacf108bc2008-07-11 19:27:31 -04001358 ret2 = generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001359 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001360 copied = ret2;
1361 if (ret2 < 0)
1362 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001363 }
Mingming Cao617ba132006-10-11 01:20:53 -07001364 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365 if (!ret)
1366 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001367
1368 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001369}
1370
Nick Pigginbfc1af62007-10-16 01:25:05 -07001371static int ext4_writeback_write_end(struct file *file,
1372 struct address_space *mapping,
1373 loff_t pos, unsigned len, unsigned copied,
1374 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001375{
Mingming Cao617ba132006-10-11 01:20:53 -07001376 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001377 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001378 int ret = 0, ret2;
1379 loff_t new_i_size;
1380
Nick Pigginbfc1af62007-10-16 01:25:05 -07001381 new_i_size = pos + copied;
Mingming Cao617ba132006-10-11 01:20:53 -07001382 if (new_i_size > EXT4_I(inode)->i_disksize)
1383 EXT4_I(inode)->i_disksize = new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001384
Jan Karacf108bc2008-07-11 19:27:31 -04001385 ret2 = generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001386 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001387 copied = ret2;
1388 if (ret2 < 0)
1389 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001390
Mingming Cao617ba132006-10-11 01:20:53 -07001391 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001392 if (!ret)
1393 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001394
1395 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001396}
1397
Nick Pigginbfc1af62007-10-16 01:25:05 -07001398static int ext4_journalled_write_end(struct file *file,
1399 struct address_space *mapping,
1400 loff_t pos, unsigned len, unsigned copied,
1401 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001402{
Mingming Cao617ba132006-10-11 01:20:53 -07001403 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001404 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001405 int ret = 0, ret2;
1406 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001407 unsigned from, to;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001408
Nick Pigginbfc1af62007-10-16 01:25:05 -07001409 from = pos & (PAGE_CACHE_SIZE - 1);
1410 to = from + len;
1411
1412 if (copied < len) {
1413 if (!PageUptodate(page))
1414 copied = 0;
1415 page_zero_new_buffers(page, from+copied, to);
1416 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001417
1418 ret = walk_page_buffers(handle, page_buffers(page), from,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001419 to, &partial, write_end_fn);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 if (!partial)
1421 SetPageUptodate(page);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001422 if (pos+copied > inode->i_size)
1423 i_size_write(inode, pos+copied);
Mingming Cao617ba132006-10-11 01:20:53 -07001424 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
1425 if (inode->i_size > EXT4_I(inode)->i_disksize) {
1426 EXT4_I(inode)->i_disksize = inode->i_size;
1427 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001428 if (!ret)
1429 ret = ret2;
1430 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001431
Jan Karacf108bc2008-07-11 19:27:31 -04001432 unlock_page(page);
Mingming Cao617ba132006-10-11 01:20:53 -07001433 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001434 if (!ret)
1435 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001436 page_cache_release(page);
1437
1438 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001439}
Mingming Caod2a17632008-07-14 17:52:37 -04001440/*
1441 * Calculate the number of metadata blocks need to reserve
1442 * to allocate @blocks for non extent file based file
1443 */
1444static int ext4_indirect_calc_metadata_amount(struct inode *inode, int blocks)
1445{
1446 int icap = EXT4_ADDR_PER_BLOCK(inode->i_sb);
1447 int ind_blks, dind_blks, tind_blks;
1448
1449 /* number of new indirect blocks needed */
1450 ind_blks = (blocks + icap - 1) / icap;
1451
1452 dind_blks = (ind_blks + icap - 1) / icap;
1453
1454 tind_blks = 1;
1455
1456 return ind_blks + dind_blks + tind_blks;
1457}
1458
1459/*
1460 * Calculate the number of metadata blocks need to reserve
1461 * to allocate given number of blocks
1462 */
1463static int ext4_calc_metadata_amount(struct inode *inode, int blocks)
1464{
1465 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
1466 return ext4_ext_calc_metadata_amount(inode, blocks);
1467
1468 return ext4_indirect_calc_metadata_amount(inode, blocks);
1469}
1470
1471static int ext4_da_reserve_space(struct inode *inode, int nrblocks)
1472{
1473 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1474 unsigned long md_needed, mdblocks, total = 0;
1475
1476 /*
1477 * recalculate the amount of metadata blocks to reserve
1478 * in order to allocate nrblocks
1479 * worse case is one extent per block
1480 */
1481 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1482 total = EXT4_I(inode)->i_reserved_data_blocks + nrblocks;
1483 mdblocks = ext4_calc_metadata_amount(inode, total);
1484 BUG_ON(mdblocks < EXT4_I(inode)->i_reserved_meta_blocks);
1485
1486 md_needed = mdblocks - EXT4_I(inode)->i_reserved_meta_blocks;
1487 total = md_needed + nrblocks;
1488
1489 if (ext4_has_free_blocks(sbi, total) < total) {
1490 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1491 return -ENOSPC;
1492 }
1493
1494 /* reduce fs free blocks counter */
1495 percpu_counter_sub(&sbi->s_freeblocks_counter, total);
1496
1497 EXT4_I(inode)->i_reserved_data_blocks += nrblocks;
1498 EXT4_I(inode)->i_reserved_meta_blocks = mdblocks;
1499
1500 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1501 return 0; /* success */
1502}
1503
1504void ext4_da_release_space(struct inode *inode, int used, int to_free)
1505{
1506 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1507 int total, mdb, mdb_free, release;
1508
1509 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1510 /* recalculate the number of metablocks still need to be reserved */
1511 total = EXT4_I(inode)->i_reserved_data_blocks - used - to_free;
1512 mdb = ext4_calc_metadata_amount(inode, total);
1513
1514 /* figure out how many metablocks to release */
1515 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1516 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1517
1518 /* Account for allocated meta_blocks */
1519 mdb_free -= EXT4_I(inode)->i_allocated_meta_blocks;
1520
1521 release = to_free + mdb_free;
1522
1523 /* update fs free blocks counter for truncate case */
1524 percpu_counter_add(&sbi->s_freeblocks_counter, release);
1525
1526 /* update per-inode reservations */
1527 BUG_ON(used + to_free > EXT4_I(inode)->i_reserved_data_blocks);
1528 EXT4_I(inode)->i_reserved_data_blocks -= (used + to_free);
1529
1530 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1531 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
1532 EXT4_I(inode)->i_allocated_meta_blocks = 0;
1533 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1534}
1535
1536static void ext4_da_page_release_reservation(struct page *page,
1537 unsigned long offset)
1538{
1539 int to_release = 0;
1540 struct buffer_head *head, *bh;
1541 unsigned int curr_off = 0;
1542
1543 head = page_buffers(page);
1544 bh = head;
1545 do {
1546 unsigned int next_off = curr_off + bh->b_size;
1547
1548 if ((offset <= curr_off) && (buffer_delay(bh))) {
1549 to_release++;
1550 clear_buffer_delay(bh);
1551 }
1552 curr_off = next_off;
1553 } while ((bh = bh->b_this_page) != head);
1554 ext4_da_release_space(page->mapping->host, 0, to_release);
1555}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001556
1557/*
Alex Tomas64769242008-07-11 19:27:31 -04001558 * Delayed allocation stuff
1559 */
1560
1561struct mpage_da_data {
1562 struct inode *inode;
1563 struct buffer_head lbh; /* extent of blocks */
1564 unsigned long first_page, next_page; /* extent of pages */
1565 get_block_t *get_block;
1566 struct writeback_control *wbc;
1567};
1568
1569/*
1570 * mpage_da_submit_io - walks through extent of pages and try to write
1571 * them with __mpage_writepage()
1572 *
1573 * @mpd->inode: inode
1574 * @mpd->first_page: first page of the extent
1575 * @mpd->next_page: page after the last page of the extent
1576 * @mpd->get_block: the filesystem's block mapper function
1577 *
1578 * By the time mpage_da_submit_io() is called we expect all blocks
1579 * to be allocated. this may be wrong if allocation failed.
1580 *
1581 * As pages are already locked by write_cache_pages(), we can't use it
1582 */
1583static int mpage_da_submit_io(struct mpage_da_data *mpd)
1584{
1585 struct address_space *mapping = mpd->inode->i_mapping;
1586 struct mpage_data mpd_pp = {
1587 .bio = NULL,
1588 .last_block_in_bio = 0,
1589 .get_block = mpd->get_block,
1590 .use_writepage = 1,
1591 };
1592 int ret = 0, err, nr_pages, i;
1593 unsigned long index, end;
1594 struct pagevec pvec;
1595
1596 BUG_ON(mpd->next_page <= mpd->first_page);
1597
1598 pagevec_init(&pvec, 0);
1599 index = mpd->first_page;
1600 end = mpd->next_page - 1;
1601
1602 while (index <= end) {
1603 /* XXX: optimize tail */
1604 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1605 if (nr_pages == 0)
1606 break;
1607 for (i = 0; i < nr_pages; i++) {
1608 struct page *page = pvec.pages[i];
1609
1610 index = page->index;
1611 if (index > end)
1612 break;
1613 index++;
1614
1615 err = __mpage_writepage(page, mpd->wbc, &mpd_pp);
1616
1617 /*
1618 * In error case, we have to continue because
1619 * remaining pages are still locked
1620 * XXX: unlock and re-dirty them?
1621 */
1622 if (ret == 0)
1623 ret = err;
1624 }
1625 pagevec_release(&pvec);
1626 }
1627 if (mpd_pp.bio)
1628 mpage_bio_submit(WRITE, mpd_pp.bio);
1629
1630 return ret;
1631}
1632
1633/*
1634 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
1635 *
1636 * @mpd->inode - inode to walk through
1637 * @exbh->b_blocknr - first block on a disk
1638 * @exbh->b_size - amount of space in bytes
1639 * @logical - first logical block to start assignment with
1640 *
1641 * the function goes through all passed space and put actual disk
1642 * block numbers into buffer heads, dropping BH_Delay
1643 */
1644static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
1645 struct buffer_head *exbh)
1646{
1647 struct inode *inode = mpd->inode;
1648 struct address_space *mapping = inode->i_mapping;
1649 int blocks = exbh->b_size >> inode->i_blkbits;
1650 sector_t pblock = exbh->b_blocknr, cur_logical;
1651 struct buffer_head *head, *bh;
1652 unsigned long index, end;
1653 struct pagevec pvec;
1654 int nr_pages, i;
1655
1656 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1657 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1658 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1659
1660 pagevec_init(&pvec, 0);
1661
1662 while (index <= end) {
1663 /* XXX: optimize tail */
1664 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1665 if (nr_pages == 0)
1666 break;
1667 for (i = 0; i < nr_pages; i++) {
1668 struct page *page = pvec.pages[i];
1669
1670 index = page->index;
1671 if (index > end)
1672 break;
1673 index++;
1674
1675 BUG_ON(!PageLocked(page));
1676 BUG_ON(PageWriteback(page));
1677 BUG_ON(!page_has_buffers(page));
1678
1679 bh = page_buffers(page);
1680 head = bh;
1681
1682 /* skip blocks out of the range */
1683 do {
1684 if (cur_logical >= logical)
1685 break;
1686 cur_logical++;
1687 } while ((bh = bh->b_this_page) != head);
1688
1689 do {
1690 if (cur_logical >= logical + blocks)
1691 break;
Alex Tomas64769242008-07-11 19:27:31 -04001692 if (buffer_delay(bh)) {
1693 bh->b_blocknr = pblock;
1694 clear_buffer_delay(bh);
Mingming Cao61628a32008-07-11 19:27:31 -04001695 } else if (buffer_mapped(bh))
Alex Tomas64769242008-07-11 19:27:31 -04001696 BUG_ON(bh->b_blocknr != pblock);
Alex Tomas64769242008-07-11 19:27:31 -04001697
1698 cur_logical++;
1699 pblock++;
1700 } while ((bh = bh->b_this_page) != head);
1701 }
1702 pagevec_release(&pvec);
1703 }
1704}
1705
1706
1707/*
1708 * __unmap_underlying_blocks - just a helper function to unmap
1709 * set of blocks described by @bh
1710 */
1711static inline void __unmap_underlying_blocks(struct inode *inode,
1712 struct buffer_head *bh)
1713{
1714 struct block_device *bdev = inode->i_sb->s_bdev;
1715 int blocks, i;
1716
1717 blocks = bh->b_size >> inode->i_blkbits;
1718 for (i = 0; i < blocks; i++)
1719 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
1720}
1721
1722/*
1723 * mpage_da_map_blocks - go through given space
1724 *
1725 * @mpd->lbh - bh describing space
1726 * @mpd->get_block - the filesystem's block mapper function
1727 *
1728 * The function skips space we know is already mapped to disk blocks.
1729 *
1730 * The function ignores errors ->get_block() returns, thus real
1731 * error handling is postponed to __mpage_writepage()
1732 */
1733static void mpage_da_map_blocks(struct mpage_da_data *mpd)
1734{
1735 struct buffer_head *lbh = &mpd->lbh;
1736 int err = 0, remain = lbh->b_size;
1737 sector_t next = lbh->b_blocknr;
1738 struct buffer_head new;
1739
1740 /*
1741 * We consider only non-mapped and non-allocated blocks
1742 */
1743 if (buffer_mapped(lbh) && !buffer_delay(lbh))
1744 return;
1745
1746 while (remain) {
1747 new.b_state = lbh->b_state;
1748 new.b_blocknr = 0;
1749 new.b_size = remain;
1750 err = mpd->get_block(mpd->inode, next, &new, 1);
1751 if (err) {
1752 /*
1753 * Rather than implement own error handling
1754 * here, we just leave remaining blocks
1755 * unallocated and try again with ->writepage()
1756 */
1757 break;
1758 }
1759 BUG_ON(new.b_size == 0);
1760
1761 if (buffer_new(&new))
1762 __unmap_underlying_blocks(mpd->inode, &new);
1763
1764 /*
1765 * If blocks are delayed marked, we need to
1766 * put actual blocknr and drop delayed bit
1767 */
1768 if (buffer_delay(lbh))
1769 mpage_put_bnr_to_bhs(mpd, next, &new);
1770
Mingming Cao61628a32008-07-11 19:27:31 -04001771 /* go for the remaining blocks */
1772 next += new.b_size >> mpd->inode->i_blkbits;
1773 remain -= new.b_size;
1774 }
Alex Tomas64769242008-07-11 19:27:31 -04001775}
1776
1777#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | (1 << BH_Delay))
1778
1779/*
1780 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
1781 *
1782 * @mpd->lbh - extent of blocks
1783 * @logical - logical number of the block in the file
1784 * @bh - bh of the block (used to access block's state)
1785 *
1786 * the function is used to collect contig. blocks in same state
1787 */
1788static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
1789 sector_t logical, struct buffer_head *bh)
1790{
1791 struct buffer_head *lbh = &mpd->lbh;
1792 sector_t next;
1793
1794 next = lbh->b_blocknr + (lbh->b_size >> mpd->inode->i_blkbits);
1795
1796 /*
1797 * First block in the extent
1798 */
1799 if (lbh->b_size == 0) {
1800 lbh->b_blocknr = logical;
1801 lbh->b_size = bh->b_size;
1802 lbh->b_state = bh->b_state & BH_FLAGS;
1803 return;
1804 }
1805
1806 /*
1807 * Can we merge the block to our big extent?
1808 */
1809 if (logical == next && (bh->b_state & BH_FLAGS) == lbh->b_state) {
1810 lbh->b_size += bh->b_size;
1811 return;
1812 }
1813
1814 /*
1815 * We couldn't merge the block to our extent, so we
1816 * need to flush current extent and start new one
1817 */
1818 mpage_da_map_blocks(mpd);
1819
1820 /*
1821 * Now start a new extent
1822 */
1823 lbh->b_size = bh->b_size;
1824 lbh->b_state = bh->b_state & BH_FLAGS;
1825 lbh->b_blocknr = logical;
1826}
1827
1828/*
1829 * __mpage_da_writepage - finds extent of pages and blocks
1830 *
1831 * @page: page to consider
1832 * @wbc: not used, we just follow rules
1833 * @data: context
1834 *
1835 * The function finds extents of pages and scan them for all blocks.
1836 */
1837static int __mpage_da_writepage(struct page *page,
1838 struct writeback_control *wbc, void *data)
1839{
1840 struct mpage_da_data *mpd = data;
1841 struct inode *inode = mpd->inode;
1842 struct buffer_head *bh, *head, fake;
1843 sector_t logical;
1844
1845 /*
1846 * Can we merge this page to current extent?
1847 */
1848 if (mpd->next_page != page->index) {
1849 /*
1850 * Nope, we can't. So, we map non-allocated blocks
1851 * and start IO on them using __mpage_writepage()
1852 */
1853 if (mpd->next_page != mpd->first_page) {
1854 mpage_da_map_blocks(mpd);
1855 mpage_da_submit_io(mpd);
1856 }
1857
1858 /*
1859 * Start next extent of pages ...
1860 */
1861 mpd->first_page = page->index;
1862
1863 /*
1864 * ... and blocks
1865 */
1866 mpd->lbh.b_size = 0;
1867 mpd->lbh.b_state = 0;
1868 mpd->lbh.b_blocknr = 0;
1869 }
1870
1871 mpd->next_page = page->index + 1;
1872 logical = (sector_t) page->index <<
1873 (PAGE_CACHE_SHIFT - inode->i_blkbits);
1874
1875 if (!page_has_buffers(page)) {
1876 /*
1877 * There is no attached buffer heads yet (mmap?)
1878 * we treat the page asfull of dirty blocks
1879 */
1880 bh = &fake;
1881 bh->b_size = PAGE_CACHE_SIZE;
1882 bh->b_state = 0;
1883 set_buffer_dirty(bh);
1884 set_buffer_uptodate(bh);
1885 mpage_add_bh_to_extent(mpd, logical, bh);
1886 } else {
1887 /*
1888 * Page with regular buffer heads, just add all dirty ones
1889 */
1890 head = page_buffers(page);
1891 bh = head;
1892 do {
1893 BUG_ON(buffer_locked(bh));
1894 if (buffer_dirty(bh))
1895 mpage_add_bh_to_extent(mpd, logical, bh);
1896 logical++;
1897 } while ((bh = bh->b_this_page) != head);
1898 }
1899
1900 return 0;
1901}
1902
1903/*
1904 * mpage_da_writepages - walk the list of dirty pages of the given
1905 * address space, allocates non-allocated blocks, maps newly-allocated
1906 * blocks to existing bhs and issue IO them
1907 *
1908 * @mapping: address space structure to write
1909 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
1910 * @get_block: the filesystem's block mapper function.
1911 *
1912 * This is a library function, which implements the writepages()
1913 * address_space_operation.
1914 *
1915 * In order to avoid duplication of logic that deals with partial pages,
1916 * multiple bio per page, etc, we find non-allocated blocks, allocate
1917 * them with minimal calls to ->get_block() and re-use __mpage_writepage()
1918 *
1919 * It's important that we call __mpage_writepage() only once for each
1920 * involved page, otherwise we'd have to implement more complicated logic
1921 * to deal with pages w/o PG_lock or w/ PG_writeback and so on.
1922 *
1923 * See comments to mpage_writepages()
1924 */
1925static int mpage_da_writepages(struct address_space *mapping,
1926 struct writeback_control *wbc,
1927 get_block_t get_block)
1928{
1929 struct mpage_da_data mpd;
1930 int ret;
1931
1932 if (!get_block)
1933 return generic_writepages(mapping, wbc);
1934
1935 mpd.wbc = wbc;
1936 mpd.inode = mapping->host;
1937 mpd.lbh.b_size = 0;
1938 mpd.lbh.b_state = 0;
1939 mpd.lbh.b_blocknr = 0;
1940 mpd.first_page = 0;
1941 mpd.next_page = 0;
1942 mpd.get_block = get_block;
1943
1944 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage, &mpd);
1945
1946 /*
1947 * Handle last extent of pages
1948 */
1949 if (mpd.next_page != mpd.first_page) {
1950 mpage_da_map_blocks(&mpd);
1951 mpage_da_submit_io(&mpd);
1952 }
1953
1954 return ret;
1955}
1956
1957/*
1958 * this is a special callback for ->write_begin() only
1959 * it's intention is to return mapped block or reserve space
1960 */
1961static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1962 struct buffer_head *bh_result, int create)
1963{
1964 int ret = 0;
1965
1966 BUG_ON(create == 0);
1967 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
1968
1969 /*
1970 * first, we need to know whether the block is allocated already
1971 * preallocated blocks are unmapped but should treated
1972 * the same as allocated blocks.
1973 */
Mingming Caod2a17632008-07-14 17:52:37 -04001974 ret = ext4_get_blocks_wrap(NULL, inode, iblock, 1, bh_result, 0, 0, 0);
1975 if ((ret == 0) && !buffer_delay(bh_result)) {
1976 /* the block isn't (pre)allocated yet, let's reserve space */
Alex Tomas64769242008-07-11 19:27:31 -04001977 /*
1978 * XXX: __block_prepare_write() unmaps passed block,
1979 * is it OK?
1980 */
Mingming Caod2a17632008-07-14 17:52:37 -04001981 ret = ext4_da_reserve_space(inode, 1);
1982 if (ret)
1983 /* not enough space to reserve */
1984 return ret;
1985
Alex Tomas64769242008-07-11 19:27:31 -04001986 map_bh(bh_result, inode->i_sb, 0);
1987 set_buffer_new(bh_result);
1988 set_buffer_delay(bh_result);
1989 } else if (ret > 0) {
1990 bh_result->b_size = (ret << inode->i_blkbits);
1991 ret = 0;
1992 }
1993
1994 return ret;
1995}
Mingming Caod2a17632008-07-14 17:52:37 -04001996#define EXT4_DELALLOC_RSVED 1
Alex Tomas64769242008-07-11 19:27:31 -04001997static int ext4_da_get_block_write(struct inode *inode, sector_t iblock,
1998 struct buffer_head *bh_result, int create)
1999{
Mingming Cao61628a32008-07-11 19:27:31 -04002000 int ret;
Alex Tomas64769242008-07-11 19:27:31 -04002001 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2002 loff_t disksize = EXT4_I(inode)->i_disksize;
2003 handle_t *handle = NULL;
2004
Mingming Cao61628a32008-07-11 19:27:31 -04002005 handle = ext4_journal_current_handle();
2006 BUG_ON(handle == NULL);
2007 BUG_ON(create == 0);
Alex Tomas64769242008-07-11 19:27:31 -04002008
2009 ret = ext4_get_blocks_wrap(handle, inode, iblock, max_blocks,
Mingming Caod2a17632008-07-14 17:52:37 -04002010 bh_result, create, 0, EXT4_DELALLOC_RSVED);
Alex Tomas64769242008-07-11 19:27:31 -04002011 if (ret > 0) {
2012 bh_result->b_size = (ret << inode->i_blkbits);
2013
2014 /*
2015 * Update on-disk size along with block allocation
2016 * we don't use 'extend_disksize' as size may change
2017 * within already allocated block -bzzz
2018 */
2019 disksize = ((loff_t) iblock + ret) << inode->i_blkbits;
2020 if (disksize > i_size_read(inode))
2021 disksize = i_size_read(inode);
2022 if (disksize > EXT4_I(inode)->i_disksize) {
2023 /*
2024 * XXX: replace with spinlock if seen contended -bzzz
2025 */
2026 down_write(&EXT4_I(inode)->i_data_sem);
2027 if (disksize > EXT4_I(inode)->i_disksize)
2028 EXT4_I(inode)->i_disksize = disksize;
2029 up_write(&EXT4_I(inode)->i_data_sem);
2030
2031 if (EXT4_I(inode)->i_disksize == disksize) {
Mingming Cao61628a32008-07-11 19:27:31 -04002032 ret = ext4_mark_inode_dirty(handle, inode);
2033 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002034 }
2035 }
Alex Tomas64769242008-07-11 19:27:31 -04002036 ret = 0;
2037 }
Alex Tomas64769242008-07-11 19:27:31 -04002038 return ret;
2039}
Mingming Cao61628a32008-07-11 19:27:31 -04002040
2041static int ext4_bh_unmapped_or_delay(handle_t *handle, struct buffer_head *bh)
2042{
2043 return !buffer_mapped(bh) || buffer_delay(bh);
2044}
2045
Mingming Cao61628a32008-07-11 19:27:31 -04002046/*
2047 * get called vi ext4_da_writepages after taking page lock
2048 * We may end up doing block allocation here in case
2049 * mpage_da_map_blocks failed to allocate blocks.
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002050 *
2051 * We also get called via journal_submit_inode_data_buffers
Mingming Cao61628a32008-07-11 19:27:31 -04002052 */
Alex Tomas64769242008-07-11 19:27:31 -04002053static int ext4_da_writepage(struct page *page,
2054 struct writeback_control *wbc)
2055{
Alex Tomas64769242008-07-11 19:27:31 -04002056 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002057 loff_t size;
2058 unsigned long len;
2059 handle_t *handle = NULL;
2060 struct buffer_head *page_bufs;
2061 struct inode *inode = page->mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002062
Mingming Cao61628a32008-07-11 19:27:31 -04002063 handle = ext4_journal_current_handle();
2064 if (!handle) {
2065 /*
2066 * This can happen when we aren't called via
2067 * ext4_da_writepages() but directly (shrink_page_list).
2068 * We cannot easily start a transaction here so we just skip
2069 * writing the page in case we would have to do so.
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002070 * We reach here also via journal_submit_inode_data_buffers
Mingming Cao61628a32008-07-11 19:27:31 -04002071 */
2072 size = i_size_read(inode);
Alex Tomas64769242008-07-11 19:27:31 -04002073
Mingming Cao61628a32008-07-11 19:27:31 -04002074 page_bufs = page_buffers(page);
2075 if (page->index == size >> PAGE_CACHE_SHIFT)
2076 len = size & ~PAGE_CACHE_MASK;
2077 else
2078 len = PAGE_CACHE_SIZE;
2079
2080 if (walk_page_buffers(NULL, page_bufs, 0,
2081 len, NULL, ext4_bh_unmapped_or_delay)) {
2082 /*
2083 * We can't do block allocation under
2084 * page lock without a handle . So redirty
2085 * the page and return
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002086 * We may reach here when we do a journal commit
2087 * via journal_submit_inode_data_buffers.
2088 * If we don't have mapping block we just ignore
2089 * them
Mingming Cao61628a32008-07-11 19:27:31 -04002090 */
Mingming Cao61628a32008-07-11 19:27:31 -04002091 redirty_page_for_writepage(wbc, page);
2092 unlock_page(page);
2093 return 0;
2094 }
Alex Tomas64769242008-07-11 19:27:31 -04002095 }
2096
2097 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
Mingming Cao61628a32008-07-11 19:27:31 -04002098 ret = nobh_writepage(page, ext4_da_get_block_write, wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002099 else
Mingming Cao61628a32008-07-11 19:27:31 -04002100 ret = block_write_full_page(page, ext4_da_get_block_write, wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002101
Alex Tomas64769242008-07-11 19:27:31 -04002102 return ret;
2103}
2104
Mingming Cao61628a32008-07-11 19:27:31 -04002105/*
2106 * For now just follow the DIO way to estimate the max credits
2107 * needed to write out EXT4_MAX_WRITEBACK_PAGES.
2108 * todo: need to calculate the max credits need for
2109 * extent based files, currently the DIO credits is based on
2110 * indirect-blocks mapping way.
2111 *
2112 * Probably should have a generic way to calculate credits
2113 * for DIO, writepages, and truncate
2114 */
2115#define EXT4_MAX_WRITEBACK_PAGES DIO_MAX_BLOCKS
2116#define EXT4_MAX_WRITEBACK_CREDITS DIO_CREDITS
2117
Alex Tomas64769242008-07-11 19:27:31 -04002118static int ext4_da_writepages(struct address_space *mapping,
2119 struct writeback_control *wbc)
2120{
Mingming Cao61628a32008-07-11 19:27:31 -04002121 struct inode *inode = mapping->host;
2122 handle_t *handle = NULL;
2123 int needed_blocks;
2124 int ret = 0;
2125 long to_write;
2126 loff_t range_start = 0;
2127
2128 /*
2129 * No pages to write? This is mainly a kludge to avoid starting
2130 * a transaction for special inodes like journal inode on last iput()
2131 * because that could violate lock ordering on umount
2132 */
2133 if (!mapping->nrpages)
2134 return 0;
2135
2136 /*
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002137 * Estimate the worse case needed credits to write out
Mingming Cao61628a32008-07-11 19:27:31 -04002138 * EXT4_MAX_BUF_BLOCKS pages
2139 */
2140 needed_blocks = EXT4_MAX_WRITEBACK_CREDITS;
2141
2142 to_write = wbc->nr_to_write;
2143 if (!wbc->range_cyclic) {
2144 /*
2145 * If range_cyclic is not set force range_cont
2146 * and save the old writeback_index
2147 */
2148 wbc->range_cont = 1;
2149 range_start = wbc->range_start;
2150 }
2151
2152 while (!ret && to_write) {
2153 /* start a new transaction*/
2154 handle = ext4_journal_start(inode, needed_blocks);
2155 if (IS_ERR(handle)) {
2156 ret = PTR_ERR(handle);
2157 goto out_writepages;
2158 }
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002159 if (ext4_should_order_data(inode)) {
2160 /*
2161 * With ordered mode we need to add
2162 * the inode to the journal handle
2163 * when we do block allocation.
2164 */
2165 ret = ext4_jbd2_file_inode(handle, inode);
2166 if (ret) {
2167 ext4_journal_stop(handle);
2168 goto out_writepages;
2169 }
2170
2171 }
Mingming Cao61628a32008-07-11 19:27:31 -04002172 /*
2173 * set the max dirty pages could be write at a time
2174 * to fit into the reserved transaction credits
2175 */
2176 if (wbc->nr_to_write > EXT4_MAX_WRITEBACK_PAGES)
2177 wbc->nr_to_write = EXT4_MAX_WRITEBACK_PAGES;
2178
2179 to_write -= wbc->nr_to_write;
2180 ret = mpage_da_writepages(mapping, wbc,
2181 ext4_da_get_block_write);
2182 ext4_journal_stop(handle);
2183 if (wbc->nr_to_write) {
2184 /*
2185 * There is no more writeout needed
2186 * or we requested for a noblocking writeout
2187 * and we found the device congested
2188 */
2189 to_write += wbc->nr_to_write;
2190 break;
2191 }
2192 wbc->nr_to_write = to_write;
2193 }
2194
2195out_writepages:
2196 wbc->nr_to_write = to_write;
2197 if (range_start)
2198 wbc->range_start = range_start;
2199 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002200}
2201
2202static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
2203 loff_t pos, unsigned len, unsigned flags,
2204 struct page **pagep, void **fsdata)
2205{
Mingming Caod2a17632008-07-14 17:52:37 -04002206 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002207 struct page *page;
2208 pgoff_t index;
2209 unsigned from, to;
2210 struct inode *inode = mapping->host;
2211 handle_t *handle;
2212
2213 index = pos >> PAGE_CACHE_SHIFT;
2214 from = pos & (PAGE_CACHE_SIZE - 1);
2215 to = from + len;
2216
Mingming Caod2a17632008-07-14 17:52:37 -04002217retry:
Alex Tomas64769242008-07-11 19:27:31 -04002218 /*
2219 * With delayed allocation, we don't log the i_disksize update
2220 * if there is delayed block allocation. But we still need
2221 * to journalling the i_disksize update if writes to the end
2222 * of file which has an already mapped buffer.
2223 */
2224 handle = ext4_journal_start(inode, 1);
2225 if (IS_ERR(handle)) {
2226 ret = PTR_ERR(handle);
2227 goto out;
2228 }
2229
2230 page = __grab_cache_page(mapping, index);
2231 if (!page)
2232 return -ENOMEM;
2233 *pagep = page;
2234
2235 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
2236 ext4_da_get_block_prep);
2237 if (ret < 0) {
2238 unlock_page(page);
2239 ext4_journal_stop(handle);
2240 page_cache_release(page);
2241 }
2242
Mingming Caod2a17632008-07-14 17:52:37 -04002243 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
2244 goto retry;
Alex Tomas64769242008-07-11 19:27:31 -04002245out:
2246 return ret;
2247}
2248
Alex Tomas64769242008-07-11 19:27:31 -04002249static int ext4_da_write_end(struct file *file,
2250 struct address_space *mapping,
2251 loff_t pos, unsigned len, unsigned copied,
2252 struct page *page, void *fsdata)
2253{
2254 struct inode *inode = mapping->host;
2255 int ret = 0, ret2;
2256 handle_t *handle = ext4_journal_current_handle();
2257 loff_t new_i_size;
2258
2259 /*
2260 * generic_write_end() will run mark_inode_dirty() if i_size
2261 * changes. So let's piggyback the i_disksize mark_inode_dirty
2262 * into that.
2263 */
2264
2265 new_i_size = pos + copied;
2266 if (new_i_size > EXT4_I(inode)->i_disksize)
2267 if (!walk_page_buffers(NULL, page_buffers(page),
2268 0, len, NULL, ext4_bh_unmapped_or_delay)){
2269 /*
2270 * Updating i_disksize when extending file without
2271 * needing block allocation
2272 */
2273 if (ext4_should_order_data(inode))
2274 ret = ext4_jbd2_file_inode(handle, inode);
2275
2276 EXT4_I(inode)->i_disksize = new_i_size;
2277 }
2278 ret2 = generic_write_end(file, mapping, pos, len, copied,
2279 page, fsdata);
2280 copied = ret2;
2281 if (ret2 < 0)
2282 ret = ret2;
2283 ret2 = ext4_journal_stop(handle);
2284 if (!ret)
2285 ret = ret2;
2286
2287 return ret ? ret : copied;
2288}
2289
2290static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
2291{
Alex Tomas64769242008-07-11 19:27:31 -04002292 /*
2293 * Drop reserved blocks
2294 */
2295 BUG_ON(!PageLocked(page));
2296 if (!page_has_buffers(page))
2297 goto out;
2298
Mingming Caod2a17632008-07-14 17:52:37 -04002299 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04002300
2301out:
2302 ext4_invalidatepage(page, offset);
2303
2304 return;
2305}
2306
2307
2308/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002309 * bmap() is special. It gets used by applications such as lilo and by
2310 * the swapper to find the on-disk block of a specific piece of data.
2311 *
2312 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002313 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002314 * filesystem and enables swap, then they may get a nasty shock when the
2315 * data getting swapped to that swapfile suddenly gets overwritten by
2316 * the original zero's written out previously to the journal and
2317 * awaiting writeback in the kernel's buffer cache.
2318 *
2319 * So, if we see any bmap calls here on a modified, data-journaled file,
2320 * take extra steps to flush any blocks which might be in the cache.
2321 */
Mingming Cao617ba132006-10-11 01:20:53 -07002322static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002323{
2324 struct inode *inode = mapping->host;
2325 journal_t *journal;
2326 int err;
2327
Alex Tomas64769242008-07-11 19:27:31 -04002328 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2329 test_opt(inode->i_sb, DELALLOC)) {
2330 /*
2331 * With delalloc we want to sync the file
2332 * so that we can make sure we allocate
2333 * blocks for file
2334 */
2335 filemap_write_and_wait(mapping);
2336 }
2337
Mingming Cao617ba132006-10-11 01:20:53 -07002338 if (EXT4_I(inode)->i_state & EXT4_STATE_JDATA) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002339 /*
2340 * This is a REALLY heavyweight approach, but the use of
2341 * bmap on dirty files is expected to be extremely rare:
2342 * only if we run lilo or swapon on a freshly made file
2343 * do we expect this to happen.
2344 *
2345 * (bmap requires CAP_SYS_RAWIO so this does not
2346 * represent an unprivileged user DOS attack --- we'd be
2347 * in trouble if mortal users could trigger this path at
2348 * will.)
2349 *
Mingming Cao617ba132006-10-11 01:20:53 -07002350 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002351 * regular files. If somebody wants to bmap a directory
2352 * or symlink and gets confused because the buffer
2353 * hasn't yet been flushed to disk, they deserve
2354 * everything they get.
2355 */
2356
Mingming Cao617ba132006-10-11 01:20:53 -07002357 EXT4_I(inode)->i_state &= ~EXT4_STATE_JDATA;
2358 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002359 jbd2_journal_lock_updates(journal);
2360 err = jbd2_journal_flush(journal);
2361 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002362
2363 if (err)
2364 return 0;
2365 }
2366
Mingming Cao617ba132006-10-11 01:20:53 -07002367 return generic_block_bmap(mapping,block,ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002368}
2369
2370static int bget_one(handle_t *handle, struct buffer_head *bh)
2371{
2372 get_bh(bh);
2373 return 0;
2374}
2375
2376static int bput_one(handle_t *handle, struct buffer_head *bh)
2377{
2378 put_bh(bh);
2379 return 0;
2380}
2381
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002382/*
Jan Kara678aaf42008-07-11 19:27:31 -04002383 * Note that we don't need to start a transaction unless we're journaling data
2384 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2385 * need to file the inode to the transaction's list in ordered mode because if
2386 * we are writing back data added by write(), the inode is already there and if
2387 * we are writing back data modified via mmap(), noone guarantees in which
2388 * transaction the data will hit the disk. In case we are journaling data, we
2389 * cannot start transaction directly because transaction start ranks above page
2390 * lock so we have to do some magic.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002391 *
Jan Kara678aaf42008-07-11 19:27:31 -04002392 * In all journaling modes block_write_full_page() will start the I/O.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002393 *
2394 * Problem:
2395 *
Mingming Cao617ba132006-10-11 01:20:53 -07002396 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2397 * ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002398 *
2399 * Similar for:
2400 *
Mingming Cao617ba132006-10-11 01:20:53 -07002401 * ext4_file_write() -> generic_file_write() -> __alloc_pages() -> ...
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002402 *
Mingming Cao617ba132006-10-11 01:20:53 -07002403 * Same applies to ext4_get_block(). We will deadlock on various things like
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05002404 * lock_journal and i_data_sem
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002405 *
2406 * Setting PF_MEMALLOC here doesn't work - too many internal memory
2407 * allocations fail.
2408 *
2409 * 16May01: If we're reentered then journal_current_handle() will be
2410 * non-zero. We simply *return*.
2411 *
2412 * 1 July 2001: @@@ FIXME:
2413 * In journalled data mode, a data buffer may be metadata against the
2414 * current transaction. But the same file is part of a shared mapping
2415 * and someone does a writepage() on it.
2416 *
2417 * We will move the buffer onto the async_data list, but *after* it has
2418 * been dirtied. So there's a small window where we have dirty data on
2419 * BJ_Metadata.
2420 *
2421 * Note that this only applies to the last partial page in the file. The
2422 * bit which block_write_full_page() uses prepare/commit for. (That's
2423 * broken code anyway: it's wrong for msync()).
2424 *
2425 * It's a rare case: affects the final partial page, for journalled data
2426 * where the file is subject to bith write() and writepage() in the same
2427 * transction. To fix it we'll need a custom block_write_full_page().
2428 * We'll probably need that anyway for journalling writepage() output.
2429 *
2430 * We don't honour synchronous mounts for writepage(). That would be
2431 * disastrous. Any write() or metadata operation will sync the fs for
2432 * us.
2433 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002434 */
Jan Kara678aaf42008-07-11 19:27:31 -04002435static int __ext4_normal_writepage(struct page *page,
Jan Karacf108bc2008-07-11 19:27:31 -04002436 struct writeback_control *wbc)
2437{
2438 struct inode *inode = page->mapping->host;
2439
2440 if (test_opt(inode->i_sb, NOBH))
2441 return nobh_writepage(page, ext4_get_block, wbc);
2442 else
2443 return block_write_full_page(page, ext4_get_block, wbc);
2444}
2445
2446
Jan Kara678aaf42008-07-11 19:27:31 -04002447static int ext4_normal_writepage(struct page *page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002448 struct writeback_control *wbc)
2449{
2450 struct inode *inode = page->mapping->host;
Jan Karacf108bc2008-07-11 19:27:31 -04002451 loff_t size = i_size_read(inode);
2452 loff_t len;
2453
2454 J_ASSERT(PageLocked(page));
2455 J_ASSERT(page_has_buffers(page));
2456 if (page->index == size >> PAGE_CACHE_SHIFT)
2457 len = size & ~PAGE_CACHE_MASK;
2458 else
2459 len = PAGE_CACHE_SIZE;
2460 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2461 ext4_bh_unmapped_or_delay));
2462
2463 if (!ext4_journal_current_handle())
Jan Kara678aaf42008-07-11 19:27:31 -04002464 return __ext4_normal_writepage(page, wbc);
Jan Karacf108bc2008-07-11 19:27:31 -04002465
2466 redirty_page_for_writepage(wbc, page);
2467 unlock_page(page);
2468 return 0;
2469}
2470
2471static int __ext4_journalled_writepage(struct page *page,
2472 struct writeback_control *wbc)
2473{
2474 struct address_space *mapping = page->mapping;
2475 struct inode *inode = mapping->host;
2476 struct buffer_head *page_bufs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002477 handle_t *handle = NULL;
2478 int ret = 0;
2479 int err;
2480
Jan Karacf108bc2008-07-11 19:27:31 -04002481 ret = block_prepare_write(page, 0, PAGE_CACHE_SIZE, ext4_get_block);
2482 if (ret != 0)
2483 goto out_unlock;
2484
2485 page_bufs = page_buffers(page);
2486 walk_page_buffers(handle, page_bufs, 0, PAGE_CACHE_SIZE, NULL,
2487 bget_one);
2488 /* As soon as we unlock the page, it can go away, but we have
2489 * references to buffers so we are safe */
2490 unlock_page(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002491
Mingming Cao617ba132006-10-11 01:20:53 -07002492 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002493 if (IS_ERR(handle)) {
2494 ret = PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04002495 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002496 }
2497
Jan Karacf108bc2008-07-11 19:27:31 -04002498 ret = walk_page_buffers(handle, page_bufs, 0,
2499 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002500
Jan Karacf108bc2008-07-11 19:27:31 -04002501 err = walk_page_buffers(handle, page_bufs, 0,
2502 PAGE_CACHE_SIZE, NULL, write_end_fn);
2503 if (ret == 0)
2504 ret = err;
Mingming Cao617ba132006-10-11 01:20:53 -07002505 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002506 if (!ret)
2507 ret = err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002508
Jan Karacf108bc2008-07-11 19:27:31 -04002509 walk_page_buffers(handle, page_bufs, 0,
2510 PAGE_CACHE_SIZE, NULL, bput_one);
2511 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
2512 goto out;
2513
2514out_unlock:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002515 unlock_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04002516out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002517 return ret;
2518}
2519
Mingming Cao617ba132006-10-11 01:20:53 -07002520static int ext4_journalled_writepage(struct page *page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002521 struct writeback_control *wbc)
2522{
2523 struct inode *inode = page->mapping->host;
Jan Karacf108bc2008-07-11 19:27:31 -04002524 loff_t size = i_size_read(inode);
2525 loff_t len;
2526
2527 J_ASSERT(PageLocked(page));
2528 J_ASSERT(page_has_buffers(page));
2529 if (page->index == size >> PAGE_CACHE_SHIFT)
2530 len = size & ~PAGE_CACHE_MASK;
2531 else
2532 len = PAGE_CACHE_SIZE;
2533 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2534 ext4_bh_unmapped_or_delay));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002535
Mingming Cao617ba132006-10-11 01:20:53 -07002536 if (ext4_journal_current_handle())
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002537 goto no_write;
2538
Jan Karacf108bc2008-07-11 19:27:31 -04002539 if (PageChecked(page)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002540 /*
2541 * It's mmapped pagecache. Add buffers and journal it. There
2542 * doesn't seem much point in redirtying the page here.
2543 */
2544 ClearPageChecked(page);
Jan Karacf108bc2008-07-11 19:27:31 -04002545 return __ext4_journalled_writepage(page, wbc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002546 } else {
2547 /*
2548 * It may be a page full of checkpoint-mode buffers. We don't
2549 * really know unless we go poke around in the buffer_heads.
2550 * But block_write_full_page will do the right thing.
2551 */
Jan Karacf108bc2008-07-11 19:27:31 -04002552 return block_write_full_page(page, ext4_get_block, wbc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002553 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002554no_write:
2555 redirty_page_for_writepage(wbc, page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002556 unlock_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04002557 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002558}
2559
Mingming Cao617ba132006-10-11 01:20:53 -07002560static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002561{
Mingming Cao617ba132006-10-11 01:20:53 -07002562 return mpage_readpage(page, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002563}
2564
2565static int
Mingming Cao617ba132006-10-11 01:20:53 -07002566ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002567 struct list_head *pages, unsigned nr_pages)
2568{
Mingming Cao617ba132006-10-11 01:20:53 -07002569 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002570}
2571
Mingming Cao617ba132006-10-11 01:20:53 -07002572static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002573{
Mingming Cao617ba132006-10-11 01:20:53 -07002574 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002575
2576 /*
2577 * If it's a full truncate we just forget about the pending dirtying
2578 */
2579 if (offset == 0)
2580 ClearPageChecked(page);
2581
Mingming Caodab291a2006-10-11 01:21:01 -07002582 jbd2_journal_invalidatepage(journal, page, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002583}
2584
Mingming Cao617ba132006-10-11 01:20:53 -07002585static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002586{
Mingming Cao617ba132006-10-11 01:20:53 -07002587 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002588
2589 WARN_ON(PageChecked(page));
2590 if (!page_has_buffers(page))
2591 return 0;
Mingming Caodab291a2006-10-11 01:21:01 -07002592 return jbd2_journal_try_to_free_buffers(journal, page, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002593}
2594
2595/*
2596 * If the O_DIRECT write will extend the file then add this inode to the
2597 * orphan list. So recovery will truncate it back to the original size
2598 * if the machine crashes during the write.
2599 *
2600 * If the O_DIRECT write is intantiating holes inside i_size and the machine
Jan Kara7fb54092008-02-10 01:08:38 -05002601 * crashes then stale disk data _may_ be exposed inside the file. But current
2602 * VFS code falls back into buffered path in that case so we are safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002603 */
Mingming Cao617ba132006-10-11 01:20:53 -07002604static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002605 const struct iovec *iov, loff_t offset,
2606 unsigned long nr_segs)
2607{
2608 struct file *file = iocb->ki_filp;
2609 struct inode *inode = file->f_mapping->host;
Mingming Cao617ba132006-10-11 01:20:53 -07002610 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Kara7fb54092008-02-10 01:08:38 -05002611 handle_t *handle;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002612 ssize_t ret;
2613 int orphan = 0;
2614 size_t count = iov_length(iov, nr_segs);
2615
2616 if (rw == WRITE) {
2617 loff_t final_size = offset + count;
2618
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002619 if (final_size > inode->i_size) {
Jan Kara7fb54092008-02-10 01:08:38 -05002620 /* Credits for sb + inode write */
2621 handle = ext4_journal_start(inode, 2);
2622 if (IS_ERR(handle)) {
2623 ret = PTR_ERR(handle);
2624 goto out;
2625 }
Mingming Cao617ba132006-10-11 01:20:53 -07002626 ret = ext4_orphan_add(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05002627 if (ret) {
2628 ext4_journal_stop(handle);
2629 goto out;
2630 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002631 orphan = 1;
2632 ei->i_disksize = inode->i_size;
Jan Kara7fb54092008-02-10 01:08:38 -05002633 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002634 }
2635 }
2636
2637 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2638 offset, nr_segs,
Mingming Cao617ba132006-10-11 01:20:53 -07002639 ext4_get_block, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002640
Jan Kara7fb54092008-02-10 01:08:38 -05002641 if (orphan) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002642 int err;
2643
Jan Kara7fb54092008-02-10 01:08:38 -05002644 /* Credits for sb + inode write */
2645 handle = ext4_journal_start(inode, 2);
2646 if (IS_ERR(handle)) {
2647 /* This is really bad luck. We've written the data
2648 * but cannot extend i_size. Bail out and pretend
2649 * the write failed... */
2650 ret = PTR_ERR(handle);
2651 goto out;
2652 }
2653 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002654 ext4_orphan_del(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05002655 if (ret > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002656 loff_t end = offset + ret;
2657 if (end > inode->i_size) {
2658 ei->i_disksize = end;
2659 i_size_write(inode, end);
2660 /*
2661 * We're going to return a positive `ret'
2662 * here due to non-zero-length I/O, so there's
2663 * no way of reporting error returns from
Mingming Cao617ba132006-10-11 01:20:53 -07002664 * ext4_mark_inode_dirty() to userspace. So
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002665 * ignore it.
2666 */
Mingming Cao617ba132006-10-11 01:20:53 -07002667 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002668 }
2669 }
Mingming Cao617ba132006-10-11 01:20:53 -07002670 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002671 if (ret == 0)
2672 ret = err;
2673 }
2674out:
2675 return ret;
2676}
2677
2678/*
Mingming Cao617ba132006-10-11 01:20:53 -07002679 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002680 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
2681 * much here because ->set_page_dirty is called under VFS locks. The page is
2682 * not necessarily locked.
2683 *
2684 * We cannot just dirty the page and leave attached buffers clean, because the
2685 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
2686 * or jbddirty because all the journalling code will explode.
2687 *
2688 * So what we do is to mark the page "pending dirty" and next time writepage
2689 * is called, propagate that into the buffers appropriately.
2690 */
Mingming Cao617ba132006-10-11 01:20:53 -07002691static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692{
2693 SetPageChecked(page);
2694 return __set_page_dirty_nobuffers(page);
2695}
2696
Mingming Cao617ba132006-10-11 01:20:53 -07002697static const struct address_space_operations ext4_ordered_aops = {
2698 .readpage = ext4_readpage,
2699 .readpages = ext4_readpages,
Jan Kara678aaf42008-07-11 19:27:31 -04002700 .writepage = ext4_normal_writepage,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002701 .sync_page = block_sync_page,
Nick Pigginbfc1af62007-10-16 01:25:05 -07002702 .write_begin = ext4_write_begin,
2703 .write_end = ext4_ordered_write_end,
Mingming Cao617ba132006-10-11 01:20:53 -07002704 .bmap = ext4_bmap,
2705 .invalidatepage = ext4_invalidatepage,
2706 .releasepage = ext4_releasepage,
2707 .direct_IO = ext4_direct_IO,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002708 .migratepage = buffer_migrate_page,
2709};
2710
Mingming Cao617ba132006-10-11 01:20:53 -07002711static const struct address_space_operations ext4_writeback_aops = {
2712 .readpage = ext4_readpage,
2713 .readpages = ext4_readpages,
Jan Kara678aaf42008-07-11 19:27:31 -04002714 .writepage = ext4_normal_writepage,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002715 .sync_page = block_sync_page,
Nick Pigginbfc1af62007-10-16 01:25:05 -07002716 .write_begin = ext4_write_begin,
2717 .write_end = ext4_writeback_write_end,
Mingming Cao617ba132006-10-11 01:20:53 -07002718 .bmap = ext4_bmap,
2719 .invalidatepage = ext4_invalidatepage,
2720 .releasepage = ext4_releasepage,
2721 .direct_IO = ext4_direct_IO,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002722 .migratepage = buffer_migrate_page,
2723};
2724
Mingming Cao617ba132006-10-11 01:20:53 -07002725static const struct address_space_operations ext4_journalled_aops = {
2726 .readpage = ext4_readpage,
2727 .readpages = ext4_readpages,
2728 .writepage = ext4_journalled_writepage,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002729 .sync_page = block_sync_page,
Nick Pigginbfc1af62007-10-16 01:25:05 -07002730 .write_begin = ext4_write_begin,
2731 .write_end = ext4_journalled_write_end,
Mingming Cao617ba132006-10-11 01:20:53 -07002732 .set_page_dirty = ext4_journalled_set_page_dirty,
2733 .bmap = ext4_bmap,
2734 .invalidatepage = ext4_invalidatepage,
2735 .releasepage = ext4_releasepage,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002736};
2737
Alex Tomas64769242008-07-11 19:27:31 -04002738static const struct address_space_operations ext4_da_aops = {
2739 .readpage = ext4_readpage,
2740 .readpages = ext4_readpages,
2741 .writepage = ext4_da_writepage,
2742 .writepages = ext4_da_writepages,
2743 .sync_page = block_sync_page,
2744 .write_begin = ext4_da_write_begin,
2745 .write_end = ext4_da_write_end,
2746 .bmap = ext4_bmap,
2747 .invalidatepage = ext4_da_invalidatepage,
2748 .releasepage = ext4_releasepage,
2749 .direct_IO = ext4_direct_IO,
2750 .migratepage = buffer_migrate_page,
2751};
2752
Mingming Cao617ba132006-10-11 01:20:53 -07002753void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002754{
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002755 if (ext4_should_order_data(inode) &&
2756 test_opt(inode->i_sb, DELALLOC))
2757 inode->i_mapping->a_ops = &ext4_da_aops;
2758 else if (ext4_should_order_data(inode))
Mingming Cao617ba132006-10-11 01:20:53 -07002759 inode->i_mapping->a_ops = &ext4_ordered_aops;
Alex Tomas64769242008-07-11 19:27:31 -04002760 else if (ext4_should_writeback_data(inode) &&
2761 test_opt(inode->i_sb, DELALLOC))
2762 inode->i_mapping->a_ops = &ext4_da_aops;
Mingming Cao617ba132006-10-11 01:20:53 -07002763 else if (ext4_should_writeback_data(inode))
2764 inode->i_mapping->a_ops = &ext4_writeback_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002765 else
Mingming Cao617ba132006-10-11 01:20:53 -07002766 inode->i_mapping->a_ops = &ext4_journalled_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002767}
2768
2769/*
Mingming Cao617ba132006-10-11 01:20:53 -07002770 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002771 * up to the end of the block which corresponds to `from'.
2772 * This required during truncate. We need to physically zero the tail end
2773 * of that block so it doesn't yield old data if the file is later grown.
2774 */
Jan Karacf108bc2008-07-11 19:27:31 -04002775int ext4_block_truncate_page(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002776 struct address_space *mapping, loff_t from)
2777{
Mingming Cao617ba132006-10-11 01:20:53 -07002778 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002779 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002780 unsigned blocksize, length, pos;
2781 ext4_lblk_t iblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002782 struct inode *inode = mapping->host;
2783 struct buffer_head *bh;
Jan Karacf108bc2008-07-11 19:27:31 -04002784 struct page *page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002785 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002786
Jan Karacf108bc2008-07-11 19:27:31 -04002787 page = grab_cache_page(mapping, from >> PAGE_CACHE_SHIFT);
2788 if (!page)
2789 return -EINVAL;
2790
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002791 blocksize = inode->i_sb->s_blocksize;
2792 length = blocksize - (offset & (blocksize - 1));
2793 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
2794
2795 /*
2796 * For "nobh" option, we can only work if we don't need to
2797 * read-in the page - otherwise we create buffers to do the IO.
2798 */
2799 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002800 ext4_should_writeback_data(inode) && PageUptodate(page)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002801 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002802 set_page_dirty(page);
2803 goto unlock;
2804 }
2805
2806 if (!page_has_buffers(page))
2807 create_empty_buffers(page, blocksize, 0);
2808
2809 /* Find the buffer that contains "offset" */
2810 bh = page_buffers(page);
2811 pos = blocksize;
2812 while (offset >= pos) {
2813 bh = bh->b_this_page;
2814 iblock++;
2815 pos += blocksize;
2816 }
2817
2818 err = 0;
2819 if (buffer_freed(bh)) {
2820 BUFFER_TRACE(bh, "freed: skip");
2821 goto unlock;
2822 }
2823
2824 if (!buffer_mapped(bh)) {
2825 BUFFER_TRACE(bh, "unmapped");
Mingming Cao617ba132006-10-11 01:20:53 -07002826 ext4_get_block(inode, iblock, bh, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002827 /* unmapped? It's a hole - nothing to do */
2828 if (!buffer_mapped(bh)) {
2829 BUFFER_TRACE(bh, "still unmapped");
2830 goto unlock;
2831 }
2832 }
2833
2834 /* Ok, it's mapped. Make sure it's up-to-date */
2835 if (PageUptodate(page))
2836 set_buffer_uptodate(bh);
2837
2838 if (!buffer_uptodate(bh)) {
2839 err = -EIO;
2840 ll_rw_block(READ, 1, &bh);
2841 wait_on_buffer(bh);
2842 /* Uhhuh. Read error. Complain and punt. */
2843 if (!buffer_uptodate(bh))
2844 goto unlock;
2845 }
2846
Mingming Cao617ba132006-10-11 01:20:53 -07002847 if (ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002848 BUFFER_TRACE(bh, "get write access");
Mingming Cao617ba132006-10-11 01:20:53 -07002849 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002850 if (err)
2851 goto unlock;
2852 }
2853
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002854 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002855
2856 BUFFER_TRACE(bh, "zeroed end of block");
2857
2858 err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002859 if (ext4_should_journal_data(inode)) {
2860 err = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002861 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002862 if (ext4_should_order_data(inode))
Jan Kara678aaf42008-07-11 19:27:31 -04002863 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002864 mark_buffer_dirty(bh);
2865 }
2866
2867unlock:
2868 unlock_page(page);
2869 page_cache_release(page);
2870 return err;
2871}
2872
2873/*
2874 * Probably it should be a library function... search for first non-zero word
2875 * or memcmp with zero_page, whatever is better for particular architecture.
2876 * Linus?
2877 */
2878static inline int all_zeroes(__le32 *p, __le32 *q)
2879{
2880 while (p < q)
2881 if (*p++)
2882 return 0;
2883 return 1;
2884}
2885
2886/**
Mingming Cao617ba132006-10-11 01:20:53 -07002887 * ext4_find_shared - find the indirect blocks for partial truncation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002888 * @inode: inode in question
2889 * @depth: depth of the affected branch
Mingming Cao617ba132006-10-11 01:20:53 -07002890 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002891 * @chain: place to store the pointers to partial indirect blocks
2892 * @top: place to the (detached) top of branch
2893 *
Mingming Cao617ba132006-10-11 01:20:53 -07002894 * This is a helper function used by ext4_truncate().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002895 *
2896 * When we do truncate() we may have to clean the ends of several
2897 * indirect blocks but leave the blocks themselves alive. Block is
2898 * partially truncated if some data below the new i_size is refered
2899 * from it (and it is on the path to the first completely truncated
2900 * data block, indeed). We have to free the top of that path along
2901 * with everything to the right of the path. Since no allocation
Mingming Cao617ba132006-10-11 01:20:53 -07002902 * past the truncation point is possible until ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002903 * finishes, we may safely do the latter, but top of branch may
2904 * require special attention - pageout below the truncation point
2905 * might try to populate it.
2906 *
2907 * We atomically detach the top of branch from the tree, store the
2908 * block number of its root in *@top, pointers to buffer_heads of
2909 * partially truncated blocks - in @chain[].bh and pointers to
2910 * their last elements that should not be removed - in
2911 * @chain[].p. Return value is the pointer to last filled element
2912 * of @chain.
2913 *
2914 * The work left to caller to do the actual freeing of subtrees:
2915 * a) free the subtree starting from *@top
2916 * b) free the subtrees whose roots are stored in
2917 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
2918 * c) free the subtrees growing from the inode past the @chain[0].
2919 * (no partially truncated stuff there). */
2920
Mingming Cao617ba132006-10-11 01:20:53 -07002921static Indirect *ext4_find_shared(struct inode *inode, int depth,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002922 ext4_lblk_t offsets[4], Indirect chain[4], __le32 *top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923{
2924 Indirect *partial, *p;
2925 int k, err;
2926
2927 *top = 0;
2928 /* Make k index the deepest non-null offest + 1 */
2929 for (k = depth; k > 1 && !offsets[k-1]; k--)
2930 ;
Mingming Cao617ba132006-10-11 01:20:53 -07002931 partial = ext4_get_branch(inode, k, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002932 /* Writer: pointers */
2933 if (!partial)
2934 partial = chain + k-1;
2935 /*
2936 * If the branch acquired continuation since we've looked at it -
2937 * fine, it should all survive and (new) top doesn't belong to us.
2938 */
2939 if (!partial->key && *partial->p)
2940 /* Writer: end */
2941 goto no_top;
2942 for (p=partial; p>chain && all_zeroes((__le32*)p->bh->b_data,p->p); p--)
2943 ;
2944 /*
2945 * OK, we've found the last block that must survive. The rest of our
2946 * branch should be detached before unlocking. However, if that rest
2947 * of branch is all ours and does not grow immediately from the inode
2948 * it's easier to cheat and just decrement partial->p.
2949 */
2950 if (p == chain + k - 1 && p > chain) {
2951 p->p--;
2952 } else {
2953 *top = *p->p;
Mingming Cao617ba132006-10-11 01:20:53 -07002954 /* Nope, don't do this in ext4. Must leave the tree intact */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002955#if 0
2956 *p->p = 0;
2957#endif
2958 }
2959 /* Writer: end */
2960
2961 while(partial > p) {
2962 brelse(partial->bh);
2963 partial--;
2964 }
2965no_top:
2966 return partial;
2967}
2968
2969/*
2970 * Zero a number of block pointers in either an inode or an indirect block.
2971 * If we restart the transaction we must again get write access to the
2972 * indirect block for further modification.
2973 *
2974 * We release `count' blocks on disk, but (last - first) may be greater
2975 * than `count' because there can be holes in there.
2976 */
Mingming Cao617ba132006-10-11 01:20:53 -07002977static void ext4_clear_blocks(handle_t *handle, struct inode *inode,
2978 struct buffer_head *bh, ext4_fsblk_t block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002979 unsigned long count, __le32 *first, __le32 *last)
2980{
2981 __le32 *p;
2982 if (try_to_extend_transaction(handle, inode)) {
2983 if (bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07002984 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
2985 ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002986 }
Mingming Cao617ba132006-10-11 01:20:53 -07002987 ext4_mark_inode_dirty(handle, inode);
2988 ext4_journal_test_restart(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002989 if (bh) {
2990 BUFFER_TRACE(bh, "retaking write access");
Mingming Cao617ba132006-10-11 01:20:53 -07002991 ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002992 }
2993 }
2994
2995 /*
2996 * Any buffers which are on the journal will be in memory. We find
Mingming Caodab291a2006-10-11 01:21:01 -07002997 * them on the hash table so jbd2_journal_revoke() will run jbd2_journal_forget()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002998 * on them. We've already detached each block from the file, so
Mingming Caodab291a2006-10-11 01:21:01 -07002999 * bforget() in jbd2_journal_forget() should be safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003000 *
Mingming Caodab291a2006-10-11 01:21:01 -07003001 * AKPM: turn on bforget in jbd2_journal_forget()!!!
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003002 */
3003 for (p = first; p < last; p++) {
3004 u32 nr = le32_to_cpu(*p);
3005 if (nr) {
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003006 struct buffer_head *tbh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003007
3008 *p = 0;
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003009 tbh = sb_find_get_block(inode->i_sb, nr);
3010 ext4_forget(handle, 0, inode, tbh, nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003011 }
3012 }
3013
Alex Tomasc9de5602008-01-29 00:19:52 -05003014 ext4_free_blocks(handle, inode, block_to_free, count, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003015}
3016
3017/**
Mingming Cao617ba132006-10-11 01:20:53 -07003018 * ext4_free_data - free a list of data blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003019 * @handle: handle for this transaction
3020 * @inode: inode we are dealing with
3021 * @this_bh: indirect buffer_head which contains *@first and *@last
3022 * @first: array of block numbers
3023 * @last: points immediately past the end of array
3024 *
3025 * We are freeing all blocks refered from that array (numbers are stored as
3026 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
3027 *
3028 * We accumulate contiguous runs of blocks to free. Conveniently, if these
3029 * blocks are contiguous then releasing them at one time will only affect one
3030 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
3031 * actually use a lot of journal space.
3032 *
3033 * @this_bh will be %NULL if @first and @last point into the inode's direct
3034 * block pointers.
3035 */
Mingming Cao617ba132006-10-11 01:20:53 -07003036static void ext4_free_data(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003037 struct buffer_head *this_bh,
3038 __le32 *first, __le32 *last)
3039{
Mingming Cao617ba132006-10-11 01:20:53 -07003040 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003041 unsigned long count = 0; /* Number of blocks in the run */
3042 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
3043 corresponding to
3044 block_to_free */
Mingming Cao617ba132006-10-11 01:20:53 -07003045 ext4_fsblk_t nr; /* Current block # */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003046 __le32 *p; /* Pointer into inode/ind
3047 for current block */
3048 int err;
3049
3050 if (this_bh) { /* For indirect block */
3051 BUFFER_TRACE(this_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07003052 err = ext4_journal_get_write_access(handle, this_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003053 /* Important: if we can't update the indirect pointers
3054 * to the blocks, we can't free them. */
3055 if (err)
3056 return;
3057 }
3058
3059 for (p = first; p < last; p++) {
3060 nr = le32_to_cpu(*p);
3061 if (nr) {
3062 /* accumulate blocks to free if they're contiguous */
3063 if (count == 0) {
3064 block_to_free = nr;
3065 block_to_free_p = p;
3066 count = 1;
3067 } else if (nr == block_to_free + count) {
3068 count++;
3069 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003070 ext4_clear_blocks(handle, inode, this_bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003071 block_to_free,
3072 count, block_to_free_p, p);
3073 block_to_free = nr;
3074 block_to_free_p = p;
3075 count = 1;
3076 }
3077 }
3078 }
3079
3080 if (count > 0)
Mingming Cao617ba132006-10-11 01:20:53 -07003081 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003082 count, block_to_free_p, p);
3083
3084 if (this_bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07003085 BUFFER_TRACE(this_bh, "call ext4_journal_dirty_metadata");
Duane Griffin71dc8fb2008-07-11 19:27:31 -04003086
3087 /*
3088 * The buffer head should have an attached journal head at this
3089 * point. However, if the data is corrupted and an indirect
3090 * block pointed to itself, it would have been detached when
3091 * the block was cleared. Check for this instead of OOPSing.
3092 */
3093 if (bh2jh(this_bh))
3094 ext4_journal_dirty_metadata(handle, this_bh);
3095 else
3096 ext4_error(inode->i_sb, __func__,
3097 "circular indirect block detected, "
3098 "inode=%lu, block=%llu",
3099 inode->i_ino,
3100 (unsigned long long) this_bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003101 }
3102}
3103
3104/**
Mingming Cao617ba132006-10-11 01:20:53 -07003105 * ext4_free_branches - free an array of branches
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003106 * @handle: JBD handle for this transaction
3107 * @inode: inode we are dealing with
3108 * @parent_bh: the buffer_head which contains *@first and *@last
3109 * @first: array of block numbers
3110 * @last: pointer immediately past the end of array
3111 * @depth: depth of the branches to free
3112 *
3113 * We are freeing all blocks refered from these branches (numbers are
3114 * stored as little-endian 32-bit) and updating @inode->i_blocks
3115 * appropriately.
3116 */
Mingming Cao617ba132006-10-11 01:20:53 -07003117static void ext4_free_branches(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003118 struct buffer_head *parent_bh,
3119 __le32 *first, __le32 *last, int depth)
3120{
Mingming Cao617ba132006-10-11 01:20:53 -07003121 ext4_fsblk_t nr;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003122 __le32 *p;
3123
3124 if (is_handle_aborted(handle))
3125 return;
3126
3127 if (depth--) {
3128 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07003129 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003130 p = last;
3131 while (--p >= first) {
3132 nr = le32_to_cpu(*p);
3133 if (!nr)
3134 continue; /* A hole */
3135
3136 /* Go read the buffer for the next level down */
3137 bh = sb_bread(inode->i_sb, nr);
3138
3139 /*
3140 * A read failure? Report error and clear slot
3141 * (should be rare).
3142 */
3143 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07003144 ext4_error(inode->i_sb, "ext4_free_branches",
Mingming Cao2ae02102006-10-11 01:21:11 -07003145 "Read failure, inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003146 inode->i_ino, nr);
3147 continue;
3148 }
3149
3150 /* This zaps the entire block. Bottom up. */
3151 BUFFER_TRACE(bh, "free child branches");
Mingming Cao617ba132006-10-11 01:20:53 -07003152 ext4_free_branches(handle, inode, bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003153 (__le32*)bh->b_data,
3154 (__le32*)bh->b_data + addr_per_block,
3155 depth);
3156
3157 /*
3158 * We've probably journalled the indirect block several
3159 * times during the truncate. But it's no longer
3160 * needed and we now drop it from the transaction via
Mingming Caodab291a2006-10-11 01:21:01 -07003161 * jbd2_journal_revoke().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003162 *
3163 * That's easy if it's exclusively part of this
3164 * transaction. But if it's part of the committing
Mingming Caodab291a2006-10-11 01:21:01 -07003165 * transaction then jbd2_journal_forget() will simply
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003166 * brelse() it. That means that if the underlying
Mingming Cao617ba132006-10-11 01:20:53 -07003167 * block is reallocated in ext4_get_block(),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003168 * unmap_underlying_metadata() will find this block
3169 * and will try to get rid of it. damn, damn.
3170 *
3171 * If this block has already been committed to the
3172 * journal, a revoke record will be written. And
3173 * revoke records must be emitted *before* clearing
3174 * this block's bit in the bitmaps.
3175 */
Mingming Cao617ba132006-10-11 01:20:53 -07003176 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003177
3178 /*
3179 * Everything below this this pointer has been
3180 * released. Now let this top-of-subtree go.
3181 *
3182 * We want the freeing of this indirect block to be
3183 * atomic in the journal with the updating of the
3184 * bitmap block which owns it. So make some room in
3185 * the journal.
3186 *
3187 * We zero the parent pointer *after* freeing its
3188 * pointee in the bitmaps, so if extend_transaction()
3189 * for some reason fails to put the bitmap changes and
3190 * the release into the same transaction, recovery
3191 * will merely complain about releasing a free block,
3192 * rather than leaking blocks.
3193 */
3194 if (is_handle_aborted(handle))
3195 return;
3196 if (try_to_extend_transaction(handle, inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003197 ext4_mark_inode_dirty(handle, inode);
3198 ext4_journal_test_restart(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003199 }
3200
Alex Tomasc9de5602008-01-29 00:19:52 -05003201 ext4_free_blocks(handle, inode, nr, 1, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003202
3203 if (parent_bh) {
3204 /*
3205 * The block which we have just freed is
3206 * pointed to by an indirect block: journal it
3207 */
3208 BUFFER_TRACE(parent_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07003209 if (!ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003210 parent_bh)){
3211 *p = 0;
3212 BUFFER_TRACE(parent_bh,
Mingming Cao617ba132006-10-11 01:20:53 -07003213 "call ext4_journal_dirty_metadata");
3214 ext4_journal_dirty_metadata(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003215 parent_bh);
3216 }
3217 }
3218 }
3219 } else {
3220 /* We have reached the bottom of the tree. */
3221 BUFFER_TRACE(parent_bh, "free data blocks");
Mingming Cao617ba132006-10-11 01:20:53 -07003222 ext4_free_data(handle, inode, parent_bh, first, last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003223 }
3224}
3225
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003226int ext4_can_truncate(struct inode *inode)
3227{
3228 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3229 return 0;
3230 if (S_ISREG(inode->i_mode))
3231 return 1;
3232 if (S_ISDIR(inode->i_mode))
3233 return 1;
3234 if (S_ISLNK(inode->i_mode))
3235 return !ext4_inode_is_fast_symlink(inode);
3236 return 0;
3237}
3238
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003239/*
Mingming Cao617ba132006-10-11 01:20:53 -07003240 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003241 *
Mingming Cao617ba132006-10-11 01:20:53 -07003242 * We block out ext4_get_block() block instantiations across the entire
3243 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003244 * simultaneously on behalf of the same inode.
3245 *
3246 * As we work through the truncate and commmit bits of it to the journal there
3247 * is one core, guiding principle: the file's tree must always be consistent on
3248 * disk. We must be able to restart the truncate after a crash.
3249 *
3250 * The file's tree may be transiently inconsistent in memory (although it
3251 * probably isn't), but whenever we close off and commit a journal transaction,
3252 * the contents of (the filesystem + the journal) must be consistent and
3253 * restartable. It's pretty simple, really: bottom up, right to left (although
3254 * left-to-right works OK too).
3255 *
3256 * Note that at recovery time, journal replay occurs *before* the restart of
3257 * truncate against the orphan inode list.
3258 *
3259 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003260 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003261 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003262 * ext4_truncate() to have another go. So there will be instantiated blocks
3263 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003265 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003266 */
Mingming Cao617ba132006-10-11 01:20:53 -07003267void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003268{
3269 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -07003270 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003271 __le32 *i_data = ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07003272 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003273 struct address_space *mapping = inode->i_mapping;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003274 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275 Indirect chain[4];
3276 Indirect *partial;
3277 __le32 nr = 0;
3278 int n;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003279 ext4_lblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003280 unsigned blocksize = inode->i_sb->s_blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003281
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003282 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003283 return;
3284
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003285 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
Jan Karacf108bc2008-07-11 19:27:31 -04003286 ext4_ext_truncate(inode);
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05003287 return;
3288 }
Alex Tomasa86c6182006-10-11 01:21:03 -07003289
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003290 handle = start_transaction(inode);
Jan Karacf108bc2008-07-11 19:27:31 -04003291 if (IS_ERR(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003292 return; /* AKPM: return what? */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003293
3294 last_block = (inode->i_size + blocksize-1)
Mingming Cao617ba132006-10-11 01:20:53 -07003295 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003296
Jan Karacf108bc2008-07-11 19:27:31 -04003297 if (inode->i_size & (blocksize - 1))
3298 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
3299 goto out_stop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003300
Mingming Cao617ba132006-10-11 01:20:53 -07003301 n = ext4_block_to_path(inode, last_block, offsets, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003302 if (n == 0)
3303 goto out_stop; /* error */
3304
3305 /*
3306 * OK. This truncate is going to happen. We add the inode to the
3307 * orphan list, so that if this truncate spans multiple transactions,
3308 * and we crash, we will resume the truncate when the filesystem
3309 * recovers. It also marks the inode dirty, to catch the new size.
3310 *
3311 * Implication: the file must always be in a sane, consistent
3312 * truncatable state while each transaction commits.
3313 */
Mingming Cao617ba132006-10-11 01:20:53 -07003314 if (ext4_orphan_add(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003315 goto out_stop;
3316
3317 /*
3318 * The orphan list entry will now protect us from any crash which
3319 * occurs before the truncate completes, so it is now safe to propagate
3320 * the new, shorter inode size (held for now in i_size) into the
3321 * on-disk inode. We do this via i_disksize, which is the value which
Mingming Cao617ba132006-10-11 01:20:53 -07003322 * ext4 *really* writes onto the disk inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003323 */
3324 ei->i_disksize = inode->i_size;
3325
3326 /*
Mingming Cao617ba132006-10-11 01:20:53 -07003327 * From here we block out all ext4_get_block() callers who want to
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003328 * modify the block allocation tree.
3329 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05003330 down_write(&ei->i_data_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003331
3332 if (n == 1) { /* direct blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003333 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
3334 i_data + EXT4_NDIR_BLOCKS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003335 goto do_indirects;
3336 }
3337
Mingming Cao617ba132006-10-11 01:20:53 -07003338 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003339 /* Kill the top of shared branch (not detached) */
3340 if (nr) {
3341 if (partial == chain) {
3342 /* Shared branch grows from the inode */
Mingming Cao617ba132006-10-11 01:20:53 -07003343 ext4_free_branches(handle, inode, NULL,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003344 &nr, &nr+1, (chain+n-1) - partial);
3345 *partial->p = 0;
3346 /*
3347 * We mark the inode dirty prior to restart,
3348 * and prior to stop. No need for it here.
3349 */
3350 } else {
3351 /* Shared branch grows from an indirect block */
3352 BUFFER_TRACE(partial->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07003353 ext4_free_branches(handle, inode, partial->bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003354 partial->p,
3355 partial->p+1, (chain+n-1) - partial);
3356 }
3357 }
3358 /* Clear the ends of indirect blocks on the shared branch */
3359 while (partial > chain) {
Mingming Cao617ba132006-10-11 01:20:53 -07003360 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003361 (__le32*)partial->bh->b_data+addr_per_block,
3362 (chain+n-1) - partial);
3363 BUFFER_TRACE(partial->bh, "call brelse");
3364 brelse (partial->bh);
3365 partial--;
3366 }
3367do_indirects:
3368 /* Kill the remaining (whole) subtrees */
3369 switch (offsets[0]) {
3370 default:
Mingming Cao617ba132006-10-11 01:20:53 -07003371 nr = i_data[EXT4_IND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003372 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07003373 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
3374 i_data[EXT4_IND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003375 }
Mingming Cao617ba132006-10-11 01:20:53 -07003376 case EXT4_IND_BLOCK:
3377 nr = i_data[EXT4_DIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003378 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07003379 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
3380 i_data[EXT4_DIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003381 }
Mingming Cao617ba132006-10-11 01:20:53 -07003382 case EXT4_DIND_BLOCK:
3383 nr = i_data[EXT4_TIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003384 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07003385 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
3386 i_data[EXT4_TIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003387 }
Mingming Cao617ba132006-10-11 01:20:53 -07003388 case EXT4_TIND_BLOCK:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003389 ;
3390 }
3391
Mingming Cao617ba132006-10-11 01:20:53 -07003392 ext4_discard_reservation(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003393
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05003394 up_write(&ei->i_data_sem);
Kalpak Shahef7f3832007-07-18 09:15:20 -04003395 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07003396 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003397
3398 /*
3399 * In a multi-transaction truncate, we only make the final transaction
3400 * synchronous
3401 */
3402 if (IS_SYNC(inode))
3403 handle->h_sync = 1;
3404out_stop:
3405 /*
3406 * If this was a simple ftruncate(), and the file will remain alive
3407 * then we need to clear up the orphan record which we created above.
3408 * However, if this was a real unlink then we were called by
Mingming Cao617ba132006-10-11 01:20:53 -07003409 * ext4_delete_inode(), and we allow that function to clean up the
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003410 * orphan info for us.
3411 */
3412 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07003413 ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003414
Mingming Cao617ba132006-10-11 01:20:53 -07003415 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003416}
3417
Mingming Cao617ba132006-10-11 01:20:53 -07003418static ext4_fsblk_t ext4_get_inode_block(struct super_block *sb,
3419 unsigned long ino, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003420{
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003421 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003422 unsigned long offset;
Mingming Cao617ba132006-10-11 01:20:53 -07003423 ext4_fsblk_t block;
Akinobu Mitac0a4ef32008-04-17 10:38:59 -04003424 struct ext4_group_desc *gdp;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003425
Mingming Cao617ba132006-10-11 01:20:53 -07003426 if (!ext4_valid_inum(sb, ino)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003427 /*
3428 * This error is already checked for in namei.c unless we are
3429 * looking at an NFS filehandle, in which case no error
3430 * report is needed
3431 */
3432 return 0;
3433 }
3434
Mingming Cao617ba132006-10-11 01:20:53 -07003435 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
Akinobu Mitac0a4ef32008-04-17 10:38:59 -04003436 gdp = ext4_get_group_desc(sb, block_group, NULL);
3437 if (!gdp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003438 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003439
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003440 /*
3441 * Figure out the offset within the block group inode table
3442 */
Mingming Cao617ba132006-10-11 01:20:53 -07003443 offset = ((ino - 1) % EXT4_INODES_PER_GROUP(sb)) *
3444 EXT4_INODE_SIZE(sb);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07003445 block = ext4_inode_table(sb, gdp) +
3446 (offset >> EXT4_BLOCK_SIZE_BITS(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003447
3448 iloc->block_group = block_group;
Mingming Cao617ba132006-10-11 01:20:53 -07003449 iloc->offset = offset & (EXT4_BLOCK_SIZE(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003450 return block;
3451}
3452
3453/*
Mingming Cao617ba132006-10-11 01:20:53 -07003454 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003455 * underlying buffer_head on success. If 'in_mem' is true, we have all
3456 * data in memory that is needed to recreate the on-disk version of this
3457 * inode.
3458 */
Mingming Cao617ba132006-10-11 01:20:53 -07003459static int __ext4_get_inode_loc(struct inode *inode,
3460 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003461{
Mingming Cao617ba132006-10-11 01:20:53 -07003462 ext4_fsblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003463 struct buffer_head *bh;
3464
Mingming Cao617ba132006-10-11 01:20:53 -07003465 block = ext4_get_inode_block(inode->i_sb, inode->i_ino, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003466 if (!block)
3467 return -EIO;
3468
3469 bh = sb_getblk(inode->i_sb, block);
3470 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07003471 ext4_error (inode->i_sb, "ext4_get_inode_loc",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003472 "unable to read inode block - "
Mingming Cao2ae02102006-10-11 01:21:11 -07003473 "inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003474 inode->i_ino, block);
3475 return -EIO;
3476 }
3477 if (!buffer_uptodate(bh)) {
3478 lock_buffer(bh);
3479 if (buffer_uptodate(bh)) {
3480 /* someone brought it uptodate while we waited */
3481 unlock_buffer(bh);
3482 goto has_buffer;
3483 }
3484
3485 /*
3486 * If we have all information of the inode in memory and this
3487 * is the only valid inode in the block, we need not read the
3488 * block.
3489 */
3490 if (in_mem) {
3491 struct buffer_head *bitmap_bh;
Mingming Cao617ba132006-10-11 01:20:53 -07003492 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003493 int inodes_per_buffer;
3494 int inode_offset, i;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003495 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003496 int start;
3497
3498 block_group = (inode->i_ino - 1) /
Mingming Cao617ba132006-10-11 01:20:53 -07003499 EXT4_INODES_PER_GROUP(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003500 inodes_per_buffer = bh->b_size /
Mingming Cao617ba132006-10-11 01:20:53 -07003501 EXT4_INODE_SIZE(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003502 inode_offset = ((inode->i_ino - 1) %
Mingming Cao617ba132006-10-11 01:20:53 -07003503 EXT4_INODES_PER_GROUP(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003504 start = inode_offset & ~(inodes_per_buffer - 1);
3505
3506 /* Is the inode bitmap in cache? */
Mingming Cao617ba132006-10-11 01:20:53 -07003507 desc = ext4_get_group_desc(inode->i_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003508 block_group, NULL);
3509 if (!desc)
3510 goto make_io;
3511
3512 bitmap_bh = sb_getblk(inode->i_sb,
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07003513 ext4_inode_bitmap(inode->i_sb, desc));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003514 if (!bitmap_bh)
3515 goto make_io;
3516
3517 /*
3518 * If the inode bitmap isn't in cache then the
3519 * optimisation may end up performing two reads instead
3520 * of one, so skip it.
3521 */
3522 if (!buffer_uptodate(bitmap_bh)) {
3523 brelse(bitmap_bh);
3524 goto make_io;
3525 }
3526 for (i = start; i < start + inodes_per_buffer; i++) {
3527 if (i == inode_offset)
3528 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003529 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003530 break;
3531 }
3532 brelse(bitmap_bh);
3533 if (i == start + inodes_per_buffer) {
3534 /* all other inodes are free, so skip I/O */
3535 memset(bh->b_data, 0, bh->b_size);
3536 set_buffer_uptodate(bh);
3537 unlock_buffer(bh);
3538 goto has_buffer;
3539 }
3540 }
3541
3542make_io:
3543 /*
3544 * There are other valid inodes in the buffer, this inode
3545 * has in-inode xattrs, or we don't have this inode in memory.
3546 * Read the block from disk.
3547 */
3548 get_bh(bh);
3549 bh->b_end_io = end_buffer_read_sync;
3550 submit_bh(READ_META, bh);
3551 wait_on_buffer(bh);
3552 if (!buffer_uptodate(bh)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003553 ext4_error(inode->i_sb, "ext4_get_inode_loc",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003554 "unable to read inode block - "
Mingming Cao2ae02102006-10-11 01:21:11 -07003555 "inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003556 inode->i_ino, block);
3557 brelse(bh);
3558 return -EIO;
3559 }
3560 }
3561has_buffer:
3562 iloc->bh = bh;
3563 return 0;
3564}
3565
Mingming Cao617ba132006-10-11 01:20:53 -07003566int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003567{
3568 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003569 return __ext4_get_inode_loc(inode, iloc,
3570 !(EXT4_I(inode)->i_state & EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003571}
3572
Mingming Cao617ba132006-10-11 01:20:53 -07003573void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003574{
Mingming Cao617ba132006-10-11 01:20:53 -07003575 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003576
3577 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07003578 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003579 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003580 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003581 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003582 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003583 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003584 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003585 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003586 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003587 inode->i_flags |= S_DIRSYNC;
3588}
3589
Jan Karaff9ddf72007-07-18 09:24:20 -04003590/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3591void ext4_get_inode_flags(struct ext4_inode_info *ei)
3592{
3593 unsigned int flags = ei->vfs_inode.i_flags;
3594
3595 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3596 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
3597 if (flags & S_SYNC)
3598 ei->i_flags |= EXT4_SYNC_FL;
3599 if (flags & S_APPEND)
3600 ei->i_flags |= EXT4_APPEND_FL;
3601 if (flags & S_IMMUTABLE)
3602 ei->i_flags |= EXT4_IMMUTABLE_FL;
3603 if (flags & S_NOATIME)
3604 ei->i_flags |= EXT4_NOATIME_FL;
3605 if (flags & S_DIRSYNC)
3606 ei->i_flags |= EXT4_DIRSYNC_FL;
3607}
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003608static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
3609 struct ext4_inode_info *ei)
3610{
3611 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003612 struct inode *inode = &(ei->vfs_inode);
3613 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003614
3615 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3616 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3617 /* we are using combined 48 bit field */
3618 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3619 le32_to_cpu(raw_inode->i_blocks_lo);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003620 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
3621 /* i_blocks represent file system block size */
3622 return i_blocks << (inode->i_blkbits - 9);
3623 } else {
3624 return i_blocks;
3625 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003626 } else {
3627 return le32_to_cpu(raw_inode->i_blocks_lo);
3628 }
3629}
Jan Karaff9ddf72007-07-18 09:24:20 -04003630
David Howells1d1fe1e2008-02-07 00:15:37 -08003631struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003632{
Mingming Cao617ba132006-10-11 01:20:53 -07003633 struct ext4_iloc iloc;
3634 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08003635 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003636 struct buffer_head *bh;
David Howells1d1fe1e2008-02-07 00:15:37 -08003637 struct inode *inode;
3638 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003639 int block;
3640
David Howells1d1fe1e2008-02-07 00:15:37 -08003641 inode = iget_locked(sb, ino);
3642 if (!inode)
3643 return ERR_PTR(-ENOMEM);
3644 if (!(inode->i_state & I_NEW))
3645 return inode;
3646
3647 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07003648#ifdef CONFIG_EXT4DEV_FS_POSIX_ACL
3649 ei->i_acl = EXT4_ACL_NOT_CACHED;
3650 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003651#endif
3652 ei->i_block_alloc_info = NULL;
3653
David Howells1d1fe1e2008-02-07 00:15:37 -08003654 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3655 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003656 goto bad_inode;
3657 bh = iloc.bh;
Mingming Cao617ba132006-10-11 01:20:53 -07003658 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003659 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
3660 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3661 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
3662 if(!(test_opt (inode->i_sb, NO_UID32))) {
3663 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3664 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
3665 }
3666 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003667
3668 ei->i_state = 0;
3669 ei->i_dir_start_lookup = 0;
3670 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3671 /* We now have enough fields to check if the inode was active or not.
3672 * This is needed because nfsd might try to access dead inodes
3673 * the test is that same one that e2fsck uses
3674 * NeilBrown 1999oct15
3675 */
3676 if (inode->i_nlink == 0) {
3677 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07003678 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003679 /* this inode is deleted */
3680 brelse (bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08003681 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003682 goto bad_inode;
3683 }
3684 /* The only unlinked inodes we let through here have
3685 * valid i_mode and are being read by the orphan
3686 * recovery code: that's fine, we're about to complete
3687 * the process of deleting those. */
3688 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003689 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003690 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05003691 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07003692 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003693 cpu_to_le32(EXT4_OS_HURD)) {
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07003694 ei->i_file_acl |=
3695 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003696 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003697 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003698 ei->i_disksize = inode->i_size;
3699 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3700 ei->i_block_group = iloc.block_group;
3701 /*
3702 * NOTE! The in-memory inode i_data array is in little-endian order
3703 * even on big-endian machines: we do NOT byteswap the block numbers!
3704 */
Mingming Cao617ba132006-10-11 01:20:53 -07003705 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003706 ei->i_data[block] = raw_inode->i_block[block];
3707 INIT_LIST_HEAD(&ei->i_orphan);
3708
Eric Sandeen0040d982008-02-05 22:36:43 -05003709 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
Mingming Cao617ba132006-10-11 01:20:53 -07003711 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Kirill Korotaeve5d28612007-06-23 17:16:51 -07003712 EXT4_INODE_SIZE(inode->i_sb)) {
3713 brelse (bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08003714 ret = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003715 goto bad_inode;
Kirill Korotaeve5d28612007-06-23 17:16:51 -07003716 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003717 if (ei->i_extra_isize == 0) {
3718 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07003719 ei->i_extra_isize = sizeof(struct ext4_inode) -
3720 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003721 } else {
3722 __le32 *magic = (void *)raw_inode +
Mingming Cao617ba132006-10-11 01:20:53 -07003723 EXT4_GOOD_OLD_INODE_SIZE +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003724 ei->i_extra_isize;
Mingming Cao617ba132006-10-11 01:20:53 -07003725 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
3726 ei->i_state |= EXT4_STATE_XATTR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003727 }
3728 } else
3729 ei->i_extra_isize = 0;
3730
Kalpak Shahef7f3832007-07-18 09:15:20 -04003731 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
3732 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
3733 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
3734 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
3735
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003736 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
3737 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3738 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3739 inode->i_version |=
3740 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
3741 }
3742
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003743 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003744 inode->i_op = &ext4_file_inode_operations;
3745 inode->i_fop = &ext4_file_operations;
3746 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003747 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003748 inode->i_op = &ext4_dir_inode_operations;
3749 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003750 } else if (S_ISLNK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003751 if (ext4_inode_is_fast_symlink(inode))
3752 inode->i_op = &ext4_fast_symlink_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003753 else {
Mingming Cao617ba132006-10-11 01:20:53 -07003754 inode->i_op = &ext4_symlink_inode_operations;
3755 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003756 }
3757 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003758 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003759 if (raw_inode->i_block[0])
3760 init_special_inode(inode, inode->i_mode,
3761 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
3762 else
3763 init_special_inode(inode, inode->i_mode,
3764 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
3765 }
3766 brelse (iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07003767 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08003768 unlock_new_inode(inode);
3769 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003770
3771bad_inode:
David Howells1d1fe1e2008-02-07 00:15:37 -08003772 iget_failed(inode);
3773 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003774}
3775
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003776static int ext4_inode_blocks_set(handle_t *handle,
3777 struct ext4_inode *raw_inode,
3778 struct ext4_inode_info *ei)
3779{
3780 struct inode *inode = &(ei->vfs_inode);
3781 u64 i_blocks = inode->i_blocks;
3782 struct super_block *sb = inode->i_sb;
3783 int err = 0;
3784
3785 if (i_blocks <= ~0U) {
3786 /*
3787 * i_blocks can be represnted in a 32 bit variable
3788 * as multiple of 512 bytes
3789 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003790 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003791 raw_inode->i_blocks_high = 0;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003792 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003793 } else if (i_blocks <= 0xffffffffffffULL) {
3794 /*
3795 * i_blocks can be represented in a 48 bit variable
3796 * as multiple of 512 bytes
3797 */
3798 err = ext4_update_rocompat_feature(handle, sb,
3799 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
3800 if (err)
3801 goto err_out;
3802 /* i_block is stored in the split 48 bit fields */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003803 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003804 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003805 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003806 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003807 /*
3808 * i_blocks should be represented in a 48 bit variable
3809 * as multiple of file system block size
3810 */
3811 err = ext4_update_rocompat_feature(handle, sb,
3812 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
3813 if (err)
3814 goto err_out;
3815 ei->i_flags |= EXT4_HUGE_FILE_FL;
3816 /* i_block is stored in file system block size */
3817 i_blocks = i_blocks >> (inode->i_blkbits - 9);
3818 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
3819 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003820 }
3821err_out:
3822 return err;
3823}
3824
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003825/*
3826 * Post the struct inode info into an on-disk inode location in the
3827 * buffer-cache. This gobbles the caller's reference to the
3828 * buffer_head in the inode location struct.
3829 *
3830 * The caller must have write access to iloc->bh.
3831 */
Mingming Cao617ba132006-10-11 01:20:53 -07003832static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003833 struct inode *inode,
Mingming Cao617ba132006-10-11 01:20:53 -07003834 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003835{
Mingming Cao617ba132006-10-11 01:20:53 -07003836 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
3837 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003838 struct buffer_head *bh = iloc->bh;
3839 int err = 0, rc, block;
3840
3841 /* For fields not not tracking in the in-memory inode,
3842 * initialise them to zero for new inodes. */
Mingming Cao617ba132006-10-11 01:20:53 -07003843 if (ei->i_state & EXT4_STATE_NEW)
3844 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003845
Jan Karaff9ddf72007-07-18 09:24:20 -04003846 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003847 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
3848 if(!(test_opt(inode->i_sb, NO_UID32))) {
3849 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
3850 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
3851/*
3852 * Fix up interoperability with old kernels. Otherwise, old inodes get
3853 * re-used with the upper 16 bits of the uid/gid intact
3854 */
3855 if(!ei->i_dtime) {
3856 raw_inode->i_uid_high =
3857 cpu_to_le16(high_16_bits(inode->i_uid));
3858 raw_inode->i_gid_high =
3859 cpu_to_le16(high_16_bits(inode->i_gid));
3860 } else {
3861 raw_inode->i_uid_high = 0;
3862 raw_inode->i_gid_high = 0;
3863 }
3864 } else {
3865 raw_inode->i_uid_low =
3866 cpu_to_le16(fs_high2lowuid(inode->i_uid));
3867 raw_inode->i_gid_low =
3868 cpu_to_le16(fs_high2lowgid(inode->i_gid));
3869 raw_inode->i_uid_high = 0;
3870 raw_inode->i_gid_high = 0;
3871 }
3872 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04003873
3874 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
3875 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
3876 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
3877 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
3878
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003879 if (ext4_inode_blocks_set(handle, raw_inode, ei))
3880 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003881 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04003882 /* clear the migrate flag in the raw_inode */
3883 raw_inode->i_flags = cpu_to_le32(ei->i_flags & ~EXT4_EXT_MIGRATE);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07003884 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
3885 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07003886 raw_inode->i_file_acl_high =
3887 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05003888 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003889 ext4_isize_set(raw_inode, ei->i_disksize);
3890 if (ei->i_disksize > 0x7fffffffULL) {
3891 struct super_block *sb = inode->i_sb;
3892 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
3893 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
3894 EXT4_SB(sb)->s_es->s_rev_level ==
3895 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
3896 /* If this is the first large file
3897 * created, add a flag to the superblock.
3898 */
3899 err = ext4_journal_get_write_access(handle,
3900 EXT4_SB(sb)->s_sbh);
3901 if (err)
3902 goto out_brelse;
3903 ext4_update_dynamic_rev(sb);
3904 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07003905 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003906 sb->s_dirt = 1;
3907 handle->h_sync = 1;
3908 err = ext4_journal_dirty_metadata(handle,
3909 EXT4_SB(sb)->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003910 }
3911 }
3912 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
3913 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
3914 if (old_valid_dev(inode->i_rdev)) {
3915 raw_inode->i_block[0] =
3916 cpu_to_le32(old_encode_dev(inode->i_rdev));
3917 raw_inode->i_block[1] = 0;
3918 } else {
3919 raw_inode->i_block[0] = 0;
3920 raw_inode->i_block[1] =
3921 cpu_to_le32(new_encode_dev(inode->i_rdev));
3922 raw_inode->i_block[2] = 0;
3923 }
Mingming Cao617ba132006-10-11 01:20:53 -07003924 } else for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003925 raw_inode->i_block[block] = ei->i_data[block];
3926
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003927 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
3928 if (ei->i_extra_isize) {
3929 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3930 raw_inode->i_version_hi =
3931 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003932 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05003933 }
3934
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003935
Mingming Cao617ba132006-10-11 01:20:53 -07003936 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
3937 rc = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003938 if (!err)
3939 err = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07003940 ei->i_state &= ~EXT4_STATE_NEW;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003941
3942out_brelse:
3943 brelse (bh);
Mingming Cao617ba132006-10-11 01:20:53 -07003944 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003945 return err;
3946}
3947
3948/*
Mingming Cao617ba132006-10-11 01:20:53 -07003949 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003950 *
3951 * We are called from a few places:
3952 *
3953 * - Within generic_file_write() for O_SYNC files.
3954 * Here, there will be no transaction running. We wait for any running
3955 * trasnaction to commit.
3956 *
3957 * - Within sys_sync(), kupdate and such.
3958 * We wait on commit, if tol to.
3959 *
3960 * - Within prune_icache() (PF_MEMALLOC == true)
3961 * Here we simply return. We can't afford to block kswapd on the
3962 * journal commit.
3963 *
3964 * In all cases it is actually safe for us to return without doing anything,
3965 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07003966 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003967 * knfsd.
3968 *
3969 * Note that we are absolutely dependent upon all inode dirtiers doing the
3970 * right thing: they *must* call mark_inode_dirty() after dirtying info in
3971 * which we are interested.
3972 *
3973 * It would be a bug for them to not do this. The code:
3974 *
3975 * mark_inode_dirty(inode)
3976 * stuff();
3977 * inode->i_size = expr;
3978 *
3979 * is in error because a kswapd-driven write_inode() could occur while
3980 * `stuff()' is running, and the new i_size will be lost. Plus the inode
3981 * will no longer be on the superblock's dirty inode list.
3982 */
Mingming Cao617ba132006-10-11 01:20:53 -07003983int ext4_write_inode(struct inode *inode, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003984{
3985 if (current->flags & PF_MEMALLOC)
3986 return 0;
3987
Mingming Cao617ba132006-10-11 01:20:53 -07003988 if (ext4_journal_current_handle()) {
Mingming Caob38bd332007-07-19 01:48:35 -07003989 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003990 dump_stack();
3991 return -EIO;
3992 }
3993
3994 if (!wait)
3995 return 0;
3996
Mingming Cao617ba132006-10-11 01:20:53 -07003997 return ext4_force_commit(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003998}
3999
4000/*
Mingming Cao617ba132006-10-11 01:20:53 -07004001 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004002 *
4003 * Called from notify_change.
4004 *
4005 * We want to trap VFS attempts to truncate the file as soon as
4006 * possible. In particular, we want to make sure that when the VFS
4007 * shrinks i_size, we put the inode on the orphan list and modify
4008 * i_disksize immediately, so that during the subsequent flushing of
4009 * dirty pages and freeing of disk blocks, we can guarantee that any
4010 * commit will leave the blocks being flushed in an unused state on
4011 * disk. (On recovery, the inode will get truncated and the blocks will
4012 * be freed, so we have a strong guarantee that no future commit will
4013 * leave these blocks visible to the user.)
4014 *
Jan Kara678aaf42008-07-11 19:27:31 -04004015 * Another thing we have to assure is that if we are in ordered mode
4016 * and inode is still attached to the committing transaction, we must
4017 * we start writeout of all the dirty pages which are being truncated.
4018 * This way we are sure that all the data written in the previous
4019 * transaction are already on disk (truncate waits for pages under
4020 * writeback).
4021 *
4022 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004023 */
Mingming Cao617ba132006-10-11 01:20:53 -07004024int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004025{
4026 struct inode *inode = dentry->d_inode;
4027 int error, rc = 0;
4028 const unsigned int ia_valid = attr->ia_valid;
4029
4030 error = inode_change_ok(inode, attr);
4031 if (error)
4032 return error;
4033
4034 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
4035 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
4036 handle_t *handle;
4037
4038 /* (user+group)*(old+new) structure, inode write (sb,
4039 * inode block, ? - but truncate inode update has it) */
Mingming Cao617ba132006-10-11 01:20:53 -07004040 handle = ext4_journal_start(inode, 2*(EXT4_QUOTA_INIT_BLOCKS(inode->i_sb)+
4041 EXT4_QUOTA_DEL_BLOCKS(inode->i_sb))+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004042 if (IS_ERR(handle)) {
4043 error = PTR_ERR(handle);
4044 goto err_out;
4045 }
4046 error = DQUOT_TRANSFER(inode, attr) ? -EDQUOT : 0;
4047 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07004048 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004049 return error;
4050 }
4051 /* Update corresponding info in inode so that everything is in
4052 * one transaction */
4053 if (attr->ia_valid & ATTR_UID)
4054 inode->i_uid = attr->ia_uid;
4055 if (attr->ia_valid & ATTR_GID)
4056 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07004057 error = ext4_mark_inode_dirty(handle, inode);
4058 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004059 }
4060
Eric Sandeene2b46572008-01-28 23:58:27 -05004061 if (attr->ia_valid & ATTR_SIZE) {
4062 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
4063 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4064
4065 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
4066 error = -EFBIG;
4067 goto err_out;
4068 }
4069 }
4070 }
4071
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004072 if (S_ISREG(inode->i_mode) &&
4073 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
4074 handle_t *handle;
4075
Mingming Cao617ba132006-10-11 01:20:53 -07004076 handle = ext4_journal_start(inode, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004077 if (IS_ERR(handle)) {
4078 error = PTR_ERR(handle);
4079 goto err_out;
4080 }
4081
Mingming Cao617ba132006-10-11 01:20:53 -07004082 error = ext4_orphan_add(handle, inode);
4083 EXT4_I(inode)->i_disksize = attr->ia_size;
4084 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004085 if (!error)
4086 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07004087 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04004088
4089 if (ext4_should_order_data(inode)) {
4090 error = ext4_begin_ordered_truncate(inode,
4091 attr->ia_size);
4092 if (error) {
4093 /* Do as much error cleanup as possible */
4094 handle = ext4_journal_start(inode, 3);
4095 if (IS_ERR(handle)) {
4096 ext4_orphan_del(NULL, inode);
4097 goto err_out;
4098 }
4099 ext4_orphan_del(handle, inode);
4100 ext4_journal_stop(handle);
4101 goto err_out;
4102 }
4103 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004104 }
4105
4106 rc = inode_setattr(inode, attr);
4107
Mingming Cao617ba132006-10-11 01:20:53 -07004108 /* If inode_setattr's call to ext4_truncate failed to get a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004109 * transaction handle at all, we need to clean up the in-core
4110 * orphan list manually. */
4111 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004112 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004113
4114 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07004115 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004116
4117err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07004118 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004119 if (!error)
4120 error = rc;
4121 return error;
4122}
4123
4124
4125/*
4126 * How many blocks doth make a writepage()?
4127 *
4128 * With N blocks per page, it may be:
4129 * N data blocks
4130 * 2 indirect block
4131 * 2 dindirect
4132 * 1 tindirect
4133 * N+5 bitmap blocks (from the above)
4134 * N+5 group descriptor summary blocks
4135 * 1 inode block
4136 * 1 superblock.
Mingming Cao617ba132006-10-11 01:20:53 -07004137 * 2 * EXT4_SINGLEDATA_TRANS_BLOCKS for the quote files
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004138 *
Mingming Cao617ba132006-10-11 01:20:53 -07004139 * 3 * (N + 5) + 2 + 2 * EXT4_SINGLEDATA_TRANS_BLOCKS
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004140 *
4141 * With ordered or writeback data it's the same, less the N data blocks.
4142 *
4143 * If the inode's direct blocks can hold an integral number of pages then a
4144 * page cannot straddle two indirect blocks, and we can only touch one indirect
4145 * and dindirect block, and the "5" above becomes "3".
4146 *
4147 * This still overestimates under most circumstances. If we were to pass the
4148 * start and end offsets in here as well we could do block_to_path() on each
4149 * block and work out the exact number of indirects which are touched. Pah.
4150 */
4151
Alex Tomasa86c6182006-10-11 01:21:03 -07004152int ext4_writepage_trans_blocks(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004153{
Mingming Cao617ba132006-10-11 01:20:53 -07004154 int bpp = ext4_journal_blocks_per_page(inode);
4155 int indirects = (EXT4_NDIR_BLOCKS % bpp) ? 5 : 3;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004156 int ret;
4157
Alex Tomasa86c6182006-10-11 01:21:03 -07004158 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
4159 return ext4_ext_writepage_trans_blocks(inode, bpp);
4160
Mingming Cao617ba132006-10-11 01:20:53 -07004161 if (ext4_should_journal_data(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004162 ret = 3 * (bpp + indirects) + 2;
4163 else
4164 ret = 2 * (bpp + indirects) + 2;
4165
4166#ifdef CONFIG_QUOTA
4167 /* We know that structure was already allocated during DQUOT_INIT so
4168 * we will be updating only the data blocks + inodes */
Mingming Cao617ba132006-10-11 01:20:53 -07004169 ret += 2*EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004170#endif
4171
4172 return ret;
4173}
4174
4175/*
Mingming Cao617ba132006-10-11 01:20:53 -07004176 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004177 * Give this, we know that the caller already has write access to iloc->bh.
4178 */
Mingming Cao617ba132006-10-11 01:20:53 -07004179int ext4_mark_iloc_dirty(handle_t *handle,
4180 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004181{
4182 int err = 0;
4183
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004184 if (test_opt(inode->i_sb, I_VERSION))
4185 inode_inc_iversion(inode);
4186
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004187 /* the do_update_inode consumes one bh->b_count */
4188 get_bh(iloc->bh);
4189
Mingming Caodab291a2006-10-11 01:21:01 -07004190 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Mingming Cao617ba132006-10-11 01:20:53 -07004191 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004192 put_bh(iloc->bh);
4193 return err;
4194}
4195
4196/*
4197 * On success, We end up with an outstanding reference count against
4198 * iloc->bh. This _must_ be cleaned up later.
4199 */
4200
4201int
Mingming Cao617ba132006-10-11 01:20:53 -07004202ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4203 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004204{
4205 int err = 0;
4206 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004207 err = ext4_get_inode_loc(inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004208 if (!err) {
4209 BUFFER_TRACE(iloc->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004210 err = ext4_journal_get_write_access(handle, iloc->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004211 if (err) {
4212 brelse(iloc->bh);
4213 iloc->bh = NULL;
4214 }
4215 }
4216 }
Mingming Cao617ba132006-10-11 01:20:53 -07004217 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004218 return err;
4219}
4220
4221/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004222 * Expand an inode by new_extra_isize bytes.
4223 * Returns 0 on success or negative error number on failure.
4224 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004225static int ext4_expand_extra_isize(struct inode *inode,
4226 unsigned int new_extra_isize,
4227 struct ext4_iloc iloc,
4228 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004229{
4230 struct ext4_inode *raw_inode;
4231 struct ext4_xattr_ibody_header *header;
4232 struct ext4_xattr_entry *entry;
4233
4234 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4235 return 0;
4236
4237 raw_inode = ext4_raw_inode(&iloc);
4238
4239 header = IHDR(inode, raw_inode);
4240 entry = IFIRST(header);
4241
4242 /* No extended attributes present */
4243 if (!(EXT4_I(inode)->i_state & EXT4_STATE_XATTR) ||
4244 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
4245 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4246 new_extra_isize);
4247 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4248 return 0;
4249 }
4250
4251 /* try to expand with EAs present */
4252 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4253 raw_inode, handle);
4254}
4255
4256/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004257 * What we do here is to mark the in-core inode as clean with respect to inode
4258 * dirtiness (it may still be data-dirty).
4259 * This means that the in-core inode may be reaped by prune_icache
4260 * without having to perform any I/O. This is a very good thing,
4261 * because *any* task may call prune_icache - even ones which
4262 * have a transaction open against a different journal.
4263 *
4264 * Is this cheating? Not really. Sure, we haven't written the
4265 * inode out, but prune_icache isn't a user-visible syncing function.
4266 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4267 * we start and wait on commits.
4268 *
4269 * Is this efficient/effective? Well, we're being nice to the system
4270 * by cleaning up our inodes proactively so they can be reaped
4271 * without I/O. But we are potentially leaving up to five seconds'
4272 * worth of inodes floating about which prune_icache wants us to
4273 * write out. One way to fix that would be to get prune_icache()
4274 * to do a write_super() to free up some memory. It has the desired
4275 * effect.
4276 */
Mingming Cao617ba132006-10-11 01:20:53 -07004277int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004278{
Mingming Cao617ba132006-10-11 01:20:53 -07004279 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004280 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4281 static unsigned int mnt_count;
4282 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004283
4284 might_sleep();
Mingming Cao617ba132006-10-11 01:20:53 -07004285 err = ext4_reserve_inode_write(handle, inode, &iloc);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004286 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
4287 !(EXT4_I(inode)->i_state & EXT4_STATE_NO_EXPAND)) {
4288 /*
4289 * We need extra buffer credits since we may write into EA block
4290 * with this same handle. If journal_extend fails, then it will
4291 * only result in a minor loss of functionality for that inode.
4292 * If this is felt to be critical, then e2fsck should be run to
4293 * force a large enough s_min_extra_isize.
4294 */
4295 if ((jbd2_journal_extend(handle,
4296 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4297 ret = ext4_expand_extra_isize(inode,
4298 sbi->s_want_extra_isize,
4299 iloc, handle);
4300 if (ret) {
4301 EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND;
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004302 if (mnt_count !=
4303 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04004304 ext4_warning(inode->i_sb, __func__,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004305 "Unable to expand inode %lu. Delete"
4306 " some EAs or run e2fsck.",
4307 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004308 mnt_count =
4309 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004310 }
4311 }
4312 }
4313 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004314 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004315 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004316 return err;
4317}
4318
4319/*
Mingming Cao617ba132006-10-11 01:20:53 -07004320 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004321 *
4322 * We're really interested in the case where a file is being extended.
4323 * i_size has been changed by generic_commit_write() and we thus need
4324 * to include the updated inode in the current transaction.
4325 *
4326 * Also, DQUOT_ALLOC_SPACE() will always dirty the inode when blocks
4327 * are allocated to the file.
4328 *
4329 * If the inode is marked synchronous, we don't honour that here - doing
4330 * so would cause a commit on atime updates, which we don't bother doing.
4331 * We handle synchronous inodes at the highest possible level.
4332 */
Mingming Cao617ba132006-10-11 01:20:53 -07004333void ext4_dirty_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004334{
Mingming Cao617ba132006-10-11 01:20:53 -07004335 handle_t *current_handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004336 handle_t *handle;
4337
Mingming Cao617ba132006-10-11 01:20:53 -07004338 handle = ext4_journal_start(inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004339 if (IS_ERR(handle))
4340 goto out;
4341 if (current_handle &&
4342 current_handle->h_transaction != handle->h_transaction) {
4343 /* This task has a transaction open against a different fs */
4344 printk(KERN_EMERG "%s: transactions do not match!\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04004345 __func__);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004346 } else {
4347 jbd_debug(5, "marking dirty. outer handle=%p\n",
4348 current_handle);
Mingming Cao617ba132006-10-11 01:20:53 -07004349 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004350 }
Mingming Cao617ba132006-10-11 01:20:53 -07004351 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004352out:
4353 return;
4354}
4355
4356#if 0
4357/*
4358 * Bind an inode's backing buffer_head into this transaction, to prevent
4359 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07004360 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004361 * returns no iloc structure, so the caller needs to repeat the iloc
4362 * lookup to mark the inode dirty later.
4363 */
Mingming Cao617ba132006-10-11 01:20:53 -07004364static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004365{
Mingming Cao617ba132006-10-11 01:20:53 -07004366 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004367
4368 int err = 0;
4369 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004370 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004371 if (!err) {
4372 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07004373 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004374 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004375 err = ext4_journal_dirty_metadata(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004376 iloc.bh);
4377 brelse(iloc.bh);
4378 }
4379 }
Mingming Cao617ba132006-10-11 01:20:53 -07004380 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004381 return err;
4382}
4383#endif
4384
Mingming Cao617ba132006-10-11 01:20:53 -07004385int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004386{
4387 journal_t *journal;
4388 handle_t *handle;
4389 int err;
4390
4391 /*
4392 * We have to be very careful here: changing a data block's
4393 * journaling status dynamically is dangerous. If we write a
4394 * data block to the journal, change the status and then delete
4395 * that block, we risk forgetting to revoke the old log record
4396 * from the journal and so a subsequent replay can corrupt data.
4397 * So, first we make sure that the journal is empty and that
4398 * nobody is changing anything.
4399 */
4400
Mingming Cao617ba132006-10-11 01:20:53 -07004401 journal = EXT4_JOURNAL(inode);
Dave Hansend6995942007-07-18 08:33:51 -04004402 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004403 return -EROFS;
4404
Mingming Caodab291a2006-10-11 01:21:01 -07004405 jbd2_journal_lock_updates(journal);
4406 jbd2_journal_flush(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004407
4408 /*
4409 * OK, there are no updates running now, and all cached data is
4410 * synced to disk. We are now in a completely consistent state
4411 * which doesn't have anything in the journal, and we know that
4412 * no filesystem updates are running, so it is safe to modify
4413 * the inode's in-core data-journaling state flag now.
4414 */
4415
4416 if (val)
Mingming Cao617ba132006-10-11 01:20:53 -07004417 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004418 else
Mingming Cao617ba132006-10-11 01:20:53 -07004419 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
4420 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004421
Mingming Caodab291a2006-10-11 01:21:01 -07004422 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004423
4424 /* Finally we can mark the inode as dirty. */
4425
Mingming Cao617ba132006-10-11 01:20:53 -07004426 handle = ext4_journal_start(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004427 if (IS_ERR(handle))
4428 return PTR_ERR(handle);
4429
Mingming Cao617ba132006-10-11 01:20:53 -07004430 err = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004431 handle->h_sync = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07004432 ext4_journal_stop(handle);
4433 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004434
4435 return err;
4436}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004437
4438static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4439{
4440 return !buffer_mapped(bh);
4441}
4442
4443int ext4_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4444{
4445 loff_t size;
4446 unsigned long len;
4447 int ret = -EINVAL;
4448 struct file *file = vma->vm_file;
4449 struct inode *inode = file->f_path.dentry->d_inode;
4450 struct address_space *mapping = inode->i_mapping;
4451
4452 /*
4453 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
4454 * get i_mutex because we are already holding mmap_sem.
4455 */
4456 down_read(&inode->i_alloc_sem);
4457 size = i_size_read(inode);
4458 if (page->mapping != mapping || size <= page_offset(page)
4459 || !PageUptodate(page)) {
4460 /* page got truncated from under us? */
4461 goto out_unlock;
4462 }
4463 ret = 0;
4464 if (PageMappedToDisk(page))
4465 goto out_unlock;
4466
4467 if (page->index == size >> PAGE_CACHE_SHIFT)
4468 len = size & ~PAGE_CACHE_MASK;
4469 else
4470 len = PAGE_CACHE_SIZE;
4471
4472 if (page_has_buffers(page)) {
4473 /* return if we have all the buffers mapped */
4474 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
4475 ext4_bh_unmapped))
4476 goto out_unlock;
4477 }
4478 /*
4479 * OK, we need to fill the hole... Do write_begin write_end
4480 * to do block allocation/reservation.We are not holding
4481 * inode.i__mutex here. That allow * parallel write_begin,
4482 * write_end call. lock_page prevent this from happening
4483 * on the same page though
4484 */
4485 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
4486 len, AOP_FLAG_UNINTERRUPTIBLE, &page, NULL);
4487 if (ret < 0)
4488 goto out_unlock;
4489 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
4490 len, len, page, NULL);
4491 if (ret < 0)
4492 goto out_unlock;
4493 ret = 0;
4494out_unlock:
4495 up_read(&inode->i_alloc_sem);
4496 return ret;
4497}