]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/ext4/inode.c
ext4: Invert lock ordering of page_lock and transaction start in delalloc
[mirror_ubuntu-hirsute-kernel.git] / fs / ext4 / inode.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/inode.c
ac27a0ec
DK
3 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Goal-directed block allocation by Stephen Tweedie
16 * (sct@redhat.com), 1993, 1998
17 * Big-endian to little-endian byte-swapping/bitmaps by
18 * David S. Miller (davem@caip.rutgers.edu), 1995
19 * 64-bit file support on 64-bit platforms by Jakub Jelinek
20 * (jj@sunsite.ms.mff.cuni.cz)
21 *
617ba13b 22 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
ac27a0ec
DK
23 */
24
25#include <linux/module.h>
26#include <linux/fs.h>
27#include <linux/time.h>
dab291af 28#include <linux/jbd2.h>
ac27a0ec
DK
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>
64769240 35#include <linux/pagevec.h>
ac27a0ec
DK
36#include <linux/mpage.h>
37#include <linux/uio.h>
38#include <linux/bio.h>
3dcf5451 39#include "ext4_jbd2.h"
ac27a0ec
DK
40#include "xattr.h"
41#include "acl.h"
d2a17637 42#include "ext4_extents.h"
ac27a0ec 43
678aaf48
JK
44static inline int ext4_begin_ordered_truncate(struct inode *inode,
45 loff_t new_size)
46{
47 return jbd2_journal_begin_ordered_truncate(&EXT4_I(inode)->jinode,
48 new_size);
49}
50
64769240
AT
51static void ext4_invalidatepage(struct page *page, unsigned long offset);
52
ac27a0ec
DK
53/*
54 * Test whether an inode is a fast symlink.
55 */
617ba13b 56static int ext4_inode_is_fast_symlink(struct inode *inode)
ac27a0ec 57{
617ba13b 58 int ea_blocks = EXT4_I(inode)->i_file_acl ?
ac27a0ec
DK
59 (inode->i_sb->s_blocksize >> 9) : 0;
60
61 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
62}
63
64/*
617ba13b 65 * The ext4 forget function must perform a revoke if we are freeing data
ac27a0ec
DK
66 * which has been journaled. Metadata (eg. indirect blocks) must be
67 * revoked in all cases.
68 *
69 * "bh" may be NULL: a metadata block may have been freed from memory
70 * but there may still be a record of it in the journal, and that record
71 * still needs to be revoked.
72 */
617ba13b
MC
73int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode,
74 struct buffer_head *bh, ext4_fsblk_t blocknr)
ac27a0ec
DK
75{
76 int err;
77
78 might_sleep();
79
80 BUFFER_TRACE(bh, "enter");
81
82 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
83 "data mode %lx\n",
84 bh, is_metadata, inode->i_mode,
85 test_opt(inode->i_sb, DATA_FLAGS));
86
87 /* Never use the revoke function if we are doing full data
88 * journaling: there is no need to, and a V1 superblock won't
89 * support it. Otherwise, only skip the revoke on un-journaled
90 * data blocks. */
91
617ba13b
MC
92 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
93 (!is_metadata && !ext4_should_journal_data(inode))) {
ac27a0ec 94 if (bh) {
dab291af 95 BUFFER_TRACE(bh, "call jbd2_journal_forget");
617ba13b 96 return ext4_journal_forget(handle, bh);
ac27a0ec
DK
97 }
98 return 0;
99 }
100
101 /*
102 * data!=journal && (is_metadata || should_journal_data(inode))
103 */
617ba13b
MC
104 BUFFER_TRACE(bh, "call ext4_journal_revoke");
105 err = ext4_journal_revoke(handle, blocknr, bh);
ac27a0ec 106 if (err)
46e665e9 107 ext4_abort(inode->i_sb, __func__,
ac27a0ec
DK
108 "error %d when attempting revoke", err);
109 BUFFER_TRACE(bh, "exit");
110 return err;
111}
112
113/*
114 * Work out how many blocks we need to proceed with the next chunk of a
115 * truncate transaction.
116 */
117static unsigned long blocks_for_truncate(struct inode *inode)
118{
725d26d3 119 ext4_lblk_t needed;
ac27a0ec
DK
120
121 needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9);
122
123 /* Give ourselves just enough room to cope with inodes in which
124 * i_blocks is corrupt: we've seen disk corruptions in the past
125 * which resulted in random data in an inode which looked enough
617ba13b 126 * like a regular file for ext4 to try to delete it. Things
ac27a0ec
DK
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;
131
132 /* But we need to bound the transaction so we don't overflow the
133 * journal. */
617ba13b
MC
134 if (needed > EXT4_MAX_TRANS_DATA)
135 needed = EXT4_MAX_TRANS_DATA;
ac27a0ec 136
617ba13b 137 return EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + needed;
ac27a0ec
DK
138}
139
140/*
141 * Truncate transactions can be complex and absolutely huge. So we need to
142 * be able to restart the transaction at a conventient checkpoint to make
143 * sure we don't overflow the journal.
144 *
145 * start_transaction gets us a new handle for a truncate transaction,
146 * and extend_transaction tries to extend the existing one a bit. If
147 * extend fails, we need to propagate the failure up and restart the
148 * transaction in the top-level truncate loop. --sct
149 */
150static handle_t *start_transaction(struct inode *inode)
151{
152 handle_t *result;
153
617ba13b 154 result = ext4_journal_start(inode, blocks_for_truncate(inode));
ac27a0ec
DK
155 if (!IS_ERR(result))
156 return result;
157
617ba13b 158 ext4_std_error(inode->i_sb, PTR_ERR(result));
ac27a0ec
DK
159 return result;
160}
161
162/*
163 * Try to extend this transaction for the purposes of truncation.
164 *
165 * Returns 0 if we managed to create more room. If we can't create more
166 * room, and the transaction must be restarted we return 1.
167 */
168static int try_to_extend_transaction(handle_t *handle, struct inode *inode)
169{
617ba13b 170 if (handle->h_buffer_credits > EXT4_RESERVE_TRANS_BLOCKS)
ac27a0ec 171 return 0;
617ba13b 172 if (!ext4_journal_extend(handle, blocks_for_truncate(inode)))
ac27a0ec
DK
173 return 0;
174 return 1;
175}
176
177/*
178 * Restart the transaction associated with *handle. This does a commit,
179 * so before we call here everything must be consistently dirtied against
180 * this transaction.
181 */
617ba13b 182static int ext4_journal_test_restart(handle_t *handle, struct inode *inode)
ac27a0ec
DK
183{
184 jbd_debug(2, "restarting handle %p\n", handle);
617ba13b 185 return ext4_journal_restart(handle, blocks_for_truncate(inode));
ac27a0ec
DK
186}
187
188/*
189 * Called at the last iput() if i_nlink is zero.
190 */
617ba13b 191void ext4_delete_inode (struct inode * inode)
ac27a0ec
DK
192{
193 handle_t *handle;
194
678aaf48
JK
195 if (ext4_should_order_data(inode))
196 ext4_begin_ordered_truncate(inode, 0);
ac27a0ec
DK
197 truncate_inode_pages(&inode->i_data, 0);
198
199 if (is_bad_inode(inode))
200 goto no_delete;
201
202 handle = start_transaction(inode);
203 if (IS_ERR(handle)) {
204 /*
205 * If we're going to skip the normal cleanup, we still need to
206 * make sure that the in-core orphan linked list is properly
207 * cleaned up.
208 */
617ba13b 209 ext4_orphan_del(NULL, inode);
ac27a0ec
DK
210 goto no_delete;
211 }
212
213 if (IS_SYNC(inode))
214 handle->h_sync = 1;
215 inode->i_size = 0;
216 if (inode->i_blocks)
617ba13b 217 ext4_truncate(inode);
ac27a0ec 218 /*
617ba13b 219 * Kill off the orphan record which ext4_truncate created.
ac27a0ec 220 * AKPM: I think this can be inside the above `if'.
617ba13b 221 * Note that ext4_orphan_del() has to be able to cope with the
ac27a0ec 222 * deletion of a non-existent orphan - this is because we don't
617ba13b 223 * know if ext4_truncate() actually created an orphan record.
ac27a0ec
DK
224 * (Well, we could do this if we need to, but heck - it works)
225 */
617ba13b
MC
226 ext4_orphan_del(handle, inode);
227 EXT4_I(inode)->i_dtime = get_seconds();
ac27a0ec
DK
228
229 /*
230 * One subtle ordering requirement: if anything has gone wrong
231 * (transaction abort, IO errors, whatever), then we can still
232 * do these next steps (the fs will already have been marked as
233 * having errors), but we can't free the inode if the mark_dirty
234 * fails.
235 */
617ba13b 236 if (ext4_mark_inode_dirty(handle, inode))
ac27a0ec
DK
237 /* If that failed, just do the required in-core inode clear. */
238 clear_inode(inode);
239 else
617ba13b
MC
240 ext4_free_inode(handle, inode);
241 ext4_journal_stop(handle);
ac27a0ec
DK
242 return;
243no_delete:
244 clear_inode(inode); /* We must guarantee clearing of inode... */
245}
246
247typedef struct {
248 __le32 *p;
249 __le32 key;
250 struct buffer_head *bh;
251} Indirect;
252
253static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
254{
255 p->key = *(p->p = v);
256 p->bh = bh;
257}
258
ac27a0ec 259/**
617ba13b 260 * ext4_block_to_path - parse the block number into array of offsets
ac27a0ec
DK
261 * @inode: inode in question (we are only interested in its superblock)
262 * @i_block: block number to be parsed
263 * @offsets: array to store the offsets in
8c55e204
DK
264 * @boundary: set this non-zero if the referred-to block is likely to be
265 * followed (on disk) by an indirect block.
ac27a0ec 266 *
617ba13b 267 * To store the locations of file's data ext4 uses a data structure common
ac27a0ec
DK
268 * for UNIX filesystems - tree of pointers anchored in the inode, with
269 * data blocks at leaves and indirect blocks in intermediate nodes.
270 * This function translates the block number into path in that tree -
271 * return value is the path length and @offsets[n] is the offset of
272 * pointer to (n+1)th node in the nth one. If @block is out of range
273 * (negative or too large) warning is printed and zero returned.
274 *
275 * Note: function doesn't find node addresses, so no IO is needed. All
276 * we need to know is the capacity of indirect blocks (taken from the
277 * inode->i_sb).
278 */
279
280/*
281 * Portability note: the last comparison (check that we fit into triple
282 * indirect block) is spelled differently, because otherwise on an
283 * architecture with 32-bit longs and 8Kb pages we might get into trouble
284 * if our filesystem had 8Kb blocks. We might use long long, but that would
285 * kill us on x86. Oh, well, at least the sign propagation does not matter -
286 * i_block would have to be negative in the very beginning, so we would not
287 * get there at all.
288 */
289
617ba13b 290static int ext4_block_to_path(struct inode *inode,
725d26d3
AK
291 ext4_lblk_t i_block,
292 ext4_lblk_t offsets[4], int *boundary)
ac27a0ec 293{
617ba13b
MC
294 int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb);
295 int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb);
296 const long direct_blocks = EXT4_NDIR_BLOCKS,
ac27a0ec
DK
297 indirect_blocks = ptrs,
298 double_blocks = (1 << (ptrs_bits * 2));
299 int n = 0;
300 int final = 0;
301
302 if (i_block < 0) {
617ba13b 303 ext4_warning (inode->i_sb, "ext4_block_to_path", "block < 0");
ac27a0ec
DK
304 } else if (i_block < direct_blocks) {
305 offsets[n++] = i_block;
306 final = direct_blocks;
307 } else if ( (i_block -= direct_blocks) < indirect_blocks) {
617ba13b 308 offsets[n++] = EXT4_IND_BLOCK;
ac27a0ec
DK
309 offsets[n++] = i_block;
310 final = ptrs;
311 } else if ((i_block -= indirect_blocks) < double_blocks) {
617ba13b 312 offsets[n++] = EXT4_DIND_BLOCK;
ac27a0ec
DK
313 offsets[n++] = i_block >> ptrs_bits;
314 offsets[n++] = i_block & (ptrs - 1);
315 final = ptrs;
316 } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
617ba13b 317 offsets[n++] = EXT4_TIND_BLOCK;
ac27a0ec
DK
318 offsets[n++] = i_block >> (ptrs_bits * 2);
319 offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
320 offsets[n++] = i_block & (ptrs - 1);
321 final = ptrs;
322 } else {
e2b46574 323 ext4_warning(inode->i_sb, "ext4_block_to_path",
0e855ac8 324 "block %lu > max",
e2b46574
ES
325 i_block + direct_blocks +
326 indirect_blocks + double_blocks);
ac27a0ec
DK
327 }
328 if (boundary)
329 *boundary = final - 1 - (i_block & (ptrs - 1));
330 return n;
331}
332
333/**
617ba13b 334 * ext4_get_branch - read the chain of indirect blocks leading to data
ac27a0ec
DK
335 * @inode: inode in question
336 * @depth: depth of the chain (1 - direct pointer, etc.)
337 * @offsets: offsets of pointers in inode/indirect blocks
338 * @chain: place to store the result
339 * @err: here we store the error value
340 *
341 * Function fills the array of triples <key, p, bh> and returns %NULL
342 * if everything went OK or the pointer to the last filled triple
343 * (incomplete one) otherwise. Upon the return chain[i].key contains
344 * the number of (i+1)-th block in the chain (as it is stored in memory,
345 * i.e. little-endian 32-bit), chain[i].p contains the address of that
346 * number (it points into struct inode for i==0 and into the bh->b_data
347 * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
348 * block for i>0 and NULL for i==0. In other words, it holds the block
349 * numbers of the chain, addresses they were taken from (and where we can
350 * verify that chain did not change) and buffer_heads hosting these
351 * numbers.
352 *
353 * Function stops when it stumbles upon zero pointer (absent block)
354 * (pointer to last triple returned, *@err == 0)
355 * or when it gets an IO error reading an indirect block
356 * (ditto, *@err == -EIO)
ac27a0ec
DK
357 * or when it reads all @depth-1 indirect blocks successfully and finds
358 * the whole chain, all way to the data (returns %NULL, *err == 0).
c278bfec
AK
359 *
360 * Need to be called with
0e855ac8 361 * down_read(&EXT4_I(inode)->i_data_sem)
ac27a0ec 362 */
725d26d3
AK
363static Indirect *ext4_get_branch(struct inode *inode, int depth,
364 ext4_lblk_t *offsets,
ac27a0ec
DK
365 Indirect chain[4], int *err)
366{
367 struct super_block *sb = inode->i_sb;
368 Indirect *p = chain;
369 struct buffer_head *bh;
370
371 *err = 0;
372 /* i_data is not going away, no lock needed */
617ba13b 373 add_chain (chain, NULL, EXT4_I(inode)->i_data + *offsets);
ac27a0ec
DK
374 if (!p->key)
375 goto no_block;
376 while (--depth) {
377 bh = sb_bread(sb, le32_to_cpu(p->key));
378 if (!bh)
379 goto failure;
ac27a0ec
DK
380 add_chain(++p, bh, (__le32*)bh->b_data + *++offsets);
381 /* Reader: end */
382 if (!p->key)
383 goto no_block;
384 }
385 return NULL;
386
ac27a0ec
DK
387failure:
388 *err = -EIO;
389no_block:
390 return p;
391}
392
393/**
617ba13b 394 * ext4_find_near - find a place for allocation with sufficient locality
ac27a0ec
DK
395 * @inode: owner
396 * @ind: descriptor of indirect block.
397 *
1cc8dcf5 398 * This function returns the preferred place for block allocation.
ac27a0ec
DK
399 * It is used when heuristic for sequential allocation fails.
400 * Rules are:
401 * + if there is a block to the left of our position - allocate near it.
402 * + if pointer will live in indirect block - allocate near that block.
403 * + if pointer will live in inode - allocate in the same
404 * cylinder group.
405 *
406 * In the latter case we colour the starting block by the callers PID to
407 * prevent it from clashing with concurrent allocations for a different inode
408 * in the same block group. The PID is used here so that functionally related
409 * files will be close-by on-disk.
410 *
411 * Caller must make sure that @ind is valid and will stay that way.
412 */
617ba13b 413static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind)
ac27a0ec 414{
617ba13b 415 struct ext4_inode_info *ei = EXT4_I(inode);
ac27a0ec
DK
416 __le32 *start = ind->bh ? (__le32*) ind->bh->b_data : ei->i_data;
417 __le32 *p;
617ba13b 418 ext4_fsblk_t bg_start;
74d3487f 419 ext4_fsblk_t last_block;
617ba13b 420 ext4_grpblk_t colour;
ac27a0ec
DK
421
422 /* Try to find previous block */
423 for (p = ind->p - 1; p >= start; p--) {
424 if (*p)
425 return le32_to_cpu(*p);
426 }
427
428 /* No such thing, so let's try location of indirect block */
429 if (ind->bh)
430 return ind->bh->b_blocknr;
431
432 /*
433 * It is going to be referred to from the inode itself? OK, just put it
434 * into the same cylinder group then.
435 */
617ba13b 436 bg_start = ext4_group_first_block_no(inode->i_sb, ei->i_block_group);
74d3487f
VC
437 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
438
439 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
440 colour = (current->pid % 16) *
617ba13b 441 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
74d3487f
VC
442 else
443 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
ac27a0ec
DK
444 return bg_start + colour;
445}
446
447/**
1cc8dcf5 448 * ext4_find_goal - find a preferred place for allocation.
ac27a0ec
DK
449 * @inode: owner
450 * @block: block we want
ac27a0ec 451 * @partial: pointer to the last triple within a chain
ac27a0ec 452 *
1cc8dcf5 453 * Normally this function find the preferred place for block allocation,
fb01bfda 454 * returns it.
ac27a0ec 455 */
725d26d3 456static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block,
fb01bfda 457 Indirect *partial)
ac27a0ec 458{
617ba13b 459 struct ext4_block_alloc_info *block_i;
ac27a0ec 460
617ba13b 461 block_i = EXT4_I(inode)->i_block_alloc_info;
ac27a0ec
DK
462
463 /*
464 * try the heuristic for sequential allocation,
465 * failing that at least try to get decent locality.
466 */
467 if (block_i && (block == block_i->last_alloc_logical_block + 1)
468 && (block_i->last_alloc_physical_block != 0)) {
469 return block_i->last_alloc_physical_block + 1;
470 }
471
617ba13b 472 return ext4_find_near(inode, partial);
ac27a0ec
DK
473}
474
475/**
617ba13b 476 * ext4_blks_to_allocate: Look up the block map and count the number
ac27a0ec
DK
477 * of direct blocks need to be allocated for the given branch.
478 *
479 * @branch: chain of indirect blocks
480 * @k: number of blocks need for indirect blocks
481 * @blks: number of data blocks to be mapped.
482 * @blocks_to_boundary: the offset in the indirect block
483 *
484 * return the total number of blocks to be allocate, including the
485 * direct and indirect blocks.
486 */
617ba13b 487static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned long blks,
ac27a0ec
DK
488 int blocks_to_boundary)
489{
490 unsigned long count = 0;
491
492 /*
493 * Simple case, [t,d]Indirect block(s) has not allocated yet
494 * then it's clear blocks on that path have not allocated
495 */
496 if (k > 0) {
497 /* right now we don't handle cross boundary allocation */
498 if (blks < blocks_to_boundary + 1)
499 count += blks;
500 else
501 count += blocks_to_boundary + 1;
502 return count;
503 }
504
505 count++;
506 while (count < blks && count <= blocks_to_boundary &&
507 le32_to_cpu(*(branch[0].p + count)) == 0) {
508 count++;
509 }
510 return count;
511}
512
513/**
617ba13b 514 * ext4_alloc_blocks: multiple allocate blocks needed for a branch
ac27a0ec
DK
515 * @indirect_blks: the number of blocks need to allocate for indirect
516 * blocks
517 *
518 * @new_blocks: on return it will store the new block numbers for
519 * the indirect blocks(if needed) and the first direct block,
520 * @blks: on return it will store the total number of allocated
521 * direct blocks
522 */
617ba13b 523static int ext4_alloc_blocks(handle_t *handle, struct inode *inode,
7061eba7
AK
524 ext4_lblk_t iblock, ext4_fsblk_t goal,
525 int indirect_blks, int blks,
526 ext4_fsblk_t new_blocks[4], int *err)
ac27a0ec
DK
527{
528 int target, i;
7061eba7 529 unsigned long count = 0, blk_allocated = 0;
ac27a0ec 530 int index = 0;
617ba13b 531 ext4_fsblk_t current_block = 0;
ac27a0ec
DK
532 int ret = 0;
533
534 /*
535 * Here we try to allocate the requested multiple blocks at once,
536 * on a best-effort basis.
537 * To build a branch, we should allocate blocks for
538 * the indirect blocks(if not allocated yet), and at least
539 * the first direct block of this branch. That's the
540 * minimum number of blocks need to allocate(required)
541 */
7061eba7
AK
542 /* first we try to allocate the indirect blocks */
543 target = indirect_blks;
544 while (target > 0) {
ac27a0ec
DK
545 count = target;
546 /* allocating blocks for indirect blocks and direct blocks */
7061eba7
AK
547 current_block = ext4_new_meta_blocks(handle, inode,
548 goal, &count, err);
ac27a0ec
DK
549 if (*err)
550 goto failed_out;
551
552 target -= count;
553 /* allocate blocks for indirect blocks */
554 while (index < indirect_blks && count) {
555 new_blocks[index++] = current_block++;
556 count--;
557 }
7061eba7
AK
558 if (count > 0) {
559 /*
560 * save the new block number
561 * for the first direct block
562 */
563 new_blocks[index] = current_block;
564 printk(KERN_INFO "%s returned more blocks than "
565 "requested\n", __func__);
566 WARN_ON(1);
ac27a0ec 567 break;
7061eba7 568 }
ac27a0ec
DK
569 }
570
7061eba7
AK
571 target = blks - count ;
572 blk_allocated = count;
573 if (!target)
574 goto allocated;
575 /* Now allocate data blocks */
576 count = target;
654b4908 577 /* allocating blocks for data blocks */
7061eba7
AK
578 current_block = ext4_new_blocks(handle, inode, iblock,
579 goal, &count, err);
580 if (*err && (target == blks)) {
581 /*
582 * if the allocation failed and we didn't allocate
583 * any blocks before
584 */
585 goto failed_out;
586 }
587 if (!*err) {
588 if (target == blks) {
589 /*
590 * save the new block number
591 * for the first direct block
592 */
593 new_blocks[index] = current_block;
594 }
595 blk_allocated += count;
596 }
597allocated:
ac27a0ec 598 /* total number of blocks allocated for direct blocks */
7061eba7 599 ret = blk_allocated;
ac27a0ec
DK
600 *err = 0;
601 return ret;
602failed_out:
603 for (i = 0; i <index; i++)
c9de560d 604 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
ac27a0ec
DK
605 return ret;
606}
607
608/**
617ba13b 609 * ext4_alloc_branch - allocate and set up a chain of blocks.
ac27a0ec
DK
610 * @inode: owner
611 * @indirect_blks: number of allocated indirect blocks
612 * @blks: number of allocated direct blocks
613 * @offsets: offsets (in the blocks) to store the pointers to next.
614 * @branch: place to store the chain in.
615 *
616 * This function allocates blocks, zeroes out all but the last one,
617 * links them into chain and (if we are synchronous) writes them to disk.
618 * In other words, it prepares a branch that can be spliced onto the
619 * inode. It stores the information about that chain in the branch[], in
617ba13b 620 * the same format as ext4_get_branch() would do. We are calling it after
ac27a0ec
DK
621 * we had read the existing part of chain and partial points to the last
622 * triple of that (one with zero ->key). Upon the exit we have the same
617ba13b 623 * picture as after the successful ext4_get_block(), except that in one
ac27a0ec
DK
624 * place chain is disconnected - *branch->p is still zero (we did not
625 * set the last link), but branch->key contains the number that should
626 * be placed into *branch->p to fill that gap.
627 *
628 * If allocation fails we free all blocks we've allocated (and forget
629 * their buffer_heads) and return the error value the from failed
617ba13b 630 * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain
ac27a0ec
DK
631 * as described above and return 0.
632 */
617ba13b 633static int ext4_alloc_branch(handle_t *handle, struct inode *inode,
7061eba7
AK
634 ext4_lblk_t iblock, int indirect_blks,
635 int *blks, ext4_fsblk_t goal,
636 ext4_lblk_t *offsets, Indirect *branch)
ac27a0ec
DK
637{
638 int blocksize = inode->i_sb->s_blocksize;
639 int i, n = 0;
640 int err = 0;
641 struct buffer_head *bh;
642 int num;
617ba13b
MC
643 ext4_fsblk_t new_blocks[4];
644 ext4_fsblk_t current_block;
ac27a0ec 645
7061eba7 646 num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks,
ac27a0ec
DK
647 *blks, new_blocks, &err);
648 if (err)
649 return err;
650
651 branch[0].key = cpu_to_le32(new_blocks[0]);
652 /*
653 * metadata blocks and data blocks are allocated.
654 */
655 for (n = 1; n <= indirect_blks; n++) {
656 /*
657 * Get buffer_head for parent block, zero it out
658 * and set the pointer to new one, then send
659 * parent to disk.
660 */
661 bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
662 branch[n].bh = bh;
663 lock_buffer(bh);
664 BUFFER_TRACE(bh, "call get_create_access");
617ba13b 665 err = ext4_journal_get_create_access(handle, bh);
ac27a0ec
DK
666 if (err) {
667 unlock_buffer(bh);
668 brelse(bh);
669 goto failed;
670 }
671
672 memset(bh->b_data, 0, blocksize);
673 branch[n].p = (__le32 *) bh->b_data + offsets[n];
674 branch[n].key = cpu_to_le32(new_blocks[n]);
675 *branch[n].p = branch[n].key;
676 if ( n == indirect_blks) {
677 current_block = new_blocks[n];
678 /*
679 * End of chain, update the last new metablock of
680 * the chain to point to the new allocated
681 * data blocks numbers
682 */
683 for (i=1; i < num; i++)
684 *(branch[n].p + i) = cpu_to_le32(++current_block);
685 }
686 BUFFER_TRACE(bh, "marking uptodate");
687 set_buffer_uptodate(bh);
688 unlock_buffer(bh);
689
617ba13b
MC
690 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
691 err = ext4_journal_dirty_metadata(handle, bh);
ac27a0ec
DK
692 if (err)
693 goto failed;
694 }
695 *blks = num;
696 return err;
697failed:
698 /* Allocation failed, free what we already allocated */
699 for (i = 1; i <= n ; i++) {
dab291af 700 BUFFER_TRACE(branch[i].bh, "call jbd2_journal_forget");
617ba13b 701 ext4_journal_forget(handle, branch[i].bh);
ac27a0ec
DK
702 }
703 for (i = 0; i <indirect_blks; i++)
c9de560d 704 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
ac27a0ec 705
c9de560d 706 ext4_free_blocks(handle, inode, new_blocks[i], num, 0);
ac27a0ec
DK
707
708 return err;
709}
710
711/**
617ba13b 712 * ext4_splice_branch - splice the allocated branch onto inode.
ac27a0ec
DK
713 * @inode: owner
714 * @block: (logical) number of block we are adding
715 * @chain: chain of indirect blocks (with a missing link - see
617ba13b 716 * ext4_alloc_branch)
ac27a0ec
DK
717 * @where: location of missing link
718 * @num: number of indirect blocks we are adding
719 * @blks: number of direct blocks we are adding
720 *
721 * This function fills the missing link and does all housekeeping needed in
722 * inode (->i_blocks, etc.). In case of success we end up with the full
723 * chain to new block and return 0.
724 */
617ba13b 725static int ext4_splice_branch(handle_t *handle, struct inode *inode,
725d26d3 726 ext4_lblk_t block, Indirect *where, int num, int blks)
ac27a0ec
DK
727{
728 int i;
729 int err = 0;
617ba13b
MC
730 struct ext4_block_alloc_info *block_i;
731 ext4_fsblk_t current_block;
ac27a0ec 732
617ba13b 733 block_i = EXT4_I(inode)->i_block_alloc_info;
ac27a0ec
DK
734 /*
735 * If we're splicing into a [td]indirect block (as opposed to the
736 * inode) then we need to get write access to the [td]indirect block
737 * before the splice.
738 */
739 if (where->bh) {
740 BUFFER_TRACE(where->bh, "get_write_access");
617ba13b 741 err = ext4_journal_get_write_access(handle, where->bh);
ac27a0ec
DK
742 if (err)
743 goto err_out;
744 }
745 /* That's it */
746
747 *where->p = where->key;
748
749 /*
750 * Update the host buffer_head or inode to point to more just allocated
751 * direct blocks blocks
752 */
753 if (num == 0 && blks > 1) {
754 current_block = le32_to_cpu(where->key) + 1;
755 for (i = 1; i < blks; i++)
756 *(where->p + i ) = cpu_to_le32(current_block++);
757 }
758
759 /*
760 * update the most recently allocated logical & physical block
761 * in i_block_alloc_info, to assist find the proper goal block for next
762 * allocation
763 */
764 if (block_i) {
765 block_i->last_alloc_logical_block = block + blks - 1;
766 block_i->last_alloc_physical_block =
767 le32_to_cpu(where[num].key) + blks - 1;
768 }
769
770 /* We are done with atomic stuff, now do the rest of housekeeping */
771
ef7f3835 772 inode->i_ctime = ext4_current_time(inode);
617ba13b 773 ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
774
775 /* had we spliced it onto indirect block? */
776 if (where->bh) {
777 /*
778 * If we spliced it onto an indirect block, we haven't
779 * altered the inode. Note however that if it is being spliced
780 * onto an indirect block at the very end of the file (the
781 * file is growing) then we *will* alter the inode to reflect
782 * the new i_size. But that is not done here - it is done in
617ba13b 783 * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode.
ac27a0ec
DK
784 */
785 jbd_debug(5, "splicing indirect only\n");
617ba13b
MC
786 BUFFER_TRACE(where->bh, "call ext4_journal_dirty_metadata");
787 err = ext4_journal_dirty_metadata(handle, where->bh);
ac27a0ec
DK
788 if (err)
789 goto err_out;
790 } else {
791 /*
792 * OK, we spliced it into the inode itself on a direct block.
793 * Inode was dirtied above.
794 */
795 jbd_debug(5, "splicing direct\n");
796 }
797 return err;
798
799err_out:
800 for (i = 1; i <= num; i++) {
dab291af 801 BUFFER_TRACE(where[i].bh, "call jbd2_journal_forget");
617ba13b 802 ext4_journal_forget(handle, where[i].bh);
c9de560d
AT
803 ext4_free_blocks(handle, inode,
804 le32_to_cpu(where[i-1].key), 1, 0);
ac27a0ec 805 }
c9de560d 806 ext4_free_blocks(handle, inode, le32_to_cpu(where[num].key), blks, 0);
ac27a0ec
DK
807
808 return err;
809}
810
811/*
812 * Allocation strategy is simple: if we have to allocate something, we will
813 * have to go the whole way to leaf. So let's do it before attaching anything
814 * to tree, set linkage between the newborn blocks, write them if sync is
815 * required, recheck the path, free and repeat if check fails, otherwise
816 * set the last missing link (that will protect us from any truncate-generated
817 * removals - all blocks on the path are immune now) and possibly force the
818 * write on the parent block.
819 * That has a nice additional property: no special recovery from the failed
820 * allocations is needed - we simply release blocks and do not touch anything
821 * reachable from inode.
822 *
823 * `handle' can be NULL if create == 0.
824 *
ac27a0ec
DK
825 * return > 0, # of blocks mapped or allocated.
826 * return = 0, if plain lookup failed.
827 * return < 0, error case.
c278bfec
AK
828 *
829 *
830 * Need to be called with
0e855ac8
AK
831 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
832 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
ac27a0ec 833 */
617ba13b 834int ext4_get_blocks_handle(handle_t *handle, struct inode *inode,
725d26d3 835 ext4_lblk_t iblock, unsigned long maxblocks,
ac27a0ec
DK
836 struct buffer_head *bh_result,
837 int create, int extend_disksize)
838{
839 int err = -EIO;
725d26d3 840 ext4_lblk_t offsets[4];
ac27a0ec
DK
841 Indirect chain[4];
842 Indirect *partial;
617ba13b 843 ext4_fsblk_t goal;
ac27a0ec
DK
844 int indirect_blks;
845 int blocks_to_boundary = 0;
846 int depth;
617ba13b 847 struct ext4_inode_info *ei = EXT4_I(inode);
ac27a0ec 848 int count = 0;
617ba13b 849 ext4_fsblk_t first_block = 0;
61628a3f 850 loff_t disksize;
ac27a0ec
DK
851
852
a86c6181 853 J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL));
ac27a0ec 854 J_ASSERT(handle != NULL || create == 0);
725d26d3
AK
855 depth = ext4_block_to_path(inode, iblock, offsets,
856 &blocks_to_boundary);
ac27a0ec
DK
857
858 if (depth == 0)
859 goto out;
860
617ba13b 861 partial = ext4_get_branch(inode, depth, offsets, chain, &err);
ac27a0ec
DK
862
863 /* Simplest case - block found, no allocation needed */
864 if (!partial) {
865 first_block = le32_to_cpu(chain[depth - 1].key);
866 clear_buffer_new(bh_result);
867 count++;
868 /*map more blocks*/
869 while (count < maxblocks && count <= blocks_to_boundary) {
617ba13b 870 ext4_fsblk_t blk;
ac27a0ec 871
ac27a0ec
DK
872 blk = le32_to_cpu(*(chain[depth-1].p + count));
873
874 if (blk == first_block + count)
875 count++;
876 else
877 break;
878 }
c278bfec 879 goto got_it;
ac27a0ec
DK
880 }
881
882 /* Next simple case - plain lookup or failed read of indirect block */
883 if (!create || err == -EIO)
884 goto cleanup;
885
ac27a0ec
DK
886 /*
887 * Okay, we need to do block allocation. Lazily initialize the block
888 * allocation info here if necessary
889 */
890 if (S_ISREG(inode->i_mode) && (!ei->i_block_alloc_info))
617ba13b 891 ext4_init_block_alloc_info(inode);
ac27a0ec 892
fb01bfda 893 goal = ext4_find_goal(inode, iblock, partial);
ac27a0ec
DK
894
895 /* the number of blocks need to allocate for [d,t]indirect blocks */
896 indirect_blks = (chain + depth) - partial - 1;
897
898 /*
899 * Next look up the indirect map to count the totoal number of
900 * direct blocks to allocate for this branch.
901 */
617ba13b 902 count = ext4_blks_to_allocate(partial, indirect_blks,
ac27a0ec
DK
903 maxblocks, blocks_to_boundary);
904 /*
617ba13b 905 * Block out ext4_truncate while we alter the tree
ac27a0ec 906 */
7061eba7
AK
907 err = ext4_alloc_branch(handle, inode, iblock, indirect_blks,
908 &count, goal,
909 offsets + (partial - chain), partial);
ac27a0ec
DK
910
911 /*
617ba13b 912 * The ext4_splice_branch call will free and forget any buffers
ac27a0ec
DK
913 * on the new chain if there is a failure, but that risks using
914 * up transaction credits, especially for bitmaps where the
915 * credits cannot be returned. Can we handle this somehow? We
916 * may need to return -EAGAIN upwards in the worst case. --sct
917 */
918 if (!err)
617ba13b 919 err = ext4_splice_branch(handle, inode, iblock,
ac27a0ec
DK
920 partial, indirect_blks, count);
921 /*
0e855ac8 922 * i_disksize growing is protected by i_data_sem. Don't forget to
ac27a0ec 923 * protect it if you're about to implement concurrent
617ba13b 924 * ext4_get_block() -bzzz
ac27a0ec 925 */
61628a3f
MC
926 if (!err && extend_disksize) {
927 disksize = ((loff_t) iblock + count) << inode->i_blkbits;
928 if (disksize > i_size_read(inode))
929 disksize = i_size_read(inode);
930 if (disksize > ei->i_disksize)
931 ei->i_disksize = disksize;
932 }
ac27a0ec
DK
933 if (err)
934 goto cleanup;
935
936 set_buffer_new(bh_result);
937got_it:
938 map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
939 if (count > blocks_to_boundary)
940 set_buffer_boundary(bh_result);
941 err = count;
942 /* Clean up and exit */
943 partial = chain + depth - 1; /* the whole chain */
944cleanup:
945 while (partial > chain) {
946 BUFFER_TRACE(partial->bh, "call brelse");
947 brelse(partial->bh);
948 partial--;
949 }
950 BUFFER_TRACE(bh_result, "returned");
951out:
952 return err;
953}
954
7fb5409d
JK
955/* Maximum number of blocks we map for direct IO at once. */
956#define DIO_MAX_BLOCKS 4096
957/*
958 * Number of credits we need for writing DIO_MAX_BLOCKS:
959 * We need sb + group descriptor + bitmap + inode -> 4
960 * For B blocks with A block pointers per block we need:
961 * 1 (triple ind.) + (B/A/A + 2) (doubly ind.) + (B/A + 2) (indirect).
962 * If we plug in 4096 for B and 256 for A (for 1KB block size), we get 25.
963 */
964#define DIO_CREDITS 25
ac27a0ec 965
f5ab0d1f
MC
966
967/*
968 *
969 *
970 * ext4_ext4 get_block() wrapper function
971 * It will do a look up first, and returns if the blocks already mapped.
972 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
973 * and store the allocated blocks in the result buffer head and mark it
974 * mapped.
975 *
976 * If file type is extents based, it will call ext4_ext_get_blocks(),
977 * Otherwise, call with ext4_get_blocks_handle() to handle indirect mapping
978 * based files
979 *
980 * On success, it returns the number of blocks being mapped or allocate.
981 * if create==0 and the blocks are pre-allocated and uninitialized block,
982 * the result buffer head is unmapped. If the create ==1, it will make sure
983 * the buffer head is mapped.
984 *
985 * It returns 0 if plain look up failed (blocks have not been allocated), in
986 * that casem, buffer head is unmapped
987 *
988 * It returns the error in case of allocation failure.
989 */
0e855ac8
AK
990int ext4_get_blocks_wrap(handle_t *handle, struct inode *inode, sector_t block,
991 unsigned long max_blocks, struct buffer_head *bh,
d2a17637 992 int create, int extend_disksize, int flag)
0e855ac8
AK
993{
994 int retval;
f5ab0d1f
MC
995
996 clear_buffer_mapped(bh);
997
4df3d265
AK
998 /*
999 * Try to see if we can get the block without requesting
1000 * for new file system block.
1001 */
1002 down_read((&EXT4_I(inode)->i_data_sem));
1003 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1004 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1005 bh, 0, 0);
0e855ac8 1006 } else {
4df3d265
AK
1007 retval = ext4_get_blocks_handle(handle,
1008 inode, block, max_blocks, bh, 0, 0);
0e855ac8 1009 }
4df3d265 1010 up_read((&EXT4_I(inode)->i_data_sem));
f5ab0d1f
MC
1011
1012 /* If it is only a block(s) look up */
1013 if (!create)
1014 return retval;
1015
1016 /*
1017 * Returns if the blocks have already allocated
1018 *
1019 * Note that if blocks have been preallocated
1020 * ext4_ext_get_block() returns th create = 0
1021 * with buffer head unmapped.
1022 */
1023 if (retval > 0 && buffer_mapped(bh))
4df3d265
AK
1024 return retval;
1025
1026 /*
f5ab0d1f
MC
1027 * New blocks allocate and/or writing to uninitialized extent
1028 * will possibly result in updating i_data, so we take
1029 * the write lock of i_data_sem, and call get_blocks()
1030 * with create == 1 flag.
4df3d265
AK
1031 */
1032 down_write((&EXT4_I(inode)->i_data_sem));
d2a17637
MC
1033
1034 /*
1035 * if the caller is from delayed allocation writeout path
1036 * we have already reserved fs blocks for allocation
1037 * let the underlying get_block() function know to
1038 * avoid double accounting
1039 */
1040 if (flag)
1041 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
4df3d265
AK
1042 /*
1043 * We need to check for EXT4 here because migrate
1044 * could have changed the inode type in between
1045 */
0e855ac8
AK
1046 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1047 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
1048 bh, create, extend_disksize);
1049 } else {
1050 retval = ext4_get_blocks_handle(handle, inode, block,
1051 max_blocks, bh, create, extend_disksize);
267e4db9
AK
1052
1053 if (retval > 0 && buffer_new(bh)) {
1054 /*
1055 * We allocated new blocks which will result in
1056 * i_data's format changing. Force the migrate
1057 * to fail by clearing migrate flags
1058 */
1059 EXT4_I(inode)->i_flags = EXT4_I(inode)->i_flags &
1060 ~EXT4_EXT_MIGRATE;
1061 }
0e855ac8 1062 }
d2a17637
MC
1063
1064 if (flag) {
1065 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
1066 /*
1067 * Update reserved blocks/metadata blocks
1068 * after successful block allocation
1069 * which were deferred till now
1070 */
1071 if ((retval > 0) && buffer_delay(bh))
1072 ext4_da_release_space(inode, retval, 0);
1073 }
1074
4df3d265 1075 up_write((&EXT4_I(inode)->i_data_sem));
0e855ac8
AK
1076 return retval;
1077}
1078
617ba13b 1079static int ext4_get_block(struct inode *inode, sector_t iblock,
ac27a0ec
DK
1080 struct buffer_head *bh_result, int create)
1081{
3e4fdaf8 1082 handle_t *handle = ext4_journal_current_handle();
7fb5409d 1083 int ret = 0, started = 0;
ac27a0ec
DK
1084 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
1085
7fb5409d
JK
1086 if (create && !handle) {
1087 /* Direct IO write... */
1088 if (max_blocks > DIO_MAX_BLOCKS)
1089 max_blocks = DIO_MAX_BLOCKS;
1090 handle = ext4_journal_start(inode, DIO_CREDITS +
1091 2 * EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb));
1092 if (IS_ERR(handle)) {
ac27a0ec 1093 ret = PTR_ERR(handle);
7fb5409d 1094 goto out;
ac27a0ec 1095 }
7fb5409d 1096 started = 1;
ac27a0ec
DK
1097 }
1098
7fb5409d 1099 ret = ext4_get_blocks_wrap(handle, inode, iblock,
d2a17637 1100 max_blocks, bh_result, create, 0, 0);
7fb5409d
JK
1101 if (ret > 0) {
1102 bh_result->b_size = (ret << inode->i_blkbits);
1103 ret = 0;
ac27a0ec 1104 }
7fb5409d
JK
1105 if (started)
1106 ext4_journal_stop(handle);
1107out:
ac27a0ec
DK
1108 return ret;
1109}
1110
1111/*
1112 * `handle' can be NULL if create is zero
1113 */
617ba13b 1114struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
725d26d3 1115 ext4_lblk_t block, int create, int *errp)
ac27a0ec
DK
1116{
1117 struct buffer_head dummy;
1118 int fatal = 0, err;
1119
1120 J_ASSERT(handle != NULL || create == 0);
1121
1122 dummy.b_state = 0;
1123 dummy.b_blocknr = -1000;
1124 buffer_trace_init(&dummy.b_history);
a86c6181 1125 err = ext4_get_blocks_wrap(handle, inode, block, 1,
d2a17637 1126 &dummy, create, 1, 0);
ac27a0ec 1127 /*
617ba13b 1128 * ext4_get_blocks_handle() returns number of blocks
ac27a0ec
DK
1129 * mapped. 0 in case of a HOLE.
1130 */
1131 if (err > 0) {
1132 if (err > 1)
1133 WARN_ON(1);
1134 err = 0;
1135 }
1136 *errp = err;
1137 if (!err && buffer_mapped(&dummy)) {
1138 struct buffer_head *bh;
1139 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1140 if (!bh) {
1141 *errp = -EIO;
1142 goto err;
1143 }
1144 if (buffer_new(&dummy)) {
1145 J_ASSERT(create != 0);
ac39849d 1146 J_ASSERT(handle != NULL);
ac27a0ec
DK
1147
1148 /*
1149 * Now that we do not always journal data, we should
1150 * keep in mind whether this should always journal the
1151 * new buffer as metadata. For now, regular file
617ba13b 1152 * writes use ext4_get_block instead, so it's not a
ac27a0ec
DK
1153 * problem.
1154 */
1155 lock_buffer(bh);
1156 BUFFER_TRACE(bh, "call get_create_access");
617ba13b 1157 fatal = ext4_journal_get_create_access(handle, bh);
ac27a0ec
DK
1158 if (!fatal && !buffer_uptodate(bh)) {
1159 memset(bh->b_data,0,inode->i_sb->s_blocksize);
1160 set_buffer_uptodate(bh);
1161 }
1162 unlock_buffer(bh);
617ba13b
MC
1163 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
1164 err = ext4_journal_dirty_metadata(handle, bh);
ac27a0ec
DK
1165 if (!fatal)
1166 fatal = err;
1167 } else {
1168 BUFFER_TRACE(bh, "not a new buffer");
1169 }
1170 if (fatal) {
1171 *errp = fatal;
1172 brelse(bh);
1173 bh = NULL;
1174 }
1175 return bh;
1176 }
1177err:
1178 return NULL;
1179}
1180
617ba13b 1181struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
725d26d3 1182 ext4_lblk_t block, int create, int *err)
ac27a0ec
DK
1183{
1184 struct buffer_head * bh;
1185
617ba13b 1186 bh = ext4_getblk(handle, inode, block, create, err);
ac27a0ec
DK
1187 if (!bh)
1188 return bh;
1189 if (buffer_uptodate(bh))
1190 return bh;
1191 ll_rw_block(READ_META, 1, &bh);
1192 wait_on_buffer(bh);
1193 if (buffer_uptodate(bh))
1194 return bh;
1195 put_bh(bh);
1196 *err = -EIO;
1197 return NULL;
1198}
1199
1200static int walk_page_buffers( handle_t *handle,
1201 struct buffer_head *head,
1202 unsigned from,
1203 unsigned to,
1204 int *partial,
1205 int (*fn)( handle_t *handle,
1206 struct buffer_head *bh))
1207{
1208 struct buffer_head *bh;
1209 unsigned block_start, block_end;
1210 unsigned blocksize = head->b_size;
1211 int err, ret = 0;
1212 struct buffer_head *next;
1213
1214 for ( bh = head, block_start = 0;
1215 ret == 0 && (bh != head || !block_start);
1216 block_start = block_end, bh = next)
1217 {
1218 next = bh->b_this_page;
1219 block_end = block_start + blocksize;
1220 if (block_end <= from || block_start >= to) {
1221 if (partial && !buffer_uptodate(bh))
1222 *partial = 1;
1223 continue;
1224 }
1225 err = (*fn)(handle, bh);
1226 if (!ret)
1227 ret = err;
1228 }
1229 return ret;
1230}
1231
1232/*
1233 * To preserve ordering, it is essential that the hole instantiation and
1234 * the data write be encapsulated in a single transaction. We cannot
617ba13b 1235 * close off a transaction and start a new one between the ext4_get_block()
dab291af 1236 * and the commit_write(). So doing the jbd2_journal_start at the start of
ac27a0ec
DK
1237 * prepare_write() is the right place.
1238 *
617ba13b
MC
1239 * Also, this function can nest inside ext4_writepage() ->
1240 * block_write_full_page(). In that case, we *know* that ext4_writepage()
ac27a0ec
DK
1241 * has generated enough buffer credits to do the whole page. So we won't
1242 * block on the journal in that case, which is good, because the caller may
1243 * be PF_MEMALLOC.
1244 *
617ba13b 1245 * By accident, ext4 can be reentered when a transaction is open via
ac27a0ec
DK
1246 * quota file writes. If we were to commit the transaction while thus
1247 * reentered, there can be a deadlock - we would be holding a quota
1248 * lock, and the commit would never complete if another thread had a
1249 * transaction open and was blocking on the quota lock - a ranking
1250 * violation.
1251 *
dab291af 1252 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
ac27a0ec
DK
1253 * will _not_ run commit under these circumstances because handle->h_ref
1254 * is elevated. We'll still have enough credits for the tiny quotafile
1255 * write.
1256 */
1257static int do_journal_get_write_access(handle_t *handle,
1258 struct buffer_head *bh)
1259{
1260 if (!buffer_mapped(bh) || buffer_freed(bh))
1261 return 0;
617ba13b 1262 return ext4_journal_get_write_access(handle, bh);
ac27a0ec
DK
1263}
1264
bfc1af65
NP
1265static int ext4_write_begin(struct file *file, struct address_space *mapping,
1266 loff_t pos, unsigned len, unsigned flags,
1267 struct page **pagep, void **fsdata)
ac27a0ec 1268{
bfc1af65 1269 struct inode *inode = mapping->host;
7479d2b9 1270 int ret, needed_blocks = ext4_writepage_trans_blocks(inode);
ac27a0ec
DK
1271 handle_t *handle;
1272 int retries = 0;
bfc1af65
NP
1273 struct page *page;
1274 pgoff_t index;
1275 unsigned from, to;
1276
1277 index = pos >> PAGE_CACHE_SHIFT;
1278 from = pos & (PAGE_CACHE_SIZE - 1);
1279 to = from + len;
ac27a0ec
DK
1280
1281retry:
bfc1af65
NP
1282 handle = ext4_journal_start(inode, needed_blocks);
1283 if (IS_ERR(handle)) {
bfc1af65
NP
1284 ret = PTR_ERR(handle);
1285 goto out;
7479d2b9 1286 }
ac27a0ec 1287
cf108bca
JK
1288 page = __grab_cache_page(mapping, index);
1289 if (!page) {
1290 ext4_journal_stop(handle);
1291 ret = -ENOMEM;
1292 goto out;
1293 }
1294 *pagep = page;
1295
bfc1af65
NP
1296 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
1297 ext4_get_block);
1298
1299 if (!ret && ext4_should_journal_data(inode)) {
ac27a0ec
DK
1300 ret = walk_page_buffers(handle, page_buffers(page),
1301 from, to, NULL, do_journal_get_write_access);
1302 }
bfc1af65
NP
1303
1304 if (ret) {
bfc1af65 1305 unlock_page(page);
cf108bca 1306 ext4_journal_stop(handle);
bfc1af65
NP
1307 page_cache_release(page);
1308 }
1309
617ba13b 1310 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
ac27a0ec 1311 goto retry;
7479d2b9 1312out:
ac27a0ec
DK
1313 return ret;
1314}
1315
bfc1af65
NP
1316/* For write_end() in data=journal mode */
1317static int write_end_fn(handle_t *handle, struct buffer_head *bh)
ac27a0ec
DK
1318{
1319 if (!buffer_mapped(bh) || buffer_freed(bh))
1320 return 0;
1321 set_buffer_uptodate(bh);
617ba13b 1322 return ext4_journal_dirty_metadata(handle, bh);
ac27a0ec
DK
1323}
1324
1325/*
1326 * We need to pick up the new inode size which generic_commit_write gave us
1327 * `file' can be NULL - eg, when called from page_symlink().
1328 *
617ba13b 1329 * ext4 never places buffers on inode->i_mapping->private_list. metadata
ac27a0ec
DK
1330 * buffers are managed internally.
1331 */
bfc1af65
NP
1332static int ext4_ordered_write_end(struct file *file,
1333 struct address_space *mapping,
1334 loff_t pos, unsigned len, unsigned copied,
1335 struct page *page, void *fsdata)
ac27a0ec 1336{
617ba13b 1337 handle_t *handle = ext4_journal_current_handle();
cf108bca 1338 struct inode *inode = mapping->host;
bfc1af65 1339 unsigned from, to;
ac27a0ec
DK
1340 int ret = 0, ret2;
1341
bfc1af65
NP
1342 from = pos & (PAGE_CACHE_SIZE - 1);
1343 to = from + len;
1344
678aaf48 1345 ret = ext4_jbd2_file_inode(handle, inode);
ac27a0ec
DK
1346
1347 if (ret == 0) {
1348 /*
bfc1af65 1349 * generic_write_end() will run mark_inode_dirty() if i_size
ac27a0ec
DK
1350 * changes. So let's piggyback the i_disksize mark_inode_dirty
1351 * into that.
1352 */
1353 loff_t new_i_size;
1354
bfc1af65 1355 new_i_size = pos + copied;
617ba13b
MC
1356 if (new_i_size > EXT4_I(inode)->i_disksize)
1357 EXT4_I(inode)->i_disksize = new_i_size;
cf108bca 1358 ret2 = generic_write_end(file, mapping, pos, len, copied,
bfc1af65 1359 page, fsdata);
f8a87d89
RK
1360 copied = ret2;
1361 if (ret2 < 0)
1362 ret = ret2;
ac27a0ec 1363 }
617ba13b 1364 ret2 = ext4_journal_stop(handle);
ac27a0ec
DK
1365 if (!ret)
1366 ret = ret2;
bfc1af65
NP
1367
1368 return ret ? ret : copied;
ac27a0ec
DK
1369}
1370
bfc1af65
NP
1371static int ext4_writeback_write_end(struct file *file,
1372 struct address_space *mapping,
1373 loff_t pos, unsigned len, unsigned copied,
1374 struct page *page, void *fsdata)
ac27a0ec 1375{
617ba13b 1376 handle_t *handle = ext4_journal_current_handle();
cf108bca 1377 struct inode *inode = mapping->host;
ac27a0ec
DK
1378 int ret = 0, ret2;
1379 loff_t new_i_size;
1380
bfc1af65 1381 new_i_size = pos + copied;
617ba13b
MC
1382 if (new_i_size > EXT4_I(inode)->i_disksize)
1383 EXT4_I(inode)->i_disksize = new_i_size;
ac27a0ec 1384
cf108bca 1385 ret2 = generic_write_end(file, mapping, pos, len, copied,
bfc1af65 1386 page, fsdata);
f8a87d89
RK
1387 copied = ret2;
1388 if (ret2 < 0)
1389 ret = ret2;
ac27a0ec 1390
617ba13b 1391 ret2 = ext4_journal_stop(handle);
ac27a0ec
DK
1392 if (!ret)
1393 ret = ret2;
bfc1af65
NP
1394
1395 return ret ? ret : copied;
ac27a0ec
DK
1396}
1397
bfc1af65
NP
1398static int ext4_journalled_write_end(struct file *file,
1399 struct address_space *mapping,
1400 loff_t pos, unsigned len, unsigned copied,
1401 struct page *page, void *fsdata)
ac27a0ec 1402{
617ba13b 1403 handle_t *handle = ext4_journal_current_handle();
bfc1af65 1404 struct inode *inode = mapping->host;
ac27a0ec
DK
1405 int ret = 0, ret2;
1406 int partial = 0;
bfc1af65 1407 unsigned from, to;
ac27a0ec 1408
bfc1af65
NP
1409 from = pos & (PAGE_CACHE_SIZE - 1);
1410 to = from + len;
1411
1412 if (copied < len) {
1413 if (!PageUptodate(page))
1414 copied = 0;
1415 page_zero_new_buffers(page, from+copied, to);
1416 }
ac27a0ec
DK
1417
1418 ret = walk_page_buffers(handle, page_buffers(page), from,
bfc1af65 1419 to, &partial, write_end_fn);
ac27a0ec
DK
1420 if (!partial)
1421 SetPageUptodate(page);
bfc1af65
NP
1422 if (pos+copied > inode->i_size)
1423 i_size_write(inode, pos+copied);
617ba13b
MC
1424 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
1425 if (inode->i_size > EXT4_I(inode)->i_disksize) {
1426 EXT4_I(inode)->i_disksize = inode->i_size;
1427 ret2 = ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
1428 if (!ret)
1429 ret = ret2;
1430 }
bfc1af65 1431
cf108bca 1432 unlock_page(page);
617ba13b 1433 ret2 = ext4_journal_stop(handle);
ac27a0ec
DK
1434 if (!ret)
1435 ret = ret2;
bfc1af65
NP
1436 page_cache_release(page);
1437
1438 return ret ? ret : copied;
ac27a0ec 1439}
d2a17637
MC
1440/*
1441 * Calculate the number of metadata blocks need to reserve
1442 * to allocate @blocks for non extent file based file
1443 */
1444static int ext4_indirect_calc_metadata_amount(struct inode *inode, int blocks)
1445{
1446 int icap = EXT4_ADDR_PER_BLOCK(inode->i_sb);
1447 int ind_blks, dind_blks, tind_blks;
1448
1449 /* number of new indirect blocks needed */
1450 ind_blks = (blocks + icap - 1) / icap;
1451
1452 dind_blks = (ind_blks + icap - 1) / icap;
1453
1454 tind_blks = 1;
1455
1456 return ind_blks + dind_blks + tind_blks;
1457}
1458
1459/*
1460 * Calculate the number of metadata blocks need to reserve
1461 * to allocate given number of blocks
1462 */
1463static int ext4_calc_metadata_amount(struct inode *inode, int blocks)
1464{
1465 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
1466 return ext4_ext_calc_metadata_amount(inode, blocks);
1467
1468 return ext4_indirect_calc_metadata_amount(inode, blocks);
1469}
1470
1471static int ext4_da_reserve_space(struct inode *inode, int nrblocks)
1472{
1473 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1474 unsigned long md_needed, mdblocks, total = 0;
1475
1476 /*
1477 * recalculate the amount of metadata blocks to reserve
1478 * in order to allocate nrblocks
1479 * worse case is one extent per block
1480 */
1481 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1482 total = EXT4_I(inode)->i_reserved_data_blocks + nrblocks;
1483 mdblocks = ext4_calc_metadata_amount(inode, total);
1484 BUG_ON(mdblocks < EXT4_I(inode)->i_reserved_meta_blocks);
1485
1486 md_needed = mdblocks - EXT4_I(inode)->i_reserved_meta_blocks;
1487 total = md_needed + nrblocks;
1488
1489 if (ext4_has_free_blocks(sbi, total) < total) {
1490 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1491 return -ENOSPC;
1492 }
1493
1494 /* reduce fs free blocks counter */
1495 percpu_counter_sub(&sbi->s_freeblocks_counter, total);
1496
1497 EXT4_I(inode)->i_reserved_data_blocks += nrblocks;
1498 EXT4_I(inode)->i_reserved_meta_blocks = mdblocks;
1499
1500 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1501 return 0; /* success */
1502}
1503
1504void ext4_da_release_space(struct inode *inode, int used, int to_free)
1505{
1506 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1507 int total, mdb, mdb_free, release;
1508
1509 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1510 /* recalculate the number of metablocks still need to be reserved */
1511 total = EXT4_I(inode)->i_reserved_data_blocks - used - to_free;
1512 mdb = ext4_calc_metadata_amount(inode, total);
1513
1514 /* figure out how many metablocks to release */
1515 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1516 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1517
1518 /* Account for allocated meta_blocks */
1519 mdb_free -= EXT4_I(inode)->i_allocated_meta_blocks;
1520
1521 release = to_free + mdb_free;
1522
1523 /* update fs free blocks counter for truncate case */
1524 percpu_counter_add(&sbi->s_freeblocks_counter, release);
1525
1526 /* update per-inode reservations */
1527 BUG_ON(used + to_free > EXT4_I(inode)->i_reserved_data_blocks);
1528 EXT4_I(inode)->i_reserved_data_blocks -= (used + to_free);
1529
1530 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1531 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
1532 EXT4_I(inode)->i_allocated_meta_blocks = 0;
1533 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1534}
1535
1536static void ext4_da_page_release_reservation(struct page *page,
1537 unsigned long offset)
1538{
1539 int to_release = 0;
1540 struct buffer_head *head, *bh;
1541 unsigned int curr_off = 0;
1542
1543 head = page_buffers(page);
1544 bh = head;
1545 do {
1546 unsigned int next_off = curr_off + bh->b_size;
1547
1548 if ((offset <= curr_off) && (buffer_delay(bh))) {
1549 to_release++;
1550 clear_buffer_delay(bh);
1551 }
1552 curr_off = next_off;
1553 } while ((bh = bh->b_this_page) != head);
1554 ext4_da_release_space(page->mapping->host, 0, to_release);
1555}
ac27a0ec 1556
64769240
AT
1557/*
1558 * Delayed allocation stuff
1559 */
1560
1561struct mpage_da_data {
1562 struct inode *inode;
1563 struct buffer_head lbh; /* extent of blocks */
1564 unsigned long first_page, next_page; /* extent of pages */
1565 get_block_t *get_block;
1566 struct writeback_control *wbc;
1567};
1568
1569/*
1570 * mpage_da_submit_io - walks through extent of pages and try to write
1571 * them with __mpage_writepage()
1572 *
1573 * @mpd->inode: inode
1574 * @mpd->first_page: first page of the extent
1575 * @mpd->next_page: page after the last page of the extent
1576 * @mpd->get_block: the filesystem's block mapper function
1577 *
1578 * By the time mpage_da_submit_io() is called we expect all blocks
1579 * to be allocated. this may be wrong if allocation failed.
1580 *
1581 * As pages are already locked by write_cache_pages(), we can't use it
1582 */
1583static int mpage_da_submit_io(struct mpage_da_data *mpd)
1584{
1585 struct address_space *mapping = mpd->inode->i_mapping;
1586 struct mpage_data mpd_pp = {
1587 .bio = NULL,
1588 .last_block_in_bio = 0,
1589 .get_block = mpd->get_block,
1590 .use_writepage = 1,
1591 };
1592 int ret = 0, err, nr_pages, i;
1593 unsigned long index, end;
1594 struct pagevec pvec;
1595
1596 BUG_ON(mpd->next_page <= mpd->first_page);
1597
1598 pagevec_init(&pvec, 0);
1599 index = mpd->first_page;
1600 end = mpd->next_page - 1;
1601
1602 while (index <= end) {
1603 /* XXX: optimize tail */
1604 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1605 if (nr_pages == 0)
1606 break;
1607 for (i = 0; i < nr_pages; i++) {
1608 struct page *page = pvec.pages[i];
1609
1610 index = page->index;
1611 if (index > end)
1612 break;
1613 index++;
1614
1615 err = __mpage_writepage(page, mpd->wbc, &mpd_pp);
1616
1617 /*
1618 * In error case, we have to continue because
1619 * remaining pages are still locked
1620 * XXX: unlock and re-dirty them?
1621 */
1622 if (ret == 0)
1623 ret = err;
1624 }
1625 pagevec_release(&pvec);
1626 }
1627 if (mpd_pp.bio)
1628 mpage_bio_submit(WRITE, mpd_pp.bio);
1629
1630 return ret;
1631}
1632
1633/*
1634 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
1635 *
1636 * @mpd->inode - inode to walk through
1637 * @exbh->b_blocknr - first block on a disk
1638 * @exbh->b_size - amount of space in bytes
1639 * @logical - first logical block to start assignment with
1640 *
1641 * the function goes through all passed space and put actual disk
1642 * block numbers into buffer heads, dropping BH_Delay
1643 */
1644static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
1645 struct buffer_head *exbh)
1646{
1647 struct inode *inode = mpd->inode;
1648 struct address_space *mapping = inode->i_mapping;
1649 int blocks = exbh->b_size >> inode->i_blkbits;
1650 sector_t pblock = exbh->b_blocknr, cur_logical;
1651 struct buffer_head *head, *bh;
1652 unsigned long index, end;
1653 struct pagevec pvec;
1654 int nr_pages, i;
1655
1656 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1657 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
1658 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1659
1660 pagevec_init(&pvec, 0);
1661
1662 while (index <= end) {
1663 /* XXX: optimize tail */
1664 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1665 if (nr_pages == 0)
1666 break;
1667 for (i = 0; i < nr_pages; i++) {
1668 struct page *page = pvec.pages[i];
1669
1670 index = page->index;
1671 if (index > end)
1672 break;
1673 index++;
1674
1675 BUG_ON(!PageLocked(page));
1676 BUG_ON(PageWriteback(page));
1677 BUG_ON(!page_has_buffers(page));
1678
1679 bh = page_buffers(page);
1680 head = bh;
1681
1682 /* skip blocks out of the range */
1683 do {
1684 if (cur_logical >= logical)
1685 break;
1686 cur_logical++;
1687 } while ((bh = bh->b_this_page) != head);
1688
1689 do {
1690 if (cur_logical >= logical + blocks)
1691 break;
64769240
AT
1692 if (buffer_delay(bh)) {
1693 bh->b_blocknr = pblock;
1694 clear_buffer_delay(bh);
61628a3f 1695 } else if (buffer_mapped(bh))
64769240 1696 BUG_ON(bh->b_blocknr != pblock);
64769240
AT
1697
1698 cur_logical++;
1699 pblock++;
1700 } while ((bh = bh->b_this_page) != head);
1701 }
1702 pagevec_release(&pvec);
1703 }
1704}
1705
1706
1707/*
1708 * __unmap_underlying_blocks - just a helper function to unmap
1709 * set of blocks described by @bh
1710 */
1711static inline void __unmap_underlying_blocks(struct inode *inode,
1712 struct buffer_head *bh)
1713{
1714 struct block_device *bdev = inode->i_sb->s_bdev;
1715 int blocks, i;
1716
1717 blocks = bh->b_size >> inode->i_blkbits;
1718 for (i = 0; i < blocks; i++)
1719 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
1720}
1721
1722/*
1723 * mpage_da_map_blocks - go through given space
1724 *
1725 * @mpd->lbh - bh describing space
1726 * @mpd->get_block - the filesystem's block mapper function
1727 *
1728 * The function skips space we know is already mapped to disk blocks.
1729 *
1730 * The function ignores errors ->get_block() returns, thus real
1731 * error handling is postponed to __mpage_writepage()
1732 */
1733static void mpage_da_map_blocks(struct mpage_da_data *mpd)
1734{
1735 struct buffer_head *lbh = &mpd->lbh;
1736 int err = 0, remain = lbh->b_size;
1737 sector_t next = lbh->b_blocknr;
1738 struct buffer_head new;
1739
1740 /*
1741 * We consider only non-mapped and non-allocated blocks
1742 */
1743 if (buffer_mapped(lbh) && !buffer_delay(lbh))
1744 return;
1745
1746 while (remain) {
1747 new.b_state = lbh->b_state;
1748 new.b_blocknr = 0;
1749 new.b_size = remain;
1750 err = mpd->get_block(mpd->inode, next, &new, 1);
1751 if (err) {
1752 /*
1753 * Rather than implement own error handling
1754 * here, we just leave remaining blocks
1755 * unallocated and try again with ->writepage()
1756 */
1757 break;
1758 }
1759 BUG_ON(new.b_size == 0);
1760
1761 if (buffer_new(&new))
1762 __unmap_underlying_blocks(mpd->inode, &new);
1763
1764 /*
1765 * If blocks are delayed marked, we need to
1766 * put actual blocknr and drop delayed bit
1767 */
1768 if (buffer_delay(lbh))
1769 mpage_put_bnr_to_bhs(mpd, next, &new);
1770
61628a3f
MC
1771 /* go for the remaining blocks */
1772 next += new.b_size >> mpd->inode->i_blkbits;
1773 remain -= new.b_size;
1774 }
64769240
AT
1775}
1776
1777#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | (1 << BH_Delay))
1778
1779/*
1780 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
1781 *
1782 * @mpd->lbh - extent of blocks
1783 * @logical - logical number of the block in the file
1784 * @bh - bh of the block (used to access block's state)
1785 *
1786 * the function is used to collect contig. blocks in same state
1787 */
1788static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
1789 sector_t logical, struct buffer_head *bh)
1790{
1791 struct buffer_head *lbh = &mpd->lbh;
1792 sector_t next;
1793
1794 next = lbh->b_blocknr + (lbh->b_size >> mpd->inode->i_blkbits);
1795
1796 /*
1797 * First block in the extent
1798 */
1799 if (lbh->b_size == 0) {
1800 lbh->b_blocknr = logical;
1801 lbh->b_size = bh->b_size;
1802 lbh->b_state = bh->b_state & BH_FLAGS;
1803 return;
1804 }
1805
1806 /*
1807 * Can we merge the block to our big extent?
1808 */
1809 if (logical == next && (bh->b_state & BH_FLAGS) == lbh->b_state) {
1810 lbh->b_size += bh->b_size;
1811 return;
1812 }
1813
1814 /*
1815 * We couldn't merge the block to our extent, so we
1816 * need to flush current extent and start new one
1817 */
1818 mpage_da_map_blocks(mpd);
1819
1820 /*
1821 * Now start a new extent
1822 */
1823 lbh->b_size = bh->b_size;
1824 lbh->b_state = bh->b_state & BH_FLAGS;
1825 lbh->b_blocknr = logical;
1826}
1827
1828/*
1829 * __mpage_da_writepage - finds extent of pages and blocks
1830 *
1831 * @page: page to consider
1832 * @wbc: not used, we just follow rules
1833 * @data: context
1834 *
1835 * The function finds extents of pages and scan them for all blocks.
1836 */
1837static int __mpage_da_writepage(struct page *page,
1838 struct writeback_control *wbc, void *data)
1839{
1840 struct mpage_da_data *mpd = data;
1841 struct inode *inode = mpd->inode;
1842 struct buffer_head *bh, *head, fake;
1843 sector_t logical;
1844
1845 /*
1846 * Can we merge this page to current extent?
1847 */
1848 if (mpd->next_page != page->index) {
1849 /*
1850 * Nope, we can't. So, we map non-allocated blocks
1851 * and start IO on them using __mpage_writepage()
1852 */
1853 if (mpd->next_page != mpd->first_page) {
1854 mpage_da_map_blocks(mpd);
1855 mpage_da_submit_io(mpd);
1856 }
1857
1858 /*
1859 * Start next extent of pages ...
1860 */
1861 mpd->first_page = page->index;
1862
1863 /*
1864 * ... and blocks
1865 */
1866 mpd->lbh.b_size = 0;
1867 mpd->lbh.b_state = 0;
1868 mpd->lbh.b_blocknr = 0;
1869 }
1870
1871 mpd->next_page = page->index + 1;
1872 logical = (sector_t) page->index <<
1873 (PAGE_CACHE_SHIFT - inode->i_blkbits);
1874
1875 if (!page_has_buffers(page)) {
1876 /*
1877 * There is no attached buffer heads yet (mmap?)
1878 * we treat the page asfull of dirty blocks
1879 */
1880 bh = &fake;
1881 bh->b_size = PAGE_CACHE_SIZE;
1882 bh->b_state = 0;
1883 set_buffer_dirty(bh);
1884 set_buffer_uptodate(bh);
1885 mpage_add_bh_to_extent(mpd, logical, bh);
1886 } else {
1887 /*
1888 * Page with regular buffer heads, just add all dirty ones
1889 */
1890 head = page_buffers(page);
1891 bh = head;
1892 do {
1893 BUG_ON(buffer_locked(bh));
1894 if (buffer_dirty(bh))
1895 mpage_add_bh_to_extent(mpd, logical, bh);
1896 logical++;
1897 } while ((bh = bh->b_this_page) != head);
1898 }
1899
1900 return 0;
1901}
1902
1903/*
1904 * mpage_da_writepages - walk the list of dirty pages of the given
1905 * address space, allocates non-allocated blocks, maps newly-allocated
1906 * blocks to existing bhs and issue IO them
1907 *
1908 * @mapping: address space structure to write
1909 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
1910 * @get_block: the filesystem's block mapper function.
1911 *
1912 * This is a library function, which implements the writepages()
1913 * address_space_operation.
1914 *
1915 * In order to avoid duplication of logic that deals with partial pages,
1916 * multiple bio per page, etc, we find non-allocated blocks, allocate
1917 * them with minimal calls to ->get_block() and re-use __mpage_writepage()
1918 *
1919 * It's important that we call __mpage_writepage() only once for each
1920 * involved page, otherwise we'd have to implement more complicated logic
1921 * to deal with pages w/o PG_lock or w/ PG_writeback and so on.
1922 *
1923 * See comments to mpage_writepages()
1924 */
1925static int mpage_da_writepages(struct address_space *mapping,
1926 struct writeback_control *wbc,
1927 get_block_t get_block)
1928{
1929 struct mpage_da_data mpd;
1930 int ret;
1931
1932 if (!get_block)
1933 return generic_writepages(mapping, wbc);
1934
1935 mpd.wbc = wbc;
1936 mpd.inode = mapping->host;
1937 mpd.lbh.b_size = 0;
1938 mpd.lbh.b_state = 0;
1939 mpd.lbh.b_blocknr = 0;
1940 mpd.first_page = 0;
1941 mpd.next_page = 0;
1942 mpd.get_block = get_block;
1943
1944 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage, &mpd);
1945
1946 /*
1947 * Handle last extent of pages
1948 */
1949 if (mpd.next_page != mpd.first_page) {
1950 mpage_da_map_blocks(&mpd);
1951 mpage_da_submit_io(&mpd);
1952 }
1953
1954 return ret;
1955}
1956
1957/*
1958 * this is a special callback for ->write_begin() only
1959 * it's intention is to return mapped block or reserve space
1960 */
1961static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1962 struct buffer_head *bh_result, int create)
1963{
1964 int ret = 0;
1965
1966 BUG_ON(create == 0);
1967 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
1968
1969 /*
1970 * first, we need to know whether the block is allocated already
1971 * preallocated blocks are unmapped but should treated
1972 * the same as allocated blocks.
1973 */
d2a17637
MC
1974 ret = ext4_get_blocks_wrap(NULL, inode, iblock, 1, bh_result, 0, 0, 0);
1975 if ((ret == 0) && !buffer_delay(bh_result)) {
1976 /* the block isn't (pre)allocated yet, let's reserve space */
64769240
AT
1977 /*
1978 * XXX: __block_prepare_write() unmaps passed block,
1979 * is it OK?
1980 */
d2a17637
MC
1981 ret = ext4_da_reserve_space(inode, 1);
1982 if (ret)
1983 /* not enough space to reserve */
1984 return ret;
1985
64769240
AT
1986 map_bh(bh_result, inode->i_sb, 0);
1987 set_buffer_new(bh_result);
1988 set_buffer_delay(bh_result);
1989 } else if (ret > 0) {
1990 bh_result->b_size = (ret << inode->i_blkbits);
1991 ret = 0;
1992 }
1993
1994 return ret;
1995}
d2a17637 1996#define EXT4_DELALLOC_RSVED 1
64769240
AT
1997static int ext4_da_get_block_write(struct inode *inode, sector_t iblock,
1998 struct buffer_head *bh_result, int create)
1999{
61628a3f 2000 int ret;
64769240
AT
2001 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2002 loff_t disksize = EXT4_I(inode)->i_disksize;
2003 handle_t *handle = NULL;
2004
61628a3f
MC
2005 handle = ext4_journal_current_handle();
2006 BUG_ON(handle == NULL);
2007 BUG_ON(create == 0);
64769240
AT
2008
2009 ret = ext4_get_blocks_wrap(handle, inode, iblock, max_blocks,
d2a17637 2010 bh_result, create, 0, EXT4_DELALLOC_RSVED);
64769240
AT
2011 if (ret > 0) {
2012 bh_result->b_size = (ret << inode->i_blkbits);
2013
2014 /*
2015 * Update on-disk size along with block allocation
2016 * we don't use 'extend_disksize' as size may change
2017 * within already allocated block -bzzz
2018 */
2019 disksize = ((loff_t) iblock + ret) << inode->i_blkbits;
2020 if (disksize > i_size_read(inode))
2021 disksize = i_size_read(inode);
2022 if (disksize > EXT4_I(inode)->i_disksize) {
2023 /*
2024 * XXX: replace with spinlock if seen contended -bzzz
2025 */
2026 down_write(&EXT4_I(inode)->i_data_sem);
2027 if (disksize > EXT4_I(inode)->i_disksize)
2028 EXT4_I(inode)->i_disksize = disksize;
2029 up_write(&EXT4_I(inode)->i_data_sem);
2030
2031 if (EXT4_I(inode)->i_disksize == disksize) {
61628a3f
MC
2032 ret = ext4_mark_inode_dirty(handle, inode);
2033 return ret;
64769240
AT
2034 }
2035 }
64769240
AT
2036 ret = 0;
2037 }
64769240
AT
2038 return ret;
2039}
61628a3f
MC
2040
2041static int ext4_bh_unmapped_or_delay(handle_t *handle, struct buffer_head *bh)
2042{
2043 return !buffer_mapped(bh) || buffer_delay(bh);
2044}
2045
64769240 2046/* FIXME!! only support data=writeback mode */
61628a3f
MC
2047/*
2048 * get called vi ext4_da_writepages after taking page lock
2049 * We may end up doing block allocation here in case
2050 * mpage_da_map_blocks failed to allocate blocks.
2051 */
64769240
AT
2052static int ext4_da_writepage(struct page *page,
2053 struct writeback_control *wbc)
2054{
64769240 2055 int ret = 0;
61628a3f
MC
2056 loff_t size;
2057 unsigned long len;
2058 handle_t *handle = NULL;
2059 struct buffer_head *page_bufs;
2060 struct inode *inode = page->mapping->host;
2061
2062 handle = ext4_journal_current_handle();
2063 if (!handle) {
2064 /*
2065 * This can happen when we aren't called via
2066 * ext4_da_writepages() but directly (shrink_page_list).
2067 * We cannot easily start a transaction here so we just skip
2068 * writing the page in case we would have to do so.
2069 */
2070 size = i_size_read(inode);
64769240 2071
61628a3f
MC
2072 page_bufs = page_buffers(page);
2073 if (page->index == size >> PAGE_CACHE_SHIFT)
2074 len = size & ~PAGE_CACHE_MASK;
2075 else
2076 len = PAGE_CACHE_SIZE;
64769240 2077
61628a3f
MC
2078 if (walk_page_buffers(NULL, page_bufs, 0,
2079 len, NULL, ext4_bh_unmapped_or_delay)) {
2080 /*
2081 * We can't do block allocation under
2082 * page lock without a handle . So redirty
2083 * the page and return
2084 */
2085 BUG_ON(wbc->sync_mode != WB_SYNC_NONE);
2086 redirty_page_for_writepage(wbc, page);
2087 unlock_page(page);
2088 return 0;
2089 }
64769240
AT
2090 }
2091
2092 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
61628a3f 2093 ret = nobh_writepage(page, ext4_da_get_block_write, wbc);
64769240 2094 else
61628a3f 2095 ret = block_write_full_page(page, ext4_da_get_block_write, wbc);
64769240 2096
64769240
AT
2097 return ret;
2098}
2099
61628a3f
MC
2100
2101/*
2102 * For now just follow the DIO way to estimate the max credits
2103 * needed to write out EXT4_MAX_WRITEBACK_PAGES.
2104 * todo: need to calculate the max credits need for
2105 * extent based files, currently the DIO credits is based on
2106 * indirect-blocks mapping way.
2107 *
2108 * Probably should have a generic way to calculate credits
2109 * for DIO, writepages, and truncate
2110 */
2111#define EXT4_MAX_WRITEBACK_PAGES DIO_MAX_BLOCKS
2112#define EXT4_MAX_WRITEBACK_CREDITS DIO_CREDITS
2113
64769240
AT
2114static int ext4_da_writepages(struct address_space *mapping,
2115 struct writeback_control *wbc)
2116{
61628a3f
MC
2117 struct inode *inode = mapping->host;
2118 handle_t *handle = NULL;
2119 int needed_blocks;
2120 int ret = 0;
2121 long to_write;
2122 loff_t range_start = 0;
2123
2124 /*
2125 * No pages to write? This is mainly a kludge to avoid starting
2126 * a transaction for special inodes like journal inode on last iput()
2127 * because that could violate lock ordering on umount
2128 */
2129 if (!mapping->nrpages)
2130 return 0;
2131
2132 /*
2133 * Estimate the worse case needed credits to write out
2134 * EXT4_MAX_BUF_BLOCKS pages
2135 */
2136 needed_blocks = EXT4_MAX_WRITEBACK_CREDITS;
2137
2138 to_write = wbc->nr_to_write;
2139 if (!wbc->range_cyclic) {
2140 /*
2141 * If range_cyclic is not set force range_cont
2142 * and save the old writeback_index
2143 */
2144 wbc->range_cont = 1;
2145 range_start = wbc->range_start;
2146 }
2147
2148 while (!ret && to_write) {
2149 /* start a new transaction*/
2150 handle = ext4_journal_start(inode, needed_blocks);
2151 if (IS_ERR(handle)) {
2152 ret = PTR_ERR(handle);
2153 goto out_writepages;
2154 }
2155 /*
2156 * set the max dirty pages could be write at a time
2157 * to fit into the reserved transaction credits
2158 */
2159 if (wbc->nr_to_write > EXT4_MAX_WRITEBACK_PAGES)
2160 wbc->nr_to_write = EXT4_MAX_WRITEBACK_PAGES;
2161
2162 to_write -= wbc->nr_to_write;
2163 ret = mpage_da_writepages(mapping, wbc,
2164 ext4_da_get_block_write);
2165 ext4_journal_stop(handle);
2166 if (wbc->nr_to_write) {
2167 /*
2168 * There is no more writeout needed
2169 * or we requested for a noblocking writeout
2170 * and we found the device congested
2171 */
2172 to_write += wbc->nr_to_write;
2173 break;
2174 }
2175 wbc->nr_to_write = to_write;
2176 }
2177
2178out_writepages:
2179 wbc->nr_to_write = to_write;
2180 if (range_start)
2181 wbc->range_start = range_start;
2182 return ret;
64769240
AT
2183}
2184
2185static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
2186 loff_t pos, unsigned len, unsigned flags,
2187 struct page **pagep, void **fsdata)
2188{
d2a17637 2189 int ret, retries = 0;
64769240
AT
2190 struct page *page;
2191 pgoff_t index;
2192 unsigned from, to;
2193 struct inode *inode = mapping->host;
2194 handle_t *handle;
2195
2196 index = pos >> PAGE_CACHE_SHIFT;
2197 from = pos & (PAGE_CACHE_SIZE - 1);
2198 to = from + len;
2199
d2a17637 2200retry:
64769240
AT
2201 /*
2202 * With delayed allocation, we don't log the i_disksize update
2203 * if there is delayed block allocation. But we still need
2204 * to journalling the i_disksize update if writes to the end
2205 * of file which has an already mapped buffer.
2206 */
2207 handle = ext4_journal_start(inode, 1);
2208 if (IS_ERR(handle)) {
2209 ret = PTR_ERR(handle);
2210 goto out;
2211 }
2212
2213 page = __grab_cache_page(mapping, index);
2214 if (!page)
2215 return -ENOMEM;
2216 *pagep = page;
2217
2218 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
2219 ext4_da_get_block_prep);
2220 if (ret < 0) {
2221 unlock_page(page);
2222 ext4_journal_stop(handle);
2223 page_cache_release(page);
2224 }
2225
d2a17637
MC
2226 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
2227 goto retry;
64769240
AT
2228out:
2229 return ret;
2230}
2231
64769240
AT
2232static int ext4_da_write_end(struct file *file,
2233 struct address_space *mapping,
2234 loff_t pos, unsigned len, unsigned copied,
2235 struct page *page, void *fsdata)
2236{
2237 struct inode *inode = mapping->host;
2238 int ret = 0, ret2;
2239 handle_t *handle = ext4_journal_current_handle();
2240 loff_t new_i_size;
2241
2242 /*
2243 * generic_write_end() will run mark_inode_dirty() if i_size
2244 * changes. So let's piggyback the i_disksize mark_inode_dirty
2245 * into that.
2246 */
2247
2248 new_i_size = pos + copied;
2249 if (new_i_size > EXT4_I(inode)->i_disksize)
2250 if (!walk_page_buffers(NULL, page_buffers(page),
2251 0, len, NULL, ext4_bh_unmapped_or_delay)){
2252 /*
2253 * Updating i_disksize when extending file without
2254 * needing block allocation
2255 */
2256 if (ext4_should_order_data(inode))
2257 ret = ext4_jbd2_file_inode(handle, inode);
2258
2259 EXT4_I(inode)->i_disksize = new_i_size;
2260 }
2261 ret2 = generic_write_end(file, mapping, pos, len, copied,
2262 page, fsdata);
2263 copied = ret2;
2264 if (ret2 < 0)
2265 ret = ret2;
2266 ret2 = ext4_journal_stop(handle);
2267 if (!ret)
2268 ret = ret2;
2269
2270 return ret ? ret : copied;
2271}
2272
2273static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
2274{
64769240
AT
2275 /*
2276 * Drop reserved blocks
2277 */
2278 BUG_ON(!PageLocked(page));
2279 if (!page_has_buffers(page))
2280 goto out;
2281
d2a17637 2282 ext4_da_page_release_reservation(page, offset);
64769240
AT
2283
2284out:
2285 ext4_invalidatepage(page, offset);
2286
2287 return;
2288}
2289
2290
ac27a0ec
DK
2291/*
2292 * bmap() is special. It gets used by applications such as lilo and by
2293 * the swapper to find the on-disk block of a specific piece of data.
2294 *
2295 * Naturally, this is dangerous if the block concerned is still in the
617ba13b 2296 * journal. If somebody makes a swapfile on an ext4 data-journaling
ac27a0ec
DK
2297 * filesystem and enables swap, then they may get a nasty shock when the
2298 * data getting swapped to that swapfile suddenly gets overwritten by
2299 * the original zero's written out previously to the journal and
2300 * awaiting writeback in the kernel's buffer cache.
2301 *
2302 * So, if we see any bmap calls here on a modified, data-journaled file,
2303 * take extra steps to flush any blocks which might be in the cache.
2304 */
617ba13b 2305static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
ac27a0ec
DK
2306{
2307 struct inode *inode = mapping->host;
2308 journal_t *journal;
2309 int err;
2310
64769240
AT
2311 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2312 test_opt(inode->i_sb, DELALLOC)) {
2313 /*
2314 * With delalloc we want to sync the file
2315 * so that we can make sure we allocate
2316 * blocks for file
2317 */
2318 filemap_write_and_wait(mapping);
2319 }
2320
617ba13b 2321 if (EXT4_I(inode)->i_state & EXT4_STATE_JDATA) {
ac27a0ec
DK
2322 /*
2323 * This is a REALLY heavyweight approach, but the use of
2324 * bmap on dirty files is expected to be extremely rare:
2325 * only if we run lilo or swapon on a freshly made file
2326 * do we expect this to happen.
2327 *
2328 * (bmap requires CAP_SYS_RAWIO so this does not
2329 * represent an unprivileged user DOS attack --- we'd be
2330 * in trouble if mortal users could trigger this path at
2331 * will.)
2332 *
617ba13b 2333 * NB. EXT4_STATE_JDATA is not set on files other than
ac27a0ec
DK
2334 * regular files. If somebody wants to bmap a directory
2335 * or symlink and gets confused because the buffer
2336 * hasn't yet been flushed to disk, they deserve
2337 * everything they get.
2338 */
2339
617ba13b
MC
2340 EXT4_I(inode)->i_state &= ~EXT4_STATE_JDATA;
2341 journal = EXT4_JOURNAL(inode);
dab291af
MC
2342 jbd2_journal_lock_updates(journal);
2343 err = jbd2_journal_flush(journal);
2344 jbd2_journal_unlock_updates(journal);
ac27a0ec
DK
2345
2346 if (err)
2347 return 0;
2348 }
2349
617ba13b 2350 return generic_block_bmap(mapping,block,ext4_get_block);
ac27a0ec
DK
2351}
2352
2353static int bget_one(handle_t *handle, struct buffer_head *bh)
2354{
2355 get_bh(bh);
2356 return 0;
2357}
2358
2359static int bput_one(handle_t *handle, struct buffer_head *bh)
2360{
2361 put_bh(bh);
2362 return 0;
2363}
2364
ac27a0ec 2365/*
678aaf48
JK
2366 * Note that we don't need to start a transaction unless we're journaling data
2367 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2368 * need to file the inode to the transaction's list in ordered mode because if
2369 * we are writing back data added by write(), the inode is already there and if
2370 * we are writing back data modified via mmap(), noone guarantees in which
2371 * transaction the data will hit the disk. In case we are journaling data, we
2372 * cannot start transaction directly because transaction start ranks above page
2373 * lock so we have to do some magic.
ac27a0ec 2374 *
678aaf48 2375 * In all journaling modes block_write_full_page() will start the I/O.
ac27a0ec
DK
2376 *
2377 * Problem:
2378 *
617ba13b
MC
2379 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2380 * ext4_writepage()
ac27a0ec
DK
2381 *
2382 * Similar for:
2383 *
617ba13b 2384 * ext4_file_write() -> generic_file_write() -> __alloc_pages() -> ...
ac27a0ec 2385 *
617ba13b 2386 * Same applies to ext4_get_block(). We will deadlock on various things like
0e855ac8 2387 * lock_journal and i_data_sem
ac27a0ec
DK
2388 *
2389 * Setting PF_MEMALLOC here doesn't work - too many internal memory
2390 * allocations fail.
2391 *
2392 * 16May01: If we're reentered then journal_current_handle() will be
2393 * non-zero. We simply *return*.
2394 *
2395 * 1 July 2001: @@@ FIXME:
2396 * In journalled data mode, a data buffer may be metadata against the
2397 * current transaction. But the same file is part of a shared mapping
2398 * and someone does a writepage() on it.
2399 *
2400 * We will move the buffer onto the async_data list, but *after* it has
2401 * been dirtied. So there's a small window where we have dirty data on
2402 * BJ_Metadata.
2403 *
2404 * Note that this only applies to the last partial page in the file. The
2405 * bit which block_write_full_page() uses prepare/commit for. (That's
2406 * broken code anyway: it's wrong for msync()).
2407 *
2408 * It's a rare case: affects the final partial page, for journalled data
2409 * where the file is subject to bith write() and writepage() in the same
2410 * transction. To fix it we'll need a custom block_write_full_page().
2411 * We'll probably need that anyway for journalling writepage() output.
2412 *
2413 * We don't honour synchronous mounts for writepage(). That would be
2414 * disastrous. Any write() or metadata operation will sync the fs for
2415 * us.
2416 *
ac27a0ec 2417 */
678aaf48 2418static int __ext4_normal_writepage(struct page *page,
cf108bca
JK
2419 struct writeback_control *wbc)
2420{
2421 struct inode *inode = page->mapping->host;
2422
2423 if (test_opt(inode->i_sb, NOBH))
2424 return nobh_writepage(page, ext4_get_block, wbc);
2425 else
2426 return block_write_full_page(page, ext4_get_block, wbc);
2427}
2428
2429
678aaf48 2430static int ext4_normal_writepage(struct page *page,
ac27a0ec
DK
2431 struct writeback_control *wbc)
2432{
2433 struct inode *inode = page->mapping->host;
cf108bca
JK
2434 loff_t size = i_size_read(inode);
2435 loff_t len;
2436
2437 J_ASSERT(PageLocked(page));
2438 J_ASSERT(page_has_buffers(page));
2439 if (page->index == size >> PAGE_CACHE_SHIFT)
2440 len = size & ~PAGE_CACHE_MASK;
2441 else
2442 len = PAGE_CACHE_SIZE;
2443 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2444 ext4_bh_unmapped_or_delay));
2445
2446 if (!ext4_journal_current_handle())
678aaf48 2447 return __ext4_normal_writepage(page, wbc);
cf108bca
JK
2448
2449 redirty_page_for_writepage(wbc, page);
2450 unlock_page(page);
2451 return 0;
2452}
2453
2454static int __ext4_journalled_writepage(struct page *page,
2455 struct writeback_control *wbc)
2456{
2457 struct address_space *mapping = page->mapping;
2458 struct inode *inode = mapping->host;
2459 struct buffer_head *page_bufs;
ac27a0ec
DK
2460 handle_t *handle = NULL;
2461 int ret = 0;
2462 int err;
2463
cf108bca
JK
2464 ret = block_prepare_write(page, 0, PAGE_CACHE_SIZE, ext4_get_block);
2465 if (ret != 0)
2466 goto out_unlock;
2467
2468 page_bufs = page_buffers(page);
2469 walk_page_buffers(handle, page_bufs, 0, PAGE_CACHE_SIZE, NULL,
2470 bget_one);
2471 /* As soon as we unlock the page, it can go away, but we have
2472 * references to buffers so we are safe */
2473 unlock_page(page);
ac27a0ec 2474
617ba13b 2475 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
ac27a0ec
DK
2476 if (IS_ERR(handle)) {
2477 ret = PTR_ERR(handle);
cf108bca 2478 goto out;
ac27a0ec
DK
2479 }
2480
cf108bca
JK
2481 ret = walk_page_buffers(handle, page_bufs, 0,
2482 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access);
ac27a0ec 2483
cf108bca
JK
2484 err = walk_page_buffers(handle, page_bufs, 0,
2485 PAGE_CACHE_SIZE, NULL, write_end_fn);
2486 if (ret == 0)
2487 ret = err;
617ba13b 2488 err = ext4_journal_stop(handle);
ac27a0ec
DK
2489 if (!ret)
2490 ret = err;
ac27a0ec 2491
cf108bca
JK
2492 walk_page_buffers(handle, page_bufs, 0,
2493 PAGE_CACHE_SIZE, NULL, bput_one);
2494 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
2495 goto out;
2496
2497out_unlock:
ac27a0ec 2498 unlock_page(page);
cf108bca 2499out:
ac27a0ec
DK
2500 return ret;
2501}
2502
617ba13b 2503static int ext4_journalled_writepage(struct page *page,
ac27a0ec
DK
2504 struct writeback_control *wbc)
2505{
2506 struct inode *inode = page->mapping->host;
cf108bca
JK
2507 loff_t size = i_size_read(inode);
2508 loff_t len;
ac27a0ec 2509
cf108bca
JK
2510 J_ASSERT(PageLocked(page));
2511 J_ASSERT(page_has_buffers(page));
2512 if (page->index == size >> PAGE_CACHE_SHIFT)
2513 len = size & ~PAGE_CACHE_MASK;
2514 else
2515 len = PAGE_CACHE_SIZE;
2516 BUG_ON(walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
2517 ext4_bh_unmapped_or_delay));
ac27a0ec 2518
cf108bca 2519 if (ext4_journal_current_handle())
ac27a0ec 2520 goto no_write;
ac27a0ec 2521
cf108bca 2522 if (PageChecked(page)) {
ac27a0ec
DK
2523 /*
2524 * It's mmapped pagecache. Add buffers and journal it. There
2525 * doesn't seem much point in redirtying the page here.
2526 */
2527 ClearPageChecked(page);
cf108bca 2528 return __ext4_journalled_writepage(page, wbc);
ac27a0ec
DK
2529 } else {
2530 /*
2531 * It may be a page full of checkpoint-mode buffers. We don't
2532 * really know unless we go poke around in the buffer_heads.
2533 * But block_write_full_page will do the right thing.
2534 */
cf108bca 2535 return block_write_full_page(page, ext4_get_block, wbc);
ac27a0ec 2536 }
ac27a0ec
DK
2537no_write:
2538 redirty_page_for_writepage(wbc, page);
ac27a0ec 2539 unlock_page(page);
cf108bca 2540 return 0;
ac27a0ec
DK
2541}
2542
617ba13b 2543static int ext4_readpage(struct file *file, struct page *page)
ac27a0ec 2544{
617ba13b 2545 return mpage_readpage(page, ext4_get_block);
ac27a0ec
DK
2546}
2547
2548static int
617ba13b 2549ext4_readpages(struct file *file, struct address_space *mapping,
ac27a0ec
DK
2550 struct list_head *pages, unsigned nr_pages)
2551{
617ba13b 2552 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
ac27a0ec
DK
2553}
2554
617ba13b 2555static void ext4_invalidatepage(struct page *page, unsigned long offset)
ac27a0ec 2556{
617ba13b 2557 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
ac27a0ec
DK
2558
2559 /*
2560 * If it's a full truncate we just forget about the pending dirtying
2561 */
2562 if (offset == 0)
2563 ClearPageChecked(page);
2564
dab291af 2565 jbd2_journal_invalidatepage(journal, page, offset);
ac27a0ec
DK
2566}
2567
617ba13b 2568static int ext4_releasepage(struct page *page, gfp_t wait)
ac27a0ec 2569{
617ba13b 2570 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
ac27a0ec
DK
2571
2572 WARN_ON(PageChecked(page));
2573 if (!page_has_buffers(page))
2574 return 0;
dab291af 2575 return jbd2_journal_try_to_free_buffers(journal, page, wait);
ac27a0ec
DK
2576}
2577
2578/*
2579 * If the O_DIRECT write will extend the file then add this inode to the
2580 * orphan list. So recovery will truncate it back to the original size
2581 * if the machine crashes during the write.
2582 *
2583 * If the O_DIRECT write is intantiating holes inside i_size and the machine
7fb5409d
JK
2584 * crashes then stale disk data _may_ be exposed inside the file. But current
2585 * VFS code falls back into buffered path in that case so we are safe.
ac27a0ec 2586 */
617ba13b 2587static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
ac27a0ec
DK
2588 const struct iovec *iov, loff_t offset,
2589 unsigned long nr_segs)
2590{
2591 struct file *file = iocb->ki_filp;
2592 struct inode *inode = file->f_mapping->host;
617ba13b 2593 struct ext4_inode_info *ei = EXT4_I(inode);
7fb5409d 2594 handle_t *handle;
ac27a0ec
DK
2595 ssize_t ret;
2596 int orphan = 0;
2597 size_t count = iov_length(iov, nr_segs);
2598
2599 if (rw == WRITE) {
2600 loff_t final_size = offset + count;
2601
ac27a0ec 2602 if (final_size > inode->i_size) {
7fb5409d
JK
2603 /* Credits for sb + inode write */
2604 handle = ext4_journal_start(inode, 2);
2605 if (IS_ERR(handle)) {
2606 ret = PTR_ERR(handle);
2607 goto out;
2608 }
617ba13b 2609 ret = ext4_orphan_add(handle, inode);
7fb5409d
JK
2610 if (ret) {
2611 ext4_journal_stop(handle);
2612 goto out;
2613 }
ac27a0ec
DK
2614 orphan = 1;
2615 ei->i_disksize = inode->i_size;
7fb5409d 2616 ext4_journal_stop(handle);
ac27a0ec
DK
2617 }
2618 }
2619
2620 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2621 offset, nr_segs,
617ba13b 2622 ext4_get_block, NULL);
ac27a0ec 2623
7fb5409d 2624 if (orphan) {
ac27a0ec
DK
2625 int err;
2626
7fb5409d
JK
2627 /* Credits for sb + inode write */
2628 handle = ext4_journal_start(inode, 2);
2629 if (IS_ERR(handle)) {
2630 /* This is really bad luck. We've written the data
2631 * but cannot extend i_size. Bail out and pretend
2632 * the write failed... */
2633 ret = PTR_ERR(handle);
2634 goto out;
2635 }
2636 if (inode->i_nlink)
617ba13b 2637 ext4_orphan_del(handle, inode);
7fb5409d 2638 if (ret > 0) {
ac27a0ec
DK
2639 loff_t end = offset + ret;
2640 if (end > inode->i_size) {
2641 ei->i_disksize = end;
2642 i_size_write(inode, end);
2643 /*
2644 * We're going to return a positive `ret'
2645 * here due to non-zero-length I/O, so there's
2646 * no way of reporting error returns from
617ba13b 2647 * ext4_mark_inode_dirty() to userspace. So
ac27a0ec
DK
2648 * ignore it.
2649 */
617ba13b 2650 ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
2651 }
2652 }
617ba13b 2653 err = ext4_journal_stop(handle);
ac27a0ec
DK
2654 if (ret == 0)
2655 ret = err;
2656 }
2657out:
2658 return ret;
2659}
2660
2661/*
617ba13b 2662 * Pages can be marked dirty completely asynchronously from ext4's journalling
ac27a0ec
DK
2663 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
2664 * much here because ->set_page_dirty is called under VFS locks. The page is
2665 * not necessarily locked.
2666 *
2667 * We cannot just dirty the page and leave attached buffers clean, because the
2668 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
2669 * or jbddirty because all the journalling code will explode.
2670 *
2671 * So what we do is to mark the page "pending dirty" and next time writepage
2672 * is called, propagate that into the buffers appropriately.
2673 */
617ba13b 2674static int ext4_journalled_set_page_dirty(struct page *page)
ac27a0ec
DK
2675{
2676 SetPageChecked(page);
2677 return __set_page_dirty_nobuffers(page);
2678}
2679
617ba13b
MC
2680static const struct address_space_operations ext4_ordered_aops = {
2681 .readpage = ext4_readpage,
2682 .readpages = ext4_readpages,
678aaf48 2683 .writepage = ext4_normal_writepage,
ac27a0ec 2684 .sync_page = block_sync_page,
bfc1af65
NP
2685 .write_begin = ext4_write_begin,
2686 .write_end = ext4_ordered_write_end,
617ba13b
MC
2687 .bmap = ext4_bmap,
2688 .invalidatepage = ext4_invalidatepage,
2689 .releasepage = ext4_releasepage,
2690 .direct_IO = ext4_direct_IO,
ac27a0ec
DK
2691 .migratepage = buffer_migrate_page,
2692};
2693
617ba13b
MC
2694static const struct address_space_operations ext4_writeback_aops = {
2695 .readpage = ext4_readpage,
2696 .readpages = ext4_readpages,
678aaf48 2697 .writepage = ext4_normal_writepage,
ac27a0ec 2698 .sync_page = block_sync_page,
bfc1af65
NP
2699 .write_begin = ext4_write_begin,
2700 .write_end = ext4_writeback_write_end,
617ba13b
MC
2701 .bmap = ext4_bmap,
2702 .invalidatepage = ext4_invalidatepage,
2703 .releasepage = ext4_releasepage,
2704 .direct_IO = ext4_direct_IO,
ac27a0ec
DK
2705 .migratepage = buffer_migrate_page,
2706};
2707
617ba13b
MC
2708static const struct address_space_operations ext4_journalled_aops = {
2709 .readpage = ext4_readpage,
2710 .readpages = ext4_readpages,
2711 .writepage = ext4_journalled_writepage,
ac27a0ec 2712 .sync_page = block_sync_page,
bfc1af65
NP
2713 .write_begin = ext4_write_begin,
2714 .write_end = ext4_journalled_write_end,
617ba13b
MC
2715 .set_page_dirty = ext4_journalled_set_page_dirty,
2716 .bmap = ext4_bmap,
2717 .invalidatepage = ext4_invalidatepage,
2718 .releasepage = ext4_releasepage,
ac27a0ec
DK
2719};
2720
64769240
AT
2721static const struct address_space_operations ext4_da_aops = {
2722 .readpage = ext4_readpage,
2723 .readpages = ext4_readpages,
2724 .writepage = ext4_da_writepage,
2725 .writepages = ext4_da_writepages,
2726 .sync_page = block_sync_page,
2727 .write_begin = ext4_da_write_begin,
2728 .write_end = ext4_da_write_end,
2729 .bmap = ext4_bmap,
2730 .invalidatepage = ext4_da_invalidatepage,
2731 .releasepage = ext4_releasepage,
2732 .direct_IO = ext4_direct_IO,
2733 .migratepage = buffer_migrate_page,
2734};
2735
617ba13b 2736void ext4_set_aops(struct inode *inode)
ac27a0ec 2737{
617ba13b
MC
2738 if (ext4_should_order_data(inode))
2739 inode->i_mapping->a_ops = &ext4_ordered_aops;
64769240
AT
2740 else if (ext4_should_writeback_data(inode) &&
2741 test_opt(inode->i_sb, DELALLOC))
2742 inode->i_mapping->a_ops = &ext4_da_aops;
617ba13b
MC
2743 else if (ext4_should_writeback_data(inode))
2744 inode->i_mapping->a_ops = &ext4_writeback_aops;
ac27a0ec 2745 else
617ba13b 2746 inode->i_mapping->a_ops = &ext4_journalled_aops;
ac27a0ec
DK
2747}
2748
2749/*
617ba13b 2750 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
ac27a0ec
DK
2751 * up to the end of the block which corresponds to `from'.
2752 * This required during truncate. We need to physically zero the tail end
2753 * of that block so it doesn't yield old data if the file is later grown.
2754 */
cf108bca 2755int ext4_block_truncate_page(handle_t *handle,
ac27a0ec
DK
2756 struct address_space *mapping, loff_t from)
2757{
617ba13b 2758 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
ac27a0ec 2759 unsigned offset = from & (PAGE_CACHE_SIZE-1);
725d26d3
AK
2760 unsigned blocksize, length, pos;
2761 ext4_lblk_t iblock;
ac27a0ec
DK
2762 struct inode *inode = mapping->host;
2763 struct buffer_head *bh;
cf108bca 2764 struct page *page;
ac27a0ec 2765 int err = 0;
ac27a0ec 2766
cf108bca
JK
2767 page = grab_cache_page(mapping, from >> PAGE_CACHE_SHIFT);
2768 if (!page)
2769 return -EINVAL;
2770
ac27a0ec
DK
2771 blocksize = inode->i_sb->s_blocksize;
2772 length = blocksize - (offset & (blocksize - 1));
2773 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
2774
2775 /*
2776 * For "nobh" option, we can only work if we don't need to
2777 * read-in the page - otherwise we create buffers to do the IO.
2778 */
2779 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
617ba13b 2780 ext4_should_writeback_data(inode) && PageUptodate(page)) {
eebd2aa3 2781 zero_user(page, offset, length);
ac27a0ec
DK
2782 set_page_dirty(page);
2783 goto unlock;
2784 }
2785
2786 if (!page_has_buffers(page))
2787 create_empty_buffers(page, blocksize, 0);
2788
2789 /* Find the buffer that contains "offset" */
2790 bh = page_buffers(page);
2791 pos = blocksize;
2792 while (offset >= pos) {
2793 bh = bh->b_this_page;
2794 iblock++;
2795 pos += blocksize;
2796 }
2797
2798 err = 0;
2799 if (buffer_freed(bh)) {
2800 BUFFER_TRACE(bh, "freed: skip");
2801 goto unlock;
2802 }
2803
2804 if (!buffer_mapped(bh)) {
2805 BUFFER_TRACE(bh, "unmapped");
617ba13b 2806 ext4_get_block(inode, iblock, bh, 0);
ac27a0ec
DK
2807 /* unmapped? It's a hole - nothing to do */
2808 if (!buffer_mapped(bh)) {
2809 BUFFER_TRACE(bh, "still unmapped");
2810 goto unlock;
2811 }
2812 }
2813
2814 /* Ok, it's mapped. Make sure it's up-to-date */
2815 if (PageUptodate(page))
2816 set_buffer_uptodate(bh);
2817
2818 if (!buffer_uptodate(bh)) {
2819 err = -EIO;
2820 ll_rw_block(READ, 1, &bh);
2821 wait_on_buffer(bh);
2822 /* Uhhuh. Read error. Complain and punt. */
2823 if (!buffer_uptodate(bh))
2824 goto unlock;
2825 }
2826
617ba13b 2827 if (ext4_should_journal_data(inode)) {
ac27a0ec 2828 BUFFER_TRACE(bh, "get write access");
617ba13b 2829 err = ext4_journal_get_write_access(handle, bh);
ac27a0ec
DK
2830 if (err)
2831 goto unlock;
2832 }
2833
eebd2aa3 2834 zero_user(page, offset, length);
ac27a0ec
DK
2835
2836 BUFFER_TRACE(bh, "zeroed end of block");
2837
2838 err = 0;
617ba13b
MC
2839 if (ext4_should_journal_data(inode)) {
2840 err = ext4_journal_dirty_metadata(handle, bh);
ac27a0ec 2841 } else {
617ba13b 2842 if (ext4_should_order_data(inode))
678aaf48 2843 err = ext4_jbd2_file_inode(handle, inode);
ac27a0ec
DK
2844 mark_buffer_dirty(bh);
2845 }
2846
2847unlock:
2848 unlock_page(page);
2849 page_cache_release(page);
2850 return err;
2851}
2852
2853/*
2854 * Probably it should be a library function... search for first non-zero word
2855 * or memcmp with zero_page, whatever is better for particular architecture.
2856 * Linus?
2857 */
2858static inline int all_zeroes(__le32 *p, __le32 *q)
2859{
2860 while (p < q)
2861 if (*p++)
2862 return 0;
2863 return 1;
2864}
2865
2866/**
617ba13b 2867 * ext4_find_shared - find the indirect blocks for partial truncation.
ac27a0ec
DK
2868 * @inode: inode in question
2869 * @depth: depth of the affected branch
617ba13b 2870 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
ac27a0ec
DK
2871 * @chain: place to store the pointers to partial indirect blocks
2872 * @top: place to the (detached) top of branch
2873 *
617ba13b 2874 * This is a helper function used by ext4_truncate().
ac27a0ec
DK
2875 *
2876 * When we do truncate() we may have to clean the ends of several
2877 * indirect blocks but leave the blocks themselves alive. Block is
2878 * partially truncated if some data below the new i_size is refered
2879 * from it (and it is on the path to the first completely truncated
2880 * data block, indeed). We have to free the top of that path along
2881 * with everything to the right of the path. Since no allocation
617ba13b 2882 * past the truncation point is possible until ext4_truncate()
ac27a0ec
DK
2883 * finishes, we may safely do the latter, but top of branch may
2884 * require special attention - pageout below the truncation point
2885 * might try to populate it.
2886 *
2887 * We atomically detach the top of branch from the tree, store the
2888 * block number of its root in *@top, pointers to buffer_heads of
2889 * partially truncated blocks - in @chain[].bh and pointers to
2890 * their last elements that should not be removed - in
2891 * @chain[].p. Return value is the pointer to last filled element
2892 * of @chain.
2893 *
2894 * The work left to caller to do the actual freeing of subtrees:
2895 * a) free the subtree starting from *@top
2896 * b) free the subtrees whose roots are stored in
2897 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
2898 * c) free the subtrees growing from the inode past the @chain[0].
2899 * (no partially truncated stuff there). */
2900
617ba13b 2901static Indirect *ext4_find_shared(struct inode *inode, int depth,
725d26d3 2902 ext4_lblk_t offsets[4], Indirect chain[4], __le32 *top)
ac27a0ec
DK
2903{
2904 Indirect *partial, *p;
2905 int k, err;
2906
2907 *top = 0;
2908 /* Make k index the deepest non-null offest + 1 */
2909 for (k = depth; k > 1 && !offsets[k-1]; k--)
2910 ;
617ba13b 2911 partial = ext4_get_branch(inode, k, offsets, chain, &err);
ac27a0ec
DK
2912 /* Writer: pointers */
2913 if (!partial)
2914 partial = chain + k-1;
2915 /*
2916 * If the branch acquired continuation since we've looked at it -
2917 * fine, it should all survive and (new) top doesn't belong to us.
2918 */
2919 if (!partial->key && *partial->p)
2920 /* Writer: end */
2921 goto no_top;
2922 for (p=partial; p>chain && all_zeroes((__le32*)p->bh->b_data,p->p); p--)
2923 ;
2924 /*
2925 * OK, we've found the last block that must survive. The rest of our
2926 * branch should be detached before unlocking. However, if that rest
2927 * of branch is all ours and does not grow immediately from the inode
2928 * it's easier to cheat and just decrement partial->p.
2929 */
2930 if (p == chain + k - 1 && p > chain) {
2931 p->p--;
2932 } else {
2933 *top = *p->p;
617ba13b 2934 /* Nope, don't do this in ext4. Must leave the tree intact */
ac27a0ec
DK
2935#if 0
2936 *p->p = 0;
2937#endif
2938 }
2939 /* Writer: end */
2940
2941 while(partial > p) {
2942 brelse(partial->bh);
2943 partial--;
2944 }
2945no_top:
2946 return partial;
2947}
2948
2949/*
2950 * Zero a number of block pointers in either an inode or an indirect block.
2951 * If we restart the transaction we must again get write access to the
2952 * indirect block for further modification.
2953 *
2954 * We release `count' blocks on disk, but (last - first) may be greater
2955 * than `count' because there can be holes in there.
2956 */
617ba13b
MC
2957static void ext4_clear_blocks(handle_t *handle, struct inode *inode,
2958 struct buffer_head *bh, ext4_fsblk_t block_to_free,
ac27a0ec
DK
2959 unsigned long count, __le32 *first, __le32 *last)
2960{
2961 __le32 *p;
2962 if (try_to_extend_transaction(handle, inode)) {
2963 if (bh) {
617ba13b
MC
2964 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
2965 ext4_journal_dirty_metadata(handle, bh);
ac27a0ec 2966 }
617ba13b
MC
2967 ext4_mark_inode_dirty(handle, inode);
2968 ext4_journal_test_restart(handle, inode);
ac27a0ec
DK
2969 if (bh) {
2970 BUFFER_TRACE(bh, "retaking write access");
617ba13b 2971 ext4_journal_get_write_access(handle, bh);
ac27a0ec
DK
2972 }
2973 }
2974
2975 /*
2976 * Any buffers which are on the journal will be in memory. We find
dab291af 2977 * them on the hash table so jbd2_journal_revoke() will run jbd2_journal_forget()
ac27a0ec 2978 * on them. We've already detached each block from the file, so
dab291af 2979 * bforget() in jbd2_journal_forget() should be safe.
ac27a0ec 2980 *
dab291af 2981 * AKPM: turn on bforget in jbd2_journal_forget()!!!
ac27a0ec
DK
2982 */
2983 for (p = first; p < last; p++) {
2984 u32 nr = le32_to_cpu(*p);
2985 if (nr) {
1d03ec98 2986 struct buffer_head *tbh;
ac27a0ec
DK
2987
2988 *p = 0;
1d03ec98
AK
2989 tbh = sb_find_get_block(inode->i_sb, nr);
2990 ext4_forget(handle, 0, inode, tbh, nr);
ac27a0ec
DK
2991 }
2992 }
2993
c9de560d 2994 ext4_free_blocks(handle, inode, block_to_free, count, 0);
ac27a0ec
DK
2995}
2996
2997/**
617ba13b 2998 * ext4_free_data - free a list of data blocks
ac27a0ec
DK
2999 * @handle: handle for this transaction
3000 * @inode: inode we are dealing with
3001 * @this_bh: indirect buffer_head which contains *@first and *@last
3002 * @first: array of block numbers
3003 * @last: points immediately past the end of array
3004 *
3005 * We are freeing all blocks refered from that array (numbers are stored as
3006 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
3007 *
3008 * We accumulate contiguous runs of blocks to free. Conveniently, if these
3009 * blocks are contiguous then releasing them at one time will only affect one
3010 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
3011 * actually use a lot of journal space.
3012 *
3013 * @this_bh will be %NULL if @first and @last point into the inode's direct
3014 * block pointers.
3015 */
617ba13b 3016static void ext4_free_data(handle_t *handle, struct inode *inode,
ac27a0ec
DK
3017 struct buffer_head *this_bh,
3018 __le32 *first, __le32 *last)
3019{
617ba13b 3020 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
ac27a0ec
DK
3021 unsigned long count = 0; /* Number of blocks in the run */
3022 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
3023 corresponding to
3024 block_to_free */
617ba13b 3025 ext4_fsblk_t nr; /* Current block # */
ac27a0ec
DK
3026 __le32 *p; /* Pointer into inode/ind
3027 for current block */
3028 int err;
3029
3030 if (this_bh) { /* For indirect block */
3031 BUFFER_TRACE(this_bh, "get_write_access");
617ba13b 3032 err = ext4_journal_get_write_access(handle, this_bh);
ac27a0ec
DK
3033 /* Important: if we can't update the indirect pointers
3034 * to the blocks, we can't free them. */
3035 if (err)
3036 return;
3037 }
3038
3039 for (p = first; p < last; p++) {
3040 nr = le32_to_cpu(*p);
3041 if (nr) {
3042 /* accumulate blocks to free if they're contiguous */
3043 if (count == 0) {
3044 block_to_free = nr;
3045 block_to_free_p = p;
3046 count = 1;
3047 } else if (nr == block_to_free + count) {
3048 count++;
3049 } else {
617ba13b 3050 ext4_clear_blocks(handle, inode, this_bh,
ac27a0ec
DK
3051 block_to_free,
3052 count, block_to_free_p, p);
3053 block_to_free = nr;
3054 block_to_free_p = p;
3055 count = 1;
3056 }
3057 }
3058 }
3059
3060 if (count > 0)
617ba13b 3061 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
ac27a0ec
DK
3062 count, block_to_free_p, p);
3063
3064 if (this_bh) {
617ba13b 3065 BUFFER_TRACE(this_bh, "call ext4_journal_dirty_metadata");
71dc8fbc
DG
3066
3067 /*
3068 * The buffer head should have an attached journal head at this
3069 * point. However, if the data is corrupted and an indirect
3070 * block pointed to itself, it would have been detached when
3071 * the block was cleared. Check for this instead of OOPSing.
3072 */
3073 if (bh2jh(this_bh))
3074 ext4_journal_dirty_metadata(handle, this_bh);
3075 else
3076 ext4_error(inode->i_sb, __func__,
3077 "circular indirect block detected, "
3078 "inode=%lu, block=%llu",
3079 inode->i_ino,
3080 (unsigned long long) this_bh->b_blocknr);
ac27a0ec
DK
3081 }
3082}
3083
3084/**
617ba13b 3085 * ext4_free_branches - free an array of branches
ac27a0ec
DK
3086 * @handle: JBD handle for this transaction
3087 * @inode: inode we are dealing with
3088 * @parent_bh: the buffer_head which contains *@first and *@last
3089 * @first: array of block numbers
3090 * @last: pointer immediately past the end of array
3091 * @depth: depth of the branches to free
3092 *
3093 * We are freeing all blocks refered from these branches (numbers are
3094 * stored as little-endian 32-bit) and updating @inode->i_blocks
3095 * appropriately.
3096 */
617ba13b 3097static void ext4_free_branches(handle_t *handle, struct inode *inode,
ac27a0ec
DK
3098 struct buffer_head *parent_bh,
3099 __le32 *first, __le32 *last, int depth)
3100{
617ba13b 3101 ext4_fsblk_t nr;
ac27a0ec
DK
3102 __le32 *p;
3103
3104 if (is_handle_aborted(handle))
3105 return;
3106
3107 if (depth--) {
3108 struct buffer_head *bh;
617ba13b 3109 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
ac27a0ec
DK
3110 p = last;
3111 while (--p >= first) {
3112 nr = le32_to_cpu(*p);
3113 if (!nr)
3114 continue; /* A hole */
3115
3116 /* Go read the buffer for the next level down */
3117 bh = sb_bread(inode->i_sb, nr);
3118
3119 /*
3120 * A read failure? Report error and clear slot
3121 * (should be rare).
3122 */
3123 if (!bh) {
617ba13b 3124 ext4_error(inode->i_sb, "ext4_free_branches",
2ae02107 3125 "Read failure, inode=%lu, block=%llu",
ac27a0ec
DK
3126 inode->i_ino, nr);
3127 continue;
3128 }
3129
3130 /* This zaps the entire block. Bottom up. */
3131 BUFFER_TRACE(bh, "free child branches");
617ba13b 3132 ext4_free_branches(handle, inode, bh,
ac27a0ec
DK
3133 (__le32*)bh->b_data,
3134 (__le32*)bh->b_data + addr_per_block,
3135 depth);
3136
3137 /*
3138 * We've probably journalled the indirect block several
3139 * times during the truncate. But it's no longer
3140 * needed and we now drop it from the transaction via
dab291af 3141 * jbd2_journal_revoke().
ac27a0ec
DK
3142 *
3143 * That's easy if it's exclusively part of this
3144 * transaction. But if it's part of the committing
dab291af 3145 * transaction then jbd2_journal_forget() will simply
ac27a0ec 3146 * brelse() it. That means that if the underlying
617ba13b 3147 * block is reallocated in ext4_get_block(),
ac27a0ec
DK
3148 * unmap_underlying_metadata() will find this block
3149 * and will try to get rid of it. damn, damn.
3150 *
3151 * If this block has already been committed to the
3152 * journal, a revoke record will be written. And
3153 * revoke records must be emitted *before* clearing
3154 * this block's bit in the bitmaps.
3155 */
617ba13b 3156 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
ac27a0ec
DK
3157
3158 /*
3159 * Everything below this this pointer has been
3160 * released. Now let this top-of-subtree go.
3161 *
3162 * We want the freeing of this indirect block to be
3163 * atomic in the journal with the updating of the
3164 * bitmap block which owns it. So make some room in
3165 * the journal.
3166 *
3167 * We zero the parent pointer *after* freeing its
3168 * pointee in the bitmaps, so if extend_transaction()
3169 * for some reason fails to put the bitmap changes and
3170 * the release into the same transaction, recovery
3171 * will merely complain about releasing a free block,
3172 * rather than leaking blocks.
3173 */
3174 if (is_handle_aborted(handle))
3175 return;
3176 if (try_to_extend_transaction(handle, inode)) {
617ba13b
MC
3177 ext4_mark_inode_dirty(handle, inode);
3178 ext4_journal_test_restart(handle, inode);
ac27a0ec
DK
3179 }
3180
c9de560d 3181 ext4_free_blocks(handle, inode, nr, 1, 1);
ac27a0ec
DK
3182
3183 if (parent_bh) {
3184 /*
3185 * The block which we have just freed is
3186 * pointed to by an indirect block: journal it
3187 */
3188 BUFFER_TRACE(parent_bh, "get_write_access");
617ba13b 3189 if (!ext4_journal_get_write_access(handle,
ac27a0ec
DK
3190 parent_bh)){
3191 *p = 0;
3192 BUFFER_TRACE(parent_bh,
617ba13b
MC
3193 "call ext4_journal_dirty_metadata");
3194 ext4_journal_dirty_metadata(handle,
ac27a0ec
DK
3195 parent_bh);
3196 }
3197 }
3198 }
3199 } else {
3200 /* We have reached the bottom of the tree. */
3201 BUFFER_TRACE(parent_bh, "free data blocks");
617ba13b 3202 ext4_free_data(handle, inode, parent_bh, first, last);
ac27a0ec
DK
3203 }
3204}
3205
91ef4caf
DG
3206int ext4_can_truncate(struct inode *inode)
3207{
3208 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3209 return 0;
3210 if (S_ISREG(inode->i_mode))
3211 return 1;
3212 if (S_ISDIR(inode->i_mode))
3213 return 1;
3214 if (S_ISLNK(inode->i_mode))
3215 return !ext4_inode_is_fast_symlink(inode);
3216 return 0;
3217}
3218
ac27a0ec 3219/*
617ba13b 3220 * ext4_truncate()
ac27a0ec 3221 *
617ba13b
MC
3222 * We block out ext4_get_block() block instantiations across the entire
3223 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
ac27a0ec
DK
3224 * simultaneously on behalf of the same inode.
3225 *
3226 * As we work through the truncate and commmit bits of it to the journal there
3227 * is one core, guiding principle: the file's tree must always be consistent on
3228 * disk. We must be able to restart the truncate after a crash.
3229 *
3230 * The file's tree may be transiently inconsistent in memory (although it
3231 * probably isn't), but whenever we close off and commit a journal transaction,
3232 * the contents of (the filesystem + the journal) must be consistent and
3233 * restartable. It's pretty simple, really: bottom up, right to left (although
3234 * left-to-right works OK too).
3235 *
3236 * Note that at recovery time, journal replay occurs *before* the restart of
3237 * truncate against the orphan inode list.
3238 *
3239 * The committed inode has the new, desired i_size (which is the same as
617ba13b 3240 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
ac27a0ec 3241 * that this inode's truncate did not complete and it will again call
617ba13b
MC
3242 * ext4_truncate() to have another go. So there will be instantiated blocks
3243 * to the right of the truncation point in a crashed ext4 filesystem. But
ac27a0ec 3244 * that's fine - as long as they are linked from the inode, the post-crash
617ba13b 3245 * ext4_truncate() run will find them and release them.
ac27a0ec 3246 */
617ba13b 3247void ext4_truncate(struct inode *inode)
ac27a0ec
DK
3248{
3249 handle_t *handle;
617ba13b 3250 struct ext4_inode_info *ei = EXT4_I(inode);
ac27a0ec 3251 __le32 *i_data = ei->i_data;
617ba13b 3252 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
ac27a0ec 3253 struct address_space *mapping = inode->i_mapping;
725d26d3 3254 ext4_lblk_t offsets[4];
ac27a0ec
DK
3255 Indirect chain[4];
3256 Indirect *partial;
3257 __le32 nr = 0;
3258 int n;
725d26d3 3259 ext4_lblk_t last_block;
ac27a0ec 3260 unsigned blocksize = inode->i_sb->s_blocksize;
ac27a0ec 3261
91ef4caf 3262 if (!ext4_can_truncate(inode))
ac27a0ec
DK
3263 return;
3264
1d03ec98 3265 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
cf108bca 3266 ext4_ext_truncate(inode);
1d03ec98
AK
3267 return;
3268 }
a86c6181 3269
ac27a0ec 3270 handle = start_transaction(inode);
cf108bca 3271 if (IS_ERR(handle))
ac27a0ec 3272 return; /* AKPM: return what? */
ac27a0ec
DK
3273
3274 last_block = (inode->i_size + blocksize-1)
617ba13b 3275 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
ac27a0ec 3276
cf108bca
JK
3277 if (inode->i_size & (blocksize - 1))
3278 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
3279 goto out_stop;
ac27a0ec 3280
617ba13b 3281 n = ext4_block_to_path(inode, last_block, offsets, NULL);
ac27a0ec
DK
3282 if (n == 0)
3283 goto out_stop; /* error */
3284
3285 /*
3286 * OK. This truncate is going to happen. We add the inode to the
3287 * orphan list, so that if this truncate spans multiple transactions,
3288 * and we crash, we will resume the truncate when the filesystem
3289 * recovers. It also marks the inode dirty, to catch the new size.
3290 *
3291 * Implication: the file must always be in a sane, consistent
3292 * truncatable state while each transaction commits.
3293 */
617ba13b 3294 if (ext4_orphan_add(handle, inode))
ac27a0ec
DK
3295 goto out_stop;
3296
3297 /*
3298 * The orphan list entry will now protect us from any crash which
3299 * occurs before the truncate completes, so it is now safe to propagate
3300 * the new, shorter inode size (held for now in i_size) into the
3301 * on-disk inode. We do this via i_disksize, which is the value which
617ba13b 3302 * ext4 *really* writes onto the disk inode.
ac27a0ec
DK
3303 */
3304 ei->i_disksize = inode->i_size;
3305
3306 /*
617ba13b 3307 * From here we block out all ext4_get_block() callers who want to
ac27a0ec
DK
3308 * modify the block allocation tree.
3309 */
0e855ac8 3310 down_write(&ei->i_data_sem);
ac27a0ec
DK
3311
3312 if (n == 1) { /* direct blocks */
617ba13b
MC
3313 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
3314 i_data + EXT4_NDIR_BLOCKS);
ac27a0ec
DK
3315 goto do_indirects;
3316 }
3317
617ba13b 3318 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
ac27a0ec
DK
3319 /* Kill the top of shared branch (not detached) */
3320 if (nr) {
3321 if (partial == chain) {
3322 /* Shared branch grows from the inode */
617ba13b 3323 ext4_free_branches(handle, inode, NULL,
ac27a0ec
DK
3324 &nr, &nr+1, (chain+n-1) - partial);
3325 *partial->p = 0;
3326 /*
3327 * We mark the inode dirty prior to restart,
3328 * and prior to stop. No need for it here.
3329 */
3330 } else {
3331 /* Shared branch grows from an indirect block */
3332 BUFFER_TRACE(partial->bh, "get_write_access");
617ba13b 3333 ext4_free_branches(handle, inode, partial->bh,
ac27a0ec
DK
3334 partial->p,
3335 partial->p+1, (chain+n-1) - partial);
3336 }
3337 }
3338 /* Clear the ends of indirect blocks on the shared branch */
3339 while (partial > chain) {
617ba13b 3340 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
ac27a0ec
DK
3341 (__le32*)partial->bh->b_data+addr_per_block,
3342 (chain+n-1) - partial);
3343 BUFFER_TRACE(partial->bh, "call brelse");
3344 brelse (partial->bh);
3345 partial--;
3346 }
3347do_indirects:
3348 /* Kill the remaining (whole) subtrees */
3349 switch (offsets[0]) {
3350 default:
617ba13b 3351 nr = i_data[EXT4_IND_BLOCK];
ac27a0ec 3352 if (nr) {
617ba13b
MC
3353 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
3354 i_data[EXT4_IND_BLOCK] = 0;
ac27a0ec 3355 }
617ba13b
MC
3356 case EXT4_IND_BLOCK:
3357 nr = i_data[EXT4_DIND_BLOCK];
ac27a0ec 3358 if (nr) {
617ba13b
MC
3359 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
3360 i_data[EXT4_DIND_BLOCK] = 0;
ac27a0ec 3361 }
617ba13b
MC
3362 case EXT4_DIND_BLOCK:
3363 nr = i_data[EXT4_TIND_BLOCK];
ac27a0ec 3364 if (nr) {
617ba13b
MC
3365 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
3366 i_data[EXT4_TIND_BLOCK] = 0;
ac27a0ec 3367 }
617ba13b 3368 case EXT4_TIND_BLOCK:
ac27a0ec
DK
3369 ;
3370 }
3371
617ba13b 3372 ext4_discard_reservation(inode);
ac27a0ec 3373
0e855ac8 3374 up_write(&ei->i_data_sem);
ef7f3835 3375 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
617ba13b 3376 ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
3377
3378 /*
3379 * In a multi-transaction truncate, we only make the final transaction
3380 * synchronous
3381 */
3382 if (IS_SYNC(inode))
3383 handle->h_sync = 1;
3384out_stop:
3385 /*
3386 * If this was a simple ftruncate(), and the file will remain alive
3387 * then we need to clear up the orphan record which we created above.
3388 * However, if this was a real unlink then we were called by
617ba13b 3389 * ext4_delete_inode(), and we allow that function to clean up the
ac27a0ec
DK
3390 * orphan info for us.
3391 */
3392 if (inode->i_nlink)
617ba13b 3393 ext4_orphan_del(handle, inode);
ac27a0ec 3394
617ba13b 3395 ext4_journal_stop(handle);
ac27a0ec
DK
3396}
3397
617ba13b
MC
3398static ext4_fsblk_t ext4_get_inode_block(struct super_block *sb,
3399 unsigned long ino, struct ext4_iloc *iloc)
ac27a0ec 3400{
fd2d4291 3401 ext4_group_t block_group;
ac27a0ec 3402 unsigned long offset;
617ba13b 3403 ext4_fsblk_t block;
c0a4ef38 3404 struct ext4_group_desc *gdp;
ac27a0ec 3405
617ba13b 3406 if (!ext4_valid_inum(sb, ino)) {
ac27a0ec
DK
3407 /*
3408 * This error is already checked for in namei.c unless we are
3409 * looking at an NFS filehandle, in which case no error
3410 * report is needed
3411 */
3412 return 0;
3413 }
3414
617ba13b 3415 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
c0a4ef38
AM
3416 gdp = ext4_get_group_desc(sb, block_group, NULL);
3417 if (!gdp)
ac27a0ec 3418 return 0;
ac27a0ec 3419
ac27a0ec
DK
3420 /*
3421 * Figure out the offset within the block group inode table
3422 */
617ba13b
MC
3423 offset = ((ino - 1) % EXT4_INODES_PER_GROUP(sb)) *
3424 EXT4_INODE_SIZE(sb);
8fadc143
AR
3425 block = ext4_inode_table(sb, gdp) +
3426 (offset >> EXT4_BLOCK_SIZE_BITS(sb));
ac27a0ec
DK
3427
3428 iloc->block_group = block_group;
617ba13b 3429 iloc->offset = offset & (EXT4_BLOCK_SIZE(sb) - 1);
ac27a0ec
DK
3430 return block;
3431}
3432
3433/*
617ba13b 3434 * ext4_get_inode_loc returns with an extra refcount against the inode's
ac27a0ec
DK
3435 * underlying buffer_head on success. If 'in_mem' is true, we have all
3436 * data in memory that is needed to recreate the on-disk version of this
3437 * inode.
3438 */
617ba13b
MC
3439static int __ext4_get_inode_loc(struct inode *inode,
3440 struct ext4_iloc *iloc, int in_mem)
ac27a0ec 3441{
617ba13b 3442 ext4_fsblk_t block;
ac27a0ec
DK
3443 struct buffer_head *bh;
3444
617ba13b 3445 block = ext4_get_inode_block(inode->i_sb, inode->i_ino, iloc);
ac27a0ec
DK
3446 if (!block)
3447 return -EIO;
3448
3449 bh = sb_getblk(inode->i_sb, block);
3450 if (!bh) {
617ba13b 3451 ext4_error (inode->i_sb, "ext4_get_inode_loc",
ac27a0ec 3452 "unable to read inode block - "
2ae02107 3453 "inode=%lu, block=%llu",
ac27a0ec
DK
3454 inode->i_ino, block);
3455 return -EIO;
3456 }
3457 if (!buffer_uptodate(bh)) {
3458 lock_buffer(bh);
3459 if (buffer_uptodate(bh)) {
3460 /* someone brought it uptodate while we waited */
3461 unlock_buffer(bh);
3462 goto has_buffer;
3463 }
3464
3465 /*
3466 * If we have all information of the inode in memory and this
3467 * is the only valid inode in the block, we need not read the
3468 * block.
3469 */
3470 if (in_mem) {
3471 struct buffer_head *bitmap_bh;
617ba13b 3472 struct ext4_group_desc *desc;
ac27a0ec
DK
3473 int inodes_per_buffer;
3474 int inode_offset, i;
fd2d4291 3475 ext4_group_t block_group;
ac27a0ec
DK
3476 int start;
3477
3478 block_group = (inode->i_ino - 1) /
617ba13b 3479 EXT4_INODES_PER_GROUP(inode->i_sb);
ac27a0ec 3480 inodes_per_buffer = bh->b_size /
617ba13b 3481 EXT4_INODE_SIZE(inode->i_sb);
ac27a0ec 3482 inode_offset = ((inode->i_ino - 1) %
617ba13b 3483 EXT4_INODES_PER_GROUP(inode->i_sb));
ac27a0ec
DK
3484 start = inode_offset & ~(inodes_per_buffer - 1);
3485
3486 /* Is the inode bitmap in cache? */
617ba13b 3487 desc = ext4_get_group_desc(inode->i_sb,
ac27a0ec
DK
3488 block_group, NULL);
3489 if (!desc)
3490 goto make_io;
3491
3492 bitmap_bh = sb_getblk(inode->i_sb,
8fadc143 3493 ext4_inode_bitmap(inode->i_sb, desc));
ac27a0ec
DK
3494 if (!bitmap_bh)
3495 goto make_io;
3496
3497 /*
3498 * If the inode bitmap isn't in cache then the
3499 * optimisation may end up performing two reads instead
3500 * of one, so skip it.
3501 */
3502 if (!buffer_uptodate(bitmap_bh)) {
3503 brelse(bitmap_bh);
3504 goto make_io;
3505 }
3506 for (i = start; i < start + inodes_per_buffer; i++) {
3507 if (i == inode_offset)
3508 continue;
617ba13b 3509 if (ext4_test_bit(i, bitmap_bh->b_data))
ac27a0ec
DK
3510 break;
3511 }
3512 brelse(bitmap_bh);
3513 if (i == start + inodes_per_buffer) {
3514 /* all other inodes are free, so skip I/O */
3515 memset(bh->b_data, 0, bh->b_size);
3516 set_buffer_uptodate(bh);
3517 unlock_buffer(bh);
3518 goto has_buffer;
3519 }
3520 }
3521
3522make_io:
3523 /*
3524 * There are other valid inodes in the buffer, this inode
3525 * has in-inode xattrs, or we don't have this inode in memory.
3526 * Read the block from disk.
3527 */
3528 get_bh(bh);
3529 bh->b_end_io = end_buffer_read_sync;
3530 submit_bh(READ_META, bh);
3531 wait_on_buffer(bh);
3532 if (!buffer_uptodate(bh)) {
617ba13b 3533 ext4_error(inode->i_sb, "ext4_get_inode_loc",
ac27a0ec 3534 "unable to read inode block - "
2ae02107 3535 "inode=%lu, block=%llu",
ac27a0ec
DK
3536 inode->i_ino, block);
3537 brelse(bh);
3538 return -EIO;
3539 }
3540 }
3541has_buffer:
3542 iloc->bh = bh;
3543 return 0;
3544}
3545
617ba13b 3546int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
ac27a0ec
DK
3547{
3548 /* We have all inode data except xattrs in memory here. */
617ba13b
MC
3549 return __ext4_get_inode_loc(inode, iloc,
3550 !(EXT4_I(inode)->i_state & EXT4_STATE_XATTR));
ac27a0ec
DK
3551}
3552
617ba13b 3553void ext4_set_inode_flags(struct inode *inode)
ac27a0ec 3554{
617ba13b 3555 unsigned int flags = EXT4_I(inode)->i_flags;
ac27a0ec
DK
3556
3557 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
617ba13b 3558 if (flags & EXT4_SYNC_FL)
ac27a0ec 3559 inode->i_flags |= S_SYNC;
617ba13b 3560 if (flags & EXT4_APPEND_FL)
ac27a0ec 3561 inode->i_flags |= S_APPEND;
617ba13b 3562 if (flags & EXT4_IMMUTABLE_FL)
ac27a0ec 3563 inode->i_flags |= S_IMMUTABLE;
617ba13b 3564 if (flags & EXT4_NOATIME_FL)
ac27a0ec 3565 inode->i_flags |= S_NOATIME;
617ba13b 3566 if (flags & EXT4_DIRSYNC_FL)
ac27a0ec
DK
3567 inode->i_flags |= S_DIRSYNC;
3568}
3569
ff9ddf7e
JK
3570/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3571void ext4_get_inode_flags(struct ext4_inode_info *ei)
3572{
3573 unsigned int flags = ei->vfs_inode.i_flags;
3574
3575 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3576 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
3577 if (flags & S_SYNC)
3578 ei->i_flags |= EXT4_SYNC_FL;
3579 if (flags & S_APPEND)
3580 ei->i_flags |= EXT4_APPEND_FL;
3581 if (flags & S_IMMUTABLE)
3582 ei->i_flags |= EXT4_IMMUTABLE_FL;
3583 if (flags & S_NOATIME)
3584 ei->i_flags |= EXT4_NOATIME_FL;
3585 if (flags & S_DIRSYNC)
3586 ei->i_flags |= EXT4_DIRSYNC_FL;
3587}
0fc1b451
AK
3588static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
3589 struct ext4_inode_info *ei)
3590{
3591 blkcnt_t i_blocks ;
8180a562
AK
3592 struct inode *inode = &(ei->vfs_inode);
3593 struct super_block *sb = inode->i_sb;
0fc1b451
AK
3594
3595 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3596 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3597 /* we are using combined 48 bit field */
3598 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3599 le32_to_cpu(raw_inode->i_blocks_lo);
8180a562
AK
3600 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
3601 /* i_blocks represent file system block size */
3602 return i_blocks << (inode->i_blkbits - 9);
3603 } else {
3604 return i_blocks;
3605 }
0fc1b451
AK
3606 } else {
3607 return le32_to_cpu(raw_inode->i_blocks_lo);
3608 }
3609}
ff9ddf7e 3610
1d1fe1ee 3611struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
ac27a0ec 3612{
617ba13b
MC
3613 struct ext4_iloc iloc;
3614 struct ext4_inode *raw_inode;
1d1fe1ee 3615 struct ext4_inode_info *ei;
ac27a0ec 3616 struct buffer_head *bh;
1d1fe1ee
DH
3617 struct inode *inode;
3618 long ret;
ac27a0ec
DK
3619 int block;
3620
1d1fe1ee
DH
3621 inode = iget_locked(sb, ino);
3622 if (!inode)
3623 return ERR_PTR(-ENOMEM);
3624 if (!(inode->i_state & I_NEW))
3625 return inode;
3626
3627 ei = EXT4_I(inode);
617ba13b
MC
3628#ifdef CONFIG_EXT4DEV_FS_POSIX_ACL
3629 ei->i_acl = EXT4_ACL_NOT_CACHED;
3630 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
ac27a0ec
DK
3631#endif
3632 ei->i_block_alloc_info = NULL;
3633
1d1fe1ee
DH
3634 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3635 if (ret < 0)
ac27a0ec
DK
3636 goto bad_inode;
3637 bh = iloc.bh;
617ba13b 3638 raw_inode = ext4_raw_inode(&iloc);
ac27a0ec
DK
3639 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
3640 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3641 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
3642 if(!(test_opt (inode->i_sb, NO_UID32))) {
3643 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3644 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
3645 }
3646 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
ac27a0ec
DK
3647
3648 ei->i_state = 0;
3649 ei->i_dir_start_lookup = 0;
3650 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3651 /* We now have enough fields to check if the inode was active or not.
3652 * This is needed because nfsd might try to access dead inodes
3653 * the test is that same one that e2fsck uses
3654 * NeilBrown 1999oct15
3655 */
3656 if (inode->i_nlink == 0) {
3657 if (inode->i_mode == 0 ||
617ba13b 3658 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
ac27a0ec
DK
3659 /* this inode is deleted */
3660 brelse (bh);
1d1fe1ee 3661 ret = -ESTALE;
ac27a0ec
DK
3662 goto bad_inode;
3663 }
3664 /* The only unlinked inodes we let through here have
3665 * valid i_mode and are being read by the orphan
3666 * recovery code: that's fine, we're about to complete
3667 * the process of deleting those. */
3668 }
ac27a0ec 3669 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
0fc1b451 3670 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
7973c0c1 3671 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
9b8f1f01 3672 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
a48380f7 3673 cpu_to_le32(EXT4_OS_HURD)) {
a1ddeb7e
BP
3674 ei->i_file_acl |=
3675 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
ac27a0ec 3676 }
a48380f7 3677 inode->i_size = ext4_isize(raw_inode);
ac27a0ec
DK
3678 ei->i_disksize = inode->i_size;
3679 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3680 ei->i_block_group = iloc.block_group;
3681 /*
3682 * NOTE! The in-memory inode i_data array is in little-endian order
3683 * even on big-endian machines: we do NOT byteswap the block numbers!
3684 */
617ba13b 3685 for (block = 0; block < EXT4_N_BLOCKS; block++)
ac27a0ec
DK
3686 ei->i_data[block] = raw_inode->i_block[block];
3687 INIT_LIST_HEAD(&ei->i_orphan);
3688
0040d987 3689 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
ac27a0ec 3690 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
617ba13b 3691 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
e5d2861f
KK
3692 EXT4_INODE_SIZE(inode->i_sb)) {
3693 brelse (bh);
1d1fe1ee 3694 ret = -EIO;
ac27a0ec 3695 goto bad_inode;
e5d2861f 3696 }
ac27a0ec
DK
3697 if (ei->i_extra_isize == 0) {
3698 /* The extra space is currently unused. Use it. */
617ba13b
MC
3699 ei->i_extra_isize = sizeof(struct ext4_inode) -
3700 EXT4_GOOD_OLD_INODE_SIZE;
ac27a0ec
DK
3701 } else {
3702 __le32 *magic = (void *)raw_inode +
617ba13b 3703 EXT4_GOOD_OLD_INODE_SIZE +
ac27a0ec 3704 ei->i_extra_isize;
617ba13b
MC
3705 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
3706 ei->i_state |= EXT4_STATE_XATTR;
ac27a0ec
DK
3707 }
3708 } else
3709 ei->i_extra_isize = 0;
3710
ef7f3835
KS
3711 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
3712 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
3713 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
3714 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
3715
25ec56b5
JNC
3716 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
3717 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3718 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3719 inode->i_version |=
3720 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
3721 }
3722
ac27a0ec 3723 if (S_ISREG(inode->i_mode)) {
617ba13b
MC
3724 inode->i_op = &ext4_file_inode_operations;
3725 inode->i_fop = &ext4_file_operations;
3726 ext4_set_aops(inode);
ac27a0ec 3727 } else if (S_ISDIR(inode->i_mode)) {
617ba13b
MC
3728 inode->i_op = &ext4_dir_inode_operations;
3729 inode->i_fop = &ext4_dir_operations;
ac27a0ec 3730 } else if (S_ISLNK(inode->i_mode)) {
617ba13b
MC
3731 if (ext4_inode_is_fast_symlink(inode))
3732 inode->i_op = &ext4_fast_symlink_inode_operations;
ac27a0ec 3733 else {
617ba13b
MC
3734 inode->i_op = &ext4_symlink_inode_operations;
3735 ext4_set_aops(inode);
ac27a0ec
DK
3736 }
3737 } else {
617ba13b 3738 inode->i_op = &ext4_special_inode_operations;
ac27a0ec
DK
3739 if (raw_inode->i_block[0])
3740 init_special_inode(inode, inode->i_mode,
3741 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
3742 else
3743 init_special_inode(inode, inode->i_mode,
3744 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
3745 }
3746 brelse (iloc.bh);
617ba13b 3747 ext4_set_inode_flags(inode);
1d1fe1ee
DH
3748 unlock_new_inode(inode);
3749 return inode;
ac27a0ec
DK
3750
3751bad_inode:
1d1fe1ee
DH
3752 iget_failed(inode);
3753 return ERR_PTR(ret);
ac27a0ec
DK
3754}
3755
0fc1b451
AK
3756static int ext4_inode_blocks_set(handle_t *handle,
3757 struct ext4_inode *raw_inode,
3758 struct ext4_inode_info *ei)
3759{
3760 struct inode *inode = &(ei->vfs_inode);
3761 u64 i_blocks = inode->i_blocks;
3762 struct super_block *sb = inode->i_sb;
3763 int err = 0;
3764
3765 if (i_blocks <= ~0U) {
3766 /*
3767 * i_blocks can be represnted in a 32 bit variable
3768 * as multiple of 512 bytes
3769 */
8180a562 3770 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
0fc1b451 3771 raw_inode->i_blocks_high = 0;
8180a562 3772 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
0fc1b451
AK
3773 } else if (i_blocks <= 0xffffffffffffULL) {
3774 /*
3775 * i_blocks can be represented in a 48 bit variable
3776 * as multiple of 512 bytes
3777 */
3778 err = ext4_update_rocompat_feature(handle, sb,
3779 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
3780 if (err)
3781 goto err_out;
3782 /* i_block is stored in the split 48 bit fields */
8180a562 3783 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
0fc1b451 3784 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
8180a562 3785 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
0fc1b451 3786 } else {
8180a562
AK
3787 /*
3788 * i_blocks should be represented in a 48 bit variable
3789 * as multiple of file system block size
3790 */
3791 err = ext4_update_rocompat_feature(handle, sb,
3792 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
3793 if (err)
3794 goto err_out;
3795 ei->i_flags |= EXT4_HUGE_FILE_FL;
3796 /* i_block is stored in file system block size */
3797 i_blocks = i_blocks >> (inode->i_blkbits - 9);
3798 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
3799 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
0fc1b451
AK
3800 }
3801err_out:
3802 return err;
3803}
3804
ac27a0ec
DK
3805/*
3806 * Post the struct inode info into an on-disk inode location in the
3807 * buffer-cache. This gobbles the caller's reference to the
3808 * buffer_head in the inode location struct.
3809 *
3810 * The caller must have write access to iloc->bh.
3811 */
617ba13b 3812static int ext4_do_update_inode(handle_t *handle,
ac27a0ec 3813 struct inode *inode,
617ba13b 3814 struct ext4_iloc *iloc)
ac27a0ec 3815{
617ba13b
MC
3816 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
3817 struct ext4_inode_info *ei = EXT4_I(inode);
ac27a0ec
DK
3818 struct buffer_head *bh = iloc->bh;
3819 int err = 0, rc, block;
3820
3821 /* For fields not not tracking in the in-memory inode,
3822 * initialise them to zero for new inodes. */
617ba13b
MC
3823 if (ei->i_state & EXT4_STATE_NEW)
3824 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
ac27a0ec 3825
ff9ddf7e 3826 ext4_get_inode_flags(ei);
ac27a0ec
DK
3827 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
3828 if(!(test_opt(inode->i_sb, NO_UID32))) {
3829 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
3830 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
3831/*
3832 * Fix up interoperability with old kernels. Otherwise, old inodes get
3833 * re-used with the upper 16 bits of the uid/gid intact
3834 */
3835 if(!ei->i_dtime) {
3836 raw_inode->i_uid_high =
3837 cpu_to_le16(high_16_bits(inode->i_uid));
3838 raw_inode->i_gid_high =
3839 cpu_to_le16(high_16_bits(inode->i_gid));
3840 } else {
3841 raw_inode->i_uid_high = 0;
3842 raw_inode->i_gid_high = 0;
3843 }
3844 } else {
3845 raw_inode->i_uid_low =
3846 cpu_to_le16(fs_high2lowuid(inode->i_uid));
3847 raw_inode->i_gid_low =
3848 cpu_to_le16(fs_high2lowgid(inode->i_gid));
3849 raw_inode->i_uid_high = 0;
3850 raw_inode->i_gid_high = 0;
3851 }
3852 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
ef7f3835
KS
3853
3854 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
3855 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
3856 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
3857 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
3858
0fc1b451
AK
3859 if (ext4_inode_blocks_set(handle, raw_inode, ei))
3860 goto out_brelse;
ac27a0ec 3861 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
267e4db9
AK
3862 /* clear the migrate flag in the raw_inode */
3863 raw_inode->i_flags = cpu_to_le32(ei->i_flags & ~EXT4_EXT_MIGRATE);
9b8f1f01
MC
3864 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
3865 cpu_to_le32(EXT4_OS_HURD))
a1ddeb7e
BP
3866 raw_inode->i_file_acl_high =
3867 cpu_to_le16(ei->i_file_acl >> 32);
7973c0c1 3868 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
a48380f7
AK
3869 ext4_isize_set(raw_inode, ei->i_disksize);
3870 if (ei->i_disksize > 0x7fffffffULL) {
3871 struct super_block *sb = inode->i_sb;
3872 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
3873 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
3874 EXT4_SB(sb)->s_es->s_rev_level ==
3875 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
3876 /* If this is the first large file
3877 * created, add a flag to the superblock.
3878 */
3879 err = ext4_journal_get_write_access(handle,
3880 EXT4_SB(sb)->s_sbh);
3881 if (err)
3882 goto out_brelse;
3883 ext4_update_dynamic_rev(sb);
3884 EXT4_SET_RO_COMPAT_FEATURE(sb,
617ba13b 3885 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
a48380f7
AK
3886 sb->s_dirt = 1;
3887 handle->h_sync = 1;
3888 err = ext4_journal_dirty_metadata(handle,
3889 EXT4_SB(sb)->s_sbh);
ac27a0ec
DK
3890 }
3891 }
3892 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
3893 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
3894 if (old_valid_dev(inode->i_rdev)) {
3895 raw_inode->i_block[0] =
3896 cpu_to_le32(old_encode_dev(inode->i_rdev));
3897 raw_inode->i_block[1] = 0;
3898 } else {
3899 raw_inode->i_block[0] = 0;
3900 raw_inode->i_block[1] =
3901 cpu_to_le32(new_encode_dev(inode->i_rdev));
3902 raw_inode->i_block[2] = 0;
3903 }
617ba13b 3904 } else for (block = 0; block < EXT4_N_BLOCKS; block++)
ac27a0ec
DK
3905 raw_inode->i_block[block] = ei->i_data[block];
3906
25ec56b5
JNC
3907 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
3908 if (ei->i_extra_isize) {
3909 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
3910 raw_inode->i_version_hi =
3911 cpu_to_le32(inode->i_version >> 32);
ac27a0ec 3912 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
25ec56b5
JNC
3913 }
3914
ac27a0ec 3915
617ba13b
MC
3916 BUFFER_TRACE(bh, "call ext4_journal_dirty_metadata");
3917 rc = ext4_journal_dirty_metadata(handle, bh);
ac27a0ec
DK
3918 if (!err)
3919 err = rc;
617ba13b 3920 ei->i_state &= ~EXT4_STATE_NEW;
ac27a0ec
DK
3921
3922out_brelse:
3923 brelse (bh);
617ba13b 3924 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
3925 return err;
3926}
3927
3928/*
617ba13b 3929 * ext4_write_inode()
ac27a0ec
DK
3930 *
3931 * We are called from a few places:
3932 *
3933 * - Within generic_file_write() for O_SYNC files.
3934 * Here, there will be no transaction running. We wait for any running
3935 * trasnaction to commit.
3936 *
3937 * - Within sys_sync(), kupdate and such.
3938 * We wait on commit, if tol to.
3939 *
3940 * - Within prune_icache() (PF_MEMALLOC == true)
3941 * Here we simply return. We can't afford to block kswapd on the
3942 * journal commit.
3943 *
3944 * In all cases it is actually safe for us to return without doing anything,
3945 * because the inode has been copied into a raw inode buffer in
617ba13b 3946 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
ac27a0ec
DK
3947 * knfsd.
3948 *
3949 * Note that we are absolutely dependent upon all inode dirtiers doing the
3950 * right thing: they *must* call mark_inode_dirty() after dirtying info in
3951 * which we are interested.
3952 *
3953 * It would be a bug for them to not do this. The code:
3954 *
3955 * mark_inode_dirty(inode)
3956 * stuff();
3957 * inode->i_size = expr;
3958 *
3959 * is in error because a kswapd-driven write_inode() could occur while
3960 * `stuff()' is running, and the new i_size will be lost. Plus the inode
3961 * will no longer be on the superblock's dirty inode list.
3962 */
617ba13b 3963int ext4_write_inode(struct inode *inode, int wait)
ac27a0ec
DK
3964{
3965 if (current->flags & PF_MEMALLOC)
3966 return 0;
3967
617ba13b 3968 if (ext4_journal_current_handle()) {
b38bd33a 3969 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
ac27a0ec
DK
3970 dump_stack();
3971 return -EIO;
3972 }
3973
3974 if (!wait)
3975 return 0;
3976
617ba13b 3977 return ext4_force_commit(inode->i_sb);
ac27a0ec
DK
3978}
3979
3980/*
617ba13b 3981 * ext4_setattr()
ac27a0ec
DK
3982 *
3983 * Called from notify_change.
3984 *
3985 * We want to trap VFS attempts to truncate the file as soon as
3986 * possible. In particular, we want to make sure that when the VFS
3987 * shrinks i_size, we put the inode on the orphan list and modify
3988 * i_disksize immediately, so that during the subsequent flushing of
3989 * dirty pages and freeing of disk blocks, we can guarantee that any
3990 * commit will leave the blocks being flushed in an unused state on
3991 * disk. (On recovery, the inode will get truncated and the blocks will
3992 * be freed, so we have a strong guarantee that no future commit will
3993 * leave these blocks visible to the user.)
3994 *
678aaf48
JK
3995 * Another thing we have to assure is that if we are in ordered mode
3996 * and inode is still attached to the committing transaction, we must
3997 * we start writeout of all the dirty pages which are being truncated.
3998 * This way we are sure that all the data written in the previous
3999 * transaction are already on disk (truncate waits for pages under
4000 * writeback).
4001 *
4002 * Called with inode->i_mutex down.
ac27a0ec 4003 */
617ba13b 4004int ext4_setattr(struct dentry *dentry, struct iattr *attr)
ac27a0ec
DK
4005{
4006 struct inode *inode = dentry->d_inode;
4007 int error, rc = 0;
4008 const unsigned int ia_valid = attr->ia_valid;
4009
4010 error = inode_change_ok(inode, attr);
4011 if (error)
4012 return error;
4013
4014 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
4015 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
4016 handle_t *handle;
4017
4018 /* (user+group)*(old+new) structure, inode write (sb,
4019 * inode block, ? - but truncate inode update has it) */
617ba13b
MC
4020 handle = ext4_journal_start(inode, 2*(EXT4_QUOTA_INIT_BLOCKS(inode->i_sb)+
4021 EXT4_QUOTA_DEL_BLOCKS(inode->i_sb))+3);
ac27a0ec
DK
4022 if (IS_ERR(handle)) {
4023 error = PTR_ERR(handle);
4024 goto err_out;
4025 }
4026 error = DQUOT_TRANSFER(inode, attr) ? -EDQUOT : 0;
4027 if (error) {
617ba13b 4028 ext4_journal_stop(handle);
ac27a0ec
DK
4029 return error;
4030 }
4031 /* Update corresponding info in inode so that everything is in
4032 * one transaction */
4033 if (attr->ia_valid & ATTR_UID)
4034 inode->i_uid = attr->ia_uid;
4035 if (attr->ia_valid & ATTR_GID)
4036 inode->i_gid = attr->ia_gid;
617ba13b
MC
4037 error = ext4_mark_inode_dirty(handle, inode);
4038 ext4_journal_stop(handle);
ac27a0ec
DK
4039 }
4040
e2b46574
ES
4041 if (attr->ia_valid & ATTR_SIZE) {
4042 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
4043 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4044
4045 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
4046 error = -EFBIG;
4047 goto err_out;
4048 }
4049 }
4050 }
4051
ac27a0ec
DK
4052 if (S_ISREG(inode->i_mode) &&
4053 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
4054 handle_t *handle;
4055
617ba13b 4056 handle = ext4_journal_start(inode, 3);
ac27a0ec
DK
4057 if (IS_ERR(handle)) {
4058 error = PTR_ERR(handle);
4059 goto err_out;
4060 }
4061
617ba13b
MC
4062 error = ext4_orphan_add(handle, inode);
4063 EXT4_I(inode)->i_disksize = attr->ia_size;
4064 rc = ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
4065 if (!error)
4066 error = rc;
617ba13b 4067 ext4_journal_stop(handle);
678aaf48
JK
4068
4069 if (ext4_should_order_data(inode)) {
4070 error = ext4_begin_ordered_truncate(inode,
4071 attr->ia_size);
4072 if (error) {
4073 /* Do as much error cleanup as possible */
4074 handle = ext4_journal_start(inode, 3);
4075 if (IS_ERR(handle)) {
4076 ext4_orphan_del(NULL, inode);
4077 goto err_out;
4078 }
4079 ext4_orphan_del(handle, inode);
4080 ext4_journal_stop(handle);
4081 goto err_out;
4082 }
4083 }
ac27a0ec
DK
4084 }
4085
4086 rc = inode_setattr(inode, attr);
4087
617ba13b 4088 /* If inode_setattr's call to ext4_truncate failed to get a
ac27a0ec
DK
4089 * transaction handle at all, we need to clean up the in-core
4090 * orphan list manually. */
4091 if (inode->i_nlink)
617ba13b 4092 ext4_orphan_del(NULL, inode);
ac27a0ec
DK
4093
4094 if (!rc && (ia_valid & ATTR_MODE))
617ba13b 4095 rc = ext4_acl_chmod(inode);
ac27a0ec
DK
4096
4097err_out:
617ba13b 4098 ext4_std_error(inode->i_sb, error);
ac27a0ec
DK
4099 if (!error)
4100 error = rc;
4101 return error;
4102}
4103
4104
4105/*
4106 * How many blocks doth make a writepage()?
4107 *
4108 * With N blocks per page, it may be:
4109 * N data blocks
4110 * 2 indirect block
4111 * 2 dindirect
4112 * 1 tindirect
4113 * N+5 bitmap blocks (from the above)
4114 * N+5 group descriptor summary blocks
4115 * 1 inode block
4116 * 1 superblock.
617ba13b 4117 * 2 * EXT4_SINGLEDATA_TRANS_BLOCKS for the quote files
ac27a0ec 4118 *
617ba13b 4119 * 3 * (N + 5) + 2 + 2 * EXT4_SINGLEDATA_TRANS_BLOCKS
ac27a0ec
DK
4120 *
4121 * With ordered or writeback data it's the same, less the N data blocks.
4122 *
4123 * If the inode's direct blocks can hold an integral number of pages then a
4124 * page cannot straddle two indirect blocks, and we can only touch one indirect
4125 * and dindirect block, and the "5" above becomes "3".
4126 *
4127 * This still overestimates under most circumstances. If we were to pass the
4128 * start and end offsets in here as well we could do block_to_path() on each
4129 * block and work out the exact number of indirects which are touched. Pah.
4130 */
4131
a86c6181 4132int ext4_writepage_trans_blocks(struct inode *inode)
ac27a0ec 4133{
617ba13b
MC
4134 int bpp = ext4_journal_blocks_per_page(inode);
4135 int indirects = (EXT4_NDIR_BLOCKS % bpp) ? 5 : 3;
ac27a0ec
DK
4136 int ret;
4137
a86c6181
AT
4138 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
4139 return ext4_ext_writepage_trans_blocks(inode, bpp);
4140
617ba13b 4141 if (ext4_should_journal_data(inode))
ac27a0ec
DK
4142 ret = 3 * (bpp + indirects) + 2;
4143 else
4144 ret = 2 * (bpp + indirects) + 2;
4145
4146#ifdef CONFIG_QUOTA
4147 /* We know that structure was already allocated during DQUOT_INIT so
4148 * we will be updating only the data blocks + inodes */
617ba13b 4149 ret += 2*EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb);
ac27a0ec
DK
4150#endif
4151
4152 return ret;
4153}
4154
4155/*
617ba13b 4156 * The caller must have previously called ext4_reserve_inode_write().
ac27a0ec
DK
4157 * Give this, we know that the caller already has write access to iloc->bh.
4158 */
617ba13b
MC
4159int ext4_mark_iloc_dirty(handle_t *handle,
4160 struct inode *inode, struct ext4_iloc *iloc)
ac27a0ec
DK
4161{
4162 int err = 0;
4163
25ec56b5
JNC
4164 if (test_opt(inode->i_sb, I_VERSION))
4165 inode_inc_iversion(inode);
4166
ac27a0ec
DK
4167 /* the do_update_inode consumes one bh->b_count */
4168 get_bh(iloc->bh);
4169
dab291af 4170 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
617ba13b 4171 err = ext4_do_update_inode(handle, inode, iloc);
ac27a0ec
DK
4172 put_bh(iloc->bh);
4173 return err;
4174}
4175
4176/*
4177 * On success, We end up with an outstanding reference count against
4178 * iloc->bh. This _must_ be cleaned up later.
4179 */
4180
4181int
617ba13b
MC
4182ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4183 struct ext4_iloc *iloc)
ac27a0ec
DK
4184{
4185 int err = 0;
4186 if (handle) {
617ba13b 4187 err = ext4_get_inode_loc(inode, iloc);
ac27a0ec
DK
4188 if (!err) {
4189 BUFFER_TRACE(iloc->bh, "get_write_access");
617ba13b 4190 err = ext4_journal_get_write_access(handle, iloc->bh);
ac27a0ec
DK
4191 if (err) {
4192 brelse(iloc->bh);
4193 iloc->bh = NULL;
4194 }
4195 }
4196 }
617ba13b 4197 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
4198 return err;
4199}
4200
6dd4ee7c
KS
4201/*
4202 * Expand an inode by new_extra_isize bytes.
4203 * Returns 0 on success or negative error number on failure.
4204 */
1d03ec98
AK
4205static int ext4_expand_extra_isize(struct inode *inode,
4206 unsigned int new_extra_isize,
4207 struct ext4_iloc iloc,
4208 handle_t *handle)
6dd4ee7c
KS
4209{
4210 struct ext4_inode *raw_inode;
4211 struct ext4_xattr_ibody_header *header;
4212 struct ext4_xattr_entry *entry;
4213
4214 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4215 return 0;
4216
4217 raw_inode = ext4_raw_inode(&iloc);
4218
4219 header = IHDR(inode, raw_inode);
4220 entry = IFIRST(header);
4221
4222 /* No extended attributes present */
4223 if (!(EXT4_I(inode)->i_state & EXT4_STATE_XATTR) ||
4224 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
4225 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4226 new_extra_isize);
4227 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4228 return 0;
4229 }
4230
4231 /* try to expand with EAs present */
4232 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4233 raw_inode, handle);
4234}
4235
ac27a0ec
DK
4236/*
4237 * What we do here is to mark the in-core inode as clean with respect to inode
4238 * dirtiness (it may still be data-dirty).
4239 * This means that the in-core inode may be reaped by prune_icache
4240 * without having to perform any I/O. This is a very good thing,
4241 * because *any* task may call prune_icache - even ones which
4242 * have a transaction open against a different journal.
4243 *
4244 * Is this cheating? Not really. Sure, we haven't written the
4245 * inode out, but prune_icache isn't a user-visible syncing function.
4246 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4247 * we start and wait on commits.
4248 *
4249 * Is this efficient/effective? Well, we're being nice to the system
4250 * by cleaning up our inodes proactively so they can be reaped
4251 * without I/O. But we are potentially leaving up to five seconds'
4252 * worth of inodes floating about which prune_icache wants us to
4253 * write out. One way to fix that would be to get prune_icache()
4254 * to do a write_super() to free up some memory. It has the desired
4255 * effect.
4256 */
617ba13b 4257int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
ac27a0ec 4258{
617ba13b 4259 struct ext4_iloc iloc;
6dd4ee7c
KS
4260 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4261 static unsigned int mnt_count;
4262 int err, ret;
ac27a0ec
DK
4263
4264 might_sleep();
617ba13b 4265 err = ext4_reserve_inode_write(handle, inode, &iloc);
6dd4ee7c
KS
4266 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
4267 !(EXT4_I(inode)->i_state & EXT4_STATE_NO_EXPAND)) {
4268 /*
4269 * We need extra buffer credits since we may write into EA block
4270 * with this same handle. If journal_extend fails, then it will
4271 * only result in a minor loss of functionality for that inode.
4272 * If this is felt to be critical, then e2fsck should be run to
4273 * force a large enough s_min_extra_isize.
4274 */
4275 if ((jbd2_journal_extend(handle,
4276 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4277 ret = ext4_expand_extra_isize(inode,
4278 sbi->s_want_extra_isize,
4279 iloc, handle);
4280 if (ret) {
4281 EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND;
c1bddad9
AK
4282 if (mnt_count !=
4283 le16_to_cpu(sbi->s_es->s_mnt_count)) {
46e665e9 4284 ext4_warning(inode->i_sb, __func__,
6dd4ee7c
KS
4285 "Unable to expand inode %lu. Delete"
4286 " some EAs or run e2fsck.",
4287 inode->i_ino);
c1bddad9
AK
4288 mnt_count =
4289 le16_to_cpu(sbi->s_es->s_mnt_count);
6dd4ee7c
KS
4290 }
4291 }
4292 }
4293 }
ac27a0ec 4294 if (!err)
617ba13b 4295 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
ac27a0ec
DK
4296 return err;
4297}
4298
4299/*
617ba13b 4300 * ext4_dirty_inode() is called from __mark_inode_dirty()
ac27a0ec
DK
4301 *
4302 * We're really interested in the case where a file is being extended.
4303 * i_size has been changed by generic_commit_write() and we thus need
4304 * to include the updated inode in the current transaction.
4305 *
4306 * Also, DQUOT_ALLOC_SPACE() will always dirty the inode when blocks
4307 * are allocated to the file.
4308 *
4309 * If the inode is marked synchronous, we don't honour that here - doing
4310 * so would cause a commit on atime updates, which we don't bother doing.
4311 * We handle synchronous inodes at the highest possible level.
4312 */
617ba13b 4313void ext4_dirty_inode(struct inode *inode)
ac27a0ec 4314{
617ba13b 4315 handle_t *current_handle = ext4_journal_current_handle();
ac27a0ec
DK
4316 handle_t *handle;
4317
617ba13b 4318 handle = ext4_journal_start(inode, 2);
ac27a0ec
DK
4319 if (IS_ERR(handle))
4320 goto out;
4321 if (current_handle &&
4322 current_handle->h_transaction != handle->h_transaction) {
4323 /* This task has a transaction open against a different fs */
4324 printk(KERN_EMERG "%s: transactions do not match!\n",
46e665e9 4325 __func__);
ac27a0ec
DK
4326 } else {
4327 jbd_debug(5, "marking dirty. outer handle=%p\n",
4328 current_handle);
617ba13b 4329 ext4_mark_inode_dirty(handle, inode);
ac27a0ec 4330 }
617ba13b 4331 ext4_journal_stop(handle);
ac27a0ec
DK
4332out:
4333 return;
4334}
4335
4336#if 0
4337/*
4338 * Bind an inode's backing buffer_head into this transaction, to prevent
4339 * it from being flushed to disk early. Unlike
617ba13b 4340 * ext4_reserve_inode_write, this leaves behind no bh reference and
ac27a0ec
DK
4341 * returns no iloc structure, so the caller needs to repeat the iloc
4342 * lookup to mark the inode dirty later.
4343 */
617ba13b 4344static int ext4_pin_inode(handle_t *handle, struct inode *inode)
ac27a0ec 4345{
617ba13b 4346 struct ext4_iloc iloc;
ac27a0ec
DK
4347
4348 int err = 0;
4349 if (handle) {
617ba13b 4350 err = ext4_get_inode_loc(inode, &iloc);
ac27a0ec
DK
4351 if (!err) {
4352 BUFFER_TRACE(iloc.bh, "get_write_access");
dab291af 4353 err = jbd2_journal_get_write_access(handle, iloc.bh);
ac27a0ec 4354 if (!err)
617ba13b 4355 err = ext4_journal_dirty_metadata(handle,
ac27a0ec
DK
4356 iloc.bh);
4357 brelse(iloc.bh);
4358 }
4359 }
617ba13b 4360 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
4361 return err;
4362}
4363#endif
4364
617ba13b 4365int ext4_change_inode_journal_flag(struct inode *inode, int val)
ac27a0ec
DK
4366{
4367 journal_t *journal;
4368 handle_t *handle;
4369 int err;
4370
4371 /*
4372 * We have to be very careful here: changing a data block's
4373 * journaling status dynamically is dangerous. If we write a
4374 * data block to the journal, change the status and then delete
4375 * that block, we risk forgetting to revoke the old log record
4376 * from the journal and so a subsequent replay can corrupt data.
4377 * So, first we make sure that the journal is empty and that
4378 * nobody is changing anything.
4379 */
4380
617ba13b 4381 journal = EXT4_JOURNAL(inode);
d699594d 4382 if (is_journal_aborted(journal))
ac27a0ec
DK
4383 return -EROFS;
4384
dab291af
MC
4385 jbd2_journal_lock_updates(journal);
4386 jbd2_journal_flush(journal);
ac27a0ec
DK
4387
4388 /*
4389 * OK, there are no updates running now, and all cached data is
4390 * synced to disk. We are now in a completely consistent state
4391 * which doesn't have anything in the journal, and we know that
4392 * no filesystem updates are running, so it is safe to modify
4393 * the inode's in-core data-journaling state flag now.
4394 */
4395
4396 if (val)
617ba13b 4397 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
ac27a0ec 4398 else
617ba13b
MC
4399 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
4400 ext4_set_aops(inode);
ac27a0ec 4401
dab291af 4402 jbd2_journal_unlock_updates(journal);
ac27a0ec
DK
4403
4404 /* Finally we can mark the inode as dirty. */
4405
617ba13b 4406 handle = ext4_journal_start(inode, 1);
ac27a0ec
DK
4407 if (IS_ERR(handle))
4408 return PTR_ERR(handle);
4409
617ba13b 4410 err = ext4_mark_inode_dirty(handle, inode);
ac27a0ec 4411 handle->h_sync = 1;
617ba13b
MC
4412 ext4_journal_stop(handle);
4413 ext4_std_error(inode->i_sb, err);
ac27a0ec
DK
4414
4415 return err;
4416}
2e9ee850
AK
4417
4418static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4419{
4420 return !buffer_mapped(bh);
4421}
4422
4423int ext4_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4424{
4425 loff_t size;
4426 unsigned long len;
4427 int ret = -EINVAL;
4428 struct file *file = vma->vm_file;
4429 struct inode *inode = file->f_path.dentry->d_inode;
4430 struct address_space *mapping = inode->i_mapping;
4431
4432 /*
4433 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
4434 * get i_mutex because we are already holding mmap_sem.
4435 */
4436 down_read(&inode->i_alloc_sem);
4437 size = i_size_read(inode);
4438 if (page->mapping != mapping || size <= page_offset(page)
4439 || !PageUptodate(page)) {
4440 /* page got truncated from under us? */
4441 goto out_unlock;
4442 }
4443 ret = 0;
4444 if (PageMappedToDisk(page))
4445 goto out_unlock;
4446
4447 if (page->index == size >> PAGE_CACHE_SHIFT)
4448 len = size & ~PAGE_CACHE_MASK;
4449 else
4450 len = PAGE_CACHE_SIZE;
4451
4452 if (page_has_buffers(page)) {
4453 /* return if we have all the buffers mapped */
4454 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
4455 ext4_bh_unmapped))
4456 goto out_unlock;
4457 }
4458 /*
4459 * OK, we need to fill the hole... Do write_begin write_end
4460 * to do block allocation/reservation.We are not holding
4461 * inode.i__mutex here. That allow * parallel write_begin,
4462 * write_end call. lock_page prevent this from happening
4463 * on the same page though
4464 */
4465 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
4466 len, AOP_FLAG_UNINTERRUPTIBLE, &page, NULL);
4467 if (ret < 0)
4468 goto out_unlock;
4469 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
4470 len, len, page, NULL);
4471 if (ret < 0)
4472 goto out_unlock;
4473 ret = 0;
4474out_unlock:
4475 up_read(&inode->i_alloc_sem);
4476 return ret;
4477}