ext4: Handle unwritten extent properly with delayed allocation
[linux-2.6/mini2440.git] / fs / ext4 / inode.c
bloba1c7d7623213ee9dd680c810a2668ea54c158200
1 /*
2 * linux/fs/ext4/inode.c
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)
9 * from
11 * linux/fs/minix/inode.c
13 * Copyright (C) 1991, 1992 Linus Torvalds
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)
22 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
25 #include <linux/module.h>
26 #include <linux/fs.h>
27 #include <linux/time.h>
28 #include <linux/jbd2.h>
29 #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>
35 #include <linux/pagevec.h>
36 #include <linux/mpage.h>
37 #include <linux/uio.h>
38 #include <linux/bio.h>
39 #include "ext4_jbd2.h"
40 #include "xattr.h"
41 #include "acl.h"
42 #include "ext4_extents.h"
44 static inline int ext4_begin_ordered_truncate(struct inode *inode,
45 loff_t new_size)
47 return jbd2_journal_begin_ordered_truncate(&EXT4_I(inode)->jinode,
48 new_size);
51 static void ext4_invalidatepage(struct page *page, unsigned long offset);
54 * Test whether an inode is a fast symlink.
56 static int ext4_inode_is_fast_symlink(struct inode *inode)
58 int ea_blocks = EXT4_I(inode)->i_file_acl ?
59 (inode->i_sb->s_blocksize >> 9) : 0;
61 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
65 * The ext4 forget function must perform a revoke if we are freeing data
66 * which has been journaled. Metadata (eg. indirect blocks) must be
67 * revoked in all cases.
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.
73 int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode,
74 struct buffer_head *bh, ext4_fsblk_t blocknr)
76 int err;
78 might_sleep();
80 BUFFER_TRACE(bh, "enter");
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));
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. */
92 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
93 (!is_metadata && !ext4_should_journal_data(inode))) {
94 if (bh) {
95 BUFFER_TRACE(bh, "call jbd2_journal_forget");
96 return ext4_journal_forget(handle, bh);
98 return 0;
102 * data!=journal && (is_metadata || should_journal_data(inode))
104 BUFFER_TRACE(bh, "call ext4_journal_revoke");
105 err = ext4_journal_revoke(handle, blocknr, bh);
106 if (err)
107 ext4_abort(inode->i_sb, __func__,
108 "error %d when attempting revoke", err);
109 BUFFER_TRACE(bh, "exit");
110 return err;
114 * Work out how many blocks we need to proceed with the next chunk of a
115 * truncate transaction.
117 static unsigned long blocks_for_truncate(struct inode *inode)
119 ext4_lblk_t needed;
121 needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9);
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
126 * like a regular file for ext4 to try to delete it. Things
127 * 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;
132 /* But we need to bound the transaction so we don't overflow the
133 * journal. */
134 if (needed > EXT4_MAX_TRANS_DATA)
135 needed = EXT4_MAX_TRANS_DATA;
137 return EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + needed;
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.
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
150 static handle_t *start_transaction(struct inode *inode)
152 handle_t *result;
154 result = ext4_journal_start(inode, blocks_for_truncate(inode));
155 if (!IS_ERR(result))
156 return result;
158 ext4_std_error(inode->i_sb, PTR_ERR(result));
159 return result;
163 * Try to extend this transaction for the purposes of truncation.
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.
168 static int try_to_extend_transaction(handle_t *handle, struct inode *inode)
170 if (handle->h_buffer_credits > EXT4_RESERVE_TRANS_BLOCKS)
171 return 0;
172 if (!ext4_journal_extend(handle, blocks_for_truncate(inode)))
173 return 0;
174 return 1;
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.
182 static int ext4_journal_test_restart(handle_t *handle, struct inode *inode)
184 jbd_debug(2, "restarting handle %p\n", handle);
185 return ext4_journal_restart(handle, blocks_for_truncate(inode));
189 * Called at the last iput() if i_nlink is zero.
191 void ext4_delete_inode (struct inode * inode)
193 handle_t *handle;
194 int err;
196 if (ext4_should_order_data(inode))
197 ext4_begin_ordered_truncate(inode, 0);
198 truncate_inode_pages(&inode->i_data, 0);
200 if (is_bad_inode(inode))
201 goto no_delete;
203 handle = ext4_journal_start(inode, blocks_for_truncate(inode)+3);
204 if (IS_ERR(handle)) {
205 ext4_std_error(inode->i_sb, PTR_ERR(handle));
207 * If we're going to skip the normal cleanup, we still need to
208 * make sure that the in-core orphan linked list is properly
209 * cleaned up.
211 ext4_orphan_del(NULL, inode);
212 goto no_delete;
215 if (IS_SYNC(inode))
216 handle->h_sync = 1;
217 inode->i_size = 0;
218 err = ext4_mark_inode_dirty(handle, inode);
219 if (err) {
220 ext4_warning(inode->i_sb, __func__,
221 "couldn't mark inode dirty (err %d)", err);
222 goto stop_handle;
224 if (inode->i_blocks)
225 ext4_truncate(inode);
228 * ext4_ext_truncate() doesn't reserve any slop when it
229 * restarts journal transactions; therefore there may not be
230 * enough credits left in the handle to remove the inode from
231 * the orphan list and set the dtime field.
233 if (handle->h_buffer_credits < 3) {
234 err = ext4_journal_extend(handle, 3);
235 if (err > 0)
236 err = ext4_journal_restart(handle, 3);
237 if (err != 0) {
238 ext4_warning(inode->i_sb, __func__,
239 "couldn't extend journal (err %d)", err);
240 stop_handle:
241 ext4_journal_stop(handle);
242 goto no_delete;
247 * Kill off the orphan record which ext4_truncate created.
248 * AKPM: I think this can be inside the above `if'.
249 * Note that ext4_orphan_del() has to be able to cope with the
250 * deletion of a non-existent orphan - this is because we don't
251 * know if ext4_truncate() actually created an orphan record.
252 * (Well, we could do this if we need to, but heck - it works)
254 ext4_orphan_del(handle, inode);
255 EXT4_I(inode)->i_dtime = get_seconds();
258 * One subtle ordering requirement: if anything has gone wrong
259 * (transaction abort, IO errors, whatever), then we can still
260 * do these next steps (the fs will already have been marked as
261 * having errors), but we can't free the inode if the mark_dirty
262 * fails.
264 if (ext4_mark_inode_dirty(handle, inode))
265 /* If that failed, just do the required in-core inode clear. */
266 clear_inode(inode);
267 else
268 ext4_free_inode(handle, inode);
269 ext4_journal_stop(handle);
270 return;
271 no_delete:
272 clear_inode(inode); /* We must guarantee clearing of inode... */
275 typedef struct {
276 __le32 *p;
277 __le32 key;
278 struct buffer_head *bh;
279 } Indirect;
281 static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
283 p->key = *(p->p = v);
284 p->bh = bh;
288 * ext4_block_to_path - parse the block number into array of offsets
289 * @inode: inode in question (we are only interested in its superblock)
290 * @i_block: block number to be parsed
291 * @offsets: array to store the offsets in
292 * @boundary: set this non-zero if the referred-to block is likely to be
293 * followed (on disk) by an indirect block.
295 * To store the locations of file's data ext4 uses a data structure common
296 * for UNIX filesystems - tree of pointers anchored in the inode, with
297 * data blocks at leaves and indirect blocks in intermediate nodes.
298 * This function translates the block number into path in that tree -
299 * return value is the path length and @offsets[n] is the offset of
300 * pointer to (n+1)th node in the nth one. If @block is out of range
301 * (negative or too large) warning is printed and zero returned.
303 * Note: function doesn't find node addresses, so no IO is needed. All
304 * we need to know is the capacity of indirect blocks (taken from the
305 * inode->i_sb).
309 * Portability note: the last comparison (check that we fit into triple
310 * indirect block) is spelled differently, because otherwise on an
311 * architecture with 32-bit longs and 8Kb pages we might get into trouble
312 * if our filesystem had 8Kb blocks. We might use long long, but that would
313 * kill us on x86. Oh, well, at least the sign propagation does not matter -
314 * i_block would have to be negative in the very beginning, so we would not
315 * get there at all.
318 static int ext4_block_to_path(struct inode *inode,
319 ext4_lblk_t i_block,
320 ext4_lblk_t offsets[4], int *boundary)
322 int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb);
323 int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb);
324 const long direct_blocks = EXT4_NDIR_BLOCKS,
325 indirect_blocks = ptrs,
326 double_blocks = (1 << (ptrs_bits * 2));
327 int n = 0;
328 int final = 0;
330 if (i_block < 0) {
331 ext4_warning (inode->i_sb, "ext4_block_to_path", "block < 0");
332 } else if (i_block < direct_blocks) {
333 offsets[n++] = i_block;
334 final = direct_blocks;
335 } else if ( (i_block -= direct_blocks) < indirect_blocks) {
336 offsets[n++] = EXT4_IND_BLOCK;
337 offsets[n++] = i_block;
338 final = ptrs;
339 } else if ((i_block -= indirect_blocks) < double_blocks) {
340 offsets[n++] = EXT4_DIND_BLOCK;
341 offsets[n++] = i_block >> ptrs_bits;
342 offsets[n++] = i_block & (ptrs - 1);
343 final = ptrs;
344 } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
345 offsets[n++] = EXT4_TIND_BLOCK;
346 offsets[n++] = i_block >> (ptrs_bits * 2);
347 offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
348 offsets[n++] = i_block & (ptrs - 1);
349 final = ptrs;
350 } else {
351 ext4_warning(inode->i_sb, "ext4_block_to_path",
352 "block %lu > max",
353 i_block + direct_blocks +
354 indirect_blocks + double_blocks);
356 if (boundary)
357 *boundary = final - 1 - (i_block & (ptrs - 1));
358 return n;
362 * ext4_get_branch - read the chain of indirect blocks leading to data
363 * @inode: inode in question
364 * @depth: depth of the chain (1 - direct pointer, etc.)
365 * @offsets: offsets of pointers in inode/indirect blocks
366 * @chain: place to store the result
367 * @err: here we store the error value
369 * Function fills the array of triples <key, p, bh> and returns %NULL
370 * if everything went OK or the pointer to the last filled triple
371 * (incomplete one) otherwise. Upon the return chain[i].key contains
372 * the number of (i+1)-th block in the chain (as it is stored in memory,
373 * i.e. little-endian 32-bit), chain[i].p contains the address of that
374 * number (it points into struct inode for i==0 and into the bh->b_data
375 * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
376 * block for i>0 and NULL for i==0. In other words, it holds the block
377 * numbers of the chain, addresses they were taken from (and where we can
378 * verify that chain did not change) and buffer_heads hosting these
379 * numbers.
381 * Function stops when it stumbles upon zero pointer (absent block)
382 * (pointer to last triple returned, *@err == 0)
383 * or when it gets an IO error reading an indirect block
384 * (ditto, *@err == -EIO)
385 * or when it reads all @depth-1 indirect blocks successfully and finds
386 * the whole chain, all way to the data (returns %NULL, *err == 0).
388 * Need to be called with
389 * down_read(&EXT4_I(inode)->i_data_sem)
391 static Indirect *ext4_get_branch(struct inode *inode, int depth,
392 ext4_lblk_t *offsets,
393 Indirect chain[4], int *err)
395 struct super_block *sb = inode->i_sb;
396 Indirect *p = chain;
397 struct buffer_head *bh;
399 *err = 0;
400 /* i_data is not going away, no lock needed */
401 add_chain (chain, NULL, EXT4_I(inode)->i_data + *offsets);
402 if (!p->key)
403 goto no_block;
404 while (--depth) {
405 bh = sb_bread(sb, le32_to_cpu(p->key));
406 if (!bh)
407 goto failure;
408 add_chain(++p, bh, (__le32*)bh->b_data + *++offsets);
409 /* Reader: end */
410 if (!p->key)
411 goto no_block;
413 return NULL;
415 failure:
416 *err = -EIO;
417 no_block:
418 return p;
422 * ext4_find_near - find a place for allocation with sufficient locality
423 * @inode: owner
424 * @ind: descriptor of indirect block.
426 * This function returns the preferred place for block allocation.
427 * It is used when heuristic for sequential allocation fails.
428 * Rules are:
429 * + if there is a block to the left of our position - allocate near it.
430 * + if pointer will live in indirect block - allocate near that block.
431 * + if pointer will live in inode - allocate in the same
432 * cylinder group.
434 * In the latter case we colour the starting block by the callers PID to
435 * prevent it from clashing with concurrent allocations for a different inode
436 * in the same block group. The PID is used here so that functionally related
437 * files will be close-by on-disk.
439 * Caller must make sure that @ind is valid and will stay that way.
441 static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind)
443 struct ext4_inode_info *ei = EXT4_I(inode);
444 __le32 *start = ind->bh ? (__le32*) ind->bh->b_data : ei->i_data;
445 __le32 *p;
446 ext4_fsblk_t bg_start;
447 ext4_fsblk_t last_block;
448 ext4_grpblk_t colour;
450 /* Try to find previous block */
451 for (p = ind->p - 1; p >= start; p--) {
452 if (*p)
453 return le32_to_cpu(*p);
456 /* No such thing, so let's try location of indirect block */
457 if (ind->bh)
458 return ind->bh->b_blocknr;
461 * It is going to be referred to from the inode itself? OK, just put it
462 * into the same cylinder group then.
464 bg_start = ext4_group_first_block_no(inode->i_sb, ei->i_block_group);
465 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
467 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
468 colour = (current->pid % 16) *
469 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
470 else
471 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
472 return bg_start + colour;
476 * ext4_find_goal - find a preferred place for allocation.
477 * @inode: owner
478 * @block: block we want
479 * @partial: pointer to the last triple within a chain
481 * Normally this function find the preferred place for block allocation,
482 * returns it.
484 static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block,
485 Indirect *partial)
487 struct ext4_block_alloc_info *block_i;
489 block_i = EXT4_I(inode)->i_block_alloc_info;
492 * try the heuristic for sequential allocation,
493 * failing that at least try to get decent locality.
495 if (block_i && (block == block_i->last_alloc_logical_block + 1)
496 && (block_i->last_alloc_physical_block != 0)) {
497 return block_i->last_alloc_physical_block + 1;
500 return ext4_find_near(inode, partial);
504 * ext4_blks_to_allocate: Look up the block map and count the number
505 * of direct blocks need to be allocated for the given branch.
507 * @branch: chain of indirect blocks
508 * @k: number of blocks need for indirect blocks
509 * @blks: number of data blocks to be mapped.
510 * @blocks_to_boundary: the offset in the indirect block
512 * return the total number of blocks to be allocate, including the
513 * direct and indirect blocks.
515 static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned long blks,
516 int blocks_to_boundary)
518 unsigned long count = 0;
521 * Simple case, [t,d]Indirect block(s) has not allocated yet
522 * then it's clear blocks on that path have not allocated
524 if (k > 0) {
525 /* right now we don't handle cross boundary allocation */
526 if (blks < blocks_to_boundary + 1)
527 count += blks;
528 else
529 count += blocks_to_boundary + 1;
530 return count;
533 count++;
534 while (count < blks && count <= blocks_to_boundary &&
535 le32_to_cpu(*(branch[0].p + count)) == 0) {
536 count++;
538 return count;
542 * ext4_alloc_blocks: multiple allocate blocks needed for a branch
543 * @indirect_blks: the number of blocks need to allocate for indirect
544 * blocks
546 * @new_blocks: on return it will store the new block numbers for
547 * the indirect blocks(if needed) and the first direct block,
548 * @blks: on return it will store the total number of allocated
549 * direct blocks
551 static int ext4_alloc_blocks(handle_t *handle, struct inode *inode,
552 ext4_lblk_t iblock, ext4_fsblk_t goal,
553 int indirect_blks, int blks,
554 ext4_fsblk_t new_blocks[4], int *err)
556 int target, i;
557 unsigned long count = 0, blk_allocated = 0;
558 int index = 0;
559 ext4_fsblk_t current_block = 0;
560 int ret = 0;
563 * Here we try to allocate the requested multiple blocks at once,
564 * on a best-effort basis.
565 * To build a branch, we should allocate blocks for
566 * the indirect blocks(if not allocated yet), and at least
567 * the first direct block of this branch. That's the
568 * minimum number of blocks need to allocate(required)
570 /* first we try to allocate the indirect blocks */
571 target = indirect_blks;
572 while (target > 0) {
573 count = target;
574 /* allocating blocks for indirect blocks and direct blocks */
575 current_block = ext4_new_meta_blocks(handle, inode,
576 goal, &count, err);
577 if (*err)
578 goto failed_out;
580 target -= count;
581 /* allocate blocks for indirect blocks */
582 while (index < indirect_blks && count) {
583 new_blocks[index++] = current_block++;
584 count--;
586 if (count > 0) {
588 * save the new block number
589 * for the first direct block
591 new_blocks[index] = current_block;
592 printk(KERN_INFO "%s returned more blocks than "
593 "requested\n", __func__);
594 WARN_ON(1);
595 break;
599 target = blks - count ;
600 blk_allocated = count;
601 if (!target)
602 goto allocated;
603 /* Now allocate data blocks */
604 count = target;
605 /* allocating blocks for data blocks */
606 current_block = ext4_new_blocks(handle, inode, iblock,
607 goal, &count, err);
608 if (*err && (target == blks)) {
610 * if the allocation failed and we didn't allocate
611 * any blocks before
613 goto failed_out;
615 if (!*err) {
616 if (target == blks) {
618 * save the new block number
619 * for the first direct block
621 new_blocks[index] = current_block;
623 blk_allocated += count;
625 allocated:
626 /* total number of blocks allocated for direct blocks */
627 ret = blk_allocated;
628 *err = 0;
629 return ret;
630 failed_out:
631 for (i = 0; i <index; i++)
632 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
633 return ret;
637 * ext4_alloc_branch - allocate and set up a chain of blocks.
638 * @inode: owner
639 * @indirect_blks: number of allocated indirect blocks
640 * @blks: number of allocated direct blocks
641 * @offsets: offsets (in the blocks) to store the pointers to next.
642 * @branch: place to store the chain in.
644 * This function allocates blocks, zeroes out all but the last one,
645 * links them into chain and (if we are synchronous) writes them to disk.
646 * In other words, it prepares a branch that can be spliced onto the
647 * inode. It stores the information about that chain in the branch[], in
648 * the same format as ext4_get_branch() would do. We are calling it after
649 * we had read the existing part of chain and partial points to the last
650 * triple of that (one with zero ->key). Upon the exit we have the same
651 * picture as after the successful ext4_get_block(), except that in one
652 * place chain is disconnected - *branch->p is still zero (we did not
653 * set the last link), but branch->key contains the number that should
654 * be placed into *branch->p to fill that gap.
656 * If allocation fails we free all blocks we've allocated (and forget
657 * their buffer_heads) and return the error value the from failed
658 * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain
659 * as described above and return 0.
661 static int ext4_alloc_branch(handle_t *handle, struct inode *inode,
662 ext4_lblk_t iblock, int indirect_blks,
663 int *blks, ext4_fsblk_t goal,
664 ext4_lblk_t *offsets, Indirect *branch)
666 int blocksize = inode->i_sb->s_blocksize;
667 int i, n = 0;
668 int err = 0;
669 struct buffer_head *bh;
670 int num;
671 ext4_fsblk_t new_blocks[4];
672 ext4_fsblk_t current_block;
674 num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks,
675 *blks, new_blocks, &err);
676 if (err)
677 return err;
679 branch[0].key = cpu_to_le32(new_blocks[0]);
681 * metadata blocks and data blocks are allocated.
683 for (n = 1; n <= indirect_blks; n++) {
685 * Get buffer_head for parent block, zero it out
686 * and set the pointer to new one, then send
687 * parent to disk.
689 bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
690 branch[n].bh = bh;
691 lock_buffer(bh);
692 BUFFER_TRACE(bh, "call get_create_access");
693 err = ext4_journal_get_create_access(handle, bh);
694 if (err) {
695 unlock_buffer(bh);
696 brelse(bh);
697 goto failed;
700 memset(bh->b_data, 0, blocksize);
701 branch[n].p = (__le32 *) bh->b_data + offsets[n];
702 branch[n].key = cpu_to_le32(new_blocks[n]);
703 *branch[n].p = branch[n].key;
704 if ( n == indirect_blks) {
705 current_block = new_blocks[n];
707 * End of chain, update the last new metablock of
708 * the chain to point to the new allocated
709 * data blocks numbers
711 for (i=1; i < num; i++)
712 *(branch[n].p + i) = cpu_to_le32(++current_block);
714 BUFFER_TRACE(bh, "marking uptodate");
715 set_buffer_uptodate(bh);
716 unlock_buffer(bh);
718 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
719 err = ext4_journal_dirty_metadata(handle, bh);
720 if (err)
721 goto failed;
723 *blks = num;
724 return err;
725 failed:
726 /* Allocation failed, free what we already allocated */
727 for (i = 1; i <= n ; i++) {
728 BUFFER_TRACE(branch[i].bh, "call jbd2_journal_forget");
729 ext4_journal_forget(handle, branch[i].bh);
731 for (i = 0; i <indirect_blks; i++)
732 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
734 ext4_free_blocks(handle, inode, new_blocks[i], num, 0);
736 return err;
740 * ext4_splice_branch - splice the allocated branch onto inode.
741 * @inode: owner
742 * @block: (logical) number of block we are adding
743 * @chain: chain of indirect blocks (with a missing link - see
744 * ext4_alloc_branch)
745 * @where: location of missing link
746 * @num: number of indirect blocks we are adding
747 * @blks: number of direct blocks we are adding
749 * This function fills the missing link and does all housekeeping needed in
750 * inode (->i_blocks, etc.). In case of success we end up with the full
751 * chain to new block and return 0.
753 static int ext4_splice_branch(handle_t *handle, struct inode *inode,
754 ext4_lblk_t block, Indirect *where, int num, int blks)
756 int i;
757 int err = 0;
758 struct ext4_block_alloc_info *block_i;
759 ext4_fsblk_t current_block;
761 block_i = EXT4_I(inode)->i_block_alloc_info;
763 * If we're splicing into a [td]indirect block (as opposed to the
764 * inode) then we need to get write access to the [td]indirect block
765 * before the splice.
767 if (where->bh) {
768 BUFFER_TRACE(where->bh, "get_write_access");
769 err = ext4_journal_get_write_access(handle, where->bh);
770 if (err)
771 goto err_out;
773 /* That's it */
775 *where->p = where->key;
778 * Update the host buffer_head or inode to point to more just allocated
779 * direct blocks blocks
781 if (num == 0 && blks > 1) {
782 current_block = le32_to_cpu(where->key) + 1;
783 for (i = 1; i < blks; i++)
784 *(where->p + i ) = cpu_to_le32(current_block++);
788 * update the most recently allocated logical & physical block
789 * in i_block_alloc_info, to assist find the proper goal block for next
790 * allocation
792 if (block_i) {
793 block_i->last_alloc_logical_block = block + blks - 1;
794 block_i->last_alloc_physical_block =
795 le32_to_cpu(where[num].key) + blks - 1;
798 /* We are done with atomic stuff, now do the rest of housekeeping */
800 inode->i_ctime = ext4_current_time(inode);
801 ext4_mark_inode_dirty(handle, inode);
803 /* had we spliced it onto indirect block? */
804 if (where->bh) {
806 * If we spliced it onto an indirect block, we haven't
807 * altered the inode. Note however that if it is being spliced
808 * onto an indirect block at the very end of the file (the
809 * file is growing) then we *will* alter the inode to reflect
810 * the new i_size. But that is not done here - it is done in
811 * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode.
813 jbd_debug(5, "splicing indirect only\n");
814 BUFFER_TRACE(where->bh, "call ext4_journal_dirty_metadata");
815 err = ext4_journal_dirty_metadata(handle, where->bh);
816 if (err)
817 goto err_out;
818 } else {
820 * OK, we spliced it into the inode itself on a direct block.
821 * Inode was dirtied above.
823 jbd_debug(5, "splicing direct\n");
825 return err;
827 err_out:
828 for (i = 1; i <= num; i++) {
829 BUFFER_TRACE(where[i].bh, "call jbd2_journal_forget");
830 ext4_journal_forget(handle, where[i].bh);
831 ext4_free_blocks(handle, inode,
832 le32_to_cpu(where[i-1].key), 1, 0);
834 ext4_free_blocks(handle, inode, le32_to_cpu(where[num].key), blks, 0);
836 return err;
840 * Allocation strategy is simple: if we have to allocate something, we will
841 * have to go the whole way to leaf. So let's do it before attaching anything
842 * to tree, set linkage between the newborn blocks, write them if sync is
843 * required, recheck the path, free and repeat if check fails, otherwise
844 * set the last missing link (that will protect us from any truncate-generated
845 * removals - all blocks on the path are immune now) and possibly force the
846 * write on the parent block.
847 * That has a nice additional property: no special recovery from the failed
848 * allocations is needed - we simply release blocks and do not touch anything
849 * reachable from inode.
851 * `handle' can be NULL if create == 0.
853 * return > 0, # of blocks mapped or allocated.
854 * return = 0, if plain lookup failed.
855 * return < 0, error case.
858 * Need to be called with
859 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
860 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
862 int ext4_get_blocks_handle(handle_t *handle, struct inode *inode,
863 ext4_lblk_t iblock, unsigned long maxblocks,
864 struct buffer_head *bh_result,
865 int create, int extend_disksize)
867 int err = -EIO;
868 ext4_lblk_t offsets[4];
869 Indirect chain[4];
870 Indirect *partial;
871 ext4_fsblk_t goal;
872 int indirect_blks;
873 int blocks_to_boundary = 0;
874 int depth;
875 struct ext4_inode_info *ei = EXT4_I(inode);
876 int count = 0;
877 ext4_fsblk_t first_block = 0;
878 loff_t disksize;
881 J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL));
882 J_ASSERT(handle != NULL || create == 0);
883 depth = ext4_block_to_path(inode, iblock, offsets,
884 &blocks_to_boundary);
886 if (depth == 0)
887 goto out;
889 partial = ext4_get_branch(inode, depth, offsets, chain, &err);
891 /* Simplest case - block found, no allocation needed */
892 if (!partial) {
893 first_block = le32_to_cpu(chain[depth - 1].key);
894 clear_buffer_new(bh_result);
895 count++;
896 /*map more blocks*/
897 while (count < maxblocks && count <= blocks_to_boundary) {
898 ext4_fsblk_t blk;
900 blk = le32_to_cpu(*(chain[depth-1].p + count));
902 if (blk == first_block + count)
903 count++;
904 else
905 break;
907 goto got_it;
910 /* Next simple case - plain lookup or failed read of indirect block */
911 if (!create || err == -EIO)
912 goto cleanup;
915 * Okay, we need to do block allocation. Lazily initialize the block
916 * allocation info here if necessary
918 if (S_ISREG(inode->i_mode) && (!ei->i_block_alloc_info))
919 ext4_init_block_alloc_info(inode);
921 goal = ext4_find_goal(inode, iblock, partial);
923 /* the number of blocks need to allocate for [d,t]indirect blocks */
924 indirect_blks = (chain + depth) - partial - 1;
927 * Next look up the indirect map to count the totoal number of
928 * direct blocks to allocate for this branch.
930 count = ext4_blks_to_allocate(partial, indirect_blks,
931 maxblocks, blocks_to_boundary);
933 * Block out ext4_truncate while we alter the tree
935 err = ext4_alloc_branch(handle, inode, iblock, indirect_blks,
936 &count, goal,
937 offsets + (partial - chain), partial);
940 * The ext4_splice_branch call will free and forget any buffers
941 * on the new chain if there is a failure, but that risks using
942 * up transaction credits, especially for bitmaps where the
943 * credits cannot be returned. Can we handle this somehow? We
944 * may need to return -EAGAIN upwards in the worst case. --sct
946 if (!err)
947 err = ext4_splice_branch(handle, inode, iblock,
948 partial, indirect_blks, count);
950 * i_disksize growing is protected by i_data_sem. Don't forget to
951 * protect it if you're about to implement concurrent
952 * ext4_get_block() -bzzz
954 if (!err && extend_disksize) {
955 disksize = ((loff_t) iblock + count) << inode->i_blkbits;
956 if (disksize > i_size_read(inode))
957 disksize = i_size_read(inode);
958 if (disksize > ei->i_disksize)
959 ei->i_disksize = disksize;
961 if (err)
962 goto cleanup;
964 set_buffer_new(bh_result);
965 got_it:
966 map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
967 if (count > blocks_to_boundary)
968 set_buffer_boundary(bh_result);
969 err = count;
970 /* Clean up and exit */
971 partial = chain + depth - 1; /* the whole chain */
972 cleanup:
973 while (partial > chain) {
974 BUFFER_TRACE(partial->bh, "call brelse");
975 brelse(partial->bh);
976 partial--;
978 BUFFER_TRACE(bh_result, "returned");
979 out:
980 return err;
984 * Calculate the number of metadata blocks need to reserve
985 * to allocate @blocks for non extent file based file
987 static int ext4_indirect_calc_metadata_amount(struct inode *inode, int blocks)
989 int icap = EXT4_ADDR_PER_BLOCK(inode->i_sb);
990 int ind_blks, dind_blks, tind_blks;
992 /* number of new indirect blocks needed */
993 ind_blks = (blocks + icap - 1) / icap;
995 dind_blks = (ind_blks + icap - 1) / icap;
997 tind_blks = 1;
999 return ind_blks + dind_blks + tind_blks;
1003 * Calculate the number of metadata blocks need to reserve
1004 * to allocate given number of blocks
1006 static int ext4_calc_metadata_amount(struct inode *inode, int blocks)
1008 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
1009 return ext4_ext_calc_metadata_amount(inode, blocks);
1011 return ext4_indirect_calc_metadata_amount(inode, blocks);
1014 static void ext4_da_update_reserve_space(struct inode *inode, int used)
1016 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1017 int total, mdb, mdb_free;
1019 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1020 /* recalculate the number of metablocks still need to be reserved */
1021 total = EXT4_I(inode)->i_reserved_data_blocks - used;
1022 mdb = ext4_calc_metadata_amount(inode, total);
1024 /* figure out how many metablocks to release */
1025 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1026 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1028 /* Account for allocated meta_blocks */
1029 mdb_free -= EXT4_I(inode)->i_allocated_meta_blocks;
1031 /* update fs free blocks counter for truncate case */
1032 percpu_counter_add(&sbi->s_freeblocks_counter, mdb_free);
1034 /* update per-inode reservations */
1035 BUG_ON(used > EXT4_I(inode)->i_reserved_data_blocks);
1036 EXT4_I(inode)->i_reserved_data_blocks -= used;
1038 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1039 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
1040 EXT4_I(inode)->i_allocated_meta_blocks = 0;
1041 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1044 /* Maximum number of blocks we map for direct IO at once. */
1045 #define DIO_MAX_BLOCKS 4096
1047 * Number of credits we need for writing DIO_MAX_BLOCKS:
1048 * We need sb + group descriptor + bitmap + inode -> 4
1049 * For B blocks with A block pointers per block we need:
1050 * 1 (triple ind.) + (B/A/A + 2) (doubly ind.) + (B/A + 2) (indirect).
1051 * If we plug in 4096 for B and 256 for A (for 1KB block size), we get 25.
1053 #define DIO_CREDITS 25
1057 * The ext4_get_blocks_wrap() function try to look up the requested blocks,
1058 * and returns if the blocks are already mapped.
1060 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
1061 * and store the allocated blocks in the result buffer head and mark it
1062 * mapped.
1064 * If file type is extents based, it will call ext4_ext_get_blocks(),
1065 * Otherwise, call with ext4_get_blocks_handle() to handle indirect mapping
1066 * based files
1068 * On success, it returns the number of blocks being mapped or allocate.
1069 * if create==0 and the blocks are pre-allocated and uninitialized block,
1070 * the result buffer head is unmapped. If the create ==1, it will make sure
1071 * the buffer head is mapped.
1073 * It returns 0 if plain look up failed (blocks have not been allocated), in
1074 * that casem, buffer head is unmapped
1076 * It returns the error in case of allocation failure.
1078 int ext4_get_blocks_wrap(handle_t *handle, struct inode *inode, sector_t block,
1079 unsigned long max_blocks, struct buffer_head *bh,
1080 int create, int extend_disksize, int flag)
1082 int retval;
1084 clear_buffer_mapped(bh);
1087 * Try to see if we can get the block without requesting
1088 * for new file system block.
1090 down_read((&EXT4_I(inode)->i_data_sem));
1091 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1092 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1093 bh, 0, 0);
1094 } else {
1095 retval = ext4_get_blocks_handle(handle,
1096 inode, block, max_blocks, bh, 0, 0);
1098 up_read((&EXT4_I(inode)->i_data_sem));
1100 /* If it is only a block(s) look up */
1101 if (!create)
1102 return retval;
1105 * Returns if the blocks have already allocated
1107 * Note that if blocks have been preallocated
1108 * ext4_ext_get_block() returns th create = 0
1109 * with buffer head unmapped.
1111 if (retval > 0 && buffer_mapped(bh))
1112 return retval;
1115 * New blocks allocate and/or writing to uninitialized extent
1116 * will possibly result in updating i_data, so we take
1117 * the write lock of i_data_sem, and call get_blocks()
1118 * with create == 1 flag.
1120 down_write((&EXT4_I(inode)->i_data_sem));
1123 * if the caller is from delayed allocation writeout path
1124 * we have already reserved fs blocks for allocation
1125 * let the underlying get_block() function know to
1126 * avoid double accounting
1128 if (flag)
1129 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
1131 * We need to check for EXT4 here because migrate
1132 * could have changed the inode type in between
1134 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1135 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1136 bh, create, extend_disksize);
1137 } else {
1138 retval = ext4_get_blocks_handle(handle, inode, block,
1139 max_blocks, bh, create, extend_disksize);
1141 if (retval > 0 && buffer_new(bh)) {
1143 * We allocated new blocks which will result in
1144 * i_data's format changing. Force the migrate
1145 * to fail by clearing migrate flags
1147 EXT4_I(inode)->i_flags = EXT4_I(inode)->i_flags &
1148 ~EXT4_EXT_MIGRATE;
1152 if (flag) {
1153 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
1155 * Update reserved blocks/metadata blocks
1156 * after successful block allocation
1157 * which were deferred till now
1159 if ((retval > 0) && buffer_delay(bh))
1160 ext4_da_update_reserve_space(inode, retval);
1163 up_write((&EXT4_I(inode)->i_data_sem));
1164 return retval;
1167 static int ext4_get_block(struct inode *inode, sector_t iblock,
1168 struct buffer_head *bh_result, int create)
1170 handle_t *handle = ext4_journal_current_handle();
1171 int ret = 0, started = 0;
1172 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
1174 if (create && !handle) {
1175 /* Direct IO write... */
1176 if (max_blocks > DIO_MAX_BLOCKS)
1177 max_blocks = DIO_MAX_BLOCKS;
1178 handle = ext4_journal_start(inode, DIO_CREDITS +
1179 2 * EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb));
1180 if (IS_ERR(handle)) {
1181 ret = PTR_ERR(handle);
1182 goto out;
1184 started = 1;
1187 ret = ext4_get_blocks_wrap(handle, inode, iblock,
1188 max_blocks, bh_result, create, 0, 0);
1189 if (ret > 0) {
1190 bh_result->b_size = (ret << inode->i_blkbits);
1191 ret = 0;
1193 if (started)
1194 ext4_journal_stop(handle);
1195 out:
1196 return ret;
1200 * `handle' can be NULL if create is zero
1202 struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
1203 ext4_lblk_t block, int create, int *errp)
1205 struct buffer_head dummy;
1206 int fatal = 0, err;
1208 J_ASSERT(handle != NULL || create == 0);
1210 dummy.b_state = 0;
1211 dummy.b_blocknr = -1000;
1212 buffer_trace_init(&dummy.b_history);
1213 err = ext4_get_blocks_wrap(handle, inode, block, 1,
1214 &dummy, create, 1, 0);
1216 * ext4_get_blocks_handle() returns number of blocks
1217 * mapped. 0 in case of a HOLE.
1219 if (err > 0) {
1220 if (err > 1)
1221 WARN_ON(1);
1222 err = 0;
1224 *errp = err;
1225 if (!err && buffer_mapped(&dummy)) {
1226 struct buffer_head *bh;
1227 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1228 if (!bh) {
1229 *errp = -EIO;
1230 goto err;
1232 if (buffer_new(&dummy)) {
1233 J_ASSERT(create != 0);
1234 J_ASSERT(handle != NULL);
1237 * Now that we do not always journal data, we should
1238 * keep in mind whether this should always journal the
1239 * new buffer as metadata. For now, regular file
1240 * writes use ext4_get_block instead, so it's not a
1241 * problem.
1243 lock_buffer(bh);
1244 BUFFER_TRACE(bh, "call get_create_access");
1245 fatal = ext4_journal_get_create_access(handle, bh);
1246 if (!fatal && !buffer_uptodate(bh)) {
1247 memset(bh->b_data,0,inode->i_sb->s_blocksize);
1248 set_buffer_uptodate(bh);
1250 unlock_buffer(bh);
1251 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
1252 err = ext4_journal_dirty_metadata(handle, bh);
1253 if (!fatal)
1254 fatal = err;
1255 } else {
1256 BUFFER_TRACE(bh, "not a new buffer");
1258 if (fatal) {
1259 *errp = fatal;
1260 brelse(bh);
1261 bh = NULL;
1263 return bh;
1265 err:
1266 return NULL;
1269 struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
1270 ext4_lblk_t block, int create, int *err)
1272 struct buffer_head * bh;
1274 bh = ext4_getblk(handle, inode, block, create, err);
1275 if (!bh)
1276 return bh;
1277 if (buffer_uptodate(bh))
1278 return bh;
1279 ll_rw_block(READ_META, 1, &bh);
1280 wait_on_buffer(bh);
1281 if (buffer_uptodate(bh))
1282 return bh;
1283 put_bh(bh);
1284 *err = -EIO;
1285 return NULL;
1288 static int walk_page_buffers( handle_t *handle,
1289 struct buffer_head *head,
1290 unsigned from,
1291 unsigned to,
1292 int *partial,
1293 int (*fn)( handle_t *handle,
1294 struct buffer_head *bh))
1296 struct buffer_head *bh;
1297 unsigned block_start, block_end;
1298 unsigned blocksize = head->b_size;
1299 int err, ret = 0;
1300 struct buffer_head *next;
1302 for ( bh = head, block_start = 0;
1303 ret == 0 && (bh != head || !block_start);
1304 block_start = block_end, bh = next)
1306 next = bh->b_this_page;
1307 block_end = block_start + blocksize;
1308 if (block_end <= from || block_start >= to) {
1309 if (partial && !buffer_uptodate(bh))
1310 *partial = 1;
1311 continue;
1313 err = (*fn)(handle, bh);
1314 if (!ret)
1315 ret = err;
1317 return ret;
1321 * To preserve ordering, it is essential that the hole instantiation and
1322 * the data write be encapsulated in a single transaction. We cannot
1323 * close off a transaction and start a new one between the ext4_get_block()
1324 * and the commit_write(). So doing the jbd2_journal_start at the start of
1325 * prepare_write() is the right place.
1327 * Also, this function can nest inside ext4_writepage() ->
1328 * block_write_full_page(). In that case, we *know* that ext4_writepage()
1329 * has generated enough buffer credits to do the whole page. So we won't
1330 * block on the journal in that case, which is good, because the caller may
1331 * be PF_MEMALLOC.
1333 * By accident, ext4 can be reentered when a transaction is open via
1334 * quota file writes. If we were to commit the transaction while thus
1335 * reentered, there can be a deadlock - we would be holding a quota
1336 * lock, and the commit would never complete if another thread had a
1337 * transaction open and was blocking on the quota lock - a ranking
1338 * violation.
1340 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
1341 * will _not_ run commit under these circumstances because handle->h_ref
1342 * is elevated. We'll still have enough credits for the tiny quotafile
1343 * write.
1345 static int do_journal_get_write_access(handle_t *handle,
1346 struct buffer_head *bh)
1348 if (!buffer_mapped(bh) || buffer_freed(bh))
1349 return 0;
1350 return ext4_journal_get_write_access(handle, bh);
1353 static int ext4_write_begin(struct file *file, struct address_space *mapping,
1354 loff_t pos, unsigned len, unsigned flags,
1355 struct page **pagep, void **fsdata)
1357 struct inode *inode = mapping->host;
1358 int ret, needed_blocks = ext4_writepage_trans_blocks(inode);
1359 handle_t *handle;
1360 int retries = 0;
1361 struct page *page;
1362 pgoff_t index;
1363 unsigned from, to;
1365 index = pos >> PAGE_CACHE_SHIFT;
1366 from = pos & (PAGE_CACHE_SIZE - 1);
1367 to = from + len;
1369 retry:
1370 handle = ext4_journal_start(inode, needed_blocks);
1371 if (IS_ERR(handle)) {
1372 ret = PTR_ERR(handle);
1373 goto out;
1376 page = __grab_cache_page(mapping, index);
1377 if (!page) {
1378 ext4_journal_stop(handle);
1379 ret = -ENOMEM;
1380 goto out;
1382 *pagep = page;
1384 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
1385 ext4_get_block);
1387 if (!ret && ext4_should_journal_data(inode)) {
1388 ret = walk_page_buffers(handle, page_buffers(page),
1389 from, to, NULL, do_journal_get_write_access);
1392 if (ret) {
1393 unlock_page(page);
1394 ext4_journal_stop(handle);
1395 page_cache_release(page);
1398 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
1399 goto retry;
1400 out:
1401 return ret;
1404 /* For write_end() in data=journal mode */
1405 static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1407 if (!buffer_mapped(bh) || buffer_freed(bh))
1408 return 0;
1409 set_buffer_uptodate(bh);
1410 return ext4_journal_dirty_metadata(handle, bh);
1414 * We need to pick up the new inode size which generic_commit_write gave us
1415 * `file' can be NULL - eg, when called from page_symlink().
1417 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1418 * buffers are managed internally.
1420 static int ext4_ordered_write_end(struct file *file,
1421 struct address_space *mapping,
1422 loff_t pos, unsigned len, unsigned copied,
1423 struct page *page, void *fsdata)
1425 handle_t *handle = ext4_journal_current_handle();
1426 struct inode *inode = mapping->host;
1427 int ret = 0, ret2;
1429 ret = ext4_jbd2_file_inode(handle, inode);
1431 if (ret == 0) {
1433 * generic_write_end() will run mark_inode_dirty() if i_size
1434 * changes. So let's piggyback the i_disksize mark_inode_dirty
1435 * into that.
1437 loff_t new_i_size;
1439 new_i_size = pos + copied;
1440 if (new_i_size > EXT4_I(inode)->i_disksize)
1441 EXT4_I(inode)->i_disksize = new_i_size;
1442 ret2 = generic_write_end(file, mapping, pos, len, copied,
1443 page, fsdata);
1444 copied = ret2;
1445 if (ret2 < 0)
1446 ret = ret2;
1448 ret2 = ext4_journal_stop(handle);
1449 if (!ret)
1450 ret = ret2;
1452 return ret ? ret : copied;
1455 static int ext4_writeback_write_end(struct file *file,
1456 struct address_space *mapping,
1457 loff_t pos, unsigned len, unsigned copied,
1458 struct page *page, void *fsdata)
1460 handle_t *handle = ext4_journal_current_handle();
1461 struct inode *inode = mapping->host;
1462 int ret = 0, ret2;
1463 loff_t new_i_size;
1465 new_i_size = pos + copied;
1466 if (new_i_size > EXT4_I(inode)->i_disksize)
1467 EXT4_I(inode)->i_disksize = new_i_size;
1469 ret2 = generic_write_end(file, mapping, pos, len, copied,
1470 page, fsdata);
1471 copied = ret2;
1472 if (ret2 < 0)
1473 ret = ret2;
1475 ret2 = ext4_journal_stop(handle);
1476 if (!ret)
1477 ret = ret2;
1479 return ret ? ret : copied;
1482 static int ext4_journalled_write_end(struct file *file,
1483 struct address_space *mapping,
1484 loff_t pos, unsigned len, unsigned copied,
1485 struct page *page, void *fsdata)
1487 handle_t *handle = ext4_journal_current_handle();
1488 struct inode *inode = mapping->host;
1489 int ret = 0, ret2;
1490 int partial = 0;
1491 unsigned from, to;
1493 from = pos & (PAGE_CACHE_SIZE - 1);
1494 to = from + len;
1496 if (copied < len) {
1497 if (!PageUptodate(page))
1498 copied = 0;
1499 page_zero_new_buffers(page, from+copied, to);
1502 ret = walk_page_buffers(handle, page_buffers(page), from,
1503 to, &partial, write_end_fn);
1504 if (!partial)
1505 SetPageUptodate(page);
1506 if (pos+copied > inode->i_size)
1507 i_size_write(inode, pos+copied);
1508 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
1509 if (inode->i_size > EXT4_I(inode)->i_disksize) {
1510 EXT4_I(inode)->i_disksize = inode->i_size;
1511 ret2 = ext4_mark_inode_dirty(handle, inode);
1512 if (!ret)
1513 ret = ret2;
1516 unlock_page(page);
1517 ret2 = ext4_journal_stop(handle);
1518 if (!ret)
1519 ret = ret2;
1520 page_cache_release(page);
1522 return ret ? ret : copied;
1525 static int ext4_da_reserve_space(struct inode *inode, int nrblocks)
1527 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1528 unsigned long md_needed, mdblocks, total = 0;
1531 * recalculate the amount of metadata blocks to reserve
1532 * in order to allocate nrblocks
1533 * worse case is one extent per block
1535 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1536 total = EXT4_I(inode)->i_reserved_data_blocks + nrblocks;
1537 mdblocks = ext4_calc_metadata_amount(inode, total);
1538 BUG_ON(mdblocks < EXT4_I(inode)->i_reserved_meta_blocks);
1540 md_needed = mdblocks - EXT4_I(inode)->i_reserved_meta_blocks;
1541 total = md_needed + nrblocks;
1543 if (ext4_has_free_blocks(sbi, total) < total) {
1544 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1545 return -ENOSPC;
1547 /* reduce fs free blocks counter */
1548 percpu_counter_sub(&sbi->s_freeblocks_counter, total);
1550 EXT4_I(inode)->i_reserved_data_blocks += nrblocks;
1551 EXT4_I(inode)->i_reserved_meta_blocks = mdblocks;
1553 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1554 return 0; /* success */
1557 static void ext4_da_release_space(struct inode *inode, int to_free)
1559 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1560 int total, mdb, mdb_free, release;
1562 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1563 /* recalculate the number of metablocks still need to be reserved */
1564 total = EXT4_I(inode)->i_reserved_data_blocks - to_free;
1565 mdb = ext4_calc_metadata_amount(inode, total);
1567 /* figure out how many metablocks to release */
1568 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1569 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1571 release = to_free + mdb_free;
1573 /* update fs free blocks counter for truncate case */
1574 percpu_counter_add(&sbi->s_freeblocks_counter, release);
1576 /* update per-inode reservations */
1577 BUG_ON(to_free > EXT4_I(inode)->i_reserved_data_blocks);
1578 EXT4_I(inode)->i_reserved_data_blocks -= to_free;
1580 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1581 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
1582 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1585 static void ext4_da_page_release_reservation(struct page *page,
1586 unsigned long offset)
1588 int to_release = 0;
1589 struct buffer_head *head, *bh;
1590 unsigned int curr_off = 0;
1592 head = page_buffers(page);
1593 bh = head;
1594 do {
1595 unsigned int next_off = curr_off + bh->b_size;
1597 if ((offset <= curr_off) && (buffer_delay(bh))) {
1598 to_release++;
1599 clear_buffer_delay(bh);
1601 curr_off = next_off;
1602 } while ((bh = bh->b_this_page) != head);
1603 ext4_da_release_space(page->mapping->host, to_release);
1607 * Delayed allocation stuff
1610 struct mpage_da_data {
1611 struct inode *inode;
1612 struct buffer_head lbh; /* extent of blocks */
1613 unsigned long first_page, next_page; /* extent of pages */
1614 get_block_t *get_block;
1615 struct writeback_control *wbc;
1619 * mpage_da_submit_io - walks through extent of pages and try to write
1620 * them with __mpage_writepage()
1622 * @mpd->inode: inode
1623 * @mpd->first_page: first page of the extent
1624 * @mpd->next_page: page after the last page of the extent
1625 * @mpd->get_block: the filesystem's block mapper function
1627 * By the time mpage_da_submit_io() is called we expect all blocks
1628 * to be allocated. this may be wrong if allocation failed.
1630 * As pages are already locked by write_cache_pages(), we can't use it
1632 static int mpage_da_submit_io(struct mpage_da_data *mpd)
1634 struct address_space *mapping = mpd->inode->i_mapping;
1635 struct mpage_data mpd_pp = {
1636 .bio = NULL,
1637 .last_block_in_bio = 0,
1638 .get_block = mpd->get_block,
1639 .use_writepage = 1,
1641 int ret = 0, err, nr_pages, i;
1642 unsigned long index, end;
1643 struct pagevec pvec;
1645 BUG_ON(mpd->next_page <= mpd->first_page);
1647 pagevec_init(&pvec, 0);
1648 index = mpd->first_page;
1649 end = mpd->next_page - 1;
1651 while (index <= end) {
1652 /* XXX: optimize tail */
1653 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1654 if (nr_pages == 0)
1655 break;
1656 for (i = 0; i < nr_pages; i++) {
1657 struct page *page = pvec.pages[i];
1659 index = page->index;
1660 if (index > end)
1661 break;
1662 index++;
1664 err = __mpage_writepage(page, mpd->wbc, &mpd_pp);
1667 * In error case, we have to continue because
1668 * remaining pages are still locked
1669 * XXX: unlock and re-dirty them?
1671 if (ret == 0)
1672 ret = err;
1674 pagevec_release(&pvec);
1676 if (mpd_pp.bio)
1677 mpage_bio_submit(WRITE, mpd_pp.bio);
1679 return ret;
1683 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
1685 * @mpd->inode - inode to walk through
1686 * @exbh->b_blocknr - first block on a disk
1687 * @exbh->b_size - amount of space in bytes
1688 * @logical - first logical block to start assignment with
1690 * the function goes through all passed space and put actual disk
1691 * block numbers into buffer heads, dropping BH_Delay
1693 static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
1694 struct buffer_head *exbh)
1696 struct inode *inode = mpd->inode;
1697 struct address_space *mapping = inode->i_mapping;
1698 int blocks = exbh->b_size >> inode->i_blkbits;
1699 sector_t pblock = exbh->b_blocknr, cur_logical;
1700 struct buffer_head *head, *bh;
1701 unsigned long index, end;
1702 struct pagevec pvec;
1703 int nr_pages, i;
1705 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1706 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1707 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1709 pagevec_init(&pvec, 0);
1711 while (index <= end) {
1712 /* XXX: optimize tail */
1713 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1714 if (nr_pages == 0)
1715 break;
1716 for (i = 0; i < nr_pages; i++) {
1717 struct page *page = pvec.pages[i];
1719 index = page->index;
1720 if (index > end)
1721 break;
1722 index++;
1724 BUG_ON(!PageLocked(page));
1725 BUG_ON(PageWriteback(page));
1726 BUG_ON(!page_has_buffers(page));
1728 bh = page_buffers(page);
1729 head = bh;
1731 /* skip blocks out of the range */
1732 do {
1733 if (cur_logical >= logical)
1734 break;
1735 cur_logical++;
1736 } while ((bh = bh->b_this_page) != head);
1738 do {
1739 if (cur_logical >= logical + blocks)
1740 break;
1741 if (buffer_delay(bh)) {
1742 bh->b_blocknr = pblock;
1743 clear_buffer_delay(bh);
1744 bh->b_bdev = inode->i_sb->s_bdev;
1745 } else if (buffer_unwritten(bh)) {
1746 bh->b_blocknr = pblock;
1747 clear_buffer_unwritten(bh);
1748 set_buffer_mapped(bh);
1749 set_buffer_new(bh);
1750 bh->b_bdev = inode->i_sb->s_bdev;
1751 } else if (buffer_mapped(bh))
1752 BUG_ON(bh->b_blocknr != pblock);
1754 cur_logical++;
1755 pblock++;
1756 } while ((bh = bh->b_this_page) != head);
1758 pagevec_release(&pvec);
1764 * __unmap_underlying_blocks - just a helper function to unmap
1765 * set of blocks described by @bh
1767 static inline void __unmap_underlying_blocks(struct inode *inode,
1768 struct buffer_head *bh)
1770 struct block_device *bdev = inode->i_sb->s_bdev;
1771 int blocks, i;
1773 blocks = bh->b_size >> inode->i_blkbits;
1774 for (i = 0; i < blocks; i++)
1775 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
1779 * mpage_da_map_blocks - go through given space
1781 * @mpd->lbh - bh describing space
1782 * @mpd->get_block - the filesystem's block mapper function
1784 * The function skips space we know is already mapped to disk blocks.
1786 * The function ignores errors ->get_block() returns, thus real
1787 * error handling is postponed to __mpage_writepage()
1789 static void mpage_da_map_blocks(struct mpage_da_data *mpd)
1791 struct buffer_head *lbh = &mpd->lbh;
1792 int err = 0, remain = lbh->b_size;
1793 sector_t next = lbh->b_blocknr;
1794 struct buffer_head new;
1797 * We consider only non-mapped and non-allocated blocks
1799 if (buffer_mapped(lbh) && !buffer_delay(lbh))
1800 return;
1802 while (remain) {
1803 new.b_state = lbh->b_state;
1804 new.b_blocknr = 0;
1805 new.b_size = remain;
1806 err = mpd->get_block(mpd->inode, next, &new, 1);
1807 if (err) {
1809 * Rather than implement own error handling
1810 * here, we just leave remaining blocks
1811 * unallocated and try again with ->writepage()
1813 break;
1815 BUG_ON(new.b_size == 0);
1817 if (buffer_new(&new))
1818 __unmap_underlying_blocks(mpd->inode, &new);
1821 * If blocks are delayed marked, we need to
1822 * put actual blocknr and drop delayed bit
1824 if (buffer_delay(lbh) || buffer_unwritten(lbh))
1825 mpage_put_bnr_to_bhs(mpd, next, &new);
1827 /* go for the remaining blocks */
1828 next += new.b_size >> mpd->inode->i_blkbits;
1829 remain -= new.b_size;
1833 #define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
1834 (1 << BH_Delay) | (1 << BH_Unwritten))
1837 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
1839 * @mpd->lbh - extent of blocks
1840 * @logical - logical number of the block in the file
1841 * @bh - bh of the block (used to access block's state)
1843 * the function is used to collect contig. blocks in same state
1845 static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
1846 sector_t logical, struct buffer_head *bh)
1848 struct buffer_head *lbh = &mpd->lbh;
1849 sector_t next;
1851 next = lbh->b_blocknr + (lbh->b_size >> mpd->inode->i_blkbits);
1854 * First block in the extent
1856 if (lbh->b_size == 0) {
1857 lbh->b_blocknr = logical;
1858 lbh->b_size = bh->b_size;
1859 lbh->b_state = bh->b_state & BH_FLAGS;
1860 return;
1864 * Can we merge the block to our big extent?
1866 if (logical == next && (bh->b_state & BH_FLAGS) == lbh->b_state) {
1867 lbh->b_size += bh->b_size;
1868 return;
1872 * We couldn't merge the block to our extent, so we
1873 * need to flush current extent and start new one
1875 mpage_da_map_blocks(mpd);
1878 * Now start a new extent
1880 lbh->b_size = bh->b_size;
1881 lbh->b_state = bh->b_state & BH_FLAGS;
1882 lbh->b_blocknr = logical;
1886 * __mpage_da_writepage - finds extent of pages and blocks
1888 * @page: page to consider
1889 * @wbc: not used, we just follow rules
1890 * @data: context
1892 * The function finds extents of pages and scan them for all blocks.
1894 static int __mpage_da_writepage(struct page *page,
1895 struct writeback_control *wbc, void *data)
1897 struct mpage_da_data *mpd = data;
1898 struct inode *inode = mpd->inode;
1899 struct buffer_head *bh, *head, fake;
1900 sector_t logical;
1903 * Can we merge this page to current extent?
1905 if (mpd->next_page != page->index) {
1907 * Nope, we can't. So, we map non-allocated blocks
1908 * and start IO on them using __mpage_writepage()
1910 if (mpd->next_page != mpd->first_page) {
1911 mpage_da_map_blocks(mpd);
1912 mpage_da_submit_io(mpd);
1916 * Start next extent of pages ...
1918 mpd->first_page = page->index;
1921 * ... and blocks
1923 mpd->lbh.b_size = 0;
1924 mpd->lbh.b_state = 0;
1925 mpd->lbh.b_blocknr = 0;
1928 mpd->next_page = page->index + 1;
1929 logical = (sector_t) page->index <<
1930 (PAGE_CACHE_SHIFT - inode->i_blkbits);
1932 if (!page_has_buffers(page)) {
1934 * There is no attached buffer heads yet (mmap?)
1935 * we treat the page asfull of dirty blocks
1937 bh = &fake;
1938 bh->b_size = PAGE_CACHE_SIZE;
1939 bh->b_state = 0;
1940 set_buffer_dirty(bh);
1941 set_buffer_uptodate(bh);
1942 mpage_add_bh_to_extent(mpd, logical, bh);
1943 } else {
1945 * Page with regular buffer heads, just add all dirty ones
1947 head = page_buffers(page);
1948 bh = head;
1949 do {
1950 BUG_ON(buffer_locked(bh));
1951 if (buffer_dirty(bh))
1952 mpage_add_bh_to_extent(mpd, logical, bh);
1953 logical++;
1954 } while ((bh = bh->b_this_page) != head);
1957 return 0;
1961 * mpage_da_writepages - walk the list of dirty pages of the given
1962 * address space, allocates non-allocated blocks, maps newly-allocated
1963 * blocks to existing bhs and issue IO them
1965 * @mapping: address space structure to write
1966 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
1967 * @get_block: the filesystem's block mapper function.
1969 * This is a library function, which implements the writepages()
1970 * address_space_operation.
1972 * In order to avoid duplication of logic that deals with partial pages,
1973 * multiple bio per page, etc, we find non-allocated blocks, allocate
1974 * them with minimal calls to ->get_block() and re-use __mpage_writepage()
1976 * It's important that we call __mpage_writepage() only once for each
1977 * involved page, otherwise we'd have to implement more complicated logic
1978 * to deal with pages w/o PG_lock or w/ PG_writeback and so on.
1980 * See comments to mpage_writepages()
1982 static int mpage_da_writepages(struct address_space *mapping,
1983 struct writeback_control *wbc,
1984 get_block_t get_block)
1986 struct mpage_da_data mpd;
1987 int ret;
1989 if (!get_block)
1990 return generic_writepages(mapping, wbc);
1992 mpd.wbc = wbc;
1993 mpd.inode = mapping->host;
1994 mpd.lbh.b_size = 0;
1995 mpd.lbh.b_state = 0;
1996 mpd.lbh.b_blocknr = 0;
1997 mpd.first_page = 0;
1998 mpd.next_page = 0;
1999 mpd.get_block = get_block;
2001 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage, &mpd);
2004 * Handle last extent of pages
2006 if (mpd.next_page != mpd.first_page) {
2007 mpage_da_map_blocks(&mpd);
2008 mpage_da_submit_io(&mpd);
2011 return ret;
2015 * this is a special callback for ->write_begin() only
2016 * it's intention is to return mapped block or reserve space
2018 static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
2019 struct buffer_head *bh_result, int create)
2021 int ret = 0;
2023 BUG_ON(create == 0);
2024 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2027 * first, we need to know whether the block is allocated already
2028 * preallocated blocks are unmapped but should treated
2029 * the same as allocated blocks.
2031 ret = ext4_get_blocks_wrap(NULL, inode, iblock, 1, bh_result, 0, 0, 0);
2032 if ((ret == 0) && !buffer_delay(bh_result)) {
2033 /* the block isn't (pre)allocated yet, let's reserve space */
2035 * XXX: __block_prepare_write() unmaps passed block,
2036 * is it OK?
2038 ret = ext4_da_reserve_space(inode, 1);
2039 if (ret)
2040 /* not enough space to reserve */
2041 return ret;
2043 map_bh(bh_result, inode->i_sb, 0);
2044 set_buffer_new(bh_result);
2045 set_buffer_delay(bh_result);
2046 } else if (ret > 0) {
2047 bh_result->b_size = (ret << inode->i_blkbits);
2048 ret = 0;
2051 return ret;
2053 #define EXT4_DELALLOC_RSVED 1
2054 static int ext4_da_get_block_write(struct inode *inode, sector_t iblock,
2055 struct buffer_head *bh_result, int create)
2057 int ret;
2058 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2059 loff_t disksize = EXT4_I(inode)->i_disksize;
2060 handle_t *handle = NULL;
2062 handle = ext4_journal_current_handle();
2063 if (!handle) {
2064 ret = ext4_get_blocks_wrap(handle, inode, iblock, max_blocks,
2065 bh_result, 0, 0, 0);
2066 BUG_ON(!ret);
2067 } else {
2068 ret = ext4_get_blocks_wrap(handle, inode, iblock, max_blocks,
2069 bh_result, create, 0, EXT4_DELALLOC_RSVED);
2072 if (ret > 0) {
2073 bh_result->b_size = (ret << inode->i_blkbits);
2076 * Update on-disk size along with block allocation
2077 * we don't use 'extend_disksize' as size may change
2078 * within already allocated block -bzzz
2080 disksize = ((loff_t) iblock + ret) << inode->i_blkbits;
2081 if (disksize > i_size_read(inode))
2082 disksize = i_size_read(inode);
2083 if (disksize > EXT4_I(inode)->i_disksize) {
2085 * XXX: replace with spinlock if seen contended -bzzz
2087 down_write(&EXT4_I(inode)->i_data_sem);
2088 if (disksize > EXT4_I(inode)->i_disksize)
2089 EXT4_I(inode)->i_disksize = disksize;
2090 up_write(&EXT4_I(inode)->i_data_sem);
2092 if (EXT4_I(inode)->i_disksize == disksize) {
2093 ret = ext4_mark_inode_dirty(handle, inode);
2094 return ret;
2097 ret = 0;
2099 return ret;
2102 static int ext4_bh_unmapped_or_delay(handle_t *handle, struct buffer_head *bh)
2105 * unmapped buffer is possible for holes.
2106 * delay buffer is possible with delayed allocation
2108 return ((!buffer_mapped(bh) || buffer_delay(bh)) && buffer_dirty(bh));
2111 static int ext4_normal_get_block_write(struct inode *inode, sector_t iblock,
2112 struct buffer_head *bh_result, int create)
2114 int ret = 0;
2115 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2118 * we don't want to do block allocation in writepage
2119 * so call get_block_wrap with create = 0
2121 ret = ext4_get_blocks_wrap(NULL, inode, iblock, max_blocks,
2122 bh_result, 0, 0, 0);
2123 if (ret > 0) {
2124 bh_result->b_size = (ret << inode->i_blkbits);
2125 ret = 0;
2127 return ret;
2131 * get called vi ext4_da_writepages after taking page lock (have journal handle)
2132 * get called via journal_submit_inode_data_buffers (no journal handle)
2133 * get called via shrink_page_list via pdflush (no journal handle)
2134 * or grab_page_cache when doing write_begin (have journal handle)
2136 static int ext4_da_writepage(struct page *page,
2137 struct writeback_control *wbc)
2139 int ret = 0;
2140 loff_t size;
2141 unsigned long len;
2142 struct buffer_head *page_bufs;
2143 struct inode *inode = page->mapping->host;
2145 size = i_size_read(inode);
2146 if (page->index == size >> PAGE_CACHE_SHIFT)
2147 len = size & ~PAGE_CACHE_MASK;
2148 else
2149 len = PAGE_CACHE_SIZE;
2151 if (page_has_buffers(page)) {
2152 page_bufs = page_buffers(page);
2153 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2154 ext4_bh_unmapped_or_delay)) {
2156 * We don't want to do block allocation
2157 * So redirty the page and return
2158 * We may reach here when we do a journal commit
2159 * via journal_submit_inode_data_buffers.
2160 * If we don't have mapping block we just ignore
2161 * them. We can also reach here via shrink_page_list
2163 redirty_page_for_writepage(wbc, page);
2164 unlock_page(page);
2165 return 0;
2167 } else {
2169 * The test for page_has_buffers() is subtle:
2170 * We know the page is dirty but it lost buffers. That means
2171 * that at some moment in time after write_begin()/write_end()
2172 * has been called all buffers have been clean and thus they
2173 * must have been written at least once. So they are all
2174 * mapped and we can happily proceed with mapping them
2175 * and writing the page.
2177 * Try to initialize the buffer_heads and check whether
2178 * all are mapped and non delay. We don't want to
2179 * do block allocation here.
2181 ret = block_prepare_write(page, 0, PAGE_CACHE_SIZE,
2182 ext4_normal_get_block_write);
2183 if (!ret) {
2184 page_bufs = page_buffers(page);
2185 /* check whether all are mapped and non delay */
2186 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2187 ext4_bh_unmapped_or_delay)) {
2188 redirty_page_for_writepage(wbc, page);
2189 unlock_page(page);
2190 return 0;
2192 } else {
2194 * We can't do block allocation here
2195 * so just redity the page and unlock
2196 * and return
2198 redirty_page_for_writepage(wbc, page);
2199 unlock_page(page);
2200 return 0;
2204 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
2205 ret = nobh_writepage(page, ext4_normal_get_block_write, wbc);
2206 else
2207 ret = block_write_full_page(page,
2208 ext4_normal_get_block_write,
2209 wbc);
2211 return ret;
2215 * For now just follow the DIO way to estimate the max credits
2216 * needed to write out EXT4_MAX_WRITEBACK_PAGES.
2217 * todo: need to calculate the max credits need for
2218 * extent based files, currently the DIO credits is based on
2219 * indirect-blocks mapping way.
2221 * Probably should have a generic way to calculate credits
2222 * for DIO, writepages, and truncate
2224 #define EXT4_MAX_WRITEBACK_PAGES DIO_MAX_BLOCKS
2225 #define EXT4_MAX_WRITEBACK_CREDITS DIO_CREDITS
2227 static int ext4_da_writepages(struct address_space *mapping,
2228 struct writeback_control *wbc)
2230 struct inode *inode = mapping->host;
2231 handle_t *handle = NULL;
2232 int needed_blocks;
2233 int ret = 0;
2234 long to_write;
2235 loff_t range_start = 0;
2238 * No pages to write? This is mainly a kludge to avoid starting
2239 * a transaction for special inodes like journal inode on last iput()
2240 * because that could violate lock ordering on umount
2242 if (!mapping->nrpages)
2243 return 0;
2246 * Estimate the worse case needed credits to write out
2247 * EXT4_MAX_BUF_BLOCKS pages
2249 needed_blocks = EXT4_MAX_WRITEBACK_CREDITS;
2251 to_write = wbc->nr_to_write;
2252 if (!wbc->range_cyclic) {
2254 * If range_cyclic is not set force range_cont
2255 * and save the old writeback_index
2257 wbc->range_cont = 1;
2258 range_start = wbc->range_start;
2261 while (!ret && to_write) {
2262 /* start a new transaction*/
2263 handle = ext4_journal_start(inode, needed_blocks);
2264 if (IS_ERR(handle)) {
2265 ret = PTR_ERR(handle);
2266 goto out_writepages;
2268 if (ext4_should_order_data(inode)) {
2270 * With ordered mode we need to add
2271 * the inode to the journal handle
2272 * when we do block allocation.
2274 ret = ext4_jbd2_file_inode(handle, inode);
2275 if (ret) {
2276 ext4_journal_stop(handle);
2277 goto out_writepages;
2282 * set the max dirty pages could be write at a time
2283 * to fit into the reserved transaction credits
2285 if (wbc->nr_to_write > EXT4_MAX_WRITEBACK_PAGES)
2286 wbc->nr_to_write = EXT4_MAX_WRITEBACK_PAGES;
2288 to_write -= wbc->nr_to_write;
2289 ret = mpage_da_writepages(mapping, wbc,
2290 ext4_da_get_block_write);
2291 ext4_journal_stop(handle);
2292 if (wbc->nr_to_write) {
2294 * There is no more writeout needed
2295 * or we requested for a noblocking writeout
2296 * and we found the device congested
2298 to_write += wbc->nr_to_write;
2299 break;
2301 wbc->nr_to_write = to_write;
2304 out_writepages:
2305 wbc->nr_to_write = to_write;
2306 if (range_start)
2307 wbc->range_start = range_start;
2308 return ret;
2311 static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
2312 loff_t pos, unsigned len, unsigned flags,
2313 struct page **pagep, void **fsdata)
2315 int ret, retries = 0;
2316 struct page *page;
2317 pgoff_t index;
2318 unsigned from, to;
2319 struct inode *inode = mapping->host;
2320 handle_t *handle;
2322 index = pos >> PAGE_CACHE_SHIFT;
2323 from = pos & (PAGE_CACHE_SIZE - 1);
2324 to = from + len;
2326 retry:
2328 * With delayed allocation, we don't log the i_disksize update
2329 * if there is delayed block allocation. But we still need
2330 * to journalling the i_disksize update if writes to the end
2331 * of file which has an already mapped buffer.
2333 handle = ext4_journal_start(inode, 1);
2334 if (IS_ERR(handle)) {
2335 ret = PTR_ERR(handle);
2336 goto out;
2339 page = __grab_cache_page(mapping, index);
2340 if (!page) {
2341 ext4_journal_stop(handle);
2342 ret = -ENOMEM;
2343 goto out;
2345 *pagep = page;
2347 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
2348 ext4_da_get_block_prep);
2349 if (ret < 0) {
2350 unlock_page(page);
2351 ext4_journal_stop(handle);
2352 page_cache_release(page);
2355 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
2356 goto retry;
2357 out:
2358 return ret;
2362 * Check if we should update i_disksize
2363 * when write to the end of file but not require block allocation
2365 static int ext4_da_should_update_i_disksize(struct page *page,
2366 unsigned long offset)
2368 struct buffer_head *bh;
2369 struct inode *inode = page->mapping->host;
2370 unsigned int idx;
2371 int i;
2373 bh = page_buffers(page);
2374 idx = offset >> inode->i_blkbits;
2376 for (i=0; i < idx; i++)
2377 bh = bh->b_this_page;
2379 if (!buffer_mapped(bh) || (buffer_delay(bh)))
2380 return 0;
2381 return 1;
2384 static int ext4_da_write_end(struct file *file,
2385 struct address_space *mapping,
2386 loff_t pos, unsigned len, unsigned copied,
2387 struct page *page, void *fsdata)
2389 struct inode *inode = mapping->host;
2390 int ret = 0, ret2;
2391 handle_t *handle = ext4_journal_current_handle();
2392 loff_t new_i_size;
2393 unsigned long start, end;
2395 start = pos & (PAGE_CACHE_SIZE - 1);
2396 end = start + copied -1;
2399 * generic_write_end() will run mark_inode_dirty() if i_size
2400 * changes. So let's piggyback the i_disksize mark_inode_dirty
2401 * into that.
2404 new_i_size = pos + copied;
2405 if (new_i_size > EXT4_I(inode)->i_disksize) {
2406 if (ext4_da_should_update_i_disksize(page, end)) {
2407 down_write(&EXT4_I(inode)->i_data_sem);
2408 if (new_i_size > EXT4_I(inode)->i_disksize) {
2410 * Updating i_disksize when extending file
2411 * without needing block allocation
2413 if (ext4_should_order_data(inode))
2414 ret = ext4_jbd2_file_inode(handle,
2415 inode);
2417 EXT4_I(inode)->i_disksize = new_i_size;
2419 up_write(&EXT4_I(inode)->i_data_sem);
2422 ret2 = generic_write_end(file, mapping, pos, len, copied,
2423 page, fsdata);
2424 copied = ret2;
2425 if (ret2 < 0)
2426 ret = ret2;
2427 ret2 = ext4_journal_stop(handle);
2428 if (!ret)
2429 ret = ret2;
2431 return ret ? ret : copied;
2434 static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
2437 * Drop reserved blocks
2439 BUG_ON(!PageLocked(page));
2440 if (!page_has_buffers(page))
2441 goto out;
2443 ext4_da_page_release_reservation(page, offset);
2445 out:
2446 ext4_invalidatepage(page, offset);
2448 return;
2453 * bmap() is special. It gets used by applications such as lilo and by
2454 * the swapper to find the on-disk block of a specific piece of data.
2456 * Naturally, this is dangerous if the block concerned is still in the
2457 * journal. If somebody makes a swapfile on an ext4 data-journaling
2458 * filesystem and enables swap, then they may get a nasty shock when the
2459 * data getting swapped to that swapfile suddenly gets overwritten by
2460 * the original zero's written out previously to the journal and
2461 * awaiting writeback in the kernel's buffer cache.
2463 * So, if we see any bmap calls here on a modified, data-journaled file,
2464 * take extra steps to flush any blocks which might be in the cache.
2466 static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
2468 struct inode *inode = mapping->host;
2469 journal_t *journal;
2470 int err;
2472 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2473 test_opt(inode->i_sb, DELALLOC)) {
2475 * With delalloc we want to sync the file
2476 * so that we can make sure we allocate
2477 * blocks for file
2479 filemap_write_and_wait(mapping);
2482 if (EXT4_I(inode)->i_state & EXT4_STATE_JDATA) {
2484 * This is a REALLY heavyweight approach, but the use of
2485 * bmap on dirty files is expected to be extremely rare:
2486 * only if we run lilo or swapon on a freshly made file
2487 * do we expect this to happen.
2489 * (bmap requires CAP_SYS_RAWIO so this does not
2490 * represent an unprivileged user DOS attack --- we'd be
2491 * in trouble if mortal users could trigger this path at
2492 * will.)
2494 * NB. EXT4_STATE_JDATA is not set on files other than
2495 * regular files. If somebody wants to bmap a directory
2496 * or symlink and gets confused because the buffer
2497 * hasn't yet been flushed to disk, they deserve
2498 * everything they get.
2501 EXT4_I(inode)->i_state &= ~EXT4_STATE_JDATA;
2502 journal = EXT4_JOURNAL(inode);
2503 jbd2_journal_lock_updates(journal);
2504 err = jbd2_journal_flush(journal);
2505 jbd2_journal_unlock_updates(journal);
2507 if (err)
2508 return 0;
2511 return generic_block_bmap(mapping,block,ext4_get_block);
2514 static int bget_one(handle_t *handle, struct buffer_head *bh)
2516 get_bh(bh);
2517 return 0;
2520 static int bput_one(handle_t *handle, struct buffer_head *bh)
2522 put_bh(bh);
2523 return 0;
2527 * Note that we don't need to start a transaction unless we're journaling data
2528 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2529 * need to file the inode to the transaction's list in ordered mode because if
2530 * we are writing back data added by write(), the inode is already there and if
2531 * we are writing back data modified via mmap(), noone guarantees in which
2532 * transaction the data will hit the disk. In case we are journaling data, we
2533 * cannot start transaction directly because transaction start ranks above page
2534 * lock so we have to do some magic.
2536 * In all journaling modes block_write_full_page() will start the I/O.
2538 * Problem:
2540 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2541 * ext4_writepage()
2543 * Similar for:
2545 * ext4_file_write() -> generic_file_write() -> __alloc_pages() -> ...
2547 * Same applies to ext4_get_block(). We will deadlock on various things like
2548 * lock_journal and i_data_sem
2550 * Setting PF_MEMALLOC here doesn't work - too many internal memory
2551 * allocations fail.
2553 * 16May01: If we're reentered then journal_current_handle() will be
2554 * non-zero. We simply *return*.
2556 * 1 July 2001: @@@ FIXME:
2557 * In journalled data mode, a data buffer may be metadata against the
2558 * current transaction. But the same file is part of a shared mapping
2559 * and someone does a writepage() on it.
2561 * We will move the buffer onto the async_data list, but *after* it has
2562 * been dirtied. So there's a small window where we have dirty data on
2563 * BJ_Metadata.
2565 * Note that this only applies to the last partial page in the file. The
2566 * bit which block_write_full_page() uses prepare/commit for. (That's
2567 * broken code anyway: it's wrong for msync()).
2569 * It's a rare case: affects the final partial page, for journalled data
2570 * where the file is subject to bith write() and writepage() in the same
2571 * transction. To fix it we'll need a custom block_write_full_page().
2572 * We'll probably need that anyway for journalling writepage() output.
2574 * We don't honour synchronous mounts for writepage(). That would be
2575 * disastrous. Any write() or metadata operation will sync the fs for
2576 * us.
2579 static int __ext4_normal_writepage(struct page *page,
2580 struct writeback_control *wbc)
2582 struct inode *inode = page->mapping->host;
2584 if (test_opt(inode->i_sb, NOBH))
2585 return nobh_writepage(page,
2586 ext4_normal_get_block_write, wbc);
2587 else
2588 return block_write_full_page(page,
2589 ext4_normal_get_block_write,
2590 wbc);
2593 static int ext4_normal_writepage(struct page *page,
2594 struct writeback_control *wbc)
2596 struct inode *inode = page->mapping->host;
2597 loff_t size = i_size_read(inode);
2598 loff_t len;
2600 J_ASSERT(PageLocked(page));
2601 if (page->index == size >> PAGE_CACHE_SHIFT)
2602 len = size & ~PAGE_CACHE_MASK;
2603 else
2604 len = PAGE_CACHE_SIZE;
2606 if (page_has_buffers(page)) {
2607 /* if page has buffers it should all be mapped
2608 * and allocated. If there are not buffers attached
2609 * to the page we know the page is dirty but it lost
2610 * buffers. That means that at some moment in time
2611 * after write_begin() / write_end() has been called
2612 * all buffers have been clean and thus they must have been
2613 * written at least once. So they are all mapped and we can
2614 * happily proceed with mapping them and writing the page.
2616 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2617 ext4_bh_unmapped_or_delay));
2620 if (!ext4_journal_current_handle())
2621 return __ext4_normal_writepage(page, wbc);
2623 redirty_page_for_writepage(wbc, page);
2624 unlock_page(page);
2625 return 0;
2628 static int __ext4_journalled_writepage(struct page *page,
2629 struct writeback_control *wbc)
2631 struct address_space *mapping = page->mapping;
2632 struct inode *inode = mapping->host;
2633 struct buffer_head *page_bufs;
2634 handle_t *handle = NULL;
2635 int ret = 0;
2636 int err;
2638 ret = block_prepare_write(page, 0, PAGE_CACHE_SIZE,
2639 ext4_normal_get_block_write);
2640 if (ret != 0)
2641 goto out_unlock;
2643 page_bufs = page_buffers(page);
2644 walk_page_buffers(handle, page_bufs, 0, PAGE_CACHE_SIZE, NULL,
2645 bget_one);
2646 /* As soon as we unlock the page, it can go away, but we have
2647 * references to buffers so we are safe */
2648 unlock_page(page);
2650 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
2651 if (IS_ERR(handle)) {
2652 ret = PTR_ERR(handle);
2653 goto out;
2656 ret = walk_page_buffers(handle, page_bufs, 0,
2657 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access);
2659 err = walk_page_buffers(handle, page_bufs, 0,
2660 PAGE_CACHE_SIZE, NULL, write_end_fn);
2661 if (ret == 0)
2662 ret = err;
2663 err = ext4_journal_stop(handle);
2664 if (!ret)
2665 ret = err;
2667 walk_page_buffers(handle, page_bufs, 0,
2668 PAGE_CACHE_SIZE, NULL, bput_one);
2669 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
2670 goto out;
2672 out_unlock:
2673 unlock_page(page);
2674 out:
2675 return ret;
2678 static int ext4_journalled_writepage(struct page *page,
2679 struct writeback_control *wbc)
2681 struct inode *inode = page->mapping->host;
2682 loff_t size = i_size_read(inode);
2683 loff_t len;
2685 J_ASSERT(PageLocked(page));
2686 if (page->index == size >> PAGE_CACHE_SHIFT)
2687 len = size & ~PAGE_CACHE_MASK;
2688 else
2689 len = PAGE_CACHE_SIZE;
2691 if (page_has_buffers(page)) {
2692 /* if page has buffers it should all be mapped
2693 * and allocated. If there are not buffers attached
2694 * to the page we know the page is dirty but it lost
2695 * buffers. That means that at some moment in time
2696 * after write_begin() / write_end() has been called
2697 * all buffers have been clean and thus they must have been
2698 * written at least once. So they are all mapped and we can
2699 * happily proceed with mapping them and writing the page.
2701 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2702 ext4_bh_unmapped_or_delay));
2705 if (ext4_journal_current_handle())
2706 goto no_write;
2708 if (PageChecked(page)) {
2710 * It's mmapped pagecache. Add buffers and journal it. There
2711 * doesn't seem much point in redirtying the page here.
2713 ClearPageChecked(page);
2714 return __ext4_journalled_writepage(page, wbc);
2715 } else {
2717 * It may be a page full of checkpoint-mode buffers. We don't
2718 * really know unless we go poke around in the buffer_heads.
2719 * But block_write_full_page will do the right thing.
2721 return block_write_full_page(page,
2722 ext4_normal_get_block_write,
2723 wbc);
2725 no_write:
2726 redirty_page_for_writepage(wbc, page);
2727 unlock_page(page);
2728 return 0;
2731 static int ext4_readpage(struct file *file, struct page *page)
2733 return mpage_readpage(page, ext4_get_block);
2736 static int
2737 ext4_readpages(struct file *file, struct address_space *mapping,
2738 struct list_head *pages, unsigned nr_pages)
2740 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
2743 static void ext4_invalidatepage(struct page *page, unsigned long offset)
2745 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2748 * If it's a full truncate we just forget about the pending dirtying
2750 if (offset == 0)
2751 ClearPageChecked(page);
2753 jbd2_journal_invalidatepage(journal, page, offset);
2756 static int ext4_releasepage(struct page *page, gfp_t wait)
2758 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2760 WARN_ON(PageChecked(page));
2761 if (!page_has_buffers(page))
2762 return 0;
2763 return jbd2_journal_try_to_free_buffers(journal, page, wait);
2767 * If the O_DIRECT write will extend the file then add this inode to the
2768 * orphan list. So recovery will truncate it back to the original size
2769 * if the machine crashes during the write.
2771 * If the O_DIRECT write is intantiating holes inside i_size and the machine
2772 * crashes then stale disk data _may_ be exposed inside the file. But current
2773 * VFS code falls back into buffered path in that case so we are safe.
2775 static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
2776 const struct iovec *iov, loff_t offset,
2777 unsigned long nr_segs)
2779 struct file *file = iocb->ki_filp;
2780 struct inode *inode = file->f_mapping->host;
2781 struct ext4_inode_info *ei = EXT4_I(inode);
2782 handle_t *handle;
2783 ssize_t ret;
2784 int orphan = 0;
2785 size_t count = iov_length(iov, nr_segs);
2787 if (rw == WRITE) {
2788 loff_t final_size = offset + count;
2790 if (final_size > inode->i_size) {
2791 /* Credits for sb + inode write */
2792 handle = ext4_journal_start(inode, 2);
2793 if (IS_ERR(handle)) {
2794 ret = PTR_ERR(handle);
2795 goto out;
2797 ret = ext4_orphan_add(handle, inode);
2798 if (ret) {
2799 ext4_journal_stop(handle);
2800 goto out;
2802 orphan = 1;
2803 ei->i_disksize = inode->i_size;
2804 ext4_journal_stop(handle);
2808 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2809 offset, nr_segs,
2810 ext4_get_block, NULL);
2812 if (orphan) {
2813 int err;
2815 /* Credits for sb + inode write */
2816 handle = ext4_journal_start(inode, 2);
2817 if (IS_ERR(handle)) {
2818 /* This is really bad luck. We've written the data
2819 * but cannot extend i_size. Bail out and pretend
2820 * the write failed... */
2821 ret = PTR_ERR(handle);
2822 goto out;
2824 if (inode->i_nlink)
2825 ext4_orphan_del(handle, inode);
2826 if (ret > 0) {
2827 loff_t end = offset + ret;
2828 if (end > inode->i_size) {
2829 ei->i_disksize = end;
2830 i_size_write(inode, end);
2832 * We're going to return a positive `ret'
2833 * here due to non-zero-length I/O, so there's
2834 * no way of reporting error returns from
2835 * ext4_mark_inode_dirty() to userspace. So
2836 * ignore it.
2838 ext4_mark_inode_dirty(handle, inode);
2841 err = ext4_journal_stop(handle);
2842 if (ret == 0)
2843 ret = err;
2845 out:
2846 return ret;
2850 * Pages can be marked dirty completely asynchronously from ext4's journalling
2851 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
2852 * much here because ->set_page_dirty is called under VFS locks. The page is
2853 * not necessarily locked.
2855 * We cannot just dirty the page and leave attached buffers clean, because the
2856 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
2857 * or jbddirty because all the journalling code will explode.
2859 * So what we do is to mark the page "pending dirty" and next time writepage
2860 * is called, propagate that into the buffers appropriately.
2862 static int ext4_journalled_set_page_dirty(struct page *page)
2864 SetPageChecked(page);
2865 return __set_page_dirty_nobuffers(page);
2868 static const struct address_space_operations ext4_ordered_aops = {
2869 .readpage = ext4_readpage,
2870 .readpages = ext4_readpages,
2871 .writepage = ext4_normal_writepage,
2872 .sync_page = block_sync_page,
2873 .write_begin = ext4_write_begin,
2874 .write_end = ext4_ordered_write_end,
2875 .bmap = ext4_bmap,
2876 .invalidatepage = ext4_invalidatepage,
2877 .releasepage = ext4_releasepage,
2878 .direct_IO = ext4_direct_IO,
2879 .migratepage = buffer_migrate_page,
2880 .is_partially_uptodate = block_is_partially_uptodate,
2883 static const struct address_space_operations ext4_writeback_aops = {
2884 .readpage = ext4_readpage,
2885 .readpages = ext4_readpages,
2886 .writepage = ext4_normal_writepage,
2887 .sync_page = block_sync_page,
2888 .write_begin = ext4_write_begin,
2889 .write_end = ext4_writeback_write_end,
2890 .bmap = ext4_bmap,
2891 .invalidatepage = ext4_invalidatepage,
2892 .releasepage = ext4_releasepage,
2893 .direct_IO = ext4_direct_IO,
2894 .migratepage = buffer_migrate_page,
2895 .is_partially_uptodate = block_is_partially_uptodate,
2898 static const struct address_space_operations ext4_journalled_aops = {
2899 .readpage = ext4_readpage,
2900 .readpages = ext4_readpages,
2901 .writepage = ext4_journalled_writepage,
2902 .sync_page = block_sync_page,
2903 .write_begin = ext4_write_begin,
2904 .write_end = ext4_journalled_write_end,
2905 .set_page_dirty = ext4_journalled_set_page_dirty,
2906 .bmap = ext4_bmap,
2907 .invalidatepage = ext4_invalidatepage,
2908 .releasepage = ext4_releasepage,
2909 .is_partially_uptodate = block_is_partially_uptodate,
2912 static const struct address_space_operations ext4_da_aops = {
2913 .readpage = ext4_readpage,
2914 .readpages = ext4_readpages,
2915 .writepage = ext4_da_writepage,
2916 .writepages = ext4_da_writepages,
2917 .sync_page = block_sync_page,
2918 .write_begin = ext4_da_write_begin,
2919 .write_end = ext4_da_write_end,
2920 .bmap = ext4_bmap,
2921 .invalidatepage = ext4_da_invalidatepage,
2922 .releasepage = ext4_releasepage,
2923 .direct_IO = ext4_direct_IO,
2924 .migratepage = buffer_migrate_page,
2925 .is_partially_uptodate = block_is_partially_uptodate,
2928 void ext4_set_aops(struct inode *inode)
2930 if (ext4_should_order_data(inode) &&
2931 test_opt(inode->i_sb, DELALLOC))
2932 inode->i_mapping->a_ops = &ext4_da_aops;
2933 else if (ext4_should_order_data(inode))
2934 inode->i_mapping->a_ops = &ext4_ordered_aops;
2935 else if (ext4_should_writeback_data(inode) &&
2936 test_opt(inode->i_sb, DELALLOC))
2937 inode->i_mapping->a_ops = &ext4_da_aops;
2938 else if (ext4_should_writeback_data(inode))
2939 inode->i_mapping->a_ops = &ext4_writeback_aops;
2940 else
2941 inode->i_mapping->a_ops = &ext4_journalled_aops;
2945 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
2946 * up to the end of the block which corresponds to `from'.
2947 * This required during truncate. We need to physically zero the tail end
2948 * of that block so it doesn't yield old data if the file is later grown.
2950 int ext4_block_truncate_page(handle_t *handle,
2951 struct address_space *mapping, loff_t from)
2953 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
2954 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2955 unsigned blocksize, length, pos;
2956 ext4_lblk_t iblock;
2957 struct inode *inode = mapping->host;
2958 struct buffer_head *bh;
2959 struct page *page;
2960 int err = 0;
2962 page = grab_cache_page(mapping, from >> PAGE_CACHE_SHIFT);
2963 if (!page)
2964 return -EINVAL;
2966 blocksize = inode->i_sb->s_blocksize;
2967 length = blocksize - (offset & (blocksize - 1));
2968 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
2971 * For "nobh" option, we can only work if we don't need to
2972 * read-in the page - otherwise we create buffers to do the IO.
2974 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
2975 ext4_should_writeback_data(inode) && PageUptodate(page)) {
2976 zero_user(page, offset, length);
2977 set_page_dirty(page);
2978 goto unlock;
2981 if (!page_has_buffers(page))
2982 create_empty_buffers(page, blocksize, 0);
2984 /* Find the buffer that contains "offset" */
2985 bh = page_buffers(page);
2986 pos = blocksize;
2987 while (offset >= pos) {
2988 bh = bh->b_this_page;
2989 iblock++;
2990 pos += blocksize;
2993 err = 0;
2994 if (buffer_freed(bh)) {
2995 BUFFER_TRACE(bh, "freed: skip");
2996 goto unlock;
2999 if (!buffer_mapped(bh)) {
3000 BUFFER_TRACE(bh, "unmapped");
3001 ext4_get_block(inode, iblock, bh, 0);
3002 /* unmapped? It's a hole - nothing to do */
3003 if (!buffer_mapped(bh)) {
3004 BUFFER_TRACE(bh, "still unmapped");
3005 goto unlock;
3009 /* Ok, it's mapped. Make sure it's up-to-date */
3010 if (PageUptodate(page))
3011 set_buffer_uptodate(bh);
3013 if (!buffer_uptodate(bh)) {
3014 err = -EIO;
3015 ll_rw_block(READ, 1, &bh);
3016 wait_on_buffer(bh);
3017 /* Uhhuh. Read error. Complain and punt. */
3018 if (!buffer_uptodate(bh))
3019 goto unlock;
3022 if (ext4_should_journal_data(inode)) {
3023 BUFFER_TRACE(bh, "get write access");
3024 err = ext4_journal_get_write_access(handle, bh);
3025 if (err)
3026 goto unlock;
3029 zero_user(page, offset, length);
3031 BUFFER_TRACE(bh, "zeroed end of block");
3033 err = 0;
3034 if (ext4_should_journal_data(inode)) {
3035 err = ext4_journal_dirty_metadata(handle, bh);
3036 } else {
3037 if (ext4_should_order_data(inode))
3038 err = ext4_jbd2_file_inode(handle, inode);
3039 mark_buffer_dirty(bh);
3042 unlock:
3043 unlock_page(page);
3044 page_cache_release(page);
3045 return err;
3049 * Probably it should be a library function... search for first non-zero word
3050 * or memcmp with zero_page, whatever is better for particular architecture.
3051 * Linus?
3053 static inline int all_zeroes(__le32 *p, __le32 *q)
3055 while (p < q)
3056 if (*p++)
3057 return 0;
3058 return 1;
3062 * ext4_find_shared - find the indirect blocks for partial truncation.
3063 * @inode: inode in question
3064 * @depth: depth of the affected branch
3065 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
3066 * @chain: place to store the pointers to partial indirect blocks
3067 * @top: place to the (detached) top of branch
3069 * This is a helper function used by ext4_truncate().
3071 * When we do truncate() we may have to clean the ends of several
3072 * indirect blocks but leave the blocks themselves alive. Block is
3073 * partially truncated if some data below the new i_size is refered
3074 * from it (and it is on the path to the first completely truncated
3075 * data block, indeed). We have to free the top of that path along
3076 * with everything to the right of the path. Since no allocation
3077 * past the truncation point is possible until ext4_truncate()
3078 * finishes, we may safely do the latter, but top of branch may
3079 * require special attention - pageout below the truncation point
3080 * might try to populate it.
3082 * We atomically detach the top of branch from the tree, store the
3083 * block number of its root in *@top, pointers to buffer_heads of
3084 * partially truncated blocks - in @chain[].bh and pointers to
3085 * their last elements that should not be removed - in
3086 * @chain[].p. Return value is the pointer to last filled element
3087 * of @chain.
3089 * The work left to caller to do the actual freeing of subtrees:
3090 * a) free the subtree starting from *@top
3091 * b) free the subtrees whose roots are stored in
3092 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
3093 * c) free the subtrees growing from the inode past the @chain[0].
3094 * (no partially truncated stuff there). */
3096 static Indirect *ext4_find_shared(struct inode *inode, int depth,
3097 ext4_lblk_t offsets[4], Indirect chain[4], __le32 *top)
3099 Indirect *partial, *p;
3100 int k, err;
3102 *top = 0;
3103 /* Make k index the deepest non-null offest + 1 */
3104 for (k = depth; k > 1 && !offsets[k-1]; k--)
3106 partial = ext4_get_branch(inode, k, offsets, chain, &err);
3107 /* Writer: pointers */
3108 if (!partial)
3109 partial = chain + k-1;
3111 * If the branch acquired continuation since we've looked at it -
3112 * fine, it should all survive and (new) top doesn't belong to us.
3114 if (!partial->key && *partial->p)
3115 /* Writer: end */
3116 goto no_top;
3117 for (p=partial; p>chain && all_zeroes((__le32*)p->bh->b_data,p->p); p--)
3120 * OK, we've found the last block that must survive. The rest of our
3121 * branch should be detached before unlocking. However, if that rest
3122 * of branch is all ours and does not grow immediately from the inode
3123 * it's easier to cheat and just decrement partial->p.
3125 if (p == chain + k - 1 && p > chain) {
3126 p->p--;
3127 } else {
3128 *top = *p->p;
3129 /* Nope, don't do this in ext4. Must leave the tree intact */
3130 #if 0
3131 *p->p = 0;
3132 #endif
3134 /* Writer: end */
3136 while(partial > p) {
3137 brelse(partial->bh);
3138 partial--;
3140 no_top:
3141 return partial;
3145 * Zero a number of block pointers in either an inode or an indirect block.
3146 * If we restart the transaction we must again get write access to the
3147 * indirect block for further modification.
3149 * We release `count' blocks on disk, but (last - first) may be greater
3150 * than `count' because there can be holes in there.
3152 static void ext4_clear_blocks(handle_t *handle, struct inode *inode,
3153 struct buffer_head *bh, ext4_fsblk_t block_to_free,
3154 unsigned long count, __le32 *first, __le32 *last)
3156 __le32 *p;
3157 if (try_to_extend_transaction(handle, inode)) {
3158 if (bh) {
3159 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
3160 ext4_journal_dirty_metadata(handle, bh);
3162 ext4_mark_inode_dirty(handle, inode);
3163 ext4_journal_test_restart(handle, inode);
3164 if (bh) {
3165 BUFFER_TRACE(bh, "retaking write access");
3166 ext4_journal_get_write_access(handle, bh);
3171 * Any buffers which are on the journal will be in memory. We find
3172 * them on the hash table so jbd2_journal_revoke() will run jbd2_journal_forget()
3173 * on them. We've already detached each block from the file, so
3174 * bforget() in jbd2_journal_forget() should be safe.
3176 * AKPM: turn on bforget in jbd2_journal_forget()!!!
3178 for (p = first; p < last; p++) {
3179 u32 nr = le32_to_cpu(*p);
3180 if (nr) {
3181 struct buffer_head *tbh;
3183 *p = 0;
3184 tbh = sb_find_get_block(inode->i_sb, nr);
3185 ext4_forget(handle, 0, inode, tbh, nr);
3189 ext4_free_blocks(handle, inode, block_to_free, count, 0);
3193 * ext4_free_data - free a list of data blocks
3194 * @handle: handle for this transaction
3195 * @inode: inode we are dealing with
3196 * @this_bh: indirect buffer_head which contains *@first and *@last
3197 * @first: array of block numbers
3198 * @last: points immediately past the end of array
3200 * We are freeing all blocks refered from that array (numbers are stored as
3201 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
3203 * We accumulate contiguous runs of blocks to free. Conveniently, if these
3204 * blocks are contiguous then releasing them at one time will only affect one
3205 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
3206 * actually use a lot of journal space.
3208 * @this_bh will be %NULL if @first and @last point into the inode's direct
3209 * block pointers.
3211 static void ext4_free_data(handle_t *handle, struct inode *inode,
3212 struct buffer_head *this_bh,
3213 __le32 *first, __le32 *last)
3215 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
3216 unsigned long count = 0; /* Number of blocks in the run */
3217 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
3218 corresponding to
3219 block_to_free */
3220 ext4_fsblk_t nr; /* Current block # */
3221 __le32 *p; /* Pointer into inode/ind
3222 for current block */
3223 int err;
3225 if (this_bh) { /* For indirect block */
3226 BUFFER_TRACE(this_bh, "get_write_access");
3227 err = ext4_journal_get_write_access(handle, this_bh);
3228 /* Important: if we can't update the indirect pointers
3229 * to the blocks, we can't free them. */
3230 if (err)
3231 return;
3234 for (p = first; p < last; p++) {
3235 nr = le32_to_cpu(*p);
3236 if (nr) {
3237 /* accumulate blocks to free if they're contiguous */
3238 if (count == 0) {
3239 block_to_free = nr;
3240 block_to_free_p = p;
3241 count = 1;
3242 } else if (nr == block_to_free + count) {
3243 count++;
3244 } else {
3245 ext4_clear_blocks(handle, inode, this_bh,
3246 block_to_free,
3247 count, block_to_free_p, p);
3248 block_to_free = nr;
3249 block_to_free_p = p;
3250 count = 1;
3255 if (count > 0)
3256 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
3257 count, block_to_free_p, p);
3259 if (this_bh) {
3260 BUFFER_TRACE(this_bh, "call ext4_journal_dirty_metadata");
3263 * The buffer head should have an attached journal head at this
3264 * point. However, if the data is corrupted and an indirect
3265 * block pointed to itself, it would have been detached when
3266 * the block was cleared. Check for this instead of OOPSing.
3268 if (bh2jh(this_bh))
3269 ext4_journal_dirty_metadata(handle, this_bh);
3270 else
3271 ext4_error(inode->i_sb, __func__,
3272 "circular indirect block detected, "
3273 "inode=%lu, block=%llu",
3274 inode->i_ino,
3275 (unsigned long long) this_bh->b_blocknr);
3280 * ext4_free_branches - free an array of branches
3281 * @handle: JBD handle for this transaction
3282 * @inode: inode we are dealing with
3283 * @parent_bh: the buffer_head which contains *@first and *@last
3284 * @first: array of block numbers
3285 * @last: pointer immediately past the end of array
3286 * @depth: depth of the branches to free
3288 * We are freeing all blocks refered from these branches (numbers are
3289 * stored as little-endian 32-bit) and updating @inode->i_blocks
3290 * appropriately.
3292 static void ext4_free_branches(handle_t *handle, struct inode *inode,
3293 struct buffer_head *parent_bh,
3294 __le32 *first, __le32 *last, int depth)
3296 ext4_fsblk_t nr;
3297 __le32 *p;
3299 if (is_handle_aborted(handle))
3300 return;
3302 if (depth--) {
3303 struct buffer_head *bh;
3304 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
3305 p = last;
3306 while (--p >= first) {
3307 nr = le32_to_cpu(*p);
3308 if (!nr)
3309 continue; /* A hole */
3311 /* Go read the buffer for the next level down */
3312 bh = sb_bread(inode->i_sb, nr);
3315 * A read failure? Report error and clear slot
3316 * (should be rare).
3318 if (!bh) {
3319 ext4_error(inode->i_sb, "ext4_free_branches",
3320 "Read failure, inode=%lu, block=%llu",
3321 inode->i_ino, nr);
3322 continue;
3325 /* This zaps the entire block. Bottom up. */
3326 BUFFER_TRACE(bh, "free child branches");
3327 ext4_free_branches(handle, inode, bh,
3328 (__le32*)bh->b_data,
3329 (__le32*)bh->b_data + addr_per_block,
3330 depth);
3333 * We've probably journalled the indirect block several
3334 * times during the truncate. But it's no longer
3335 * needed and we now drop it from the transaction via
3336 * jbd2_journal_revoke().
3338 * That's easy if it's exclusively part of this
3339 * transaction. But if it's part of the committing
3340 * transaction then jbd2_journal_forget() will simply
3341 * brelse() it. That means that if the underlying
3342 * block is reallocated in ext4_get_block(),
3343 * unmap_underlying_metadata() will find this block
3344 * and will try to get rid of it. damn, damn.
3346 * If this block has already been committed to the
3347 * journal, a revoke record will be written. And
3348 * revoke records must be emitted *before* clearing
3349 * this block's bit in the bitmaps.
3351 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
3354 * Everything below this this pointer has been
3355 * released. Now let this top-of-subtree go.
3357 * We want the freeing of this indirect block to be
3358 * atomic in the journal with the updating of the
3359 * bitmap block which owns it. So make some room in
3360 * the journal.
3362 * We zero the parent pointer *after* freeing its
3363 * pointee in the bitmaps, so if extend_transaction()
3364 * for some reason fails to put the bitmap changes and
3365 * the release into the same transaction, recovery
3366 * will merely complain about releasing a free block,
3367 * rather than leaking blocks.
3369 if (is_handle_aborted(handle))
3370 return;
3371 if (try_to_extend_transaction(handle, inode)) {
3372 ext4_mark_inode_dirty(handle, inode);
3373 ext4_journal_test_restart(handle, inode);
3376 ext4_free_blocks(handle, inode, nr, 1, 1);
3378 if (parent_bh) {
3380 * The block which we have just freed is
3381 * pointed to by an indirect block: journal it
3383 BUFFER_TRACE(parent_bh, "get_write_access");
3384 if (!ext4_journal_get_write_access(handle,
3385 parent_bh)){
3386 *p = 0;
3387 BUFFER_TRACE(parent_bh,
3388 "call ext4_journal_dirty_metadata");
3389 ext4_journal_dirty_metadata(handle,
3390 parent_bh);
3394 } else {
3395 /* We have reached the bottom of the tree. */
3396 BUFFER_TRACE(parent_bh, "free data blocks");
3397 ext4_free_data(handle, inode, parent_bh, first, last);
3401 int ext4_can_truncate(struct inode *inode)
3403 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3404 return 0;
3405 if (S_ISREG(inode->i_mode))
3406 return 1;
3407 if (S_ISDIR(inode->i_mode))
3408 return 1;
3409 if (S_ISLNK(inode->i_mode))
3410 return !ext4_inode_is_fast_symlink(inode);
3411 return 0;
3415 * ext4_truncate()
3417 * We block out ext4_get_block() block instantiations across the entire
3418 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3419 * simultaneously on behalf of the same inode.
3421 * As we work through the truncate and commmit bits of it to the journal there
3422 * is one core, guiding principle: the file's tree must always be consistent on
3423 * disk. We must be able to restart the truncate after a crash.
3425 * The file's tree may be transiently inconsistent in memory (although it
3426 * probably isn't), but whenever we close off and commit a journal transaction,
3427 * the contents of (the filesystem + the journal) must be consistent and
3428 * restartable. It's pretty simple, really: bottom up, right to left (although
3429 * left-to-right works OK too).
3431 * Note that at recovery time, journal replay occurs *before* the restart of
3432 * truncate against the orphan inode list.
3434 * The committed inode has the new, desired i_size (which is the same as
3435 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
3436 * that this inode's truncate did not complete and it will again call
3437 * ext4_truncate() to have another go. So there will be instantiated blocks
3438 * to the right of the truncation point in a crashed ext4 filesystem. But
3439 * that's fine - as long as they are linked from the inode, the post-crash
3440 * ext4_truncate() run will find them and release them.
3442 void ext4_truncate(struct inode *inode)
3444 handle_t *handle;
3445 struct ext4_inode_info *ei = EXT4_I(inode);
3446 __le32 *i_data = ei->i_data;
3447 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
3448 struct address_space *mapping = inode->i_mapping;
3449 ext4_lblk_t offsets[4];
3450 Indirect chain[4];
3451 Indirect *partial;
3452 __le32 nr = 0;
3453 int n;
3454 ext4_lblk_t last_block;
3455 unsigned blocksize = inode->i_sb->s_blocksize;
3457 if (!ext4_can_truncate(inode))
3458 return;
3460 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
3461 ext4_ext_truncate(inode);
3462 return;
3465 handle = start_transaction(inode);
3466 if (IS_ERR(handle))
3467 return; /* AKPM: return what? */
3469 last_block = (inode->i_size + blocksize-1)
3470 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
3472 if (inode->i_size & (blocksize - 1))
3473 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
3474 goto out_stop;
3476 n = ext4_block_to_path(inode, last_block, offsets, NULL);
3477 if (n == 0)
3478 goto out_stop; /* error */
3481 * OK. This truncate is going to happen. We add the inode to the
3482 * orphan list, so that if this truncate spans multiple transactions,
3483 * and we crash, we will resume the truncate when the filesystem
3484 * recovers. It also marks the inode dirty, to catch the new size.
3486 * Implication: the file must always be in a sane, consistent
3487 * truncatable state while each transaction commits.
3489 if (ext4_orphan_add(handle, inode))
3490 goto out_stop;
3493 * From here we block out all ext4_get_block() callers who want to
3494 * modify the block allocation tree.
3496 down_write(&ei->i_data_sem);
3498 * The orphan list entry will now protect us from any crash which
3499 * occurs before the truncate completes, so it is now safe to propagate
3500 * the new, shorter inode size (held for now in i_size) into the
3501 * on-disk inode. We do this via i_disksize, which is the value which
3502 * ext4 *really* writes onto the disk inode.
3504 ei->i_disksize = inode->i_size;
3506 if (n == 1) { /* direct blocks */
3507 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
3508 i_data + EXT4_NDIR_BLOCKS);
3509 goto do_indirects;
3512 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
3513 /* Kill the top of shared branch (not detached) */
3514 if (nr) {
3515 if (partial == chain) {
3516 /* Shared branch grows from the inode */
3517 ext4_free_branches(handle, inode, NULL,
3518 &nr, &nr+1, (chain+n-1) - partial);
3519 *partial->p = 0;
3521 * We mark the inode dirty prior to restart,
3522 * and prior to stop. No need for it here.
3524 } else {
3525 /* Shared branch grows from an indirect block */
3526 BUFFER_TRACE(partial->bh, "get_write_access");
3527 ext4_free_branches(handle, inode, partial->bh,
3528 partial->p,
3529 partial->p+1, (chain+n-1) - partial);
3532 /* Clear the ends of indirect blocks on the shared branch */
3533 while (partial > chain) {
3534 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
3535 (__le32*)partial->bh->b_data+addr_per_block,
3536 (chain+n-1) - partial);
3537 BUFFER_TRACE(partial->bh, "call brelse");
3538 brelse (partial->bh);
3539 partial--;
3541 do_indirects:
3542 /* Kill the remaining (whole) subtrees */
3543 switch (offsets[0]) {
3544 default:
3545 nr = i_data[EXT4_IND_BLOCK];
3546 if (nr) {
3547 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
3548 i_data[EXT4_IND_BLOCK] = 0;
3550 case EXT4_IND_BLOCK:
3551 nr = i_data[EXT4_DIND_BLOCK];
3552 if (nr) {
3553 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
3554 i_data[EXT4_DIND_BLOCK] = 0;
3556 case EXT4_DIND_BLOCK:
3557 nr = i_data[EXT4_TIND_BLOCK];
3558 if (nr) {
3559 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
3560 i_data[EXT4_TIND_BLOCK] = 0;
3562 case EXT4_TIND_BLOCK:
3566 ext4_discard_reservation(inode);
3568 up_write(&ei->i_data_sem);
3569 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3570 ext4_mark_inode_dirty(handle, inode);
3573 * In a multi-transaction truncate, we only make the final transaction
3574 * synchronous
3576 if (IS_SYNC(inode))
3577 handle->h_sync = 1;
3578 out_stop:
3580 * If this was a simple ftruncate(), and the file will remain alive
3581 * then we need to clear up the orphan record which we created above.
3582 * However, if this was a real unlink then we were called by
3583 * ext4_delete_inode(), and we allow that function to clean up the
3584 * orphan info for us.
3586 if (inode->i_nlink)
3587 ext4_orphan_del(handle, inode);
3589 ext4_journal_stop(handle);
3592 static ext4_fsblk_t ext4_get_inode_block(struct super_block *sb,
3593 unsigned long ino, struct ext4_iloc *iloc)
3595 ext4_group_t block_group;
3596 unsigned long offset;
3597 ext4_fsblk_t block;
3598 struct ext4_group_desc *gdp;
3600 if (!ext4_valid_inum(sb, ino)) {
3602 * This error is already checked for in namei.c unless we are
3603 * looking at an NFS filehandle, in which case no error
3604 * report is needed
3606 return 0;
3609 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
3610 gdp = ext4_get_group_desc(sb, block_group, NULL);
3611 if (!gdp)
3612 return 0;
3615 * Figure out the offset within the block group inode table
3617 offset = ((ino - 1) % EXT4_INODES_PER_GROUP(sb)) *
3618 EXT4_INODE_SIZE(sb);
3619 block = ext4_inode_table(sb, gdp) +
3620 (offset >> EXT4_BLOCK_SIZE_BITS(sb));
3622 iloc->block_group = block_group;
3623 iloc->offset = offset & (EXT4_BLOCK_SIZE(sb) - 1);
3624 return block;
3628 * ext4_get_inode_loc returns with an extra refcount against the inode's
3629 * underlying buffer_head on success. If 'in_mem' is true, we have all
3630 * data in memory that is needed to recreate the on-disk version of this
3631 * inode.
3633 static int __ext4_get_inode_loc(struct inode *inode,
3634 struct ext4_iloc *iloc, int in_mem)
3636 ext4_fsblk_t block;
3637 struct buffer_head *bh;
3639 block = ext4_get_inode_block(inode->i_sb, inode->i_ino, iloc);
3640 if (!block)
3641 return -EIO;
3643 bh = sb_getblk(inode->i_sb, block);
3644 if (!bh) {
3645 ext4_error (inode->i_sb, "ext4_get_inode_loc",
3646 "unable to read inode block - "
3647 "inode=%lu, block=%llu",
3648 inode->i_ino, block);
3649 return -EIO;
3651 if (!buffer_uptodate(bh)) {
3652 lock_buffer(bh);
3655 * If the buffer has the write error flag, we have failed
3656 * to write out another inode in the same block. In this
3657 * case, we don't have to read the block because we may
3658 * read the old inode data successfully.
3660 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3661 set_buffer_uptodate(bh);
3663 if (buffer_uptodate(bh)) {
3664 /* someone brought it uptodate while we waited */
3665 unlock_buffer(bh);
3666 goto has_buffer;
3670 * If we have all information of the inode in memory and this
3671 * is the only valid inode in the block, we need not read the
3672 * block.
3674 if (in_mem) {
3675 struct buffer_head *bitmap_bh;
3676 struct ext4_group_desc *desc;
3677 int inodes_per_buffer;
3678 int inode_offset, i;
3679 ext4_group_t block_group;
3680 int start;
3682 block_group = (inode->i_ino - 1) /
3683 EXT4_INODES_PER_GROUP(inode->i_sb);
3684 inodes_per_buffer = bh->b_size /
3685 EXT4_INODE_SIZE(inode->i_sb);
3686 inode_offset = ((inode->i_ino - 1) %
3687 EXT4_INODES_PER_GROUP(inode->i_sb));
3688 start = inode_offset & ~(inodes_per_buffer - 1);
3690 /* Is the inode bitmap in cache? */
3691 desc = ext4_get_group_desc(inode->i_sb,
3692 block_group, NULL);
3693 if (!desc)
3694 goto make_io;
3696 bitmap_bh = sb_getblk(inode->i_sb,
3697 ext4_inode_bitmap(inode->i_sb, desc));
3698 if (!bitmap_bh)
3699 goto make_io;
3702 * If the inode bitmap isn't in cache then the
3703 * optimisation may end up performing two reads instead
3704 * of one, so skip it.
3706 if (!buffer_uptodate(bitmap_bh)) {
3707 brelse(bitmap_bh);
3708 goto make_io;
3710 for (i = start; i < start + inodes_per_buffer; i++) {
3711 if (i == inode_offset)
3712 continue;
3713 if (ext4_test_bit(i, bitmap_bh->b_data))
3714 break;
3716 brelse(bitmap_bh);
3717 if (i == start + inodes_per_buffer) {
3718 /* all other inodes are free, so skip I/O */
3719 memset(bh->b_data, 0, bh->b_size);
3720 set_buffer_uptodate(bh);
3721 unlock_buffer(bh);
3722 goto has_buffer;
3726 make_io:
3728 * There are other valid inodes in the buffer, this inode
3729 * has in-inode xattrs, or we don't have this inode in memory.
3730 * Read the block from disk.
3732 get_bh(bh);
3733 bh->b_end_io = end_buffer_read_sync;
3734 submit_bh(READ_META, bh);
3735 wait_on_buffer(bh);
3736 if (!buffer_uptodate(bh)) {
3737 ext4_error(inode->i_sb, "ext4_get_inode_loc",
3738 "unable to read inode block - "
3739 "inode=%lu, block=%llu",
3740 inode->i_ino, block);
3741 brelse(bh);
3742 return -EIO;
3745 has_buffer:
3746 iloc->bh = bh;
3747 return 0;
3750 int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
3752 /* We have all inode data except xattrs in memory here. */
3753 return __ext4_get_inode_loc(inode, iloc,
3754 !(EXT4_I(inode)->i_state & EXT4_STATE_XATTR));
3757 void ext4_set_inode_flags(struct inode *inode)
3759 unsigned int flags = EXT4_I(inode)->i_flags;
3761 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
3762 if (flags & EXT4_SYNC_FL)
3763 inode->i_flags |= S_SYNC;
3764 if (flags & EXT4_APPEND_FL)
3765 inode->i_flags |= S_APPEND;
3766 if (flags & EXT4_IMMUTABLE_FL)
3767 inode->i_flags |= S_IMMUTABLE;
3768 if (flags & EXT4_NOATIME_FL)
3769 inode->i_flags |= S_NOATIME;
3770 if (flags & EXT4_DIRSYNC_FL)
3771 inode->i_flags |= S_DIRSYNC;
3774 /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3775 void ext4_get_inode_flags(struct ext4_inode_info *ei)
3777 unsigned int flags = ei->vfs_inode.i_flags;
3779 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3780 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
3781 if (flags & S_SYNC)
3782 ei->i_flags |= EXT4_SYNC_FL;
3783 if (flags & S_APPEND)
3784 ei->i_flags |= EXT4_APPEND_FL;
3785 if (flags & S_IMMUTABLE)
3786 ei->i_flags |= EXT4_IMMUTABLE_FL;
3787 if (flags & S_NOATIME)
3788 ei->i_flags |= EXT4_NOATIME_FL;
3789 if (flags & S_DIRSYNC)
3790 ei->i_flags |= EXT4_DIRSYNC_FL;
3792 static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
3793 struct ext4_inode_info *ei)
3795 blkcnt_t i_blocks ;
3796 struct inode *inode = &(ei->vfs_inode);
3797 struct super_block *sb = inode->i_sb;
3799 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3800 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3801 /* we are using combined 48 bit field */
3802 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3803 le32_to_cpu(raw_inode->i_blocks_lo);
3804 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
3805 /* i_blocks represent file system block size */
3806 return i_blocks << (inode->i_blkbits - 9);
3807 } else {
3808 return i_blocks;
3810 } else {
3811 return le32_to_cpu(raw_inode->i_blocks_lo);
3815 struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
3817 struct ext4_iloc iloc;
3818 struct ext4_inode *raw_inode;
3819 struct ext4_inode_info *ei;
3820 struct buffer_head *bh;
3821 struct inode *inode;
3822 long ret;
3823 int block;
3825 inode = iget_locked(sb, ino);
3826 if (!inode)
3827 return ERR_PTR(-ENOMEM);
3828 if (!(inode->i_state & I_NEW))
3829 return inode;
3831 ei = EXT4_I(inode);
3832 #ifdef CONFIG_EXT4DEV_FS_POSIX_ACL
3833 ei->i_acl = EXT4_ACL_NOT_CACHED;
3834 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
3835 #endif
3836 ei->i_block_alloc_info = NULL;
3838 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3839 if (ret < 0)
3840 goto bad_inode;
3841 bh = iloc.bh;
3842 raw_inode = ext4_raw_inode(&iloc);
3843 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
3844 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3845 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
3846 if(!(test_opt (inode->i_sb, NO_UID32))) {
3847 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3848 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
3850 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
3852 ei->i_state = 0;
3853 ei->i_dir_start_lookup = 0;
3854 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3855 /* We now have enough fields to check if the inode was active or not.
3856 * This is needed because nfsd might try to access dead inodes
3857 * the test is that same one that e2fsck uses
3858 * NeilBrown 1999oct15
3860 if (inode->i_nlink == 0) {
3861 if (inode->i_mode == 0 ||
3862 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
3863 /* this inode is deleted */
3864 brelse (bh);
3865 ret = -ESTALE;
3866 goto bad_inode;
3868 /* The only unlinked inodes we let through here have
3869 * valid i_mode and are being read by the orphan
3870 * recovery code: that's fine, we're about to complete
3871 * the process of deleting those. */
3873 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
3874 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
3875 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
3876 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
3877 cpu_to_le32(EXT4_OS_HURD)) {
3878 ei->i_file_acl |=
3879 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
3881 inode->i_size = ext4_isize(raw_inode);
3882 ei->i_disksize = inode->i_size;
3883 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3884 ei->i_block_group = iloc.block_group;
3886 * NOTE! The in-memory inode i_data array is in little-endian order
3887 * even on big-endian machines: we do NOT byteswap the block numbers!
3889 for (block = 0; block < EXT4_N_BLOCKS; block++)
3890 ei->i_data[block] = raw_inode->i_block[block];
3891 INIT_LIST_HEAD(&ei->i_orphan);
3893 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3894 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
3895 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
3896 EXT4_INODE_SIZE(inode->i_sb)) {
3897 brelse (bh);
3898 ret = -EIO;
3899 goto bad_inode;
3901 if (ei->i_extra_isize == 0) {
3902 /* The extra space is currently unused. Use it. */
3903 ei->i_extra_isize = sizeof(struct ext4_inode) -
3904 EXT4_GOOD_OLD_INODE_SIZE;
3905 } else {
3906 __le32 *magic = (void *)raw_inode +
3907 EXT4_GOOD_OLD_INODE_SIZE +
3908 ei->i_extra_isize;
3909 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
3910 ei->i_state |= EXT4_STATE_XATTR;
3912 } else
3913 ei->i_extra_isize = 0;
3915 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
3916 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
3917 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
3918 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
3920 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
3921 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3922 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3923 inode->i_version |=
3924 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
3927 if (S_ISREG(inode->i_mode)) {
3928 inode->i_op = &ext4_file_inode_operations;
3929 inode->i_fop = &ext4_file_operations;
3930 ext4_set_aops(inode);
3931 } else if (S_ISDIR(inode->i_mode)) {
3932 inode->i_op = &ext4_dir_inode_operations;
3933 inode->i_fop = &ext4_dir_operations;
3934 } else if (S_ISLNK(inode->i_mode)) {
3935 if (ext4_inode_is_fast_symlink(inode))
3936 inode->i_op = &ext4_fast_symlink_inode_operations;
3937 else {
3938 inode->i_op = &ext4_symlink_inode_operations;
3939 ext4_set_aops(inode);
3941 } else {
3942 inode->i_op = &ext4_special_inode_operations;
3943 if (raw_inode->i_block[0])
3944 init_special_inode(inode, inode->i_mode,
3945 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
3946 else
3947 init_special_inode(inode, inode->i_mode,
3948 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
3950 brelse (iloc.bh);
3951 ext4_set_inode_flags(inode);
3952 unlock_new_inode(inode);
3953 return inode;
3955 bad_inode:
3956 iget_failed(inode);
3957 return ERR_PTR(ret);
3960 static int ext4_inode_blocks_set(handle_t *handle,
3961 struct ext4_inode *raw_inode,
3962 struct ext4_inode_info *ei)
3964 struct inode *inode = &(ei->vfs_inode);
3965 u64 i_blocks = inode->i_blocks;
3966 struct super_block *sb = inode->i_sb;
3967 int err = 0;
3969 if (i_blocks <= ~0U) {
3971 * i_blocks can be represnted in a 32 bit variable
3972 * as multiple of 512 bytes
3974 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
3975 raw_inode->i_blocks_high = 0;
3976 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
3977 } else if (i_blocks <= 0xffffffffffffULL) {
3979 * i_blocks can be represented in a 48 bit variable
3980 * as multiple of 512 bytes
3982 err = ext4_update_rocompat_feature(handle, sb,
3983 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
3984 if (err)
3985 goto err_out;
3986 /* i_block is stored in the split 48 bit fields */
3987 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
3988 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
3989 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
3990 } else {
3992 * i_blocks should be represented in a 48 bit variable
3993 * as multiple of file system block size
3995 err = ext4_update_rocompat_feature(handle, sb,
3996 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
3997 if (err)
3998 goto err_out;
3999 ei->i_flags |= EXT4_HUGE_FILE_FL;
4000 /* i_block is stored in file system block size */
4001 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4002 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4003 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
4005 err_out:
4006 return err;
4010 * Post the struct inode info into an on-disk inode location in the
4011 * buffer-cache. This gobbles the caller's reference to the
4012 * buffer_head in the inode location struct.
4014 * The caller must have write access to iloc->bh.
4016 static int ext4_do_update_inode(handle_t *handle,
4017 struct inode *inode,
4018 struct ext4_iloc *iloc)
4020 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4021 struct ext4_inode_info *ei = EXT4_I(inode);
4022 struct buffer_head *bh = iloc->bh;
4023 int err = 0, rc, block;
4025 /* For fields not not tracking in the in-memory inode,
4026 * initialise them to zero for new inodes. */
4027 if (ei->i_state & EXT4_STATE_NEW)
4028 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4030 ext4_get_inode_flags(ei);
4031 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
4032 if(!(test_opt(inode->i_sb, NO_UID32))) {
4033 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
4034 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
4036 * Fix up interoperability with old kernels. Otherwise, old inodes get
4037 * re-used with the upper 16 bits of the uid/gid intact
4039 if(!ei->i_dtime) {
4040 raw_inode->i_uid_high =
4041 cpu_to_le16(high_16_bits(inode->i_uid));
4042 raw_inode->i_gid_high =
4043 cpu_to_le16(high_16_bits(inode->i_gid));
4044 } else {
4045 raw_inode->i_uid_high = 0;
4046 raw_inode->i_gid_high = 0;
4048 } else {
4049 raw_inode->i_uid_low =
4050 cpu_to_le16(fs_high2lowuid(inode->i_uid));
4051 raw_inode->i_gid_low =
4052 cpu_to_le16(fs_high2lowgid(inode->i_gid));
4053 raw_inode->i_uid_high = 0;
4054 raw_inode->i_gid_high = 0;
4056 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4058 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4059 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4060 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4061 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4063 if (ext4_inode_blocks_set(handle, raw_inode, ei))
4064 goto out_brelse;
4065 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4066 /* clear the migrate flag in the raw_inode */
4067 raw_inode->i_flags = cpu_to_le32(ei->i_flags & ~EXT4_EXT_MIGRATE);
4068 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
4069 cpu_to_le32(EXT4_OS_HURD))
4070 raw_inode->i_file_acl_high =
4071 cpu_to_le16(ei->i_file_acl >> 32);
4072 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4073 ext4_isize_set(raw_inode, ei->i_disksize);
4074 if (ei->i_disksize > 0x7fffffffULL) {
4075 struct super_block *sb = inode->i_sb;
4076 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4077 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4078 EXT4_SB(sb)->s_es->s_rev_level ==
4079 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
4080 /* If this is the first large file
4081 * created, add a flag to the superblock.
4083 err = ext4_journal_get_write_access(handle,
4084 EXT4_SB(sb)->s_sbh);
4085 if (err)
4086 goto out_brelse;
4087 ext4_update_dynamic_rev(sb);
4088 EXT4_SET_RO_COMPAT_FEATURE(sb,
4089 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4090 sb->s_dirt = 1;
4091 handle->h_sync = 1;
4092 err = ext4_journal_dirty_metadata(handle,
4093 EXT4_SB(sb)->s_sbh);
4096 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4097 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4098 if (old_valid_dev(inode->i_rdev)) {
4099 raw_inode->i_block[0] =
4100 cpu_to_le32(old_encode_dev(inode->i_rdev));
4101 raw_inode->i_block[1] = 0;
4102 } else {
4103 raw_inode->i_block[0] = 0;
4104 raw_inode->i_block[1] =
4105 cpu_to_le32(new_encode_dev(inode->i_rdev));
4106 raw_inode->i_block[2] = 0;
4108 } else for (block = 0; block < EXT4_N_BLOCKS; block++)
4109 raw_inode->i_block[block] = ei->i_data[block];
4111 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
4112 if (ei->i_extra_isize) {
4113 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4114 raw_inode->i_version_hi =
4115 cpu_to_le32(inode->i_version >> 32);
4116 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
4120 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
4121 rc = ext4_journal_dirty_metadata(handle, bh);
4122 if (!err)
4123 err = rc;
4124 ei->i_state &= ~EXT4_STATE_NEW;
4126 out_brelse:
4127 brelse (bh);
4128 ext4_std_error(inode->i_sb, err);
4129 return err;
4133 * ext4_write_inode()
4135 * We are called from a few places:
4137 * - Within generic_file_write() for O_SYNC files.
4138 * Here, there will be no transaction running. We wait for any running
4139 * trasnaction to commit.
4141 * - Within sys_sync(), kupdate and such.
4142 * We wait on commit, if tol to.
4144 * - Within prune_icache() (PF_MEMALLOC == true)
4145 * Here we simply return. We can't afford to block kswapd on the
4146 * journal commit.
4148 * In all cases it is actually safe for us to return without doing anything,
4149 * because the inode has been copied into a raw inode buffer in
4150 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
4151 * knfsd.
4153 * Note that we are absolutely dependent upon all inode dirtiers doing the
4154 * right thing: they *must* call mark_inode_dirty() after dirtying info in
4155 * which we are interested.
4157 * It would be a bug for them to not do this. The code:
4159 * mark_inode_dirty(inode)
4160 * stuff();
4161 * inode->i_size = expr;
4163 * is in error because a kswapd-driven write_inode() could occur while
4164 * `stuff()' is running, and the new i_size will be lost. Plus the inode
4165 * will no longer be on the superblock's dirty inode list.
4167 int ext4_write_inode(struct inode *inode, int wait)
4169 if (current->flags & PF_MEMALLOC)
4170 return 0;
4172 if (ext4_journal_current_handle()) {
4173 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4174 dump_stack();
4175 return -EIO;
4178 if (!wait)
4179 return 0;
4181 return ext4_force_commit(inode->i_sb);
4185 * ext4_setattr()
4187 * Called from notify_change.
4189 * We want to trap VFS attempts to truncate the file as soon as
4190 * possible. In particular, we want to make sure that when the VFS
4191 * shrinks i_size, we put the inode on the orphan list and modify
4192 * i_disksize immediately, so that during the subsequent flushing of
4193 * dirty pages and freeing of disk blocks, we can guarantee that any
4194 * commit will leave the blocks being flushed in an unused state on
4195 * disk. (On recovery, the inode will get truncated and the blocks will
4196 * be freed, so we have a strong guarantee that no future commit will
4197 * leave these blocks visible to the user.)
4199 * Another thing we have to assure is that if we are in ordered mode
4200 * and inode is still attached to the committing transaction, we must
4201 * we start writeout of all the dirty pages which are being truncated.
4202 * This way we are sure that all the data written in the previous
4203 * transaction are already on disk (truncate waits for pages under
4204 * writeback).
4206 * Called with inode->i_mutex down.
4208 int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4210 struct inode *inode = dentry->d_inode;
4211 int error, rc = 0;
4212 const unsigned int ia_valid = attr->ia_valid;
4214 error = inode_change_ok(inode, attr);
4215 if (error)
4216 return error;
4218 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
4219 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
4220 handle_t *handle;
4222 /* (user+group)*(old+new) structure, inode write (sb,
4223 * inode block, ? - but truncate inode update has it) */
4224 handle = ext4_journal_start(inode, 2*(EXT4_QUOTA_INIT_BLOCKS(inode->i_sb)+
4225 EXT4_QUOTA_DEL_BLOCKS(inode->i_sb))+3);
4226 if (IS_ERR(handle)) {
4227 error = PTR_ERR(handle);
4228 goto err_out;
4230 error = DQUOT_TRANSFER(inode, attr) ? -EDQUOT : 0;
4231 if (error) {
4232 ext4_journal_stop(handle);
4233 return error;
4235 /* Update corresponding info in inode so that everything is in
4236 * one transaction */
4237 if (attr->ia_valid & ATTR_UID)
4238 inode->i_uid = attr->ia_uid;
4239 if (attr->ia_valid & ATTR_GID)
4240 inode->i_gid = attr->ia_gid;
4241 error = ext4_mark_inode_dirty(handle, inode);
4242 ext4_journal_stop(handle);
4245 if (attr->ia_valid & ATTR_SIZE) {
4246 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
4247 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4249 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
4250 error = -EFBIG;
4251 goto err_out;
4256 if (S_ISREG(inode->i_mode) &&
4257 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
4258 handle_t *handle;
4260 handle = ext4_journal_start(inode, 3);
4261 if (IS_ERR(handle)) {
4262 error = PTR_ERR(handle);
4263 goto err_out;
4266 error = ext4_orphan_add(handle, inode);
4267 EXT4_I(inode)->i_disksize = attr->ia_size;
4268 rc = ext4_mark_inode_dirty(handle, inode);
4269 if (!error)
4270 error = rc;
4271 ext4_journal_stop(handle);
4273 if (ext4_should_order_data(inode)) {
4274 error = ext4_begin_ordered_truncate(inode,
4275 attr->ia_size);
4276 if (error) {
4277 /* Do as much error cleanup as possible */
4278 handle = ext4_journal_start(inode, 3);
4279 if (IS_ERR(handle)) {
4280 ext4_orphan_del(NULL, inode);
4281 goto err_out;
4283 ext4_orphan_del(handle, inode);
4284 ext4_journal_stop(handle);
4285 goto err_out;
4290 rc = inode_setattr(inode, attr);
4292 /* If inode_setattr's call to ext4_truncate failed to get a
4293 * transaction handle at all, we need to clean up the in-core
4294 * orphan list manually. */
4295 if (inode->i_nlink)
4296 ext4_orphan_del(NULL, inode);
4298 if (!rc && (ia_valid & ATTR_MODE))
4299 rc = ext4_acl_chmod(inode);
4301 err_out:
4302 ext4_std_error(inode->i_sb, error);
4303 if (!error)
4304 error = rc;
4305 return error;
4308 int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
4309 struct kstat *stat)
4311 struct inode *inode;
4312 unsigned long delalloc_blocks;
4314 inode = dentry->d_inode;
4315 generic_fillattr(inode, stat);
4318 * We can't update i_blocks if the block allocation is delayed
4319 * otherwise in the case of system crash before the real block
4320 * allocation is done, we will have i_blocks inconsistent with
4321 * on-disk file blocks.
4322 * We always keep i_blocks updated together with real
4323 * allocation. But to not confuse with user, stat
4324 * will return the blocks that include the delayed allocation
4325 * blocks for this file.
4327 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
4328 delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
4329 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
4331 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
4332 return 0;
4336 * How many blocks doth make a writepage()?
4338 * With N blocks per page, it may be:
4339 * N data blocks
4340 * 2 indirect block
4341 * 2 dindirect
4342 * 1 tindirect
4343 * N+5 bitmap blocks (from the above)
4344 * N+5 group descriptor summary blocks
4345 * 1 inode block
4346 * 1 superblock.
4347 * 2 * EXT4_SINGLEDATA_TRANS_BLOCKS for the quote files
4349 * 3 * (N + 5) + 2 + 2 * EXT4_SINGLEDATA_TRANS_BLOCKS
4351 * With ordered or writeback data it's the same, less the N data blocks.
4353 * If the inode's direct blocks can hold an integral number of pages then a
4354 * page cannot straddle two indirect blocks, and we can only touch one indirect
4355 * and dindirect block, and the "5" above becomes "3".
4357 * This still overestimates under most circumstances. If we were to pass the
4358 * start and end offsets in here as well we could do block_to_path() on each
4359 * block and work out the exact number of indirects which are touched. Pah.
4362 int ext4_writepage_trans_blocks(struct inode *inode)
4364 int bpp = ext4_journal_blocks_per_page(inode);
4365 int indirects = (EXT4_NDIR_BLOCKS % bpp) ? 5 : 3;
4366 int ret;
4368 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
4369 return ext4_ext_writepage_trans_blocks(inode, bpp);
4371 if (ext4_should_journal_data(inode))
4372 ret = 3 * (bpp + indirects) + 2;
4373 else
4374 ret = 2 * (bpp + indirects) + 2;
4376 #ifdef CONFIG_QUOTA
4377 /* We know that structure was already allocated during DQUOT_INIT so
4378 * we will be updating only the data blocks + inodes */
4379 ret += 2*EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb);
4380 #endif
4382 return ret;
4386 * The caller must have previously called ext4_reserve_inode_write().
4387 * Give this, we know that the caller already has write access to iloc->bh.
4389 int ext4_mark_iloc_dirty(handle_t *handle,
4390 struct inode *inode, struct ext4_iloc *iloc)
4392 int err = 0;
4394 if (test_opt(inode->i_sb, I_VERSION))
4395 inode_inc_iversion(inode);
4397 /* the do_update_inode consumes one bh->b_count */
4398 get_bh(iloc->bh);
4400 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
4401 err = ext4_do_update_inode(handle, inode, iloc);
4402 put_bh(iloc->bh);
4403 return err;
4407 * On success, We end up with an outstanding reference count against
4408 * iloc->bh. This _must_ be cleaned up later.
4412 ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4413 struct ext4_iloc *iloc)
4415 int err = 0;
4416 if (handle) {
4417 err = ext4_get_inode_loc(inode, iloc);
4418 if (!err) {
4419 BUFFER_TRACE(iloc->bh, "get_write_access");
4420 err = ext4_journal_get_write_access(handle, iloc->bh);
4421 if (err) {
4422 brelse(iloc->bh);
4423 iloc->bh = NULL;
4427 ext4_std_error(inode->i_sb, err);
4428 return err;
4432 * Expand an inode by new_extra_isize bytes.
4433 * Returns 0 on success or negative error number on failure.
4435 static int ext4_expand_extra_isize(struct inode *inode,
4436 unsigned int new_extra_isize,
4437 struct ext4_iloc iloc,
4438 handle_t *handle)
4440 struct ext4_inode *raw_inode;
4441 struct ext4_xattr_ibody_header *header;
4442 struct ext4_xattr_entry *entry;
4444 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4445 return 0;
4447 raw_inode = ext4_raw_inode(&iloc);
4449 header = IHDR(inode, raw_inode);
4450 entry = IFIRST(header);
4452 /* No extended attributes present */
4453 if (!(EXT4_I(inode)->i_state & EXT4_STATE_XATTR) ||
4454 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
4455 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4456 new_extra_isize);
4457 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4458 return 0;
4461 /* try to expand with EAs present */
4462 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4463 raw_inode, handle);
4467 * What we do here is to mark the in-core inode as clean with respect to inode
4468 * dirtiness (it may still be data-dirty).
4469 * This means that the in-core inode may be reaped by prune_icache
4470 * without having to perform any I/O. This is a very good thing,
4471 * because *any* task may call prune_icache - even ones which
4472 * have a transaction open against a different journal.
4474 * Is this cheating? Not really. Sure, we haven't written the
4475 * inode out, but prune_icache isn't a user-visible syncing function.
4476 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4477 * we start and wait on commits.
4479 * Is this efficient/effective? Well, we're being nice to the system
4480 * by cleaning up our inodes proactively so they can be reaped
4481 * without I/O. But we are potentially leaving up to five seconds'
4482 * worth of inodes floating about which prune_icache wants us to
4483 * write out. One way to fix that would be to get prune_icache()
4484 * to do a write_super() to free up some memory. It has the desired
4485 * effect.
4487 int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
4489 struct ext4_iloc iloc;
4490 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4491 static unsigned int mnt_count;
4492 int err, ret;
4494 might_sleep();
4495 err = ext4_reserve_inode_write(handle, inode, &iloc);
4496 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
4497 !(EXT4_I(inode)->i_state & EXT4_STATE_NO_EXPAND)) {
4499 * We need extra buffer credits since we may write into EA block
4500 * with this same handle. If journal_extend fails, then it will
4501 * only result in a minor loss of functionality for that inode.
4502 * If this is felt to be critical, then e2fsck should be run to
4503 * force a large enough s_min_extra_isize.
4505 if ((jbd2_journal_extend(handle,
4506 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4507 ret = ext4_expand_extra_isize(inode,
4508 sbi->s_want_extra_isize,
4509 iloc, handle);
4510 if (ret) {
4511 EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND;
4512 if (mnt_count !=
4513 le16_to_cpu(sbi->s_es->s_mnt_count)) {
4514 ext4_warning(inode->i_sb, __func__,
4515 "Unable to expand inode %lu. Delete"
4516 " some EAs or run e2fsck.",
4517 inode->i_ino);
4518 mnt_count =
4519 le16_to_cpu(sbi->s_es->s_mnt_count);
4524 if (!err)
4525 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
4526 return err;
4530 * ext4_dirty_inode() is called from __mark_inode_dirty()
4532 * We're really interested in the case where a file is being extended.
4533 * i_size has been changed by generic_commit_write() and we thus need
4534 * to include the updated inode in the current transaction.
4536 * Also, DQUOT_ALLOC_SPACE() will always dirty the inode when blocks
4537 * are allocated to the file.
4539 * If the inode is marked synchronous, we don't honour that here - doing
4540 * so would cause a commit on atime updates, which we don't bother doing.
4541 * We handle synchronous inodes at the highest possible level.
4543 void ext4_dirty_inode(struct inode *inode)
4545 handle_t *current_handle = ext4_journal_current_handle();
4546 handle_t *handle;
4548 handle = ext4_journal_start(inode, 2);
4549 if (IS_ERR(handle))
4550 goto out;
4551 if (current_handle &&
4552 current_handle->h_transaction != handle->h_transaction) {
4553 /* This task has a transaction open against a different fs */
4554 printk(KERN_EMERG "%s: transactions do not match!\n",
4555 __func__);
4556 } else {
4557 jbd_debug(5, "marking dirty. outer handle=%p\n",
4558 current_handle);
4559 ext4_mark_inode_dirty(handle, inode);
4561 ext4_journal_stop(handle);
4562 out:
4563 return;
4566 #if 0
4568 * Bind an inode's backing buffer_head into this transaction, to prevent
4569 * it from being flushed to disk early. Unlike
4570 * ext4_reserve_inode_write, this leaves behind no bh reference and
4571 * returns no iloc structure, so the caller needs to repeat the iloc
4572 * lookup to mark the inode dirty later.
4574 static int ext4_pin_inode(handle_t *handle, struct inode *inode)
4576 struct ext4_iloc iloc;
4578 int err = 0;
4579 if (handle) {
4580 err = ext4_get_inode_loc(inode, &iloc);
4581 if (!err) {
4582 BUFFER_TRACE(iloc.bh, "get_write_access");
4583 err = jbd2_journal_get_write_access(handle, iloc.bh);
4584 if (!err)
4585 err = ext4_journal_dirty_metadata(handle,
4586 iloc.bh);
4587 brelse(iloc.bh);
4590 ext4_std_error(inode->i_sb, err);
4591 return err;
4593 #endif
4595 int ext4_change_inode_journal_flag(struct inode *inode, int val)
4597 journal_t *journal;
4598 handle_t *handle;
4599 int err;
4602 * We have to be very careful here: changing a data block's
4603 * journaling status dynamically is dangerous. If we write a
4604 * data block to the journal, change the status and then delete
4605 * that block, we risk forgetting to revoke the old log record
4606 * from the journal and so a subsequent replay can corrupt data.
4607 * So, first we make sure that the journal is empty and that
4608 * nobody is changing anything.
4611 journal = EXT4_JOURNAL(inode);
4612 if (is_journal_aborted(journal))
4613 return -EROFS;
4615 jbd2_journal_lock_updates(journal);
4616 jbd2_journal_flush(journal);
4619 * OK, there are no updates running now, and all cached data is
4620 * synced to disk. We are now in a completely consistent state
4621 * which doesn't have anything in the journal, and we know that
4622 * no filesystem updates are running, so it is safe to modify
4623 * the inode's in-core data-journaling state flag now.
4626 if (val)
4627 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
4628 else
4629 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
4630 ext4_set_aops(inode);
4632 jbd2_journal_unlock_updates(journal);
4634 /* Finally we can mark the inode as dirty. */
4636 handle = ext4_journal_start(inode, 1);
4637 if (IS_ERR(handle))
4638 return PTR_ERR(handle);
4640 err = ext4_mark_inode_dirty(handle, inode);
4641 handle->h_sync = 1;
4642 ext4_journal_stop(handle);
4643 ext4_std_error(inode->i_sb, err);
4645 return err;
4648 static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4650 return !buffer_mapped(bh);
4653 int ext4_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4655 loff_t size;
4656 unsigned long len;
4657 int ret = -EINVAL;
4658 struct file *file = vma->vm_file;
4659 struct inode *inode = file->f_path.dentry->d_inode;
4660 struct address_space *mapping = inode->i_mapping;
4663 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
4664 * get i_mutex because we are already holding mmap_sem.
4666 down_read(&inode->i_alloc_sem);
4667 size = i_size_read(inode);
4668 if (page->mapping != mapping || size <= page_offset(page)
4669 || !PageUptodate(page)) {
4670 /* page got truncated from under us? */
4671 goto out_unlock;
4673 ret = 0;
4674 if (PageMappedToDisk(page))
4675 goto out_unlock;
4677 if (page->index == size >> PAGE_CACHE_SHIFT)
4678 len = size & ~PAGE_CACHE_MASK;
4679 else
4680 len = PAGE_CACHE_SIZE;
4682 if (page_has_buffers(page)) {
4683 /* return if we have all the buffers mapped */
4684 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
4685 ext4_bh_unmapped))
4686 goto out_unlock;
4689 * OK, we need to fill the hole... Do write_begin write_end
4690 * to do block allocation/reservation.We are not holding
4691 * inode.i__mutex here. That allow * parallel write_begin,
4692 * write_end call. lock_page prevent this from happening
4693 * on the same page though
4695 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
4696 len, AOP_FLAG_UNINTERRUPTIBLE, &page, NULL);
4697 if (ret < 0)
4698 goto out_unlock;
4699 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
4700 len, len, page, NULL);
4701 if (ret < 0)
4702 goto out_unlock;
4703 ret = 0;
4704 out_unlock:
4705 up_read(&inode->i_alloc_sem);
4706 return ret;