blob: d01a6cdbf8540e5812e8855dfe8e9a3e27ca9a75 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/inode.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Goal-directed block allocation by Stephen Tweedie
16 * (sct@redhat.com), 1993, 1998
17 * Big-endian to little-endian byte-swapping/bitmaps by
18 * David S. Miller (davem@caip.rutgers.edu), 1995
19 * 64-bit file support on 64-bit platforms by Jakub Jelinek
20 * (jj@sunsite.ms.mff.cuni.cz)
21 *
Mingming Cao617ba132006-10-11 01:20:53 -070022 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070023 */
24
25#include <linux/module.h>
26#include <linux/fs.h>
27#include <linux/time.h>
Mingming Caodab291a2006-10-11 01:21:01 -070028#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070029#include <linux/highuid.h>
30#include <linux/pagemap.h>
31#include <linux/quotaops.h>
32#include <linux/string.h>
33#include <linux/buffer_head.h>
34#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040035#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070036#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000037#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070038#include <linux/uio.h>
39#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040040#include <linux/workqueue.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040041
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040042#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070043#include "xattr.h"
44#include "acl.h"
Mingming Caod2a17632008-07-14 17:52:37 -040045#include "ext4_extents.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070046
Theodore Ts'o9bffad12009-06-17 11:48:11 -040047#include <trace/events/ext4.h>
48
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040049#define MPAGE_DA_EXTENT_TAIL 0x01
50
Jan Kara678aaf42008-07-11 19:27:31 -040051static inline int ext4_begin_ordered_truncate(struct inode *inode,
52 loff_t new_size)
53{
Jan Kara7f5aa212009-02-10 11:15:34 -050054 return jbd2_journal_begin_ordered_truncate(
55 EXT4_SB(inode->i_sb)->s_journal,
56 &EXT4_I(inode)->jinode,
57 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -040058}
59
Alex Tomas64769242008-07-11 19:27:31 -040060static void ext4_invalidatepage(struct page *page, unsigned long offset);
61
Dave Kleikampac27a0e2006-10-11 01:20:50 -070062/*
63 * Test whether an inode is a fast symlink.
64 */
Mingming Cao617ba132006-10-11 01:20:53 -070065static int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070066{
Mingming Cao617ba132006-10-11 01:20:53 -070067 int ea_blocks = EXT4_I(inode)->i_file_acl ?
Dave Kleikampac27a0e2006-10-11 01:20:50 -070068 (inode->i_sb->s_blocksize >> 9) : 0;
69
70 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
71}
72
73/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -070074 * Work out how many blocks we need to proceed with the next chunk of a
75 * truncate transaction.
76 */
77static unsigned long blocks_for_truncate(struct inode *inode)
78{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -050079 ext4_lblk_t needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070080
81 needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9);
82
83 /* Give ourselves just enough room to cope with inodes in which
84 * i_blocks is corrupt: we've seen disk corruptions in the past
85 * which resulted in random data in an inode which looked enough
Mingming Cao617ba132006-10-11 01:20:53 -070086 * like a regular file for ext4 to try to delete it. Things
Dave Kleikampac27a0e2006-10-11 01:20:50 -070087 * will go a bit crazy if that happens, but at least we should
88 * try not to panic the whole kernel. */
89 if (needed < 2)
90 needed = 2;
91
92 /* But we need to bound the transaction so we don't overflow the
93 * journal. */
Mingming Cao617ba132006-10-11 01:20:53 -070094 if (needed > EXT4_MAX_TRANS_DATA)
95 needed = EXT4_MAX_TRANS_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070096
Mingming Cao617ba132006-10-11 01:20:53 -070097 return EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070098}
99
100/*
101 * Truncate transactions can be complex and absolutely huge. So we need to
102 * be able to restart the transaction at a conventient checkpoint to make
103 * sure we don't overflow the journal.
104 *
105 * start_transaction gets us a new handle for a truncate transaction,
106 * and extend_transaction tries to extend the existing one a bit. If
107 * extend fails, we need to propagate the failure up and restart the
108 * transaction in the top-level truncate loop. --sct
109 */
110static handle_t *start_transaction(struct inode *inode)
111{
112 handle_t *result;
113
Mingming Cao617ba132006-10-11 01:20:53 -0700114 result = ext4_journal_start(inode, blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700115 if (!IS_ERR(result))
116 return result;
117
Mingming Cao617ba132006-10-11 01:20:53 -0700118 ext4_std_error(inode->i_sb, PTR_ERR(result));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700119 return result;
120}
121
122/*
123 * Try to extend this transaction for the purposes of truncation.
124 *
125 * Returns 0 if we managed to create more room. If we can't create more
126 * room, and the transaction must be restarted we return 1.
127 */
128static int try_to_extend_transaction(handle_t *handle, struct inode *inode)
129{
Frank Mayhar03901312009-01-07 00:06:22 -0500130 if (!ext4_handle_valid(handle))
131 return 0;
132 if (ext4_handle_has_enough_credits(handle, EXT4_RESERVE_TRANS_BLOCKS+1))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700133 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700134 if (!ext4_journal_extend(handle, blocks_for_truncate(inode)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700135 return 0;
136 return 1;
137}
138
139/*
140 * Restart the transaction associated with *handle. This does a commit,
141 * so before we call here everything must be consistently dirtied against
142 * this transaction.
143 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500144int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -0400145 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700146{
Jan Kara487caee2009-08-17 22:17:20 -0400147 int ret;
148
149 /*
150 * Drop i_data_sem to avoid deadlock with ext4_get_blocks At this
151 * moment, get_block can be called only for blocks inside i_size since
152 * page cache has been already dropped and writes are blocked by
153 * i_mutex. So we can safely drop the i_data_sem here.
154 */
Frank Mayhar03901312009-01-07 00:06:22 -0500155 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700156 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400157 up_write(&EXT4_I(inode)->i_data_sem);
158 ret = ext4_journal_restart(handle, blocks_for_truncate(inode));
159 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500160 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400161
162 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700163}
164
165/*
166 * Called at the last iput() if i_nlink is zero.
167 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400168void ext4_delete_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700169{
170 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400171 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700172
Jan Kara678aaf42008-07-11 19:27:31 -0400173 if (ext4_should_order_data(inode))
174 ext4_begin_ordered_truncate(inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700175 truncate_inode_pages(&inode->i_data, 0);
176
177 if (is_bad_inode(inode))
178 goto no_delete;
179
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400180 handle = ext4_journal_start(inode, blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700181 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400182 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700183 /*
184 * If we're going to skip the normal cleanup, we still need to
185 * make sure that the in-core orphan linked list is properly
186 * cleaned up.
187 */
Mingming Cao617ba132006-10-11 01:20:53 -0700188 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700189 goto no_delete;
190 }
191
192 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500193 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700194 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400195 err = ext4_mark_inode_dirty(handle, inode);
196 if (err) {
197 ext4_warning(inode->i_sb, __func__,
198 "couldn't mark inode dirty (err %d)", err);
199 goto stop_handle;
200 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700201 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700202 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400203
204 /*
205 * ext4_ext_truncate() doesn't reserve any slop when it
206 * restarts journal transactions; therefore there may not be
207 * enough credits left in the handle to remove the inode from
208 * the orphan list and set the dtime field.
209 */
Frank Mayhar03901312009-01-07 00:06:22 -0500210 if (!ext4_handle_has_enough_credits(handle, 3)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400211 err = ext4_journal_extend(handle, 3);
212 if (err > 0)
213 err = ext4_journal_restart(handle, 3);
214 if (err != 0) {
215 ext4_warning(inode->i_sb, __func__,
216 "couldn't extend journal (err %d)", err);
217 stop_handle:
218 ext4_journal_stop(handle);
219 goto no_delete;
220 }
221 }
222
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700223 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700224 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700225 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700226 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700227 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700228 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229 * (Well, we could do this if we need to, but heck - it works)
230 */
Mingming Cao617ba132006-10-11 01:20:53 -0700231 ext4_orphan_del(handle, inode);
232 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233
234 /*
235 * One subtle ordering requirement: if anything has gone wrong
236 * (transaction abort, IO errors, whatever), then we can still
237 * do these next steps (the fs will already have been marked as
238 * having errors), but we can't free the inode if the mark_dirty
239 * fails.
240 */
Mingming Cao617ba132006-10-11 01:20:53 -0700241 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 /* If that failed, just do the required in-core inode clear. */
243 clear_inode(inode);
244 else
Mingming Cao617ba132006-10-11 01:20:53 -0700245 ext4_free_inode(handle, inode);
246 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700247 return;
248no_delete:
249 clear_inode(inode); /* We must guarantee clearing of inode... */
250}
251
252typedef struct {
253 __le32 *p;
254 __le32 key;
255 struct buffer_head *bh;
256} Indirect;
257
258static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
259{
260 p->key = *(p->p = v);
261 p->bh = bh;
262}
263
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700264/**
Mingming Cao617ba132006-10-11 01:20:53 -0700265 * ext4_block_to_path - parse the block number into array of offsets
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266 * @inode: inode in question (we are only interested in its superblock)
267 * @i_block: block number to be parsed
268 * @offsets: array to store the offsets in
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400269 * @boundary: set this non-zero if the referred-to block is likely to be
270 * followed (on disk) by an indirect block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700271 *
Mingming Cao617ba132006-10-11 01:20:53 -0700272 * To store the locations of file's data ext4 uses a data structure common
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700273 * for UNIX filesystems - tree of pointers anchored in the inode, with
274 * data blocks at leaves and indirect blocks in intermediate nodes.
275 * This function translates the block number into path in that tree -
276 * return value is the path length and @offsets[n] is the offset of
277 * pointer to (n+1)th node in the nth one. If @block is out of range
278 * (negative or too large) warning is printed and zero returned.
279 *
280 * Note: function doesn't find node addresses, so no IO is needed. All
281 * we need to know is the capacity of indirect blocks (taken from the
282 * inode->i_sb).
283 */
284
285/*
286 * Portability note: the last comparison (check that we fit into triple
287 * indirect block) is spelled differently, because otherwise on an
288 * architecture with 32-bit longs and 8Kb pages we might get into trouble
289 * if our filesystem had 8Kb blocks. We might use long long, but that would
290 * kill us on x86. Oh, well, at least the sign propagation does not matter -
291 * i_block would have to be negative in the very beginning, so we would not
292 * get there at all.
293 */
294
Mingming Cao617ba132006-10-11 01:20:53 -0700295static int ext4_block_to_path(struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400296 ext4_lblk_t i_block,
297 ext4_lblk_t offsets[4], int *boundary)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700298{
Mingming Cao617ba132006-10-11 01:20:53 -0700299 int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb);
300 int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb);
301 const long direct_blocks = EXT4_NDIR_BLOCKS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700302 indirect_blocks = ptrs,
303 double_blocks = (1 << (ptrs_bits * 2));
304 int n = 0;
305 int final = 0;
306
Roel Kluinc333e072009-08-10 22:47:22 -0400307 if (i_block < direct_blocks) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700308 offsets[n++] = i_block;
309 final = direct_blocks;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400310 } else if ((i_block -= direct_blocks) < indirect_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700311 offsets[n++] = EXT4_IND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312 offsets[n++] = i_block;
313 final = ptrs;
314 } else if ((i_block -= indirect_blocks) < double_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700315 offsets[n++] = EXT4_DIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700316 offsets[n++] = i_block >> ptrs_bits;
317 offsets[n++] = i_block & (ptrs - 1);
318 final = ptrs;
319 } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
Mingming Cao617ba132006-10-11 01:20:53 -0700320 offsets[n++] = EXT4_TIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 offsets[n++] = i_block >> (ptrs_bits * 2);
322 offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
323 offsets[n++] = i_block & (ptrs - 1);
324 final = ptrs;
325 } else {
Eric Sandeene2b46572008-01-28 23:58:27 -0500326 ext4_warning(inode->i_sb, "ext4_block_to_path",
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400327 "block %lu > max in inode %lu",
328 i_block + direct_blocks +
329 indirect_blocks + double_blocks, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700330 }
331 if (boundary)
332 *boundary = final - 1 - (i_block & (ptrs - 1));
333 return n;
334}
335
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400336static int __ext4_check_blockref(const char *function, struct inode *inode,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400337 __le32 *p, unsigned int max)
338{
Thiemo Nagelf73953c2009-04-07 18:46:47 -0400339 __le32 *bref = p;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400340 unsigned int blk;
341
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400342 while (bref < p+max) {
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400343 blk = le32_to_cpu(*bref++);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400344 if (blk &&
345 unlikely(!ext4_data_block_valid(EXT4_SB(inode->i_sb),
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400346 blk, 1))) {
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400347 ext4_error(inode->i_sb, function,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400348 "invalid block reference %u "
349 "in inode #%lu", blk, inode->i_ino);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400350 return -EIO;
351 }
352 }
353 return 0;
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400354}
355
356
357#define ext4_check_indirect_blockref(inode, bh) \
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400358 __ext4_check_blockref(__func__, inode, (__le32 *)(bh)->b_data, \
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400359 EXT4_ADDR_PER_BLOCK((inode)->i_sb))
360
361#define ext4_check_inode_blockref(inode) \
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400362 __ext4_check_blockref(__func__, inode, EXT4_I(inode)->i_data, \
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400363 EXT4_NDIR_BLOCKS)
364
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365/**
Mingming Cao617ba132006-10-11 01:20:53 -0700366 * ext4_get_branch - read the chain of indirect blocks leading to data
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700367 * @inode: inode in question
368 * @depth: depth of the chain (1 - direct pointer, etc.)
369 * @offsets: offsets of pointers in inode/indirect blocks
370 * @chain: place to store the result
371 * @err: here we store the error value
372 *
373 * Function fills the array of triples <key, p, bh> and returns %NULL
374 * if everything went OK or the pointer to the last filled triple
375 * (incomplete one) otherwise. Upon the return chain[i].key contains
376 * the number of (i+1)-th block in the chain (as it is stored in memory,
377 * i.e. little-endian 32-bit), chain[i].p contains the address of that
378 * number (it points into struct inode for i==0 and into the bh->b_data
379 * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
380 * block for i>0 and NULL for i==0. In other words, it holds the block
381 * numbers of the chain, addresses they were taken from (and where we can
382 * verify that chain did not change) and buffer_heads hosting these
383 * numbers.
384 *
385 * Function stops when it stumbles upon zero pointer (absent block)
386 * (pointer to last triple returned, *@err == 0)
387 * or when it gets an IO error reading an indirect block
388 * (ditto, *@err == -EIO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700389 * or when it reads all @depth-1 indirect blocks successfully and finds
390 * the whole chain, all way to the data (returns %NULL, *err == 0).
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500391 *
392 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500393 * down_read(&EXT4_I(inode)->i_data_sem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700394 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500395static Indirect *ext4_get_branch(struct inode *inode, int depth,
396 ext4_lblk_t *offsets,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700397 Indirect chain[4], int *err)
398{
399 struct super_block *sb = inode->i_sb;
400 Indirect *p = chain;
401 struct buffer_head *bh;
402
403 *err = 0;
404 /* i_data is not going away, no lock needed */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400405 add_chain(chain, NULL, EXT4_I(inode)->i_data + *offsets);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700406 if (!p->key)
407 goto no_block;
408 while (--depth) {
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400409 bh = sb_getblk(sb, le32_to_cpu(p->key));
410 if (unlikely(!bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700411 goto failure;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400412
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400413 if (!bh_uptodate_or_lock(bh)) {
414 if (bh_submit_read(bh) < 0) {
415 put_bh(bh);
416 goto failure;
417 }
418 /* validate block references */
419 if (ext4_check_indirect_blockref(inode, bh)) {
420 put_bh(bh);
421 goto failure;
422 }
423 }
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400424
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400425 add_chain(++p, bh, (__le32 *)bh->b_data + *++offsets);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700426 /* Reader: end */
427 if (!p->key)
428 goto no_block;
429 }
430 return NULL;
431
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700432failure:
433 *err = -EIO;
434no_block:
435 return p;
436}
437
438/**
Mingming Cao617ba132006-10-11 01:20:53 -0700439 * ext4_find_near - find a place for allocation with sufficient locality
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700440 * @inode: owner
441 * @ind: descriptor of indirect block.
442 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000443 * This function returns the preferred place for block allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700444 * It is used when heuristic for sequential allocation fails.
445 * Rules are:
446 * + if there is a block to the left of our position - allocate near it.
447 * + if pointer will live in indirect block - allocate near that block.
448 * + if pointer will live in inode - allocate in the same
449 * cylinder group.
450 *
451 * In the latter case we colour the starting block by the callers PID to
452 * prevent it from clashing with concurrent allocations for a different inode
453 * in the same block group. The PID is used here so that functionally related
454 * files will be close-by on-disk.
455 *
456 * Caller must make sure that @ind is valid and will stay that way.
457 */
Mingming Cao617ba132006-10-11 01:20:53 -0700458static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700459{
Mingming Cao617ba132006-10-11 01:20:53 -0700460 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400461 __le32 *start = ind->bh ? (__le32 *) ind->bh->b_data : ei->i_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700462 __le32 *p;
Mingming Cao617ba132006-10-11 01:20:53 -0700463 ext4_fsblk_t bg_start;
Valerie Clement74d34872008-02-15 13:43:07 -0500464 ext4_fsblk_t last_block;
Mingming Cao617ba132006-10-11 01:20:53 -0700465 ext4_grpblk_t colour;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400466 ext4_group_t block_group;
467 int flex_size = ext4_flex_bg_size(EXT4_SB(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700468
469 /* Try to find previous block */
470 for (p = ind->p - 1; p >= start; p--) {
471 if (*p)
472 return le32_to_cpu(*p);
473 }
474
475 /* No such thing, so let's try location of indirect block */
476 if (ind->bh)
477 return ind->bh->b_blocknr;
478
479 /*
480 * It is going to be referred to from the inode itself? OK, just put it
481 * into the same cylinder group then.
482 */
Theodore Ts'oa4912122009-03-12 12:18:34 -0400483 block_group = ei->i_block_group;
484 if (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) {
485 block_group &= ~(flex_size-1);
486 if (S_ISREG(inode->i_mode))
487 block_group++;
488 }
489 bg_start = ext4_group_first_block_no(inode->i_sb, block_group);
Valerie Clement74d34872008-02-15 13:43:07 -0500490 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
491
Theodore Ts'oa4912122009-03-12 12:18:34 -0400492 /*
493 * If we are doing delayed allocation, we don't need take
494 * colour into account.
495 */
496 if (test_opt(inode->i_sb, DELALLOC))
497 return bg_start;
498
Valerie Clement74d34872008-02-15 13:43:07 -0500499 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
500 colour = (current->pid % 16) *
Mingming Cao617ba132006-10-11 01:20:53 -0700501 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
Valerie Clement74d34872008-02-15 13:43:07 -0500502 else
503 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700504 return bg_start + colour;
505}
506
507/**
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000508 * ext4_find_goal - find a preferred place for allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700509 * @inode: owner
510 * @block: block we want
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700511 * @partial: pointer to the last triple within a chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000513 * Normally this function find the preferred place for block allocation,
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800514 * returns it.
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400515 * Because this is only used for non-extent files, we limit the block nr
516 * to 32 bits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700517 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500518static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400519 Indirect *partial)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520{
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400521 ext4_fsblk_t goal;
522
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400524 * XXX need to get goal block from mballoc's data structures
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700525 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700526
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400527 goal = ext4_find_near(inode, partial);
528 goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
529 return goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530}
531
532/**
Mingming Cao617ba132006-10-11 01:20:53 -0700533 * ext4_blks_to_allocate: Look up the block map and count the number
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534 * of direct blocks need to be allocated for the given branch.
535 *
536 * @branch: chain of indirect blocks
537 * @k: number of blocks need for indirect blocks
538 * @blks: number of data blocks to be mapped.
539 * @blocks_to_boundary: the offset in the indirect block
540 *
541 * return the total number of blocks to be allocate, including the
542 * direct and indirect blocks.
543 */
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500544static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned int blks,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400545 int blocks_to_boundary)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700546{
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500547 unsigned int count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700548
549 /*
550 * Simple case, [t,d]Indirect block(s) has not allocated yet
551 * then it's clear blocks on that path have not allocated
552 */
553 if (k > 0) {
554 /* right now we don't handle cross boundary allocation */
555 if (blks < blocks_to_boundary + 1)
556 count += blks;
557 else
558 count += blocks_to_boundary + 1;
559 return count;
560 }
561
562 count++;
563 while (count < blks && count <= blocks_to_boundary &&
564 le32_to_cpu(*(branch[0].p + count)) == 0) {
565 count++;
566 }
567 return count;
568}
569
570/**
Mingming Cao617ba132006-10-11 01:20:53 -0700571 * ext4_alloc_blocks: multiple allocate blocks needed for a branch
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700572 * @indirect_blks: the number of blocks need to allocate for indirect
573 * blocks
574 *
575 * @new_blocks: on return it will store the new block numbers for
576 * the indirect blocks(if needed) and the first direct block,
577 * @blks: on return it will store the total number of allocated
578 * direct blocks
579 */
Mingming Cao617ba132006-10-11 01:20:53 -0700580static int ext4_alloc_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400581 ext4_lblk_t iblock, ext4_fsblk_t goal,
582 int indirect_blks, int blks,
583 ext4_fsblk_t new_blocks[4], int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700584{
Theodore Ts'o815a1132009-01-01 23:59:43 -0500585 struct ext4_allocation_request ar;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700586 int target, i;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400587 unsigned long count = 0, blk_allocated = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700588 int index = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700589 ext4_fsblk_t current_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 int ret = 0;
591
592 /*
593 * Here we try to allocate the requested multiple blocks at once,
594 * on a best-effort basis.
595 * To build a branch, we should allocate blocks for
596 * the indirect blocks(if not allocated yet), and at least
597 * the first direct block of this branch. That's the
598 * minimum number of blocks need to allocate(required)
599 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400600 /* first we try to allocate the indirect blocks */
601 target = indirect_blks;
602 while (target > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700603 count = target;
604 /* allocating blocks for indirect blocks and direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400605 current_block = ext4_new_meta_blocks(handle, inode,
606 goal, &count, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700607 if (*err)
608 goto failed_out;
609
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400610 BUG_ON(current_block + count > EXT4_MAX_BLOCK_FILE_PHYS);
611
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700612 target -= count;
613 /* allocate blocks for indirect blocks */
614 while (index < indirect_blks && count) {
615 new_blocks[index++] = current_block++;
616 count--;
617 }
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400618 if (count > 0) {
619 /*
620 * save the new block number
621 * for the first direct block
622 */
623 new_blocks[index] = current_block;
624 printk(KERN_INFO "%s returned more blocks than "
625 "requested\n", __func__);
626 WARN_ON(1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700627 break;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400628 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700629 }
630
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400631 target = blks - count ;
632 blk_allocated = count;
633 if (!target)
634 goto allocated;
635 /* Now allocate data blocks */
Theodore Ts'o815a1132009-01-01 23:59:43 -0500636 memset(&ar, 0, sizeof(ar));
637 ar.inode = inode;
638 ar.goal = goal;
639 ar.len = target;
640 ar.logical = iblock;
641 if (S_ISREG(inode->i_mode))
642 /* enable in-core preallocation only for regular files */
643 ar.flags = EXT4_MB_HINT_DATA;
644
645 current_block = ext4_mb_new_blocks(handle, &ar, err);
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400646 BUG_ON(current_block + ar.len > EXT4_MAX_BLOCK_FILE_PHYS);
Theodore Ts'o815a1132009-01-01 23:59:43 -0500647
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400648 if (*err && (target == blks)) {
649 /*
650 * if the allocation failed and we didn't allocate
651 * any blocks before
652 */
653 goto failed_out;
654 }
655 if (!*err) {
656 if (target == blks) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400657 /*
658 * save the new block number
659 * for the first direct block
660 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400661 new_blocks[index] = current_block;
662 }
Theodore Ts'o815a1132009-01-01 23:59:43 -0500663 blk_allocated += ar.len;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400664 }
665allocated:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700666 /* total number of blocks allocated for direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400667 ret = blk_allocated;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700668 *err = 0;
669 return ret;
670failed_out:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400671 for (i = 0; i < index; i++)
Theodore Ts'oe6362602009-11-23 07:17:05 -0500672 ext4_free_blocks(handle, inode, 0, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673 return ret;
674}
675
676/**
Mingming Cao617ba132006-10-11 01:20:53 -0700677 * ext4_alloc_branch - allocate and set up a chain of blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700678 * @inode: owner
679 * @indirect_blks: number of allocated indirect blocks
680 * @blks: number of allocated direct blocks
681 * @offsets: offsets (in the blocks) to store the pointers to next.
682 * @branch: place to store the chain in.
683 *
684 * This function allocates blocks, zeroes out all but the last one,
685 * links them into chain and (if we are synchronous) writes them to disk.
686 * In other words, it prepares a branch that can be spliced onto the
687 * inode. It stores the information about that chain in the branch[], in
Mingming Cao617ba132006-10-11 01:20:53 -0700688 * the same format as ext4_get_branch() would do. We are calling it after
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700689 * we had read the existing part of chain and partial points to the last
690 * triple of that (one with zero ->key). Upon the exit we have the same
Mingming Cao617ba132006-10-11 01:20:53 -0700691 * picture as after the successful ext4_get_block(), except that in one
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 * place chain is disconnected - *branch->p is still zero (we did not
693 * set the last link), but branch->key contains the number that should
694 * be placed into *branch->p to fill that gap.
695 *
696 * If allocation fails we free all blocks we've allocated (and forget
697 * their buffer_heads) and return the error value the from failed
Mingming Cao617ba132006-10-11 01:20:53 -0700698 * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 * as described above and return 0.
700 */
Mingming Cao617ba132006-10-11 01:20:53 -0700701static int ext4_alloc_branch(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400702 ext4_lblk_t iblock, int indirect_blks,
703 int *blks, ext4_fsblk_t goal,
704 ext4_lblk_t *offsets, Indirect *branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700705{
706 int blocksize = inode->i_sb->s_blocksize;
707 int i, n = 0;
708 int err = 0;
709 struct buffer_head *bh;
710 int num;
Mingming Cao617ba132006-10-11 01:20:53 -0700711 ext4_fsblk_t new_blocks[4];
712 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400714 num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700715 *blks, new_blocks, &err);
716 if (err)
717 return err;
718
719 branch[0].key = cpu_to_le32(new_blocks[0]);
720 /*
721 * metadata blocks and data blocks are allocated.
722 */
723 for (n = 1; n <= indirect_blks; n++) {
724 /*
725 * Get buffer_head for parent block, zero it out
726 * and set the pointer to new one, then send
727 * parent to disk.
728 */
729 bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
730 branch[n].bh = bh;
731 lock_buffer(bh);
732 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700733 err = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734 if (err) {
Curt Wohlgemuth6487a9d2009-07-17 10:54:08 -0400735 /* Don't brelse(bh) here; it's done in
736 * ext4_journal_forget() below */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737 unlock_buffer(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738 goto failed;
739 }
740
741 memset(bh->b_data, 0, blocksize);
742 branch[n].p = (__le32 *) bh->b_data + offsets[n];
743 branch[n].key = cpu_to_le32(new_blocks[n]);
744 *branch[n].p = branch[n].key;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400745 if (n == indirect_blks) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700746 current_block = new_blocks[n];
747 /*
748 * End of chain, update the last new metablock of
749 * the chain to point to the new allocated
750 * data blocks numbers
751 */
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400752 for (i = 1; i < num; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753 *(branch[n].p + i) = cpu_to_le32(++current_block);
754 }
755 BUFFER_TRACE(bh, "marking uptodate");
756 set_buffer_uptodate(bh);
757 unlock_buffer(bh);
758
Frank Mayhar03901312009-01-07 00:06:22 -0500759 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
760 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700761 if (err)
762 goto failed;
763 }
764 *blks = num;
765 return err;
766failed:
767 /* Allocation failed, free what we already allocated */
Theodore Ts'oe6362602009-11-23 07:17:05 -0500768 ext4_free_blocks(handle, inode, 0, new_blocks[0], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700769 for (i = 1; i <= n ; i++) {
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500770 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -0500771 * branch[i].bh is newly allocated, so there is no
772 * need to revoke the block, which is why we don't
773 * need to set EXT4_FREE_BLOCKS_METADATA.
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500774 */
Theodore Ts'oe6362602009-11-23 07:17:05 -0500775 ext4_free_blocks(handle, inode, 0, new_blocks[i], 1,
776 EXT4_FREE_BLOCKS_FORGET);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777 }
Theodore Ts'oe6362602009-11-23 07:17:05 -0500778 for (i = n+1; i < indirect_blks; i++)
779 ext4_free_blocks(handle, inode, 0, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700780
Theodore Ts'oe6362602009-11-23 07:17:05 -0500781 ext4_free_blocks(handle, inode, 0, new_blocks[i], num, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700782
783 return err;
784}
785
786/**
Mingming Cao617ba132006-10-11 01:20:53 -0700787 * ext4_splice_branch - splice the allocated branch onto inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788 * @inode: owner
789 * @block: (logical) number of block we are adding
790 * @chain: chain of indirect blocks (with a missing link - see
Mingming Cao617ba132006-10-11 01:20:53 -0700791 * ext4_alloc_branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700792 * @where: location of missing link
793 * @num: number of indirect blocks we are adding
794 * @blks: number of direct blocks we are adding
795 *
796 * This function fills the missing link and does all housekeeping needed in
797 * inode (->i_blocks, etc.). In case of success we end up with the full
798 * chain to new block and return 0.
799 */
Mingming Cao617ba132006-10-11 01:20:53 -0700800static int ext4_splice_branch(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400801 ext4_lblk_t block, Indirect *where, int num,
802 int blks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700803{
804 int i;
805 int err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700806 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700807
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700808 /*
809 * If we're splicing into a [td]indirect block (as opposed to the
810 * inode) then we need to get write access to the [td]indirect block
811 * before the splice.
812 */
813 if (where->bh) {
814 BUFFER_TRACE(where->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700815 err = ext4_journal_get_write_access(handle, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700816 if (err)
817 goto err_out;
818 }
819 /* That's it */
820
821 *where->p = where->key;
822
823 /*
824 * Update the host buffer_head or inode to point to more just allocated
825 * direct blocks blocks
826 */
827 if (num == 0 && blks > 1) {
828 current_block = le32_to_cpu(where->key) + 1;
829 for (i = 1; i < blks; i++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400830 *(where->p + i) = cpu_to_le32(current_block++);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700831 }
832
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700833 /* We are done with atomic stuff, now do the rest of housekeeping */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700834 /* had we spliced it onto indirect block? */
835 if (where->bh) {
836 /*
837 * If we spliced it onto an indirect block, we haven't
838 * altered the inode. Note however that if it is being spliced
839 * onto an indirect block at the very end of the file (the
840 * file is growing) then we *will* alter the inode to reflect
841 * the new i_size. But that is not done here - it is done in
Mingming Cao617ba132006-10-11 01:20:53 -0700842 * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700843 */
844 jbd_debug(5, "splicing indirect only\n");
Frank Mayhar03901312009-01-07 00:06:22 -0500845 BUFFER_TRACE(where->bh, "call ext4_handle_dirty_metadata");
846 err = ext4_handle_dirty_metadata(handle, inode, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700847 if (err)
848 goto err_out;
849 } else {
850 /*
851 * OK, we spliced it into the inode itself on a direct block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700852 */
Theodore Ts'o41591752009-06-15 03:41:23 -0400853 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700854 jbd_debug(5, "splicing direct\n");
855 }
856 return err;
857
858err_out:
859 for (i = 1; i <= num; i++) {
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500860 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -0500861 * branch[i].bh is newly allocated, so there is no
862 * need to revoke the block, which is why we don't
863 * need to set EXT4_FREE_BLOCKS_METADATA.
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500864 */
Theodore Ts'oe6362602009-11-23 07:17:05 -0500865 ext4_free_blocks(handle, inode, where[i].bh, 0, 1,
866 EXT4_FREE_BLOCKS_FORGET);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867 }
Theodore Ts'oe6362602009-11-23 07:17:05 -0500868 ext4_free_blocks(handle, inode, 0, le32_to_cpu(where[num].key),
869 blks, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700870
871 return err;
872}
873
874/*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400875 * The ext4_ind_get_blocks() function handles non-extents inodes
876 * (i.e., using the traditional indirect/double-indirect i_blocks
877 * scheme) for ext4_get_blocks().
878 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879 * Allocation strategy is simple: if we have to allocate something, we will
880 * have to go the whole way to leaf. So let's do it before attaching anything
881 * to tree, set linkage between the newborn blocks, write them if sync is
882 * required, recheck the path, free and repeat if check fails, otherwise
883 * set the last missing link (that will protect us from any truncate-generated
884 * removals - all blocks on the path are immune now) and possibly force the
885 * write on the parent block.
886 * That has a nice additional property: no special recovery from the failed
887 * allocations is needed - we simply release blocks and do not touch anything
888 * reachable from inode.
889 *
890 * `handle' can be NULL if create == 0.
891 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892 * return > 0, # of blocks mapped or allocated.
893 * return = 0, if plain lookup failed.
894 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500895 *
Theodore Ts'ob920c752009-05-14 00:54:29 -0400896 * The ext4_ind_get_blocks() function should be called with
897 * down_write(&EXT4_I(inode)->i_data_sem) if allocating filesystem
898 * blocks (i.e., flags has EXT4_GET_BLOCKS_CREATE set) or
899 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system
900 * blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 */
Theodore Ts'oe4d996c2009-05-12 00:25:28 -0400902static int ext4_ind_get_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400903 ext4_lblk_t iblock, unsigned int maxblocks,
904 struct buffer_head *bh_result,
905 int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906{
907 int err = -EIO;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500908 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700909 Indirect chain[4];
910 Indirect *partial;
Mingming Cao617ba132006-10-11 01:20:53 -0700911 ext4_fsblk_t goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700912 int indirect_blks;
913 int blocks_to_boundary = 0;
914 int depth;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700915 int count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700916 ext4_fsblk_t first_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700917
Alex Tomasa86c6182006-10-11 01:21:03 -0700918 J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL));
Theodore Ts'oc2177052009-05-14 00:58:52 -0400919 J_ASSERT(handle != NULL || (flags & EXT4_GET_BLOCKS_CREATE) == 0);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500920 depth = ext4_block_to_path(inode, iblock, offsets,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400921 &blocks_to_boundary);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700922
923 if (depth == 0)
924 goto out;
925
Mingming Cao617ba132006-10-11 01:20:53 -0700926 partial = ext4_get_branch(inode, depth, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700927
928 /* Simplest case - block found, no allocation needed */
929 if (!partial) {
930 first_block = le32_to_cpu(chain[depth - 1].key);
931 clear_buffer_new(bh_result);
932 count++;
933 /*map more blocks*/
934 while (count < maxblocks && count <= blocks_to_boundary) {
Mingming Cao617ba132006-10-11 01:20:53 -0700935 ext4_fsblk_t blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700937 blk = le32_to_cpu(*(chain[depth-1].p + count));
938
939 if (blk == first_block + count)
940 count++;
941 else
942 break;
943 }
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500944 goto got_it;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700945 }
946
947 /* Next simple case - plain lookup or failed read of indirect block */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400948 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0 || err == -EIO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700949 goto cleanup;
950
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400952 * Okay, we need to do block allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700953 */
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800954 goal = ext4_find_goal(inode, iblock, partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700955
956 /* the number of blocks need to allocate for [d,t]indirect blocks */
957 indirect_blks = (chain + depth) - partial - 1;
958
959 /*
960 * Next look up the indirect map to count the totoal number of
961 * direct blocks to allocate for this branch.
962 */
Mingming Cao617ba132006-10-11 01:20:53 -0700963 count = ext4_blks_to_allocate(partial, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700964 maxblocks, blocks_to_boundary);
965 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700966 * Block out ext4_truncate while we alter the tree
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700967 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400968 err = ext4_alloc_branch(handle, inode, iblock, indirect_blks,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400969 &count, goal,
970 offsets + (partial - chain), partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700971
972 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700973 * The ext4_splice_branch call will free and forget any buffers
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974 * on the new chain if there is a failure, but that risks using
975 * up transaction credits, especially for bitmaps where the
976 * credits cannot be returned. Can we handle this somehow? We
977 * may need to return -EAGAIN upwards in the worst case. --sct
978 */
979 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -0700980 err = ext4_splice_branch(handle, inode, iblock,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400981 partial, indirect_blks, count);
Jan Kara2bba7022009-11-23 07:24:48 -0500982 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700983 goto cleanup;
984
985 set_buffer_new(bh_result);
Jan Karab436b9b2009-12-08 23:51:10 -0500986
987 ext4_update_inode_fsync_trans(handle, inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988got_it:
989 map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
990 if (count > blocks_to_boundary)
991 set_buffer_boundary(bh_result);
992 err = count;
993 /* Clean up and exit */
994 partial = chain + depth - 1; /* the whole chain */
995cleanup:
996 while (partial > chain) {
997 BUFFER_TRACE(partial->bh, "call brelse");
998 brelse(partial->bh);
999 partial--;
1000 }
1001 BUFFER_TRACE(bh_result, "returned");
1002out:
1003 return err;
1004}
1005
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001006#ifdef CONFIG_QUOTA
1007qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +01001008{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001009 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +01001010}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001011#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001012
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001013/*
1014 * Calculate the number of metadata blocks need to reserve
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001015 * to allocate a new block at @lblocks for non extent file based file
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001016 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001017static int ext4_indirect_calc_metadata_amount(struct inode *inode,
1018 sector_t lblock)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001019{
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001020 struct ext4_inode_info *ei = EXT4_I(inode);
1021 int dind_mask = EXT4_ADDR_PER_BLOCK(inode->i_sb) - 1;
1022 int blk_bits;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001023
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001024 if (lblock < EXT4_NDIR_BLOCKS)
1025 return 0;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001026
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001027 lblock -= EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001028
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001029 if (ei->i_da_metadata_calc_len &&
1030 (lblock & dind_mask) == ei->i_da_metadata_calc_last_lblock) {
1031 ei->i_da_metadata_calc_len++;
1032 return 0;
1033 }
1034 ei->i_da_metadata_calc_last_lblock = lblock & dind_mask;
1035 ei->i_da_metadata_calc_len = 1;
1036 blk_bits = roundup_pow_of_two(lblock + 1);
1037 return (blk_bits / EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb)) + 1;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001038}
1039
1040/*
1041 * Calculate the number of metadata blocks need to reserve
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001042 * to allocate a block located at @lblock
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001043 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001044static int ext4_calc_metadata_amount(struct inode *inode, sector_t lblock)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001045{
1046 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001047 return ext4_ext_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001048
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001049 return ext4_indirect_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001050}
1051
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001052/*
1053 * Called with i_data_sem down, which is important since we can call
1054 * ext4_discard_preallocations() from here.
1055 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001056void ext4_da_update_reserve_space(struct inode *inode,
1057 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001058{
1059 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001060 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001061 int mdb_free = 0, allocated_meta_blocks = 0;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001062
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001063 spin_lock(&ei->i_block_reservation_lock);
1064 if (unlikely(used > ei->i_reserved_data_blocks)) {
1065 ext4_msg(inode->i_sb, KERN_NOTICE, "%s: ino %lu, used %d "
1066 "with only %d reserved data blocks\n",
1067 __func__, inode->i_ino, used,
1068 ei->i_reserved_data_blocks);
1069 WARN_ON(1);
1070 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001071 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001072
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001073 /* Update per-inode reservations */
1074 ei->i_reserved_data_blocks -= used;
1075 used += ei->i_allocated_meta_blocks;
1076 ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks;
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001077 allocated_meta_blocks = ei->i_allocated_meta_blocks;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001078 ei->i_allocated_meta_blocks = 0;
1079 percpu_counter_sub(&sbi->s_dirtyblocks_counter, used);
1080
1081 if (ei->i_reserved_data_blocks == 0) {
1082 /*
1083 * We can release all of the reserved metadata blocks
1084 * only when we have written all of the delayed
1085 * allocation blocks.
1086 */
Theodore Ts'oee5f4d92010-01-01 02:36:15 -05001087 mdb_free = ei->i_reserved_meta_blocks;
1088 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001089 ei->i_da_metadata_calc_len = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001090 percpu_counter_sub(&sbi->s_dirtyblocks_counter, mdb_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001091 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001092 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001093
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001094 /* Update quota subsystem */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001095 if (quota_claim) {
1096 vfs_dq_claim_block(inode, used);
1097 if (mdb_free)
1098 vfs_dq_release_reservation_block(inode, mdb_free);
1099 } else {
1100 /*
1101 * We did fallocate with an offset that is already delayed
1102 * allocated. So on delayed allocated writeback we should
1103 * not update the quota for allocated blocks. But then
1104 * converting an fallocate region to initialized region would
1105 * have caused a metadata allocation. So claim quota for
1106 * that
1107 */
1108 if (allocated_meta_blocks)
1109 vfs_dq_claim_block(inode, allocated_meta_blocks);
1110 vfs_dq_release_reservation_block(inode, mdb_free + used);
1111 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -04001112
1113 /*
1114 * If we have done all the pending block allocations and if
1115 * there aren't any writers on the inode, we can discard the
1116 * inode's preallocations.
1117 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001118 if ((ei->i_reserved_data_blocks == 0) &&
1119 (atomic_read(&inode->i_writecount) == 0))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -04001120 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001121}
1122
Theodore Ts'o80e42462009-09-08 08:21:26 -04001123static int check_block_validity(struct inode *inode, const char *msg,
1124 sector_t logical, sector_t phys, int len)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001125{
1126 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), phys, len)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001127 ext4_error(inode->i_sb, msg,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001128 "inode #%lu logical block %llu mapped to %llu "
1129 "(size %d)", inode->i_ino,
1130 (unsigned long long) logical,
1131 (unsigned long long) phys, len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001132 return -EIO;
1133 }
1134 return 0;
1135}
1136
Mingming Caof5ab0d12008-02-25 15:29:55 -05001137/*
Theodore Ts'o1f945332009-09-30 22:57:41 -04001138 * Return the number of contiguous dirty pages in a given inode
1139 * starting at page frame idx.
Theodore Ts'o55138e02009-09-29 13:31:31 -04001140 */
1141static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx,
1142 unsigned int max_pages)
1143{
1144 struct address_space *mapping = inode->i_mapping;
1145 pgoff_t index;
1146 struct pagevec pvec;
1147 pgoff_t num = 0;
1148 int i, nr_pages, done = 0;
1149
1150 if (max_pages == 0)
1151 return 0;
1152 pagevec_init(&pvec, 0);
1153 while (!done) {
1154 index = idx;
1155 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
1156 PAGECACHE_TAG_DIRTY,
1157 (pgoff_t)PAGEVEC_SIZE);
1158 if (nr_pages == 0)
1159 break;
1160 for (i = 0; i < nr_pages; i++) {
1161 struct page *page = pvec.pages[i];
1162 struct buffer_head *bh, *head;
1163
1164 lock_page(page);
1165 if (unlikely(page->mapping != mapping) ||
1166 !PageDirty(page) ||
1167 PageWriteback(page) ||
1168 page->index != idx) {
1169 done = 1;
1170 unlock_page(page);
1171 break;
1172 }
Theodore Ts'o1f945332009-09-30 22:57:41 -04001173 if (page_has_buffers(page)) {
1174 bh = head = page_buffers(page);
1175 do {
1176 if (!buffer_delay(bh) &&
1177 !buffer_unwritten(bh))
1178 done = 1;
1179 bh = bh->b_this_page;
1180 } while (!done && (bh != head));
1181 }
Theodore Ts'o55138e02009-09-29 13:31:31 -04001182 unlock_page(page);
1183 if (done)
1184 break;
1185 idx++;
1186 num++;
1187 if (num >= max_pages)
1188 break;
1189 }
1190 pagevec_release(&pvec);
1191 }
1192 return num;
1193}
1194
1195/*
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001196 * The ext4_get_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001197 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -05001198 *
Mingming Caof5ab0d12008-02-25 15:29:55 -05001199 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
1200 * and store the allocated blocks in the result buffer head and mark it
1201 * mapped.
1202 *
1203 * If file type is extents based, it will call ext4_ext_get_blocks(),
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001204 * Otherwise, call with ext4_ind_get_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -05001205 * based files
1206 *
1207 * On success, it returns the number of blocks being mapped or allocate.
1208 * if create==0 and the blocks are pre-allocated and uninitialized block,
1209 * the result buffer head is unmapped. If the create ==1, it will make sure
1210 * the buffer head is mapped.
1211 *
1212 * It returns 0 if plain look up failed (blocks have not been allocated), in
1213 * that casem, buffer head is unmapped
1214 *
1215 * It returns the error in case of allocation failure.
1216 */
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001217int ext4_get_blocks(handle_t *handle, struct inode *inode, sector_t block,
1218 unsigned int max_blocks, struct buffer_head *bh,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001219 int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001220{
1221 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -05001222
1223 clear_buffer_mapped(bh);
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001224 clear_buffer_unwritten(bh);
Mingming Caof5ab0d12008-02-25 15:29:55 -05001225
Mingming Cao00314622009-09-28 15:49:08 -04001226 ext_debug("ext4_get_blocks(): inode %lu, flag %d, max_blocks %u,"
1227 "logical block %lu\n", inode->i_ino, flags, max_blocks,
1228 (unsigned long)block);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001229 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -04001230 * Try to see if we can get the block without requesting a new
1231 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001232 */
1233 down_read((&EXT4_I(inode)->i_data_sem));
1234 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1235 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001236 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001237 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001238 retval = ext4_ind_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001239 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001240 }
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001241 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -05001242
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001243 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001244 int ret = check_block_validity(inode, "file system corruption",
1245 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001246 if (ret != 0)
1247 return ret;
1248 }
1249
Mingming Caof5ab0d12008-02-25 15:29:55 -05001250 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001251 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001252 return retval;
1253
1254 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001255 * Returns if the blocks have already allocated
1256 *
1257 * Note that if blocks have been preallocated
1258 * ext4_ext_get_block() returns th create = 0
1259 * with buffer head unmapped.
1260 */
1261 if (retval > 0 && buffer_mapped(bh))
1262 return retval;
1263
1264 /*
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001265 * When we call get_blocks without the create flag, the
1266 * BH_Unwritten flag could have gotten set if the blocks
1267 * requested were part of a uninitialized extent. We need to
1268 * clear this flag now that we are committed to convert all or
1269 * part of the uninitialized extent to be an initialized
1270 * extent. This is because we need to avoid the combination
1271 * of BH_Unwritten and BH_Mapped flags being simultaneously
1272 * set on the buffer_head.
1273 */
1274 clear_buffer_unwritten(bh);
1275
1276 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001277 * New blocks allocate and/or writing to uninitialized extent
1278 * will possibly result in updating i_data, so we take
1279 * the write lock of i_data_sem, and call get_blocks()
1280 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001281 */
1282 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -04001283
1284 /*
1285 * if the caller is from delayed allocation writeout path
1286 * we have already reserved fs blocks for allocation
1287 * let the underlying get_block() function know to
1288 * avoid double accounting
1289 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001290 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001291 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001292 /*
1293 * We need to check for EXT4 here because migrate
1294 * could have changed the inode type in between
1295 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001296 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1297 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001298 bh, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001299 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001300 retval = ext4_ind_get_blocks(handle, inode, block,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001301 max_blocks, bh, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001302
1303 if (retval > 0 && buffer_new(bh)) {
1304 /*
1305 * We allocated new blocks which will result in
1306 * i_data's format changing. Force the migrate
1307 * to fail by clearing migrate flags
1308 */
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -04001309 EXT4_I(inode)->i_state &= ~EXT4_STATE_EXT_MIGRATE;
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001310 }
Mingming Caod2a17632008-07-14 17:52:37 -04001311
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001312 /*
1313 * Update reserved blocks/metadata blocks after successful
1314 * block allocation which had been deferred till now. We don't
1315 * support fallocate for non extent files. So we can update
1316 * reserve space here.
1317 */
1318 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05001319 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001320 ext4_da_update_reserve_space(inode, retval, 1);
1321 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001322 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001323 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001324
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001325 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001326 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001327 int ret = check_block_validity(inode, "file system "
1328 "corruption after allocation",
1329 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001330 if (ret != 0)
1331 return ret;
1332 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001333 return retval;
1334}
1335
Mingming Caof3bd1f32008-08-19 22:16:03 -04001336/* Maximum number of blocks we map for direct IO at once. */
1337#define DIO_MAX_BLOCKS 4096
1338
Eric Sandeen6873fa02008-10-07 00:46:36 -04001339int ext4_get_block(struct inode *inode, sector_t iblock,
1340 struct buffer_head *bh_result, int create)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001341{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -08001342 handle_t *handle = ext4_journal_current_handle();
Jan Kara7fb54092008-02-10 01:08:38 -05001343 int ret = 0, started = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001344 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001345 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001346
Jan Kara7fb54092008-02-10 01:08:38 -05001347 if (create && !handle) {
1348 /* Direct IO write... */
1349 if (max_blocks > DIO_MAX_BLOCKS)
1350 max_blocks = DIO_MAX_BLOCKS;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001351 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
1352 handle = ext4_journal_start(inode, dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -05001353 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001354 ret = PTR_ERR(handle);
Jan Kara7fb54092008-02-10 01:08:38 -05001355 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001356 }
Jan Kara7fb54092008-02-10 01:08:38 -05001357 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001358 }
1359
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001360 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001361 create ? EXT4_GET_BLOCKS_CREATE : 0);
Jan Kara7fb54092008-02-10 01:08:38 -05001362 if (ret > 0) {
1363 bh_result->b_size = (ret << inode->i_blkbits);
1364 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365 }
Jan Kara7fb54092008-02-10 01:08:38 -05001366 if (started)
1367 ext4_journal_stop(handle);
1368out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001369 return ret;
1370}
1371
1372/*
1373 * `handle' can be NULL if create is zero
1374 */
Mingming Cao617ba132006-10-11 01:20:53 -07001375struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001376 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001377{
1378 struct buffer_head dummy;
1379 int fatal = 0, err;
Jan Kara03f5d8b2009-06-09 00:17:05 -04001380 int flags = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001381
1382 J_ASSERT(handle != NULL || create == 0);
1383
1384 dummy.b_state = 0;
1385 dummy.b_blocknr = -1000;
1386 buffer_trace_init(&dummy.b_history);
Theodore Ts'oc2177052009-05-14 00:58:52 -04001387 if (create)
1388 flags |= EXT4_GET_BLOCKS_CREATE;
1389 err = ext4_get_blocks(handle, inode, block, 1, &dummy, flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001390 /*
Theodore Ts'oc2177052009-05-14 00:58:52 -04001391 * ext4_get_blocks() returns number of blocks mapped. 0 in
1392 * case of a HOLE.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393 */
1394 if (err > 0) {
1395 if (err > 1)
1396 WARN_ON(1);
1397 err = 0;
1398 }
1399 *errp = err;
1400 if (!err && buffer_mapped(&dummy)) {
1401 struct buffer_head *bh;
1402 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1403 if (!bh) {
1404 *errp = -EIO;
1405 goto err;
1406 }
1407 if (buffer_new(&dummy)) {
1408 J_ASSERT(create != 0);
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001409 J_ASSERT(handle != NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001410
1411 /*
1412 * Now that we do not always journal data, we should
1413 * keep in mind whether this should always journal the
1414 * new buffer as metadata. For now, regular file
Mingming Cao617ba132006-10-11 01:20:53 -07001415 * writes use ext4_get_block instead, so it's not a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001416 * problem.
1417 */
1418 lock_buffer(bh);
1419 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001420 fatal = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001421 if (!fatal && !buffer_uptodate(bh)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001422 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001423 set_buffer_uptodate(bh);
1424 }
1425 unlock_buffer(bh);
Frank Mayhar03901312009-01-07 00:06:22 -05001426 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1427 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001428 if (!fatal)
1429 fatal = err;
1430 } else {
1431 BUFFER_TRACE(bh, "not a new buffer");
1432 }
1433 if (fatal) {
1434 *errp = fatal;
1435 brelse(bh);
1436 bh = NULL;
1437 }
1438 return bh;
1439 }
1440err:
1441 return NULL;
1442}
1443
Mingming Cao617ba132006-10-11 01:20:53 -07001444struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001445 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001446{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001447 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001448
Mingming Cao617ba132006-10-11 01:20:53 -07001449 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001450 if (!bh)
1451 return bh;
1452 if (buffer_uptodate(bh))
1453 return bh;
1454 ll_rw_block(READ_META, 1, &bh);
1455 wait_on_buffer(bh);
1456 if (buffer_uptodate(bh))
1457 return bh;
1458 put_bh(bh);
1459 *err = -EIO;
1460 return NULL;
1461}
1462
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001463static int walk_page_buffers(handle_t *handle,
1464 struct buffer_head *head,
1465 unsigned from,
1466 unsigned to,
1467 int *partial,
1468 int (*fn)(handle_t *handle,
1469 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001470{
1471 struct buffer_head *bh;
1472 unsigned block_start, block_end;
1473 unsigned blocksize = head->b_size;
1474 int err, ret = 0;
1475 struct buffer_head *next;
1476
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001477 for (bh = head, block_start = 0;
1478 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001479 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001480 next = bh->b_this_page;
1481 block_end = block_start + blocksize;
1482 if (block_end <= from || block_start >= to) {
1483 if (partial && !buffer_uptodate(bh))
1484 *partial = 1;
1485 continue;
1486 }
1487 err = (*fn)(handle, bh);
1488 if (!ret)
1489 ret = err;
1490 }
1491 return ret;
1492}
1493
1494/*
1495 * To preserve ordering, it is essential that the hole instantiation and
1496 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -07001497 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -07001498 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001499 * prepare_write() is the right place.
1500 *
Mingming Cao617ba132006-10-11 01:20:53 -07001501 * Also, this function can nest inside ext4_writepage() ->
1502 * block_write_full_page(). In that case, we *know* that ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001503 * has generated enough buffer credits to do the whole page. So we won't
1504 * block on the journal in that case, which is good, because the caller may
1505 * be PF_MEMALLOC.
1506 *
Mingming Cao617ba132006-10-11 01:20:53 -07001507 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001508 * quota file writes. If we were to commit the transaction while thus
1509 * reentered, there can be a deadlock - we would be holding a quota
1510 * lock, and the commit would never complete if another thread had a
1511 * transaction open and was blocking on the quota lock - a ranking
1512 * violation.
1513 *
Mingming Caodab291a2006-10-11 01:21:01 -07001514 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001515 * will _not_ run commit under these circumstances because handle->h_ref
1516 * is elevated. We'll still have enough credits for the tiny quotafile
1517 * write.
1518 */
1519static int do_journal_get_write_access(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001520 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001521{
1522 if (!buffer_mapped(bh) || buffer_freed(bh))
1523 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001524 return ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001525}
1526
Jan Karab9a42072009-12-08 21:24:33 -05001527/*
1528 * Truncate blocks that were not used by write. We have to truncate the
1529 * pagecache as well so that corresponding buffers get properly unmapped.
1530 */
1531static void ext4_truncate_failed_write(struct inode *inode)
1532{
1533 truncate_inode_pages(inode->i_mapping, inode->i_size);
1534 ext4_truncate(inode);
1535}
1536
Nick Pigginbfc1af62007-10-16 01:25:05 -07001537static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001538 loff_t pos, unsigned len, unsigned flags,
1539 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001540{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001541 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001542 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001543 handle_t *handle;
1544 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001545 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001546 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001547 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001548
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001549 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001550 /*
1551 * Reserve one block more for addition to orphan list in case
1552 * we allocate blocks but write fails for some reason
1553 */
1554 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001555 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001556 from = pos & (PAGE_CACHE_SIZE - 1);
1557 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001558
1559retry:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001560 handle = ext4_journal_start(inode, needed_blocks);
1561 if (IS_ERR(handle)) {
1562 ret = PTR_ERR(handle);
1563 goto out;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001564 }
1565
Jan Karaebd36102009-02-22 21:09:59 -05001566 /* We cannot recurse into the filesystem as the transaction is already
1567 * started */
1568 flags |= AOP_FLAG_NOFS;
1569
Nick Piggin54566b22009-01-04 12:00:53 -08001570 page = grab_cache_page_write_begin(mapping, index, flags);
Jan Karacf108bc2008-07-11 19:27:31 -04001571 if (!page) {
1572 ext4_journal_stop(handle);
1573 ret = -ENOMEM;
1574 goto out;
1575 }
1576 *pagep = page;
1577
Nick Pigginbfc1af62007-10-16 01:25:05 -07001578 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Jan Karaebd36102009-02-22 21:09:59 -05001579 ext4_get_block);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001580
1581 if (!ret && ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001582 ret = walk_page_buffers(handle, page_buffers(page),
1583 from, to, NULL, do_journal_get_write_access);
1584 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001585
1586 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001587 unlock_page(page);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001588 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001589 /*
1590 * block_write_begin may have instantiated a few blocks
1591 * outside i_size. Trim these off again. Don't need
1592 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001593 *
1594 * Add inode to orphan list in case we crash before
1595 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001596 */
Jan Karaffacfa72009-07-13 16:22:22 -04001597 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001598 ext4_orphan_add(handle, inode);
1599
1600 ext4_journal_stop(handle);
1601 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001602 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001603 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001604 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001605 * still be on the orphan list; we need to
1606 * make sure the inode is removed from the
1607 * orphan list in that case.
1608 */
1609 if (inode->i_nlink)
1610 ext4_orphan_del(NULL, inode);
1611 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001612 }
1613
Mingming Cao617ba132006-10-11 01:20:53 -07001614 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001615 goto retry;
Andrew Morton7479d2b2007-04-01 23:49:44 -07001616out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001617 return ret;
1618}
1619
Nick Pigginbfc1af62007-10-16 01:25:05 -07001620/* For write_end() in data=journal mode */
1621static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001622{
1623 if (!buffer_mapped(bh) || buffer_freed(bh))
1624 return 0;
1625 set_buffer_uptodate(bh);
Frank Mayhar03901312009-01-07 00:06:22 -05001626 return ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001627}
1628
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001629static int ext4_generic_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001630 struct address_space *mapping,
1631 loff_t pos, unsigned len, unsigned copied,
1632 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001633{
1634 int i_size_changed = 0;
1635 struct inode *inode = mapping->host;
1636 handle_t *handle = ext4_journal_current_handle();
1637
1638 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
1639
1640 /*
1641 * No need to use i_size_read() here, the i_size
1642 * cannot change under us because we hold i_mutex.
1643 *
1644 * But it's important to update i_size while still holding page lock:
1645 * page writeout could otherwise come in and zero beyond i_size.
1646 */
1647 if (pos + copied > inode->i_size) {
1648 i_size_write(inode, pos + copied);
1649 i_size_changed = 1;
1650 }
1651
1652 if (pos + copied > EXT4_I(inode)->i_disksize) {
1653 /* We need to mark inode dirty even if
1654 * new_i_size is less that inode->i_size
1655 * bu greater than i_disksize.(hint delalloc)
1656 */
1657 ext4_update_i_disksize(inode, (pos + copied));
1658 i_size_changed = 1;
1659 }
1660 unlock_page(page);
1661 page_cache_release(page);
1662
1663 /*
1664 * Don't mark the inode dirty under page lock. First, it unnecessarily
1665 * makes the holding time of page lock longer. Second, it forces lock
1666 * ordering of page lock and transaction start for journaling
1667 * filesystems.
1668 */
1669 if (i_size_changed)
1670 ext4_mark_inode_dirty(handle, inode);
1671
1672 return copied;
1673}
1674
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001675/*
1676 * We need to pick up the new inode size which generic_commit_write gave us
1677 * `file' can be NULL - eg, when called from page_symlink().
1678 *
Mingming Cao617ba132006-10-11 01:20:53 -07001679 * ext4 never places buffers on inode->i_mapping->private_list. metadata
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001680 * buffers are managed internally.
1681 */
Nick Pigginbfc1af62007-10-16 01:25:05 -07001682static int ext4_ordered_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001683 struct address_space *mapping,
1684 loff_t pos, unsigned len, unsigned copied,
1685 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001686{
Mingming Cao617ba132006-10-11 01:20:53 -07001687 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001688 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001689 int ret = 0, ret2;
1690
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001691 trace_ext4_ordered_write_end(inode, pos, len, copied);
Jan Kara678aaf42008-07-11 19:27:31 -04001692 ret = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001693
1694 if (ret == 0) {
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001695 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001696 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001697 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001698 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001699 /* if we have allocated more blocks and copied
1700 * less. We will have blocks allocated outside
1701 * inode->i_size. So truncate them
1702 */
1703 ext4_orphan_add(handle, inode);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001704 if (ret2 < 0)
1705 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001706 }
Mingming Cao617ba132006-10-11 01:20:53 -07001707 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001708 if (!ret)
1709 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001710
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001711 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001712 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001713 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001714 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001715 * on the orphan list; we need to make sure the inode
1716 * is removed from the orphan list in that case.
1717 */
1718 if (inode->i_nlink)
1719 ext4_orphan_del(NULL, inode);
1720 }
1721
1722
Nick Pigginbfc1af62007-10-16 01:25:05 -07001723 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001724}
1725
Nick Pigginbfc1af62007-10-16 01:25:05 -07001726static int ext4_writeback_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001727 struct address_space *mapping,
1728 loff_t pos, unsigned len, unsigned copied,
1729 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001730{
Mingming Cao617ba132006-10-11 01:20:53 -07001731 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001732 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001733 int ret = 0, ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001734
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001735 trace_ext4_writeback_write_end(inode, pos, len, copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001736 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001737 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001738 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001739 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001740 /* if we have allocated more blocks and copied
1741 * less. We will have blocks allocated outside
1742 * inode->i_size. So truncate them
1743 */
1744 ext4_orphan_add(handle, inode);
1745
Roel Kluinf8a87d82008-04-29 22:01:18 -04001746 if (ret2 < 0)
1747 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001748
Mingming Cao617ba132006-10-11 01:20:53 -07001749 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001750 if (!ret)
1751 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001752
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001753 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001754 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001755 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001756 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001757 * on the orphan list; we need to make sure the inode
1758 * is removed from the orphan list in that case.
1759 */
1760 if (inode->i_nlink)
1761 ext4_orphan_del(NULL, inode);
1762 }
1763
Nick Pigginbfc1af62007-10-16 01:25:05 -07001764 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001765}
1766
Nick Pigginbfc1af62007-10-16 01:25:05 -07001767static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001768 struct address_space *mapping,
1769 loff_t pos, unsigned len, unsigned copied,
1770 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001771{
Mingming Cao617ba132006-10-11 01:20:53 -07001772 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001773 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001774 int ret = 0, ret2;
1775 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001776 unsigned from, to;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001777 loff_t new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001778
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001779 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001780 from = pos & (PAGE_CACHE_SIZE - 1);
1781 to = from + len;
1782
1783 if (copied < len) {
1784 if (!PageUptodate(page))
1785 copied = 0;
1786 page_zero_new_buffers(page, from+copied, to);
1787 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001788
1789 ret = walk_page_buffers(handle, page_buffers(page), from,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001790 to, &partial, write_end_fn);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001791 if (!partial)
1792 SetPageUptodate(page);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001793 new_i_size = pos + copied;
1794 if (new_i_size > inode->i_size)
Nick Pigginbfc1af62007-10-16 01:25:05 -07001795 i_size_write(inode, pos+copied);
Mingming Cao617ba132006-10-11 01:20:53 -07001796 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001797 if (new_i_size > EXT4_I(inode)->i_disksize) {
1798 ext4_update_i_disksize(inode, new_i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001799 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001800 if (!ret)
1801 ret = ret2;
1802 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001803
Jan Karacf108bc2008-07-11 19:27:31 -04001804 unlock_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001805 page_cache_release(page);
Jan Karaffacfa72009-07-13 16:22:22 -04001806 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001807 /* if we have allocated more blocks and copied
1808 * less. We will have blocks allocated outside
1809 * inode->i_size. So truncate them
1810 */
1811 ext4_orphan_add(handle, inode);
1812
Mingming Cao617ba132006-10-11 01:20:53 -07001813 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001814 if (!ret)
1815 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001816 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001817 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001818 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001819 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001820 * on the orphan list; we need to make sure the inode
1821 * is removed from the orphan list in that case.
1822 */
1823 if (inode->i_nlink)
1824 ext4_orphan_del(NULL, inode);
1825 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001826
1827 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001828}
Mingming Caod2a17632008-07-14 17:52:37 -04001829
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001830/*
1831 * Reserve a single block located at lblock
1832 */
1833static int ext4_da_reserve_space(struct inode *inode, sector_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -04001834{
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001835 int retries = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01001836 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001837 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001838 unsigned long md_needed, md_reserved;
Mingming Caod2a17632008-07-14 17:52:37 -04001839
1840 /*
1841 * recalculate the amount of metadata blocks to reserve
1842 * in order to allocate nrblocks
1843 * worse case is one extent per block
1844 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001845repeat:
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001846 spin_lock(&ei->i_block_reservation_lock);
1847 md_reserved = ei->i_reserved_meta_blocks;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001848 md_needed = ext4_calc_metadata_amount(inode, lblock);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001849 spin_unlock(&ei->i_block_reservation_lock);
Mingming Caod2a17632008-07-14 17:52:37 -04001850
Mingming Cao60e58e02009-01-22 18:13:05 +01001851 /*
1852 * Make quota reservation here to prevent quota overflow
1853 * later. Real quota accounting is done at pages writeout
1854 * time.
1855 */
Aneesh Kumar K.V1db91382010-01-22 17:06:20 -05001856 if (vfs_dq_reserve_block(inode, md_needed + 1))
Mingming Cao60e58e02009-01-22 18:13:05 +01001857 return -EDQUOT;
Mingming Cao60e58e02009-01-22 18:13:05 +01001858
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001859 if (ext4_claim_free_blocks(sbi, md_needed + 1)) {
1860 vfs_dq_release_reservation_block(inode, md_needed + 1);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001861 if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
1862 yield();
1863 goto repeat;
1864 }
Mingming Caod2a17632008-07-14 17:52:37 -04001865 return -ENOSPC;
1866 }
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001867 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001868 ei->i_reserved_data_blocks++;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001869 ei->i_reserved_meta_blocks += md_needed;
1870 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001871
Mingming Caod2a17632008-07-14 17:52:37 -04001872 return 0; /* success */
1873}
1874
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001875static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001876{
1877 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001878 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001879
Mingming Caocd213222008-08-19 22:16:59 -04001880 if (!to_free)
1881 return; /* Nothing to release, exit */
1882
Mingming Caod2a17632008-07-14 17:52:37 -04001883 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001884
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001885 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001886 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001887 * if there aren't enough reserved blocks, then the
1888 * counter is messed up somewhere. Since this
1889 * function is called from invalidate page, it's
1890 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001891 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001892 ext4_msg(inode->i_sb, KERN_NOTICE, "ext4_da_release_space: "
1893 "ino %lu, to_free %d with only %d reserved "
1894 "data blocks\n", inode->i_ino, to_free,
1895 ei->i_reserved_data_blocks);
1896 WARN_ON(1);
1897 to_free = ei->i_reserved_data_blocks;
1898 }
1899 ei->i_reserved_data_blocks -= to_free;
1900
1901 if (ei->i_reserved_data_blocks == 0) {
1902 /*
1903 * We can release all of the reserved metadata blocks
1904 * only when we have written all of the delayed
1905 * allocation blocks.
1906 */
Theodore Ts'oee5f4d92010-01-01 02:36:15 -05001907 to_free += ei->i_reserved_meta_blocks;
1908 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001909 ei->i_da_metadata_calc_len = 0;
Mingming Caocd213222008-08-19 22:16:59 -04001910 }
1911
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001912 /* update fs dirty blocks counter */
1913 percpu_counter_sub(&sbi->s_dirtyblocks_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001914
Mingming Caod2a17632008-07-14 17:52:37 -04001915 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001916
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001917 vfs_dq_release_reservation_block(inode, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001918}
1919
1920static void ext4_da_page_release_reservation(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001921 unsigned long offset)
Mingming Caod2a17632008-07-14 17:52:37 -04001922{
1923 int to_release = 0;
1924 struct buffer_head *head, *bh;
1925 unsigned int curr_off = 0;
1926
1927 head = page_buffers(page);
1928 bh = head;
1929 do {
1930 unsigned int next_off = curr_off + bh->b_size;
1931
1932 if ((offset <= curr_off) && (buffer_delay(bh))) {
1933 to_release++;
1934 clear_buffer_delay(bh);
1935 }
1936 curr_off = next_off;
1937 } while ((bh = bh->b_this_page) != head);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001938 ext4_da_release_space(page->mapping->host, to_release);
Mingming Caod2a17632008-07-14 17:52:37 -04001939}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001940
1941/*
Alex Tomas64769242008-07-11 19:27:31 -04001942 * Delayed allocation stuff
1943 */
1944
Alex Tomas64769242008-07-11 19:27:31 -04001945/*
1946 * mpage_da_submit_io - walks through extent of pages and try to write
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001947 * them with writepage() call back
Alex Tomas64769242008-07-11 19:27:31 -04001948 *
1949 * @mpd->inode: inode
1950 * @mpd->first_page: first page of the extent
1951 * @mpd->next_page: page after the last page of the extent
Alex Tomas64769242008-07-11 19:27:31 -04001952 *
1953 * By the time mpage_da_submit_io() is called we expect all blocks
1954 * to be allocated. this may be wrong if allocation failed.
1955 *
1956 * As pages are already locked by write_cache_pages(), we can't use it
1957 */
1958static int mpage_da_submit_io(struct mpage_da_data *mpd)
1959{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001960 long pages_skipped;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001961 struct pagevec pvec;
1962 unsigned long index, end;
1963 int ret = 0, err, nr_pages, i;
1964 struct inode *inode = mpd->inode;
1965 struct address_space *mapping = inode->i_mapping;
Alex Tomas64769242008-07-11 19:27:31 -04001966
1967 BUG_ON(mpd->next_page <= mpd->first_page);
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001968 /*
1969 * We need to start from the first_page to the next_page - 1
1970 * to make sure we also write the mapped dirty buffer_heads.
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001971 * If we look at mpd->b_blocknr we would only be looking
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001972 * at the currently mapped buffer_heads.
1973 */
Alex Tomas64769242008-07-11 19:27:31 -04001974 index = mpd->first_page;
1975 end = mpd->next_page - 1;
1976
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001977 pagevec_init(&pvec, 0);
Alex Tomas64769242008-07-11 19:27:31 -04001978 while (index <= end) {
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001979 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
Alex Tomas64769242008-07-11 19:27:31 -04001980 if (nr_pages == 0)
1981 break;
1982 for (i = 0; i < nr_pages; i++) {
1983 struct page *page = pvec.pages[i];
1984
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001985 index = page->index;
1986 if (index > end)
1987 break;
1988 index++;
1989
1990 BUG_ON(!PageLocked(page));
1991 BUG_ON(PageWriteback(page));
1992
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001993 pages_skipped = mpd->wbc->pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001994 err = mapping->a_ops->writepage(page, mpd->wbc);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001995 if (!err && (pages_skipped == mpd->wbc->pages_skipped))
1996 /*
1997 * have successfully written the page
1998 * without skipping the same
1999 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002000 mpd->pages_written++;
Alex Tomas64769242008-07-11 19:27:31 -04002001 /*
2002 * In error case, we have to continue because
2003 * remaining pages are still locked
2004 * XXX: unlock and re-dirty them?
2005 */
2006 if (ret == 0)
2007 ret = err;
2008 }
2009 pagevec_release(&pvec);
2010 }
Alex Tomas64769242008-07-11 19:27:31 -04002011 return ret;
2012}
2013
2014/*
2015 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
2016 *
2017 * @mpd->inode - inode to walk through
2018 * @exbh->b_blocknr - first block on a disk
2019 * @exbh->b_size - amount of space in bytes
2020 * @logical - first logical block to start assignment with
2021 *
2022 * the function goes through all passed space and put actual disk
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002023 * block numbers into buffer heads, dropping BH_Delay and BH_Unwritten
Alex Tomas64769242008-07-11 19:27:31 -04002024 */
2025static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
2026 struct buffer_head *exbh)
2027{
2028 struct inode *inode = mpd->inode;
2029 struct address_space *mapping = inode->i_mapping;
2030 int blocks = exbh->b_size >> inode->i_blkbits;
2031 sector_t pblock = exbh->b_blocknr, cur_logical;
2032 struct buffer_head *head, *bh;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002033 pgoff_t index, end;
Alex Tomas64769242008-07-11 19:27:31 -04002034 struct pagevec pvec;
2035 int nr_pages, i;
2036
2037 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2038 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2039 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
2040
2041 pagevec_init(&pvec, 0);
2042
2043 while (index <= end) {
2044 /* XXX: optimize tail */
2045 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2046 if (nr_pages == 0)
2047 break;
2048 for (i = 0; i < nr_pages; i++) {
2049 struct page *page = pvec.pages[i];
2050
2051 index = page->index;
2052 if (index > end)
2053 break;
2054 index++;
2055
2056 BUG_ON(!PageLocked(page));
2057 BUG_ON(PageWriteback(page));
2058 BUG_ON(!page_has_buffers(page));
2059
2060 bh = page_buffers(page);
2061 head = bh;
2062
2063 /* skip blocks out of the range */
2064 do {
2065 if (cur_logical >= logical)
2066 break;
2067 cur_logical++;
2068 } while ((bh = bh->b_this_page) != head);
2069
2070 do {
2071 if (cur_logical >= logical + blocks)
2072 break;
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002073
2074 if (buffer_delay(bh) ||
2075 buffer_unwritten(bh)) {
2076
2077 BUG_ON(bh->b_bdev != inode->i_sb->s_bdev);
2078
2079 if (buffer_delay(bh)) {
2080 clear_buffer_delay(bh);
2081 bh->b_blocknr = pblock;
2082 } else {
2083 /*
2084 * unwritten already should have
2085 * blocknr assigned. Verify that
2086 */
2087 clear_buffer_unwritten(bh);
2088 BUG_ON(bh->b_blocknr != pblock);
2089 }
2090
Mingming Cao61628a32008-07-11 19:27:31 -04002091 } else if (buffer_mapped(bh))
Alex Tomas64769242008-07-11 19:27:31 -04002092 BUG_ON(bh->b_blocknr != pblock);
Alex Tomas64769242008-07-11 19:27:31 -04002093
2094 cur_logical++;
2095 pblock++;
2096 } while ((bh = bh->b_this_page) != head);
2097 }
2098 pagevec_release(&pvec);
2099 }
2100}
2101
2102
2103/*
2104 * __unmap_underlying_blocks - just a helper function to unmap
2105 * set of blocks described by @bh
2106 */
2107static inline void __unmap_underlying_blocks(struct inode *inode,
2108 struct buffer_head *bh)
2109{
2110 struct block_device *bdev = inode->i_sb->s_bdev;
2111 int blocks, i;
2112
2113 blocks = bh->b_size >> inode->i_blkbits;
2114 for (i = 0; i < blocks; i++)
2115 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
2116}
2117
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002118static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd,
2119 sector_t logical, long blk_cnt)
2120{
2121 int nr_pages, i;
2122 pgoff_t index, end;
2123 struct pagevec pvec;
2124 struct inode *inode = mpd->inode;
2125 struct address_space *mapping = inode->i_mapping;
2126
2127 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2128 end = (logical + blk_cnt - 1) >>
2129 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2130 while (index <= end) {
2131 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2132 if (nr_pages == 0)
2133 break;
2134 for (i = 0; i < nr_pages; i++) {
2135 struct page *page = pvec.pages[i];
2136 index = page->index;
2137 if (index > end)
2138 break;
2139 index++;
2140
2141 BUG_ON(!PageLocked(page));
2142 BUG_ON(PageWriteback(page));
2143 block_invalidatepage(page, 0);
2144 ClearPageUptodate(page);
2145 unlock_page(page);
2146 }
2147 }
2148 return;
2149}
2150
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002151static void ext4_print_free_blocks(struct inode *inode)
2152{
2153 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o16939182009-09-26 17:43:59 -04002154 printk(KERN_CRIT "Total free blocks count %lld\n",
2155 ext4_count_free_blocks(inode->i_sb));
2156 printk(KERN_CRIT "Free/Dirty block details\n");
2157 printk(KERN_CRIT "free_blocks=%lld\n",
2158 (long long) percpu_counter_sum(&sbi->s_freeblocks_counter));
2159 printk(KERN_CRIT "dirty_blocks=%lld\n",
2160 (long long) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2161 printk(KERN_CRIT "Block reservation details\n");
2162 printk(KERN_CRIT "i_reserved_data_blocks=%u\n",
2163 EXT4_I(inode)->i_reserved_data_blocks);
2164 printk(KERN_CRIT "i_reserved_meta_blocks=%u\n",
2165 EXT4_I(inode)->i_reserved_meta_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002166 return;
2167}
2168
Theodore Ts'ob920c752009-05-14 00:54:29 -04002169/*
Alex Tomas64769242008-07-11 19:27:31 -04002170 * mpage_da_map_blocks - go through given space
2171 *
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002172 * @mpd - bh describing space
Alex Tomas64769242008-07-11 19:27:31 -04002173 *
2174 * The function skips space we know is already mapped to disk blocks.
2175 *
Alex Tomas64769242008-07-11 19:27:31 -04002176 */
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002177static int mpage_da_map_blocks(struct mpage_da_data *mpd)
Alex Tomas64769242008-07-11 19:27:31 -04002178{
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002179 int err, blks, get_blocks_flags;
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002180 struct buffer_head new;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002181 sector_t next = mpd->b_blocknr;
2182 unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits;
2183 loff_t disksize = EXT4_I(mpd->inode)->i_disksize;
2184 handle_t *handle = NULL;
Alex Tomas64769242008-07-11 19:27:31 -04002185
2186 /*
2187 * We consider only non-mapped and non-allocated blocks
2188 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002189 if ((mpd->b_state & (1 << BH_Mapped)) &&
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002190 !(mpd->b_state & (1 << BH_Delay)) &&
2191 !(mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002192 return 0;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002193
2194 /*
2195 * If we didn't accumulate anything to write simply return
2196 */
2197 if (!mpd->b_size)
2198 return 0;
2199
2200 handle = ext4_journal_current_handle();
2201 BUG_ON(!handle);
2202
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002203 /*
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002204 * Call ext4_get_blocks() to allocate any delayed allocation
2205 * blocks, or to convert an uninitialized extent to be
2206 * initialized (in the case where we have written into
2207 * one or more preallocated blocks).
2208 *
2209 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to
2210 * indicate that we are on the delayed allocation path. This
2211 * affects functions in many different parts of the allocation
2212 * call path. This flag exists primarily because we don't
2213 * want to change *many* call functions, so ext4_get_blocks()
2214 * will set the magic i_delalloc_reserved_flag once the
2215 * inode's allocation semaphore is taken.
2216 *
2217 * If the blocks in questions were delalloc blocks, set
2218 * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting
2219 * variables are updated after the blocks have been allocated.
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002220 */
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002221 new.b_state = 0;
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05002222 get_blocks_flags = EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002223 if (mpd->b_state & (1 << BH_Delay))
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05002224 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2225
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002226 blks = ext4_get_blocks(handle, mpd->inode, next, max_blocks,
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002227 &new, get_blocks_flags);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002228 if (blks < 0) {
2229 err = blks;
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002230 /*
2231 * If get block returns with error we simply
2232 * return. Later writepage will redirty the page and
2233 * writepages will find the dirty page again
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002234 */
2235 if (err == -EAGAIN)
2236 return 0;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002237
2238 if (err == -ENOSPC &&
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002239 ext4_count_free_blocks(mpd->inode->i_sb)) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002240 mpd->retval = err;
2241 return 0;
2242 }
2243
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002244 /*
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002245 * get block failure will cause us to loop in
2246 * writepages, because a_ops->writepage won't be able
2247 * to make progress. The page will be redirtied by
2248 * writepage and writepages will again try to write
2249 * the same.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002250 */
Theodore Ts'o16939182009-09-26 17:43:59 -04002251 ext4_msg(mpd->inode->i_sb, KERN_CRIT,
2252 "delayed block allocation failed for inode %lu at "
2253 "logical offset %llu with max blocks %zd with "
2254 "error %d\n", mpd->inode->i_ino,
2255 (unsigned long long) next,
2256 mpd->b_size >> mpd->inode->i_blkbits, err);
2257 printk(KERN_CRIT "This should not happen!! "
2258 "Data will be lost\n");
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002259 if (err == -ENOSPC) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002260 ext4_print_free_blocks(mpd->inode);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002261 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002262 /* invalidate all the pages */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002263 ext4_da_block_invalidatepages(mpd, next,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002264 mpd->b_size >> mpd->inode->i_blkbits);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002265 return err;
2266 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002267 BUG_ON(blks == 0);
2268
2269 new.b_size = (blks << mpd->inode->i_blkbits);
Alex Tomas64769242008-07-11 19:27:31 -04002270
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002271 if (buffer_new(&new))
2272 __unmap_underlying_blocks(mpd->inode, &new);
Alex Tomas64769242008-07-11 19:27:31 -04002273
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002274 /*
2275 * If blocks are delayed marked, we need to
2276 * put actual blocknr and drop delayed bit
2277 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002278 if ((mpd->b_state & (1 << BH_Delay)) ||
2279 (mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002280 mpage_put_bnr_to_bhs(mpd, next, &new);
2281
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002282 if (ext4_should_order_data(mpd->inode)) {
2283 err = ext4_jbd2_file_inode(handle, mpd->inode);
2284 if (err)
2285 return err;
2286 }
2287
2288 /*
Jan Kara03f5d8b2009-06-09 00:17:05 -04002289 * Update on-disk size along with block allocation.
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002290 */
2291 disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits;
2292 if (disksize > i_size_read(mpd->inode))
2293 disksize = i_size_read(mpd->inode);
2294 if (disksize > EXT4_I(mpd->inode)->i_disksize) {
2295 ext4_update_i_disksize(mpd->inode, disksize);
2296 return ext4_mark_inode_dirty(handle, mpd->inode);
2297 }
2298
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002299 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04002300}
2301
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04002302#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
2303 (1 << BH_Delay) | (1 << BH_Unwritten))
Alex Tomas64769242008-07-11 19:27:31 -04002304
2305/*
2306 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
2307 *
2308 * @mpd->lbh - extent of blocks
2309 * @logical - logical number of the block in the file
2310 * @bh - bh of the block (used to access block's state)
2311 *
2312 * the function is used to collect contig. blocks in same state
2313 */
2314static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002315 sector_t logical, size_t b_size,
2316 unsigned long b_state)
Alex Tomas64769242008-07-11 19:27:31 -04002317{
Alex Tomas64769242008-07-11 19:27:31 -04002318 sector_t next;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002319 int nrblocks = mpd->b_size >> mpd->inode->i_blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04002320
Mingming Cao525f4ed2008-08-19 22:15:58 -04002321 /* check if thereserved journal credits might overflow */
2322 if (!(EXT4_I(mpd->inode)->i_flags & EXT4_EXTENTS_FL)) {
2323 if (nrblocks >= EXT4_MAX_TRANS_DATA) {
2324 /*
2325 * With non-extent format we are limited by the journal
2326 * credit available. Total credit needed to insert
2327 * nrblocks contiguous blocks is dependent on the
2328 * nrblocks. So limit nrblocks.
2329 */
2330 goto flush_it;
2331 } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) >
2332 EXT4_MAX_TRANS_DATA) {
2333 /*
2334 * Adding the new buffer_head would make it cross the
2335 * allowed limit for which we have journal credit
2336 * reserved. So limit the new bh->b_size
2337 */
2338 b_size = (EXT4_MAX_TRANS_DATA - nrblocks) <<
2339 mpd->inode->i_blkbits;
2340 /* we will do mpage_da_submit_io in the next loop */
2341 }
2342 }
Alex Tomas64769242008-07-11 19:27:31 -04002343 /*
2344 * First block in the extent
2345 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002346 if (mpd->b_size == 0) {
2347 mpd->b_blocknr = logical;
2348 mpd->b_size = b_size;
2349 mpd->b_state = b_state & BH_FLAGS;
Alex Tomas64769242008-07-11 19:27:31 -04002350 return;
2351 }
2352
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002353 next = mpd->b_blocknr + nrblocks;
Alex Tomas64769242008-07-11 19:27:31 -04002354 /*
2355 * Can we merge the block to our big extent?
2356 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002357 if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) {
2358 mpd->b_size += b_size;
Alex Tomas64769242008-07-11 19:27:31 -04002359 return;
2360 }
2361
Mingming Cao525f4ed2008-08-19 22:15:58 -04002362flush_it:
Alex Tomas64769242008-07-11 19:27:31 -04002363 /*
2364 * We couldn't merge the block to our extent, so we
2365 * need to flush current extent and start new one
2366 */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002367 if (mpage_da_map_blocks(mpd) == 0)
2368 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002369 mpd->io_done = 1;
2370 return;
Alex Tomas64769242008-07-11 19:27:31 -04002371}
2372
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002373static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002374{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002375 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002376}
2377
Alex Tomas64769242008-07-11 19:27:31 -04002378/*
2379 * __mpage_da_writepage - finds extent of pages and blocks
2380 *
2381 * @page: page to consider
2382 * @wbc: not used, we just follow rules
2383 * @data: context
2384 *
2385 * The function finds extents of pages and scan them for all blocks.
2386 */
2387static int __mpage_da_writepage(struct page *page,
2388 struct writeback_control *wbc, void *data)
2389{
2390 struct mpage_da_data *mpd = data;
2391 struct inode *inode = mpd->inode;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002392 struct buffer_head *bh, *head;
Alex Tomas64769242008-07-11 19:27:31 -04002393 sector_t logical;
2394
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002395 if (mpd->io_done) {
2396 /*
2397 * Rest of the page in the page_vec
2398 * redirty then and skip then. We will
Anand Gadiyarfd589a82009-07-16 17:13:03 +02002399 * try to write them again after
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002400 * starting a new transaction
2401 */
2402 redirty_page_for_writepage(wbc, page);
2403 unlock_page(page);
2404 return MPAGE_DA_EXTENT_TAIL;
2405 }
Alex Tomas64769242008-07-11 19:27:31 -04002406 /*
2407 * Can we merge this page to current extent?
2408 */
2409 if (mpd->next_page != page->index) {
2410 /*
2411 * Nope, we can't. So, we map non-allocated blocks
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002412 * and start IO on them using writepage()
Alex Tomas64769242008-07-11 19:27:31 -04002413 */
2414 if (mpd->next_page != mpd->first_page) {
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002415 if (mpage_da_map_blocks(mpd) == 0)
2416 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002417 /*
2418 * skip rest of the page in the page_vec
2419 */
2420 mpd->io_done = 1;
2421 redirty_page_for_writepage(wbc, page);
2422 unlock_page(page);
2423 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002424 }
2425
2426 /*
2427 * Start next extent of pages ...
2428 */
2429 mpd->first_page = page->index;
2430
2431 /*
2432 * ... and blocks
2433 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002434 mpd->b_size = 0;
2435 mpd->b_state = 0;
2436 mpd->b_blocknr = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002437 }
2438
2439 mpd->next_page = page->index + 1;
2440 logical = (sector_t) page->index <<
2441 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2442
2443 if (!page_has_buffers(page)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002444 mpage_add_bh_to_extent(mpd, logical, PAGE_CACHE_SIZE,
2445 (1 << BH_Dirty) | (1 << BH_Uptodate));
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002446 if (mpd->io_done)
2447 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002448 } else {
2449 /*
2450 * Page with regular buffer heads, just add all dirty ones
2451 */
2452 head = page_buffers(page);
2453 bh = head;
2454 do {
2455 BUG_ON(buffer_locked(bh));
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002456 /*
2457 * We need to try to allocate
2458 * unmapped blocks in the same page.
2459 * Otherwise we won't make progress
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002460 * with the page in ext4_writepage
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002461 */
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002462 if (ext4_bh_delay_or_unwritten(NULL, bh)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002463 mpage_add_bh_to_extent(mpd, logical,
2464 bh->b_size,
2465 bh->b_state);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002466 if (mpd->io_done)
2467 return MPAGE_DA_EXTENT_TAIL;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002468 } else if (buffer_dirty(bh) && (buffer_mapped(bh))) {
2469 /*
2470 * mapped dirty buffer. We need to update
2471 * the b_state because we look at
2472 * b_state in mpage_da_map_blocks. We don't
2473 * update b_size because if we find an
2474 * unmapped buffer_head later we need to
2475 * use the b_state flag of that buffer_head.
2476 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002477 if (mpd->b_size == 0)
2478 mpd->b_state = bh->b_state & BH_FLAGS;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002479 }
Alex Tomas64769242008-07-11 19:27:31 -04002480 logical++;
2481 } while ((bh = bh->b_this_page) != head);
2482 }
2483
2484 return 0;
2485}
2486
2487/*
Theodore Ts'ob920c752009-05-14 00:54:29 -04002488 * This is a special get_blocks_t callback which is used by
2489 * ext4_da_write_begin(). It will either return mapped block or
2490 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002491 *
2492 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
2493 * We also have b_blocknr = -1 and b_bdev initialized properly
2494 *
2495 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
2496 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
2497 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04002498 */
2499static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
2500 struct buffer_head *bh_result, int create)
2501{
2502 int ret = 0;
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002503 sector_t invalid_block = ~((sector_t) 0xffff);
2504
2505 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
2506 invalid_block = ~0;
Alex Tomas64769242008-07-11 19:27:31 -04002507
2508 BUG_ON(create == 0);
2509 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2510
2511 /*
2512 * first, we need to know whether the block is allocated already
2513 * preallocated blocks are unmapped but should treated
2514 * the same as allocated blocks.
2515 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002516 ret = ext4_get_blocks(NULL, inode, iblock, 1, bh_result, 0);
Mingming Caod2a17632008-07-14 17:52:37 -04002517 if ((ret == 0) && !buffer_delay(bh_result)) {
2518 /* the block isn't (pre)allocated yet, let's reserve space */
Alex Tomas64769242008-07-11 19:27:31 -04002519 /*
2520 * XXX: __block_prepare_write() unmaps passed block,
2521 * is it OK?
2522 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -05002523 ret = ext4_da_reserve_space(inode, iblock);
Mingming Caod2a17632008-07-14 17:52:37 -04002524 if (ret)
2525 /* not enough space to reserve */
2526 return ret;
2527
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002528 map_bh(bh_result, inode->i_sb, invalid_block);
Alex Tomas64769242008-07-11 19:27:31 -04002529 set_buffer_new(bh_result);
2530 set_buffer_delay(bh_result);
2531 } else if (ret > 0) {
2532 bh_result->b_size = (ret << inode->i_blkbits);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002533 if (buffer_unwritten(bh_result)) {
2534 /* A delayed write to unwritten bh should
2535 * be marked new and mapped. Mapped ensures
2536 * that we don't do get_block multiple times
2537 * when we write to the same offset and new
2538 * ensures that we do proper zero out for
2539 * partial write.
2540 */
Aneesh Kumar K.V9c1ee182009-05-13 18:36:58 -04002541 set_buffer_new(bh_result);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002542 set_buffer_mapped(bh_result);
2543 }
Alex Tomas64769242008-07-11 19:27:31 -04002544 ret = 0;
2545 }
2546
2547 return ret;
2548}
Mingming Cao61628a32008-07-11 19:27:31 -04002549
Theodore Ts'ob920c752009-05-14 00:54:29 -04002550/*
2551 * This function is used as a standard get_block_t calback function
2552 * when there is no desire to allocate any blocks. It is used as a
2553 * callback function for block_prepare_write(), nobh_writepage(), and
2554 * block_write_full_page(). These functions should only try to map a
2555 * single block at a time.
2556 *
2557 * Since this function doesn't do block allocations even if the caller
2558 * requests it by passing in create=1, it is critically important that
2559 * any caller checks to make sure that any buffer heads are returned
2560 * by this function are either all already mapped or marked for
2561 * delayed allocation before calling nobh_writepage() or
2562 * block_write_full_page(). Otherwise, b_blocknr could be left
2563 * unitialized, and the page write functions will be taken by
2564 * surprise.
2565 */
2566static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002567 struct buffer_head *bh_result, int create)
2568{
2569 int ret = 0;
2570 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2571
Theodore Ts'oa2dc52b2009-05-12 13:51:29 -04002572 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2573
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002574 /*
2575 * we don't want to do block allocation in writepage
2576 * so call get_block_wrap with create = 0
2577 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002578 ret = ext4_get_blocks(NULL, inode, iblock, max_blocks, bh_result, 0);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002579 if (ret > 0) {
2580 bh_result->b_size = (ret << inode->i_blkbits);
2581 ret = 0;
2582 }
2583 return ret;
Mingming Cao61628a32008-07-11 19:27:31 -04002584}
2585
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002586static int bget_one(handle_t *handle, struct buffer_head *bh)
2587{
2588 get_bh(bh);
2589 return 0;
2590}
2591
2592static int bput_one(handle_t *handle, struct buffer_head *bh)
2593{
2594 put_bh(bh);
2595 return 0;
2596}
2597
2598static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002599 unsigned int len)
2600{
2601 struct address_space *mapping = page->mapping;
2602 struct inode *inode = mapping->host;
2603 struct buffer_head *page_bufs;
2604 handle_t *handle = NULL;
2605 int ret = 0;
2606 int err;
2607
2608 page_bufs = page_buffers(page);
2609 BUG_ON(!page_bufs);
2610 walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one);
2611 /* As soon as we unlock the page, it can go away, but we have
2612 * references to buffers so we are safe */
2613 unlock_page(page);
2614
2615 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
2616 if (IS_ERR(handle)) {
2617 ret = PTR_ERR(handle);
2618 goto out;
2619 }
2620
2621 ret = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2622 do_journal_get_write_access);
2623
2624 err = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2625 write_end_fn);
2626 if (ret == 0)
2627 ret = err;
2628 err = ext4_journal_stop(handle);
2629 if (!ret)
2630 ret = err;
2631
2632 walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one);
2633 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
2634out:
2635 return ret;
2636}
2637
Mingming Cao61628a32008-07-11 19:27:31 -04002638/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002639 * Note that we don't need to start a transaction unless we're journaling data
2640 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2641 * need to file the inode to the transaction's list in ordered mode because if
2642 * we are writing back data added by write(), the inode is already there and if
2643 * we are writing back data modified via mmap(), noone guarantees in which
2644 * transaction the data will hit the disk. In case we are journaling data, we
2645 * cannot start transaction directly because transaction start ranks above page
2646 * lock so we have to do some magic.
2647 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04002648 * This function can get called via...
2649 * - ext4_da_writepages after taking page lock (have journal handle)
2650 * - journal_submit_inode_data_buffers (no journal handle)
2651 * - shrink_page_list via pdflush (no journal handle)
2652 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002653 *
2654 * We don't do any block allocation in this function. If we have page with
2655 * multiple blocks we need to write those buffer_heads that are mapped. This
2656 * is important for mmaped based write. So if we do with blocksize 1K
2657 * truncate(f, 1024);
2658 * a = mmap(f, 0, 4096);
2659 * a[0] = 'a';
2660 * truncate(f, 4096);
2661 * we have in the page first buffer_head mapped via page_mkwrite call back
2662 * but other bufer_heads would be unmapped but dirty(dirty done via the
2663 * do_wp_page). So writepage should write the first block. If we modify
2664 * the mmap area beyond 1024 we will again get a page_fault and the
2665 * page_mkwrite callback will do the block allocation and mark the
2666 * buffer_heads mapped.
2667 *
2668 * We redirty the page if we have any buffer_heads that is either delay or
2669 * unwritten in the page.
2670 *
2671 * We can get recursively called as show below.
2672 *
2673 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2674 * ext4_writepage()
2675 *
2676 * But since we don't do any block allocation we should not deadlock.
2677 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04002678 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002679static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002680 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002681{
Alex Tomas64769242008-07-11 19:27:31 -04002682 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002683 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002684 unsigned int len;
Mingming Cao61628a32008-07-11 19:27:31 -04002685 struct buffer_head *page_bufs;
2686 struct inode *inode = page->mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002687
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002688 trace_ext4_writepage(inode, page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002689 size = i_size_read(inode);
2690 if (page->index == size >> PAGE_CACHE_SHIFT)
2691 len = size & ~PAGE_CACHE_MASK;
2692 else
2693 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002694
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002695 if (page_has_buffers(page)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002696 page_bufs = page_buffers(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002697 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002698 ext4_bh_delay_or_unwritten)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002699 /*
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002700 * We don't want to do block allocation
2701 * So redirty the page and return
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002702 * We may reach here when we do a journal commit
2703 * via journal_submit_inode_data_buffers.
2704 * If we don't have mapping block we just ignore
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002705 * them. We can also reach here via shrink_page_list
2706 */
2707 redirty_page_for_writepage(wbc, page);
2708 unlock_page(page);
2709 return 0;
2710 }
2711 } else {
2712 /*
2713 * The test for page_has_buffers() is subtle:
2714 * We know the page is dirty but it lost buffers. That means
2715 * that at some moment in time after write_begin()/write_end()
2716 * has been called all buffers have been clean and thus they
2717 * must have been written at least once. So they are all
2718 * mapped and we can happily proceed with mapping them
2719 * and writing the page.
2720 *
2721 * Try to initialize the buffer_heads and check whether
2722 * all are mapped and non delay. We don't want to
2723 * do block allocation here.
2724 */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002725 ret = block_prepare_write(page, 0, len,
Theodore Ts'ob920c752009-05-14 00:54:29 -04002726 noalloc_get_block_write);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002727 if (!ret) {
2728 page_bufs = page_buffers(page);
2729 /* check whether all are mapped and non delay */
2730 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002731 ext4_bh_delay_or_unwritten)) {
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002732 redirty_page_for_writepage(wbc, page);
2733 unlock_page(page);
2734 return 0;
2735 }
2736 } else {
2737 /*
2738 * We can't do block allocation here
2739 * so just redity the page and unlock
2740 * and return
Mingming Cao61628a32008-07-11 19:27:31 -04002741 */
Mingming Cao61628a32008-07-11 19:27:31 -04002742 redirty_page_for_writepage(wbc, page);
2743 unlock_page(page);
2744 return 0;
2745 }
Aneesh Kumar K.Ved9b3e32008-11-07 09:06:45 -05002746 /* now mark the buffer_heads as dirty and uptodate */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002747 block_commit_write(page, 0, len);
Alex Tomas64769242008-07-11 19:27:31 -04002748 }
2749
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002750 if (PageChecked(page) && ext4_should_journal_data(inode)) {
2751 /*
2752 * It's mmapped pagecache. Add buffers and journal it. There
2753 * doesn't seem much point in redirtying the page here.
2754 */
2755 ClearPageChecked(page);
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002756 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002757 }
2758
Alex Tomas64769242008-07-11 19:27:31 -04002759 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
Theodore Ts'ob920c752009-05-14 00:54:29 -04002760 ret = nobh_writepage(page, noalloc_get_block_write, wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002761 else
Theodore Ts'ob920c752009-05-14 00:54:29 -04002762 ret = block_write_full_page(page, noalloc_get_block_write,
2763 wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002764
Alex Tomas64769242008-07-11 19:27:31 -04002765 return ret;
2766}
2767
Mingming Cao61628a32008-07-11 19:27:31 -04002768/*
Mingming Cao525f4ed2008-08-19 22:15:58 -04002769 * This is called via ext4_da_writepages() to
2770 * calulate the total number of credits to reserve to fit
2771 * a single extent allocation into a single transaction,
2772 * ext4_da_writpeages() will loop calling this before
2773 * the block allocation.
Mingming Cao61628a32008-07-11 19:27:31 -04002774 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002775
2776static int ext4_da_writepages_trans_blocks(struct inode *inode)
2777{
2778 int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
2779
2780 /*
2781 * With non-extent format the journal credit needed to
2782 * insert nrblocks contiguous block is dependent on
2783 * number of contiguous block. So we will limit
2784 * number of contiguous block to a sane value
2785 */
Julia Lawall30c6e07a2009-11-15 15:30:58 -05002786 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) &&
Mingming Cao525f4ed2008-08-19 22:15:58 -04002787 (max_blocks > EXT4_MAX_TRANS_DATA))
2788 max_blocks = EXT4_MAX_TRANS_DATA;
2789
2790 return ext4_chunk_trans_blocks(inode, max_blocks);
2791}
Mingming Cao61628a32008-07-11 19:27:31 -04002792
Alex Tomas64769242008-07-11 19:27:31 -04002793static int ext4_da_writepages(struct address_space *mapping,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002794 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002795{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002796 pgoff_t index;
2797 int range_whole = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002798 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002799 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002800 struct inode *inode = mapping->host;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002801 int no_nrwrite_index_update;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002802 int pages_written = 0;
2803 long pages_skipped;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002804 unsigned int max_pages;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002805 int range_cyclic, cycled = 1, io_done = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002806 int needed_blocks, ret = 0;
2807 long desired_nr_to_write, nr_to_writebump = 0;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002808 loff_t range_start = wbc->range_start;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002809 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Mingming Cao61628a32008-07-11 19:27:31 -04002810
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002811 trace_ext4_da_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002812
Mingming Cao61628a32008-07-11 19:27:31 -04002813 /*
2814 * No pages to write? This is mainly a kludge to avoid starting
2815 * a transaction for special inodes like journal inode on last iput()
2816 * because that could violate lock ordering on umount
2817 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002818 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Mingming Cao61628a32008-07-11 19:27:31 -04002819 return 0;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002820
2821 /*
2822 * If the filesystem has aborted, it is read-only, so return
2823 * right away instead of dumping stack traces later on that
2824 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002825 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002826 * the latter could be true if the filesystem is mounted
2827 * read-only, and in that case, ext4_da_writepages should
2828 * *never* be called, so if that ever happens, we would want
2829 * the stack trace.
2830 */
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002831 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED))
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002832 return -EROFS;
2833
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002834 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2835 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002836
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002837 range_cyclic = wbc->range_cyclic;
2838 if (wbc->range_cyclic) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002839 index = mapping->writeback_index;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002840 if (index)
2841 cycled = 0;
2842 wbc->range_start = index << PAGE_CACHE_SHIFT;
2843 wbc->range_end = LLONG_MAX;
2844 wbc->range_cyclic = 0;
2845 } else
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002846 index = wbc->range_start >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002847
Theodore Ts'o55138e02009-09-29 13:31:31 -04002848 /*
2849 * This works around two forms of stupidity. The first is in
2850 * the writeback code, which caps the maximum number of pages
2851 * written to be 1024 pages. This is wrong on multiple
2852 * levels; different architectues have a different page size,
2853 * which changes the maximum amount of data which gets
2854 * written. Secondly, 4 megabytes is way too small. XFS
2855 * forces this value to be 16 megabytes by multiplying
2856 * nr_to_write parameter by four, and then relies on its
2857 * allocator to allocate larger extents to make them
2858 * contiguous. Unfortunately this brings us to the second
2859 * stupidity, which is that ext4's mballoc code only allocates
2860 * at most 2048 blocks. So we force contiguous writes up to
2861 * the number of dirty blocks in the inode, or
2862 * sbi->max_writeback_mb_bump whichever is smaller.
2863 */
2864 max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT);
2865 if (!range_cyclic && range_whole)
2866 desired_nr_to_write = wbc->nr_to_write * 8;
2867 else
2868 desired_nr_to_write = ext4_num_dirty_pages(inode, index,
2869 max_pages);
2870 if (desired_nr_to_write > max_pages)
2871 desired_nr_to_write = max_pages;
2872
2873 if (wbc->nr_to_write < desired_nr_to_write) {
2874 nr_to_writebump = desired_nr_to_write - wbc->nr_to_write;
2875 wbc->nr_to_write = desired_nr_to_write;
2876 }
2877
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002878 mpd.wbc = wbc;
2879 mpd.inode = mapping->host;
2880
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002881 /*
2882 * we don't want write_cache_pages to update
2883 * nr_to_write and writeback_index
2884 */
2885 no_nrwrite_index_update = wbc->no_nrwrite_index_update;
2886 wbc->no_nrwrite_index_update = 1;
2887 pages_skipped = wbc->pages_skipped;
2888
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002889retry:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002890 while (!ret && wbc->nr_to_write > 0) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002891
2892 /*
2893 * we insert one extent at a time. So we need
2894 * credit needed for single extent allocation.
2895 * journalled mode is currently not supported
2896 * by delalloc
2897 */
2898 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002899 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002900
Mingming Cao61628a32008-07-11 19:27:31 -04002901 /* start a new transaction*/
2902 handle = ext4_journal_start(inode, needed_blocks);
2903 if (IS_ERR(handle)) {
2904 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002905 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002906 "%ld pages, ino %lu; err %d\n", __func__,
2907 wbc->nr_to_write, inode->i_ino, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002908 goto out_writepages;
2909 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002910
2911 /*
2912 * Now call __mpage_da_writepage to find the next
2913 * contiguous region of logical blocks that need
2914 * blocks to be allocated by ext4. We don't actually
2915 * submit the blocks for I/O here, even though
2916 * write_cache_pages thinks it will, and will set the
2917 * pages as clean for write before calling
2918 * __mpage_da_writepage().
2919 */
2920 mpd.b_size = 0;
2921 mpd.b_state = 0;
2922 mpd.b_blocknr = 0;
2923 mpd.first_page = 0;
2924 mpd.next_page = 0;
2925 mpd.io_done = 0;
2926 mpd.pages_written = 0;
2927 mpd.retval = 0;
2928 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage,
2929 &mpd);
2930 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002931 * If we have a contiguous extent of pages and we
Theodore Ts'of63e6002009-02-23 16:42:39 -05002932 * haven't done the I/O yet, map the blocks and submit
2933 * them for I/O.
2934 */
2935 if (!mpd.io_done && mpd.next_page != mpd.first_page) {
2936 if (mpage_da_map_blocks(&mpd) == 0)
2937 mpage_da_submit_io(&mpd);
2938 mpd.io_done = 1;
2939 ret = MPAGE_DA_EXTENT_TAIL;
2940 }
Theodore Ts'ob3a3ca82009-08-31 23:13:11 -04002941 trace_ext4_da_write_pages(inode, &mpd);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002942 wbc->nr_to_write -= mpd.pages_written;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002943
Mingming Cao61628a32008-07-11 19:27:31 -04002944 ext4_journal_stop(handle);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002945
Eric Sandeen8f64b322009-02-26 00:57:35 -05002946 if ((mpd.retval == -ENOSPC) && sbi->s_journal) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002947 /* commit the transaction which would
2948 * free blocks released in the transaction
2949 * and try again
2950 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002951 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002952 wbc->pages_skipped = pages_skipped;
2953 ret = 0;
2954 } else if (ret == MPAGE_DA_EXTENT_TAIL) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002955 /*
2956 * got one extent now try with
2957 * rest of the pages
2958 */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002959 pages_written += mpd.pages_written;
2960 wbc->pages_skipped = pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002961 ret = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002962 io_done = 1;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002963 } else if (wbc->nr_to_write)
Mingming Cao61628a32008-07-11 19:27:31 -04002964 /*
2965 * There is no more writeout needed
2966 * or we requested for a noblocking writeout
2967 * and we found the device congested
2968 */
Mingming Cao61628a32008-07-11 19:27:31 -04002969 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002970 }
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002971 if (!io_done && !cycled) {
2972 cycled = 1;
2973 index = 0;
2974 wbc->range_start = index << PAGE_CACHE_SHIFT;
2975 wbc->range_end = mapping->writeback_index - 1;
2976 goto retry;
2977 }
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002978 if (pages_skipped != wbc->pages_skipped)
Theodore Ts'o16939182009-09-26 17:43:59 -04002979 ext4_msg(inode->i_sb, KERN_CRIT,
2980 "This should not happen leaving %s "
2981 "with nr_to_write = %ld ret = %d\n",
2982 __func__, wbc->nr_to_write, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002983
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002984 /* Update index */
2985 index += pages_written;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002986 wbc->range_cyclic = range_cyclic;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002987 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2988 /*
2989 * set the writeback_index so that range_cyclic
2990 * mode will write it back later
2991 */
2992 mapping->writeback_index = index;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002993
Mingming Cao61628a32008-07-11 19:27:31 -04002994out_writepages:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002995 if (!no_nrwrite_index_update)
2996 wbc->no_nrwrite_index_update = 0;
Richard Kennedy2faf2e12009-12-25 15:46:07 -05002997 wbc->nr_to_write -= nr_to_writebump;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002998 wbc->range_start = range_start;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002999 trace_ext4_da_writepages_result(inode, wbc, ret, pages_written);
Mingming Cao61628a32008-07-11 19:27:31 -04003000 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003001}
3002
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003003#define FALL_BACK_TO_NONDELALLOC 1
3004static int ext4_nonda_switch(struct super_block *sb)
3005{
3006 s64 free_blocks, dirty_blocks;
3007 struct ext4_sb_info *sbi = EXT4_SB(sb);
3008
3009 /*
3010 * switch to non delalloc mode if we are running low
3011 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08003012 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003013 * accumulated on each CPU without updating global counters
3014 * Delalloc need an accurate free block accounting. So switch
3015 * to non delalloc when we are near to error range.
3016 */
3017 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
3018 dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyblocks_counter);
3019 if (2 * free_blocks < 3 * dirty_blocks ||
3020 free_blocks < (dirty_blocks + EXT4_FREEBLOCKS_WATERMARK)) {
3021 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05003022 * free block count is less than 150% of dirty blocks
3023 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003024 */
3025 return 1;
3026 }
Eric Sandeenc8afb442009-12-23 07:58:12 -05003027 /*
3028 * Even if we don't switch but are nearing capacity,
3029 * start pushing delalloc when 1/2 of free blocks are dirty.
3030 */
3031 if (free_blocks < 2 * dirty_blocks)
3032 writeback_inodes_sb_if_idle(sb);
3033
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003034 return 0;
3035}
3036
Alex Tomas64769242008-07-11 19:27:31 -04003037static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003038 loff_t pos, unsigned len, unsigned flags,
3039 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003040{
Aneesh Kumar K.V1db91382010-01-22 17:06:20 -05003041 int ret, retries = 0, quota_retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04003042 struct page *page;
3043 pgoff_t index;
3044 unsigned from, to;
3045 struct inode *inode = mapping->host;
3046 handle_t *handle;
3047
3048 index = pos >> PAGE_CACHE_SHIFT;
3049 from = pos & (PAGE_CACHE_SIZE - 1);
3050 to = from + len;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003051
3052 if (ext4_nonda_switch(inode->i_sb)) {
3053 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
3054 return ext4_write_begin(file, mapping, pos,
3055 len, flags, pagep, fsdata);
3056 }
3057 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003058 trace_ext4_da_write_begin(inode, pos, len, flags);
Mingming Caod2a17632008-07-14 17:52:37 -04003059retry:
Alex Tomas64769242008-07-11 19:27:31 -04003060 /*
3061 * With delayed allocation, we don't log the i_disksize update
3062 * if there is delayed block allocation. But we still need
3063 * to journalling the i_disksize update if writes to the end
3064 * of file which has an already mapped buffer.
3065 */
3066 handle = ext4_journal_start(inode, 1);
3067 if (IS_ERR(handle)) {
3068 ret = PTR_ERR(handle);
3069 goto out;
3070 }
Jan Karaebd36102009-02-22 21:09:59 -05003071 /* We cannot recurse into the filesystem as the transaction is already
3072 * started */
3073 flags |= AOP_FLAG_NOFS;
Alex Tomas64769242008-07-11 19:27:31 -04003074
Nick Piggin54566b22009-01-04 12:00:53 -08003075 page = grab_cache_page_write_begin(mapping, index, flags);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003076 if (!page) {
3077 ext4_journal_stop(handle);
3078 ret = -ENOMEM;
3079 goto out;
3080 }
Alex Tomas64769242008-07-11 19:27:31 -04003081 *pagep = page;
3082
3083 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Theodore Ts'ob920c752009-05-14 00:54:29 -04003084 ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04003085 if (ret < 0) {
3086 unlock_page(page);
3087 ext4_journal_stop(handle);
3088 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003089 /*
3090 * block_write_begin may have instantiated a few blocks
3091 * outside i_size. Trim these off again. Don't need
3092 * i_size_read because we hold i_mutex.
3093 */
3094 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003095 ext4_truncate_failed_write(inode);
Alex Tomas64769242008-07-11 19:27:31 -04003096 }
3097
Mingming Caod2a17632008-07-14 17:52:37 -04003098 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3099 goto retry;
Aneesh Kumar K.V1db91382010-01-22 17:06:20 -05003100
3101 if ((ret == -EDQUOT) &&
3102 EXT4_I(inode)->i_reserved_meta_blocks &&
3103 (quota_retries++ < 3)) {
3104 /*
3105 * Since we often over-estimate the number of meta
3106 * data blocks required, we may sometimes get a
3107 * spurios out of quota error even though there would
3108 * be enough space once we write the data blocks and
3109 * find out how many meta data blocks were _really_
3110 * required. So try forcing the inode write to see if
3111 * that helps.
3112 */
3113 write_inode_now(inode, (quota_retries == 3));
3114 goto retry;
3115 }
Alex Tomas64769242008-07-11 19:27:31 -04003116out:
3117 return ret;
3118}
3119
Mingming Cao632eaea2008-07-11 19:27:31 -04003120/*
3121 * Check if we should update i_disksize
3122 * when write to the end of file but not require block allocation
3123 */
3124static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003125 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003126{
3127 struct buffer_head *bh;
3128 struct inode *inode = page->mapping->host;
3129 unsigned int idx;
3130 int i;
3131
3132 bh = page_buffers(page);
3133 idx = offset >> inode->i_blkbits;
3134
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003135 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003136 bh = bh->b_this_page;
3137
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003138 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003139 return 0;
3140 return 1;
3141}
3142
Alex Tomas64769242008-07-11 19:27:31 -04003143static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003144 struct address_space *mapping,
3145 loff_t pos, unsigned len, unsigned copied,
3146 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003147{
3148 struct inode *inode = mapping->host;
3149 int ret = 0, ret2;
3150 handle_t *handle = ext4_journal_current_handle();
3151 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003152 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003153 int write_mode = (int)(unsigned long)fsdata;
3154
3155 if (write_mode == FALL_BACK_TO_NONDELALLOC) {
3156 if (ext4_should_order_data(inode)) {
3157 return ext4_ordered_write_end(file, mapping, pos,
3158 len, copied, page, fsdata);
3159 } else if (ext4_should_writeback_data(inode)) {
3160 return ext4_writeback_write_end(file, mapping, pos,
3161 len, copied, page, fsdata);
3162 } else {
3163 BUG();
3164 }
3165 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003166
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003167 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04003168 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003169 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003170
3171 /*
3172 * generic_write_end() will run mark_inode_dirty() if i_size
3173 * changes. So let's piggyback the i_disksize mark_inode_dirty
3174 * into that.
3175 */
3176
3177 new_i_size = pos + copied;
Mingming Cao632eaea2008-07-11 19:27:31 -04003178 if (new_i_size > EXT4_I(inode)->i_disksize) {
3179 if (ext4_da_should_update_i_disksize(page, end)) {
3180 down_write(&EXT4_I(inode)->i_data_sem);
3181 if (new_i_size > EXT4_I(inode)->i_disksize) {
3182 /*
3183 * Updating i_disksize when extending file
3184 * without needing block allocation
3185 */
3186 if (ext4_should_order_data(inode))
3187 ret = ext4_jbd2_file_inode(handle,
3188 inode);
Alex Tomas64769242008-07-11 19:27:31 -04003189
Mingming Cao632eaea2008-07-11 19:27:31 -04003190 EXT4_I(inode)->i_disksize = new_i_size;
3191 }
3192 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003193 /* We need to mark inode dirty even if
3194 * new_i_size is less that inode->i_size
3195 * bu greater than i_disksize.(hint delalloc)
3196 */
3197 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003198 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003199 }
Alex Tomas64769242008-07-11 19:27:31 -04003200 ret2 = generic_write_end(file, mapping, pos, len, copied,
3201 page, fsdata);
3202 copied = ret2;
3203 if (ret2 < 0)
3204 ret = ret2;
3205 ret2 = ext4_journal_stop(handle);
3206 if (!ret)
3207 ret = ret2;
3208
3209 return ret ? ret : copied;
3210}
3211
3212static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
3213{
Alex Tomas64769242008-07-11 19:27:31 -04003214 /*
3215 * Drop reserved blocks
3216 */
3217 BUG_ON(!PageLocked(page));
3218 if (!page_has_buffers(page))
3219 goto out;
3220
Mingming Caod2a17632008-07-14 17:52:37 -04003221 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04003222
3223out:
3224 ext4_invalidatepage(page, offset);
3225
3226 return;
3227}
3228
Theodore Ts'occd25062009-02-26 01:04:07 -05003229/*
3230 * Force all delayed allocation blocks to be allocated for a given inode.
3231 */
3232int ext4_alloc_da_blocks(struct inode *inode)
3233{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003234 trace_ext4_alloc_da_blocks(inode);
3235
Theodore Ts'occd25062009-02-26 01:04:07 -05003236 if (!EXT4_I(inode)->i_reserved_data_blocks &&
3237 !EXT4_I(inode)->i_reserved_meta_blocks)
3238 return 0;
3239
3240 /*
3241 * We do something simple for now. The filemap_flush() will
3242 * also start triggering a write of the data blocks, which is
3243 * not strictly speaking necessary (and for users of
3244 * laptop_mode, not even desirable). However, to do otherwise
3245 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003246 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003247 * ext4_da_writepages() ->
3248 * write_cache_pages() ---> (via passed in callback function)
3249 * __mpage_da_writepage() -->
3250 * mpage_add_bh_to_extent()
3251 * mpage_da_map_blocks()
3252 *
3253 * The problem is that write_cache_pages(), located in
3254 * mm/page-writeback.c, marks pages clean in preparation for
3255 * doing I/O, which is not desirable if we're not planning on
3256 * doing I/O at all.
3257 *
3258 * We could call write_cache_pages(), and then redirty all of
3259 * the pages by calling redirty_page_for_writeback() but that
3260 * would be ugly in the extreme. So instead we would need to
3261 * replicate parts of the code in the above functions,
3262 * simplifying them becuase we wouldn't actually intend to
3263 * write out the pages, but rather only collect contiguous
3264 * logical block extents, call the multi-block allocator, and
3265 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003266 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003267 * For now, though, we'll cheat by calling filemap_flush(),
3268 * which will map the blocks, and start the I/O, but not
3269 * actually wait for the I/O to complete.
3270 */
3271 return filemap_flush(inode->i_mapping);
3272}
Alex Tomas64769242008-07-11 19:27:31 -04003273
3274/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275 * bmap() is special. It gets used by applications such as lilo and by
3276 * the swapper to find the on-disk block of a specific piece of data.
3277 *
3278 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003279 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003280 * filesystem and enables swap, then they may get a nasty shock when the
3281 * data getting swapped to that swapfile suddenly gets overwritten by
3282 * the original zero's written out previously to the journal and
3283 * awaiting writeback in the kernel's buffer cache.
3284 *
3285 * So, if we see any bmap calls here on a modified, data-journaled file,
3286 * take extra steps to flush any blocks which might be in the cache.
3287 */
Mingming Cao617ba132006-10-11 01:20:53 -07003288static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289{
3290 struct inode *inode = mapping->host;
3291 journal_t *journal;
3292 int err;
3293
Alex Tomas64769242008-07-11 19:27:31 -04003294 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3295 test_opt(inode->i_sb, DELALLOC)) {
3296 /*
3297 * With delalloc we want to sync the file
3298 * so that we can make sure we allocate
3299 * blocks for file
3300 */
3301 filemap_write_and_wait(mapping);
3302 }
3303
Frank Mayhar03901312009-01-07 00:06:22 -05003304 if (EXT4_JOURNAL(inode) && EXT4_I(inode)->i_state & EXT4_STATE_JDATA) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003305 /*
3306 * This is a REALLY heavyweight approach, but the use of
3307 * bmap on dirty files is expected to be extremely rare:
3308 * only if we run lilo or swapon on a freshly made file
3309 * do we expect this to happen.
3310 *
3311 * (bmap requires CAP_SYS_RAWIO so this does not
3312 * represent an unprivileged user DOS attack --- we'd be
3313 * in trouble if mortal users could trigger this path at
3314 * will.)
3315 *
Mingming Cao617ba132006-10-11 01:20:53 -07003316 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003317 * regular files. If somebody wants to bmap a directory
3318 * or symlink and gets confused because the buffer
3319 * hasn't yet been flushed to disk, they deserve
3320 * everything they get.
3321 */
3322
Mingming Cao617ba132006-10-11 01:20:53 -07003323 EXT4_I(inode)->i_state &= ~EXT4_STATE_JDATA;
3324 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003325 jbd2_journal_lock_updates(journal);
3326 err = jbd2_journal_flush(journal);
3327 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003328
3329 if (err)
3330 return 0;
3331 }
3332
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003333 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334}
3335
Mingming Cao617ba132006-10-11 01:20:53 -07003336static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003337{
Mingming Cao617ba132006-10-11 01:20:53 -07003338 return mpage_readpage(page, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003339}
3340
3341static int
Mingming Cao617ba132006-10-11 01:20:53 -07003342ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003343 struct list_head *pages, unsigned nr_pages)
3344{
Mingming Cao617ba132006-10-11 01:20:53 -07003345 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003346}
3347
Mingming Cao617ba132006-10-11 01:20:53 -07003348static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003349{
Mingming Cao617ba132006-10-11 01:20:53 -07003350 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003351
3352 /*
3353 * If it's a full truncate we just forget about the pending dirtying
3354 */
3355 if (offset == 0)
3356 ClearPageChecked(page);
3357
Frank Mayhar03901312009-01-07 00:06:22 -05003358 if (journal)
3359 jbd2_journal_invalidatepage(journal, page, offset);
3360 else
3361 block_invalidatepage(page, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003362}
3363
Mingming Cao617ba132006-10-11 01:20:53 -07003364static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003365{
Mingming Cao617ba132006-10-11 01:20:53 -07003366 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003367
3368 WARN_ON(PageChecked(page));
3369 if (!page_has_buffers(page))
3370 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003371 if (journal)
3372 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3373 else
3374 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003375}
3376
3377/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003378 * O_DIRECT for ext3 (or indirect map) based files
3379 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003380 * If the O_DIRECT write will extend the file then add this inode to the
3381 * orphan list. So recovery will truncate it back to the original size
3382 * if the machine crashes during the write.
3383 *
3384 * If the O_DIRECT write is intantiating holes inside i_size and the machine
Jan Kara7fb54092008-02-10 01:08:38 -05003385 * crashes then stale disk data _may_ be exposed inside the file. But current
3386 * VFS code falls back into buffered path in that case so we are safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003387 */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003388static ssize_t ext4_ind_direct_IO(int rw, struct kiocb *iocb,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003389 const struct iovec *iov, loff_t offset,
3390 unsigned long nr_segs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003391{
3392 struct file *file = iocb->ki_filp;
3393 struct inode *inode = file->f_mapping->host;
Mingming Cao617ba132006-10-11 01:20:53 -07003394 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003395 handle_t *handle;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003396 ssize_t ret;
3397 int orphan = 0;
3398 size_t count = iov_length(iov, nr_segs);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003399 int retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003400
3401 if (rw == WRITE) {
3402 loff_t final_size = offset + count;
3403
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003404 if (final_size > inode->i_size) {
Jan Kara7fb54092008-02-10 01:08:38 -05003405 /* Credits for sb + inode write */
3406 handle = ext4_journal_start(inode, 2);
3407 if (IS_ERR(handle)) {
3408 ret = PTR_ERR(handle);
3409 goto out;
3410 }
Mingming Cao617ba132006-10-11 01:20:53 -07003411 ret = ext4_orphan_add(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003412 if (ret) {
3413 ext4_journal_stop(handle);
3414 goto out;
3415 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003416 orphan = 1;
3417 ei->i_disksize = inode->i_size;
Jan Kara7fb54092008-02-10 01:08:38 -05003418 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003419 }
3420 }
3421
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003422retry:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003423 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3424 offset, nr_segs,
Mingming Cao617ba132006-10-11 01:20:53 -07003425 ext4_get_block, NULL);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003426 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3427 goto retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003428
Jan Kara7fb54092008-02-10 01:08:38 -05003429 if (orphan) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003430 int err;
3431
Jan Kara7fb54092008-02-10 01:08:38 -05003432 /* Credits for sb + inode write */
3433 handle = ext4_journal_start(inode, 2);
3434 if (IS_ERR(handle)) {
3435 /* This is really bad luck. We've written the data
3436 * but cannot extend i_size. Bail out and pretend
3437 * the write failed... */
3438 ret = PTR_ERR(handle);
3439 goto out;
3440 }
3441 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07003442 ext4_orphan_del(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003443 if (ret > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003444 loff_t end = offset + ret;
3445 if (end > inode->i_size) {
3446 ei->i_disksize = end;
3447 i_size_write(inode, end);
3448 /*
3449 * We're going to return a positive `ret'
3450 * here due to non-zero-length I/O, so there's
3451 * no way of reporting error returns from
Mingming Cao617ba132006-10-11 01:20:53 -07003452 * ext4_mark_inode_dirty() to userspace. So
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003453 * ignore it.
3454 */
Mingming Cao617ba132006-10-11 01:20:53 -07003455 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003456 }
3457 }
Mingming Cao617ba132006-10-11 01:20:53 -07003458 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003459 if (ret == 0)
3460 ret = err;
3461 }
3462out:
3463 return ret;
3464}
3465
Mingming Cao4c0425f2009-09-28 15:48:41 -04003466static int ext4_get_block_dio_write(struct inode *inode, sector_t iblock,
3467 struct buffer_head *bh_result, int create)
3468{
3469 handle_t *handle = NULL;
3470 int ret = 0;
3471 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
3472 int dio_credits;
3473
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003474 ext4_debug("ext4_get_block_dio_write: inode %lu, create flag %d\n",
3475 inode->i_ino, create);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003476 /*
3477 * DIO VFS code passes create = 0 flag for write to
3478 * the middle of file. It does this to avoid block
3479 * allocation for holes, to prevent expose stale data
3480 * out when there is parallel buffered read (which does
3481 * not hold the i_mutex lock) while direct IO write has
3482 * not completed. DIO request on holes finally falls back
3483 * to buffered IO for this reason.
3484 *
3485 * For ext4 extent based file, since we support fallocate,
3486 * new allocated extent as uninitialized, for holes, we
3487 * could fallocate blocks for holes, thus parallel
3488 * buffered IO read will zero out the page when read on
3489 * a hole while parallel DIO write to the hole has not completed.
3490 *
3491 * when we come here, we know it's a direct IO write to
3492 * to the middle of file (<i_size)
3493 * so it's safe to override the create flag from VFS.
3494 */
3495 create = EXT4_GET_BLOCKS_DIO_CREATE_EXT;
3496
3497 if (max_blocks > DIO_MAX_BLOCKS)
3498 max_blocks = DIO_MAX_BLOCKS;
3499 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
3500 handle = ext4_journal_start(inode, dio_credits);
3501 if (IS_ERR(handle)) {
3502 ret = PTR_ERR(handle);
3503 goto out;
3504 }
3505 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
3506 create);
3507 if (ret > 0) {
3508 bh_result->b_size = (ret << inode->i_blkbits);
3509 ret = 0;
3510 }
3511 ext4_journal_stop(handle);
3512out:
3513 return ret;
3514}
3515
Mingming Cao4c0425f2009-09-28 15:48:41 -04003516static void ext4_free_io_end(ext4_io_end_t *io)
3517{
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003518 BUG_ON(!io);
3519 iput(io->inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003520 kfree(io);
3521}
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003522static void dump_aio_dio_list(struct inode * inode)
3523{
3524#ifdef EXT4_DEBUG
3525 struct list_head *cur, *before, *after;
3526 ext4_io_end_t *io, *io0, *io1;
3527
3528 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3529 ext4_debug("inode %lu aio dio list is empty\n", inode->i_ino);
3530 return;
3531 }
3532
3533 ext4_debug("Dump inode %lu aio_dio_completed_IO list \n", inode->i_ino);
3534 list_for_each_entry(io, &EXT4_I(inode)->i_aio_dio_complete_list, list){
3535 cur = &io->list;
3536 before = cur->prev;
3537 io0 = container_of(before, ext4_io_end_t, list);
3538 after = cur->next;
3539 io1 = container_of(after, ext4_io_end_t, list);
3540
3541 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
3542 io, inode->i_ino, io0, io1);
3543 }
3544#endif
3545}
Mingming Cao4c0425f2009-09-28 15:48:41 -04003546
3547/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003548 * check a range of space and convert unwritten extents to written.
3549 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003550static int ext4_end_aio_dio_nolock(ext4_io_end_t *io)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003551{
Mingming Cao4c0425f2009-09-28 15:48:41 -04003552 struct inode *inode = io->inode;
3553 loff_t offset = io->offset;
3554 size_t size = io->size;
3555 int ret = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003556
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003557 ext4_debug("end_aio_dio_onlock: io 0x%p from inode %lu,list->next 0x%p,"
3558 "list->prev 0x%p\n",
3559 io, inode->i_ino, io->list.next, io->list.prev);
3560
3561 if (list_empty(&io->list))
3562 return ret;
3563
3564 if (io->flag != DIO_AIO_UNWRITTEN)
3565 return ret;
3566
Mingming Cao4c0425f2009-09-28 15:48:41 -04003567 if (offset + size <= i_size_read(inode))
3568 ret = ext4_convert_unwritten_extents(inode, offset, size);
3569
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003570 if (ret < 0) {
Mingming Cao4c0425f2009-09-28 15:48:41 -04003571 printk(KERN_EMERG "%s: failed to convert unwritten"
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003572 "extents to written extents, error is %d"
3573 " io is still on inode %lu aio dio list\n",
3574 __func__, ret, inode->i_ino);
3575 return ret;
3576 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003577
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003578 /* clear the DIO AIO unwritten flag */
3579 io->flag = 0;
3580 return ret;
3581}
3582/*
3583 * work on completed aio dio IO, to convert unwritten extents to extents
3584 */
3585static void ext4_end_aio_dio_work(struct work_struct *work)
3586{
3587 ext4_io_end_t *io = container_of(work, ext4_io_end_t, work);
3588 struct inode *inode = io->inode;
3589 int ret = 0;
3590
3591 mutex_lock(&inode->i_mutex);
3592 ret = ext4_end_aio_dio_nolock(io);
3593 if (ret >= 0) {
3594 if (!list_empty(&io->list))
3595 list_del_init(&io->list);
3596 ext4_free_io_end(io);
3597 }
3598 mutex_unlock(&inode->i_mutex);
3599}
3600/*
3601 * This function is called from ext4_sync_file().
3602 *
3603 * When AIO DIO IO is completed, the work to convert unwritten
3604 * extents to written is queued on workqueue but may not get immediately
3605 * scheduled. When fsync is called, we need to ensure the
3606 * conversion is complete before fsync returns.
3607 * The inode keeps track of a list of completed AIO from DIO path
3608 * that might needs to do the conversion. This function walks through
3609 * the list and convert the related unwritten extents to written.
3610 */
3611int flush_aio_dio_completed_IO(struct inode *inode)
3612{
3613 ext4_io_end_t *io;
3614 int ret = 0;
3615 int ret2 = 0;
3616
3617 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list))
3618 return ret;
3619
3620 dump_aio_dio_list(inode);
3621 while (!list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3622 io = list_entry(EXT4_I(inode)->i_aio_dio_complete_list.next,
3623 ext4_io_end_t, list);
3624 /*
3625 * Calling ext4_end_aio_dio_nolock() to convert completed
3626 * IO to written.
3627 *
3628 * When ext4_sync_file() is called, run_queue() may already
3629 * about to flush the work corresponding to this io structure.
3630 * It will be upset if it founds the io structure related
3631 * to the work-to-be schedule is freed.
3632 *
3633 * Thus we need to keep the io structure still valid here after
3634 * convertion finished. The io structure has a flag to
3635 * avoid double converting from both fsync and background work
3636 * queue work.
3637 */
3638 ret = ext4_end_aio_dio_nolock(io);
3639 if (ret < 0)
3640 ret2 = ret;
3641 else
3642 list_del_init(&io->list);
3643 }
3644 return (ret2 < 0) ? ret2 : 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003645}
3646
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003647static ext4_io_end_t *ext4_init_io_end (struct inode *inode)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003648{
3649 ext4_io_end_t *io = NULL;
3650
3651 io = kmalloc(sizeof(*io), GFP_NOFS);
3652
3653 if (io) {
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003654 igrab(inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003655 io->inode = inode;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003656 io->flag = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003657 io->offset = 0;
3658 io->size = 0;
3659 io->error = 0;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003660 INIT_WORK(&io->work, ext4_end_aio_dio_work);
3661 INIT_LIST_HEAD(&io->list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003662 }
3663
3664 return io;
3665}
3666
3667static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
3668 ssize_t size, void *private)
3669{
3670 ext4_io_end_t *io_end = iocb->private;
3671 struct workqueue_struct *wq;
3672
Mingming4b70df12009-11-03 14:44:54 -05003673 /* if not async direct IO or dio with 0 bytes write, just return */
3674 if (!io_end || !size)
3675 return;
3676
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003677 ext_debug("ext4_end_io_dio(): io_end 0x%p"
3678 "for inode %lu, iocb 0x%p, offset %llu, size %llu\n",
3679 iocb->private, io_end->inode->i_ino, iocb, offset,
3680 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003681
3682 /* if not aio dio with unwritten extents, just free io and return */
3683 if (io_end->flag != DIO_AIO_UNWRITTEN){
3684 ext4_free_io_end(io_end);
3685 iocb->private = NULL;
3686 return;
3687 }
3688
Mingming Cao4c0425f2009-09-28 15:48:41 -04003689 io_end->offset = offset;
3690 io_end->size = size;
3691 wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
3692
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003693 /* queue the work to convert unwritten extents to written */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003694 queue_work(wq, &io_end->work);
3695
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003696 /* Add the io_end to per-inode completed aio dio list*/
3697 list_add_tail(&io_end->list,
3698 &EXT4_I(io_end->inode)->i_aio_dio_complete_list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003699 iocb->private = NULL;
3700}
3701/*
3702 * For ext4 extent files, ext4 will do direct-io write to holes,
3703 * preallocated extents, and those write extend the file, no need to
3704 * fall back to buffered IO.
3705 *
3706 * For holes, we fallocate those blocks, mark them as unintialized
3707 * If those blocks were preallocated, we mark sure they are splited, but
3708 * still keep the range to write as unintialized.
3709 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003710 * The unwrritten extents will be converted to written when DIO is completed.
3711 * For async direct IO, since the IO may still pending when return, we
3712 * set up an end_io call back function, which will do the convertion
3713 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003714 *
3715 * If the O_DIRECT write will extend the file then add this inode to the
3716 * orphan list. So recovery will truncate it back to the original size
3717 * if the machine crashes during the write.
3718 *
3719 */
3720static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
3721 const struct iovec *iov, loff_t offset,
3722 unsigned long nr_segs)
3723{
3724 struct file *file = iocb->ki_filp;
3725 struct inode *inode = file->f_mapping->host;
3726 ssize_t ret;
3727 size_t count = iov_length(iov, nr_segs);
3728
3729 loff_t final_size = offset + count;
3730 if (rw == WRITE && final_size <= inode->i_size) {
3731 /*
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003732 * We could direct write to holes and fallocate.
3733 *
3734 * Allocated blocks to fill the hole are marked as uninitialized
Mingming Cao4c0425f2009-09-28 15:48:41 -04003735 * to prevent paralel buffered read to expose the stale data
3736 * before DIO complete the data IO.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003737 *
3738 * As to previously fallocated extents, ext4 get_block
Mingming Cao4c0425f2009-09-28 15:48:41 -04003739 * will just simply mark the buffer mapped but still
3740 * keep the extents uninitialized.
3741 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003742 * for non AIO case, we will convert those unwritten extents
3743 * to written after return back from blockdev_direct_IO.
3744 *
3745 * for async DIO, the conversion needs to be defered when
3746 * the IO is completed. The ext4 end_io callback function
3747 * will be called to take care of the conversion work.
3748 * Here for async case, we allocate an io_end structure to
3749 * hook to the iocb.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003750 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003751 iocb->private = NULL;
3752 EXT4_I(inode)->cur_aio_dio = NULL;
3753 if (!is_sync_kiocb(iocb)) {
3754 iocb->private = ext4_init_io_end(inode);
3755 if (!iocb->private)
3756 return -ENOMEM;
3757 /*
3758 * we save the io structure for current async
3759 * direct IO, so that later ext4_get_blocks()
3760 * could flag the io structure whether there
3761 * is a unwritten extents needs to be converted
3762 * when IO is completed.
3763 */
3764 EXT4_I(inode)->cur_aio_dio = iocb->private;
3765 }
3766
Mingming Cao4c0425f2009-09-28 15:48:41 -04003767 ret = blockdev_direct_IO(rw, iocb, inode,
3768 inode->i_sb->s_bdev, iov,
3769 offset, nr_segs,
3770 ext4_get_block_dio_write,
3771 ext4_end_io_dio);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003772 if (iocb->private)
3773 EXT4_I(inode)->cur_aio_dio = NULL;
3774 /*
3775 * The io_end structure takes a reference to the inode,
3776 * that structure needs to be destroyed and the
3777 * reference to the inode need to be dropped, when IO is
3778 * complete, even with 0 byte write, or failed.
3779 *
3780 * In the successful AIO DIO case, the io_end structure will be
3781 * desctroyed and the reference to the inode will be dropped
3782 * after the end_io call back function is called.
3783 *
3784 * In the case there is 0 byte write, or error case, since
3785 * VFS direct IO won't invoke the end_io call back function,
3786 * we need to free the end_io structure here.
3787 */
3788 if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
3789 ext4_free_io_end(iocb->private);
3790 iocb->private = NULL;
Mingming5f524952009-11-10 10:48:04 -05003791 } else if (ret > 0 && (EXT4_I(inode)->i_state &
3792 EXT4_STATE_DIO_UNWRITTEN)) {
Mingming109f5562009-11-10 10:48:08 -05003793 int err;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003794 /*
3795 * for non AIO case, since the IO is already
3796 * completed, we could do the convertion right here
3797 */
Mingming109f5562009-11-10 10:48:08 -05003798 err = ext4_convert_unwritten_extents(inode,
3799 offset, ret);
3800 if (err < 0)
3801 ret = err;
Mingming5f524952009-11-10 10:48:04 -05003802 EXT4_I(inode)->i_state &= ~EXT4_STATE_DIO_UNWRITTEN;
Mingming109f5562009-11-10 10:48:08 -05003803 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003804 return ret;
3805 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003806
3807 /* for write the the end of file case, we fall back to old way */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003808 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3809}
3810
3811static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3812 const struct iovec *iov, loff_t offset,
3813 unsigned long nr_segs)
3814{
3815 struct file *file = iocb->ki_filp;
3816 struct inode *inode = file->f_mapping->host;
3817
3818 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
3819 return ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
3820
3821 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3822}
3823
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003824/*
Mingming Cao617ba132006-10-11 01:20:53 -07003825 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003826 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3827 * much here because ->set_page_dirty is called under VFS locks. The page is
3828 * not necessarily locked.
3829 *
3830 * We cannot just dirty the page and leave attached buffers clean, because the
3831 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3832 * or jbddirty because all the journalling code will explode.
3833 *
3834 * So what we do is to mark the page "pending dirty" and next time writepage
3835 * is called, propagate that into the buffers appropriately.
3836 */
Mingming Cao617ba132006-10-11 01:20:53 -07003837static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003838{
3839 SetPageChecked(page);
3840 return __set_page_dirty_nobuffers(page);
3841}
3842
Mingming Cao617ba132006-10-11 01:20:53 -07003843static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003844 .readpage = ext4_readpage,
3845 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003846 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003847 .sync_page = block_sync_page,
3848 .write_begin = ext4_write_begin,
3849 .write_end = ext4_ordered_write_end,
3850 .bmap = ext4_bmap,
3851 .invalidatepage = ext4_invalidatepage,
3852 .releasepage = ext4_releasepage,
3853 .direct_IO = ext4_direct_IO,
3854 .migratepage = buffer_migrate_page,
3855 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003856 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003857};
3858
Mingming Cao617ba132006-10-11 01:20:53 -07003859static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003860 .readpage = ext4_readpage,
3861 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003862 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003863 .sync_page = block_sync_page,
3864 .write_begin = ext4_write_begin,
3865 .write_end = ext4_writeback_write_end,
3866 .bmap = ext4_bmap,
3867 .invalidatepage = ext4_invalidatepage,
3868 .releasepage = ext4_releasepage,
3869 .direct_IO = ext4_direct_IO,
3870 .migratepage = buffer_migrate_page,
3871 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003872 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003873};
3874
Mingming Cao617ba132006-10-11 01:20:53 -07003875static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003876 .readpage = ext4_readpage,
3877 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003878 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003879 .sync_page = block_sync_page,
3880 .write_begin = ext4_write_begin,
3881 .write_end = ext4_journalled_write_end,
3882 .set_page_dirty = ext4_journalled_set_page_dirty,
3883 .bmap = ext4_bmap,
3884 .invalidatepage = ext4_invalidatepage,
3885 .releasepage = ext4_releasepage,
3886 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003887 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003888};
3889
Alex Tomas64769242008-07-11 19:27:31 -04003890static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003891 .readpage = ext4_readpage,
3892 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003893 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003894 .writepages = ext4_da_writepages,
3895 .sync_page = block_sync_page,
3896 .write_begin = ext4_da_write_begin,
3897 .write_end = ext4_da_write_end,
3898 .bmap = ext4_bmap,
3899 .invalidatepage = ext4_da_invalidatepage,
3900 .releasepage = ext4_releasepage,
3901 .direct_IO = ext4_direct_IO,
3902 .migratepage = buffer_migrate_page,
3903 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003904 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003905};
3906
Mingming Cao617ba132006-10-11 01:20:53 -07003907void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003908{
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04003909 if (ext4_should_order_data(inode) &&
3910 test_opt(inode->i_sb, DELALLOC))
3911 inode->i_mapping->a_ops = &ext4_da_aops;
3912 else if (ext4_should_order_data(inode))
Mingming Cao617ba132006-10-11 01:20:53 -07003913 inode->i_mapping->a_ops = &ext4_ordered_aops;
Alex Tomas64769242008-07-11 19:27:31 -04003914 else if (ext4_should_writeback_data(inode) &&
3915 test_opt(inode->i_sb, DELALLOC))
3916 inode->i_mapping->a_ops = &ext4_da_aops;
Mingming Cao617ba132006-10-11 01:20:53 -07003917 else if (ext4_should_writeback_data(inode))
3918 inode->i_mapping->a_ops = &ext4_writeback_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003919 else
Mingming Cao617ba132006-10-11 01:20:53 -07003920 inode->i_mapping->a_ops = &ext4_journalled_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003921}
3922
3923/*
Mingming Cao617ba132006-10-11 01:20:53 -07003924 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003925 * up to the end of the block which corresponds to `from'.
3926 * This required during truncate. We need to physically zero the tail end
3927 * of that block so it doesn't yield old data if the file is later grown.
3928 */
Jan Karacf108bc2008-07-11 19:27:31 -04003929int ext4_block_truncate_page(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003930 struct address_space *mapping, loff_t from)
3931{
Mingming Cao617ba132006-10-11 01:20:53 -07003932 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003933 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003934 unsigned blocksize, length, pos;
3935 ext4_lblk_t iblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003936 struct inode *inode = mapping->host;
3937 struct buffer_head *bh;
Jan Karacf108bc2008-07-11 19:27:31 -04003938 struct page *page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003939 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003940
Theodore Ts'of4a01012009-07-05 22:08:16 -04003941 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3942 mapping_gfp_mask(mapping) & ~__GFP_FS);
Jan Karacf108bc2008-07-11 19:27:31 -04003943 if (!page)
3944 return -EINVAL;
3945
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003946 blocksize = inode->i_sb->s_blocksize;
3947 length = blocksize - (offset & (blocksize - 1));
3948 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3949
3950 /*
3951 * For "nobh" option, we can only work if we don't need to
3952 * read-in the page - otherwise we create buffers to do the IO.
3953 */
3954 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
Mingming Cao617ba132006-10-11 01:20:53 -07003955 ext4_should_writeback_data(inode) && PageUptodate(page)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003956 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003957 set_page_dirty(page);
3958 goto unlock;
3959 }
3960
3961 if (!page_has_buffers(page))
3962 create_empty_buffers(page, blocksize, 0);
3963
3964 /* Find the buffer that contains "offset" */
3965 bh = page_buffers(page);
3966 pos = blocksize;
3967 while (offset >= pos) {
3968 bh = bh->b_this_page;
3969 iblock++;
3970 pos += blocksize;
3971 }
3972
3973 err = 0;
3974 if (buffer_freed(bh)) {
3975 BUFFER_TRACE(bh, "freed: skip");
3976 goto unlock;
3977 }
3978
3979 if (!buffer_mapped(bh)) {
3980 BUFFER_TRACE(bh, "unmapped");
Mingming Cao617ba132006-10-11 01:20:53 -07003981 ext4_get_block(inode, iblock, bh, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003982 /* unmapped? It's a hole - nothing to do */
3983 if (!buffer_mapped(bh)) {
3984 BUFFER_TRACE(bh, "still unmapped");
3985 goto unlock;
3986 }
3987 }
3988
3989 /* Ok, it's mapped. Make sure it's up-to-date */
3990 if (PageUptodate(page))
3991 set_buffer_uptodate(bh);
3992
3993 if (!buffer_uptodate(bh)) {
3994 err = -EIO;
3995 ll_rw_block(READ, 1, &bh);
3996 wait_on_buffer(bh);
3997 /* Uhhuh. Read error. Complain and punt. */
3998 if (!buffer_uptodate(bh))
3999 goto unlock;
4000 }
4001
Mingming Cao617ba132006-10-11 01:20:53 -07004002 if (ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004003 BUFFER_TRACE(bh, "get write access");
Mingming Cao617ba132006-10-11 01:20:53 -07004004 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004005 if (err)
4006 goto unlock;
4007 }
4008
Christoph Lametereebd2aa2008-02-04 22:28:29 -08004009 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004010
4011 BUFFER_TRACE(bh, "zeroed end of block");
4012
4013 err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07004014 if (ext4_should_journal_data(inode)) {
Frank Mayhar03901312009-01-07 00:06:22 -05004015 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004016 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004017 if (ext4_should_order_data(inode))
Jan Kara678aaf42008-07-11 19:27:31 -04004018 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004019 mark_buffer_dirty(bh);
4020 }
4021
4022unlock:
4023 unlock_page(page);
4024 page_cache_release(page);
4025 return err;
4026}
4027
4028/*
4029 * Probably it should be a library function... search for first non-zero word
4030 * or memcmp with zero_page, whatever is better for particular architecture.
4031 * Linus?
4032 */
4033static inline int all_zeroes(__le32 *p, __le32 *q)
4034{
4035 while (p < q)
4036 if (*p++)
4037 return 0;
4038 return 1;
4039}
4040
4041/**
Mingming Cao617ba132006-10-11 01:20:53 -07004042 * ext4_find_shared - find the indirect blocks for partial truncation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004043 * @inode: inode in question
4044 * @depth: depth of the affected branch
Mingming Cao617ba132006-10-11 01:20:53 -07004045 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004046 * @chain: place to store the pointers to partial indirect blocks
4047 * @top: place to the (detached) top of branch
4048 *
Mingming Cao617ba132006-10-11 01:20:53 -07004049 * This is a helper function used by ext4_truncate().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004050 *
4051 * When we do truncate() we may have to clean the ends of several
4052 * indirect blocks but leave the blocks themselves alive. Block is
4053 * partially truncated if some data below the new i_size is refered
4054 * from it (and it is on the path to the first completely truncated
4055 * data block, indeed). We have to free the top of that path along
4056 * with everything to the right of the path. Since no allocation
Mingming Cao617ba132006-10-11 01:20:53 -07004057 * past the truncation point is possible until ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004058 * finishes, we may safely do the latter, but top of branch may
4059 * require special attention - pageout below the truncation point
4060 * might try to populate it.
4061 *
4062 * We atomically detach the top of branch from the tree, store the
4063 * block number of its root in *@top, pointers to buffer_heads of
4064 * partially truncated blocks - in @chain[].bh and pointers to
4065 * their last elements that should not be removed - in
4066 * @chain[].p. Return value is the pointer to last filled element
4067 * of @chain.
4068 *
4069 * The work left to caller to do the actual freeing of subtrees:
4070 * a) free the subtree starting from *@top
4071 * b) free the subtrees whose roots are stored in
4072 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
4073 * c) free the subtrees growing from the inode past the @chain[0].
4074 * (no partially truncated stuff there). */
4075
Mingming Cao617ba132006-10-11 01:20:53 -07004076static Indirect *ext4_find_shared(struct inode *inode, int depth,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004077 ext4_lblk_t offsets[4], Indirect chain[4],
4078 __le32 *top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004079{
4080 Indirect *partial, *p;
4081 int k, err;
4082
4083 *top = 0;
Uwe Kleine-Königbf48aab2009-10-28 20:11:03 +01004084 /* Make k index the deepest non-null offset + 1 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004085 for (k = depth; k > 1 && !offsets[k-1]; k--)
4086 ;
Mingming Cao617ba132006-10-11 01:20:53 -07004087 partial = ext4_get_branch(inode, k, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004088 /* Writer: pointers */
4089 if (!partial)
4090 partial = chain + k-1;
4091 /*
4092 * If the branch acquired continuation since we've looked at it -
4093 * fine, it should all survive and (new) top doesn't belong to us.
4094 */
4095 if (!partial->key && *partial->p)
4096 /* Writer: end */
4097 goto no_top;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004098 for (p = partial; (p > chain) && all_zeroes((__le32 *) p->bh->b_data, p->p); p--)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004099 ;
4100 /*
4101 * OK, we've found the last block that must survive. The rest of our
4102 * branch should be detached before unlocking. However, if that rest
4103 * of branch is all ours and does not grow immediately from the inode
4104 * it's easier to cheat and just decrement partial->p.
4105 */
4106 if (p == chain + k - 1 && p > chain) {
4107 p->p--;
4108 } else {
4109 *top = *p->p;
Mingming Cao617ba132006-10-11 01:20:53 -07004110 /* Nope, don't do this in ext4. Must leave the tree intact */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004111#if 0
4112 *p->p = 0;
4113#endif
4114 }
4115 /* Writer: end */
4116
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004117 while (partial > p) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004118 brelse(partial->bh);
4119 partial--;
4120 }
4121no_top:
4122 return partial;
4123}
4124
4125/*
4126 * Zero a number of block pointers in either an inode or an indirect block.
4127 * If we restart the transaction we must again get write access to the
4128 * indirect block for further modification.
4129 *
4130 * We release `count' blocks on disk, but (last - first) may be greater
4131 * than `count' because there can be holes in there.
4132 */
Mingming Cao617ba132006-10-11 01:20:53 -07004133static void ext4_clear_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004134 struct buffer_head *bh,
4135 ext4_fsblk_t block_to_free,
4136 unsigned long count, __le32 *first,
4137 __le32 *last)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004138{
4139 __le32 *p;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004140 int flags = EXT4_FREE_BLOCKS_FORGET;
4141
4142 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
4143 flags |= EXT4_FREE_BLOCKS_METADATA;
Theodore Ts'o50689692009-11-23 07:17:34 -05004144
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004145 if (try_to_extend_transaction(handle, inode)) {
4146 if (bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004147 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
4148 ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004149 }
Mingming Cao617ba132006-10-11 01:20:53 -07004150 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004151 ext4_truncate_restart_trans(handle, inode,
4152 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004153 if (bh) {
4154 BUFFER_TRACE(bh, "retaking write access");
Mingming Cao617ba132006-10-11 01:20:53 -07004155 ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004156 }
4157 }
4158
Theodore Ts'oe6362602009-11-23 07:17:05 -05004159 for (p = first; p < last; p++)
4160 *p = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004161
Theodore Ts'oe6362602009-11-23 07:17:05 -05004162 ext4_free_blocks(handle, inode, 0, block_to_free, count, flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004163}
4164
4165/**
Mingming Cao617ba132006-10-11 01:20:53 -07004166 * ext4_free_data - free a list of data blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004167 * @handle: handle for this transaction
4168 * @inode: inode we are dealing with
4169 * @this_bh: indirect buffer_head which contains *@first and *@last
4170 * @first: array of block numbers
4171 * @last: points immediately past the end of array
4172 *
4173 * We are freeing all blocks refered from that array (numbers are stored as
4174 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
4175 *
4176 * We accumulate contiguous runs of blocks to free. Conveniently, if these
4177 * blocks are contiguous then releasing them at one time will only affect one
4178 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
4179 * actually use a lot of journal space.
4180 *
4181 * @this_bh will be %NULL if @first and @last point into the inode's direct
4182 * block pointers.
4183 */
Mingming Cao617ba132006-10-11 01:20:53 -07004184static void ext4_free_data(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004185 struct buffer_head *this_bh,
4186 __le32 *first, __le32 *last)
4187{
Mingming Cao617ba132006-10-11 01:20:53 -07004188 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004189 unsigned long count = 0; /* Number of blocks in the run */
4190 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
4191 corresponding to
4192 block_to_free */
Mingming Cao617ba132006-10-11 01:20:53 -07004193 ext4_fsblk_t nr; /* Current block # */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004194 __le32 *p; /* Pointer into inode/ind
4195 for current block */
4196 int err;
4197
4198 if (this_bh) { /* For indirect block */
4199 BUFFER_TRACE(this_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004200 err = ext4_journal_get_write_access(handle, this_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004201 /* Important: if we can't update the indirect pointers
4202 * to the blocks, we can't free them. */
4203 if (err)
4204 return;
4205 }
4206
4207 for (p = first; p < last; p++) {
4208 nr = le32_to_cpu(*p);
4209 if (nr) {
4210 /* accumulate blocks to free if they're contiguous */
4211 if (count == 0) {
4212 block_to_free = nr;
4213 block_to_free_p = p;
4214 count = 1;
4215 } else if (nr == block_to_free + count) {
4216 count++;
4217 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004218 ext4_clear_blocks(handle, inode, this_bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004219 block_to_free,
4220 count, block_to_free_p, p);
4221 block_to_free = nr;
4222 block_to_free_p = p;
4223 count = 1;
4224 }
4225 }
4226 }
4227
4228 if (count > 0)
Mingming Cao617ba132006-10-11 01:20:53 -07004229 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004230 count, block_to_free_p, p);
4231
4232 if (this_bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004233 BUFFER_TRACE(this_bh, "call ext4_handle_dirty_metadata");
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004234
4235 /*
4236 * The buffer head should have an attached journal head at this
4237 * point. However, if the data is corrupted and an indirect
4238 * block pointed to itself, it would have been detached when
4239 * the block was cleared. Check for this instead of OOPSing.
4240 */
Theodore Ts'oe7f07962009-01-20 09:50:19 -05004241 if ((EXT4_JOURNAL(inode) == NULL) || bh2jh(this_bh))
Frank Mayhar03901312009-01-07 00:06:22 -05004242 ext4_handle_dirty_metadata(handle, inode, this_bh);
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004243 else
4244 ext4_error(inode->i_sb, __func__,
4245 "circular indirect block detected, "
4246 "inode=%lu, block=%llu",
4247 inode->i_ino,
4248 (unsigned long long) this_bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004249 }
4250}
4251
4252/**
Mingming Cao617ba132006-10-11 01:20:53 -07004253 * ext4_free_branches - free an array of branches
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004254 * @handle: JBD handle for this transaction
4255 * @inode: inode we are dealing with
4256 * @parent_bh: the buffer_head which contains *@first and *@last
4257 * @first: array of block numbers
4258 * @last: pointer immediately past the end of array
4259 * @depth: depth of the branches to free
4260 *
4261 * We are freeing all blocks refered from these branches (numbers are
4262 * stored as little-endian 32-bit) and updating @inode->i_blocks
4263 * appropriately.
4264 */
Mingming Cao617ba132006-10-11 01:20:53 -07004265static void ext4_free_branches(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004266 struct buffer_head *parent_bh,
4267 __le32 *first, __le32 *last, int depth)
4268{
Mingming Cao617ba132006-10-11 01:20:53 -07004269 ext4_fsblk_t nr;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004270 __le32 *p;
4271
Frank Mayhar03901312009-01-07 00:06:22 -05004272 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004273 return;
4274
4275 if (depth--) {
4276 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07004277 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004278 p = last;
4279 while (--p >= first) {
4280 nr = le32_to_cpu(*p);
4281 if (!nr)
4282 continue; /* A hole */
4283
4284 /* Go read the buffer for the next level down */
4285 bh = sb_bread(inode->i_sb, nr);
4286
4287 /*
4288 * A read failure? Report error and clear slot
4289 * (should be rare).
4290 */
4291 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07004292 ext4_error(inode->i_sb, "ext4_free_branches",
Mingming Cao2ae02102006-10-11 01:21:11 -07004293 "Read failure, inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004294 inode->i_ino, nr);
4295 continue;
4296 }
4297
4298 /* This zaps the entire block. Bottom up. */
4299 BUFFER_TRACE(bh, "free child branches");
Mingming Cao617ba132006-10-11 01:20:53 -07004300 ext4_free_branches(handle, inode, bh,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004301 (__le32 *) bh->b_data,
4302 (__le32 *) bh->b_data + addr_per_block,
4303 depth);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004304
4305 /*
4306 * We've probably journalled the indirect block several
4307 * times during the truncate. But it's no longer
4308 * needed and we now drop it from the transaction via
Mingming Caodab291a2006-10-11 01:21:01 -07004309 * jbd2_journal_revoke().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004310 *
4311 * That's easy if it's exclusively part of this
4312 * transaction. But if it's part of the committing
Mingming Caodab291a2006-10-11 01:21:01 -07004313 * transaction then jbd2_journal_forget() will simply
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004314 * brelse() it. That means that if the underlying
Mingming Cao617ba132006-10-11 01:20:53 -07004315 * block is reallocated in ext4_get_block(),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004316 * unmap_underlying_metadata() will find this block
4317 * and will try to get rid of it. damn, damn.
4318 *
4319 * If this block has already been committed to the
4320 * journal, a revoke record will be written. And
4321 * revoke records must be emitted *before* clearing
4322 * this block's bit in the bitmaps.
4323 */
Mingming Cao617ba132006-10-11 01:20:53 -07004324 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004325
4326 /*
4327 * Everything below this this pointer has been
4328 * released. Now let this top-of-subtree go.
4329 *
4330 * We want the freeing of this indirect block to be
4331 * atomic in the journal with the updating of the
4332 * bitmap block which owns it. So make some room in
4333 * the journal.
4334 *
4335 * We zero the parent pointer *after* freeing its
4336 * pointee in the bitmaps, so if extend_transaction()
4337 * for some reason fails to put the bitmap changes and
4338 * the release into the same transaction, recovery
4339 * will merely complain about releasing a free block,
4340 * rather than leaking blocks.
4341 */
Frank Mayhar03901312009-01-07 00:06:22 -05004342 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004343 return;
4344 if (try_to_extend_transaction(handle, inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004345 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004346 ext4_truncate_restart_trans(handle, inode,
4347 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004348 }
4349
Theodore Ts'oe6362602009-11-23 07:17:05 -05004350 ext4_free_blocks(handle, inode, 0, nr, 1,
4351 EXT4_FREE_BLOCKS_METADATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004352
4353 if (parent_bh) {
4354 /*
4355 * The block which we have just freed is
4356 * pointed to by an indirect block: journal it
4357 */
4358 BUFFER_TRACE(parent_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004359 if (!ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004360 parent_bh)){
4361 *p = 0;
4362 BUFFER_TRACE(parent_bh,
Frank Mayhar03901312009-01-07 00:06:22 -05004363 "call ext4_handle_dirty_metadata");
4364 ext4_handle_dirty_metadata(handle,
4365 inode,
4366 parent_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004367 }
4368 }
4369 }
4370 } else {
4371 /* We have reached the bottom of the tree. */
4372 BUFFER_TRACE(parent_bh, "free data blocks");
Mingming Cao617ba132006-10-11 01:20:53 -07004373 ext4_free_data(handle, inode, parent_bh, first, last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004374 }
4375}
4376
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004377int ext4_can_truncate(struct inode *inode)
4378{
4379 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4380 return 0;
4381 if (S_ISREG(inode->i_mode))
4382 return 1;
4383 if (S_ISDIR(inode->i_mode))
4384 return 1;
4385 if (S_ISLNK(inode->i_mode))
4386 return !ext4_inode_is_fast_symlink(inode);
4387 return 0;
4388}
4389
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004390/*
Mingming Cao617ba132006-10-11 01:20:53 -07004391 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004392 *
Mingming Cao617ba132006-10-11 01:20:53 -07004393 * We block out ext4_get_block() block instantiations across the entire
4394 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004395 * simultaneously on behalf of the same inode.
4396 *
4397 * As we work through the truncate and commmit bits of it to the journal there
4398 * is one core, guiding principle: the file's tree must always be consistent on
4399 * disk. We must be able to restart the truncate after a crash.
4400 *
4401 * The file's tree may be transiently inconsistent in memory (although it
4402 * probably isn't), but whenever we close off and commit a journal transaction,
4403 * the contents of (the filesystem + the journal) must be consistent and
4404 * restartable. It's pretty simple, really: bottom up, right to left (although
4405 * left-to-right works OK too).
4406 *
4407 * Note that at recovery time, journal replay occurs *before* the restart of
4408 * truncate against the orphan inode list.
4409 *
4410 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004411 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004412 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004413 * ext4_truncate() to have another go. So there will be instantiated blocks
4414 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004415 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004416 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004417 */
Mingming Cao617ba132006-10-11 01:20:53 -07004418void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004419{
4420 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -07004421 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004422 __le32 *i_data = ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004423 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004424 struct address_space *mapping = inode->i_mapping;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004425 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004426 Indirect chain[4];
4427 Indirect *partial;
4428 __le32 nr = 0;
4429 int n;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004430 ext4_lblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004431 unsigned blocksize = inode->i_sb->s_blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004432
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004433 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004434 return;
4435
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004436 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004437 ei->i_state |= EXT4_STATE_DA_ALLOC_CLOSE;
4438
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004439 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
Jan Karacf108bc2008-07-11 19:27:31 -04004440 ext4_ext_truncate(inode);
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004441 return;
4442 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004443
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004444 handle = start_transaction(inode);
Jan Karacf108bc2008-07-11 19:27:31 -04004445 if (IS_ERR(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004446 return; /* AKPM: return what? */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004447
4448 last_block = (inode->i_size + blocksize-1)
Mingming Cao617ba132006-10-11 01:20:53 -07004449 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004450
Jan Karacf108bc2008-07-11 19:27:31 -04004451 if (inode->i_size & (blocksize - 1))
4452 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
4453 goto out_stop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004454
Mingming Cao617ba132006-10-11 01:20:53 -07004455 n = ext4_block_to_path(inode, last_block, offsets, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004456 if (n == 0)
4457 goto out_stop; /* error */
4458
4459 /*
4460 * OK. This truncate is going to happen. We add the inode to the
4461 * orphan list, so that if this truncate spans multiple transactions,
4462 * and we crash, we will resume the truncate when the filesystem
4463 * recovers. It also marks the inode dirty, to catch the new size.
4464 *
4465 * Implication: the file must always be in a sane, consistent
4466 * truncatable state while each transaction commits.
4467 */
Mingming Cao617ba132006-10-11 01:20:53 -07004468 if (ext4_orphan_add(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004469 goto out_stop;
4470
4471 /*
Mingming Cao632eaea2008-07-11 19:27:31 -04004472 * From here we block out all ext4_get_block() callers who want to
4473 * modify the block allocation tree.
4474 */
4475 down_write(&ei->i_data_sem);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004476
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004477 ext4_discard_preallocations(inode);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004478
Mingming Cao632eaea2008-07-11 19:27:31 -04004479 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004480 * The orphan list entry will now protect us from any crash which
4481 * occurs before the truncate completes, so it is now safe to propagate
4482 * the new, shorter inode size (held for now in i_size) into the
4483 * on-disk inode. We do this via i_disksize, which is the value which
Mingming Cao617ba132006-10-11 01:20:53 -07004484 * ext4 *really* writes onto the disk inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004485 */
4486 ei->i_disksize = inode->i_size;
4487
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004488 if (n == 1) { /* direct blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07004489 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
4490 i_data + EXT4_NDIR_BLOCKS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004491 goto do_indirects;
4492 }
4493
Mingming Cao617ba132006-10-11 01:20:53 -07004494 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004495 /* Kill the top of shared branch (not detached) */
4496 if (nr) {
4497 if (partial == chain) {
4498 /* Shared branch grows from the inode */
Mingming Cao617ba132006-10-11 01:20:53 -07004499 ext4_free_branches(handle, inode, NULL,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004500 &nr, &nr+1, (chain+n-1) - partial);
4501 *partial->p = 0;
4502 /*
4503 * We mark the inode dirty prior to restart,
4504 * and prior to stop. No need for it here.
4505 */
4506 } else {
4507 /* Shared branch grows from an indirect block */
4508 BUFFER_TRACE(partial->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004509 ext4_free_branches(handle, inode, partial->bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004510 partial->p,
4511 partial->p+1, (chain+n-1) - partial);
4512 }
4513 }
4514 /* Clear the ends of indirect blocks on the shared branch */
4515 while (partial > chain) {
Mingming Cao617ba132006-10-11 01:20:53 -07004516 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004517 (__le32*)partial->bh->b_data+addr_per_block,
4518 (chain+n-1) - partial);
4519 BUFFER_TRACE(partial->bh, "call brelse");
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004520 brelse(partial->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004521 partial--;
4522 }
4523do_indirects:
4524 /* Kill the remaining (whole) subtrees */
4525 switch (offsets[0]) {
4526 default:
Mingming Cao617ba132006-10-11 01:20:53 -07004527 nr = i_data[EXT4_IND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004528 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004529 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
4530 i_data[EXT4_IND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004531 }
Mingming Cao617ba132006-10-11 01:20:53 -07004532 case EXT4_IND_BLOCK:
4533 nr = i_data[EXT4_DIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004534 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004535 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
4536 i_data[EXT4_DIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004537 }
Mingming Cao617ba132006-10-11 01:20:53 -07004538 case EXT4_DIND_BLOCK:
4539 nr = i_data[EXT4_TIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004540 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004541 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
4542 i_data[EXT4_TIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004543 }
Mingming Cao617ba132006-10-11 01:20:53 -07004544 case EXT4_TIND_BLOCK:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004545 ;
4546 }
4547
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05004548 up_write(&ei->i_data_sem);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004549 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07004550 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004551
4552 /*
4553 * In a multi-transaction truncate, we only make the final transaction
4554 * synchronous
4555 */
4556 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05004557 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004558out_stop:
4559 /*
4560 * If this was a simple ftruncate(), and the file will remain alive
4561 * then we need to clear up the orphan record which we created above.
4562 * However, if this was a real unlink then we were called by
Mingming Cao617ba132006-10-11 01:20:53 -07004563 * ext4_delete_inode(), and we allow that function to clean up the
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004564 * orphan info for us.
4565 */
4566 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004567 ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004568
Mingming Cao617ba132006-10-11 01:20:53 -07004569 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004570}
4571
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004572/*
Mingming Cao617ba132006-10-11 01:20:53 -07004573 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004574 * underlying buffer_head on success. If 'in_mem' is true, we have all
4575 * data in memory that is needed to recreate the on-disk version of this
4576 * inode.
4577 */
Mingming Cao617ba132006-10-11 01:20:53 -07004578static int __ext4_get_inode_loc(struct inode *inode,
4579 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004580{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004581 struct ext4_group_desc *gdp;
4582 struct buffer_head *bh;
4583 struct super_block *sb = inode->i_sb;
4584 ext4_fsblk_t block;
4585 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004586
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004587 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004588 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004589 return -EIO;
4590
Theodore Ts'o240799c2008-10-09 23:53:47 -04004591 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4592 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4593 if (!gdp)
4594 return -EIO;
4595
4596 /*
4597 * Figure out the offset within the block group inode table
4598 */
4599 inodes_per_block = (EXT4_BLOCK_SIZE(sb) / EXT4_INODE_SIZE(sb));
4600 inode_offset = ((inode->i_ino - 1) %
4601 EXT4_INODES_PER_GROUP(sb));
4602 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4603 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4604
4605 bh = sb_getblk(sb, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004606 if (!bh) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004607 ext4_error(sb, "ext4_get_inode_loc", "unable to read "
4608 "inode block - inode=%lu, block=%llu",
4609 inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004610 return -EIO;
4611 }
4612 if (!buffer_uptodate(bh)) {
4613 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004614
4615 /*
4616 * If the buffer has the write error flag, we have failed
4617 * to write out another inode in the same block. In this
4618 * case, we don't have to read the block because we may
4619 * read the old inode data successfully.
4620 */
4621 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4622 set_buffer_uptodate(bh);
4623
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004624 if (buffer_uptodate(bh)) {
4625 /* someone brought it uptodate while we waited */
4626 unlock_buffer(bh);
4627 goto has_buffer;
4628 }
4629
4630 /*
4631 * If we have all information of the inode in memory and this
4632 * is the only valid inode in the block, we need not read the
4633 * block.
4634 */
4635 if (in_mem) {
4636 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004637 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004638
Theodore Ts'o240799c2008-10-09 23:53:47 -04004639 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004640
4641 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004642 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004643 if (!bitmap_bh)
4644 goto make_io;
4645
4646 /*
4647 * If the inode bitmap isn't in cache then the
4648 * optimisation may end up performing two reads instead
4649 * of one, so skip it.
4650 */
4651 if (!buffer_uptodate(bitmap_bh)) {
4652 brelse(bitmap_bh);
4653 goto make_io;
4654 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004655 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004656 if (i == inode_offset)
4657 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004658 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004659 break;
4660 }
4661 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004662 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004663 /* all other inodes are free, so skip I/O */
4664 memset(bh->b_data, 0, bh->b_size);
4665 set_buffer_uptodate(bh);
4666 unlock_buffer(bh);
4667 goto has_buffer;
4668 }
4669 }
4670
4671make_io:
4672 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004673 * If we need to do any I/O, try to pre-readahead extra
4674 * blocks from the inode table.
4675 */
4676 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4677 ext4_fsblk_t b, end, table;
4678 unsigned num;
4679
4680 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004681 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004682 b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
4683 if (table > b)
4684 b = table;
4685 end = b + EXT4_SB(sb)->s_inode_readahead_blks;
4686 num = EXT4_INODES_PER_GROUP(sb);
4687 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4688 EXT4_FEATURE_RO_COMPAT_GDT_CSUM))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004689 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004690 table += num / inodes_per_block;
4691 if (end > table)
4692 end = table;
4693 while (b <= end)
4694 sb_breadahead(sb, b++);
4695 }
4696
4697 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004698 * There are other valid inodes in the buffer, this inode
4699 * has in-inode xattrs, or we don't have this inode in memory.
4700 * Read the block from disk.
4701 */
4702 get_bh(bh);
4703 bh->b_end_io = end_buffer_read_sync;
4704 submit_bh(READ_META, bh);
4705 wait_on_buffer(bh);
4706 if (!buffer_uptodate(bh)) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004707 ext4_error(sb, __func__,
4708 "unable to read inode block - inode=%lu, "
4709 "block=%llu", inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004710 brelse(bh);
4711 return -EIO;
4712 }
4713 }
4714has_buffer:
4715 iloc->bh = bh;
4716 return 0;
4717}
4718
Mingming Cao617ba132006-10-11 01:20:53 -07004719int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004720{
4721 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07004722 return __ext4_get_inode_loc(inode, iloc,
4723 !(EXT4_I(inode)->i_state & EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004724}
4725
Mingming Cao617ba132006-10-11 01:20:53 -07004726void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004727{
Mingming Cao617ba132006-10-11 01:20:53 -07004728 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004729
4730 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07004731 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004732 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004733 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004734 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004735 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004736 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004737 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004738 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004739 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004740 inode->i_flags |= S_DIRSYNC;
4741}
4742
Jan Karaff9ddf72007-07-18 09:24:20 -04004743/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4744void ext4_get_inode_flags(struct ext4_inode_info *ei)
4745{
4746 unsigned int flags = ei->vfs_inode.i_flags;
4747
4748 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
4749 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
4750 if (flags & S_SYNC)
4751 ei->i_flags |= EXT4_SYNC_FL;
4752 if (flags & S_APPEND)
4753 ei->i_flags |= EXT4_APPEND_FL;
4754 if (flags & S_IMMUTABLE)
4755 ei->i_flags |= EXT4_IMMUTABLE_FL;
4756 if (flags & S_NOATIME)
4757 ei->i_flags |= EXT4_NOATIME_FL;
4758 if (flags & S_DIRSYNC)
4759 ei->i_flags |= EXT4_DIRSYNC_FL;
4760}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004761
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004762static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004763 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004764{
4765 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004766 struct inode *inode = &(ei->vfs_inode);
4767 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004768
4769 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4770 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
4771 /* we are using combined 48 bit field */
4772 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4773 le32_to_cpu(raw_inode->i_blocks_lo);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004774 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
4775 /* i_blocks represent file system block size */
4776 return i_blocks << (inode->i_blkbits - 9);
4777 } else {
4778 return i_blocks;
4779 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004780 } else {
4781 return le32_to_cpu(raw_inode->i_blocks_lo);
4782 }
4783}
Jan Karaff9ddf72007-07-18 09:24:20 -04004784
David Howells1d1fe1e2008-02-07 00:15:37 -08004785struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004786{
Mingming Cao617ba132006-10-11 01:20:53 -07004787 struct ext4_iloc iloc;
4788 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004789 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004790 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004791 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004792 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004793 int block;
4794
David Howells1d1fe1e2008-02-07 00:15:37 -08004795 inode = iget_locked(sb, ino);
4796 if (!inode)
4797 return ERR_PTR(-ENOMEM);
4798 if (!(inode->i_state & I_NEW))
4799 return inode;
4800
4801 ei = EXT4_I(inode);
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004802 iloc.bh = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004803
David Howells1d1fe1e2008-02-07 00:15:37 -08004804 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4805 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004806 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004807 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
4809 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4810 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004811 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004812 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4813 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4814 }
4815 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004816
4817 ei->i_state = 0;
4818 ei->i_dir_start_lookup = 0;
4819 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4820 /* We now have enough fields to check if the inode was active or not.
4821 * This is needed because nfsd might try to access dead inodes
4822 * the test is that same one that e2fsck uses
4823 * NeilBrown 1999oct15
4824 */
4825 if (inode->i_nlink == 0) {
4826 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07004827 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004828 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004829 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004830 goto bad_inode;
4831 }
4832 /* The only unlinked inodes we let through here have
4833 * valid i_mode and are being read by the orphan
4834 * recovery code: that's fine, we're about to complete
4835 * the process of deleting those. */
4836 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004837 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004838 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004839 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04004840 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004841 ei->i_file_acl |=
4842 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004843 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004844 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004845#ifdef CONFIG_QUOTA
4846 ei->i_reserved_quota = 0;
4847#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004848 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4849 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004850 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004851 /*
4852 * NOTE! The in-memory inode i_data array is in little-endian order
4853 * even on big-endian machines: we do NOT byteswap the block numbers!
4854 */
Mingming Cao617ba132006-10-11 01:20:53 -07004855 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004856 ei->i_data[block] = raw_inode->i_block[block];
4857 INIT_LIST_HEAD(&ei->i_orphan);
4858
Jan Karab436b9b2009-12-08 23:51:10 -05004859 /*
4860 * Set transaction id's of transactions that have to be committed
4861 * to finish f[data]sync. We set them to currently running transaction
4862 * as we cannot be sure that the inode or some of its metadata isn't
4863 * part of the transaction - the inode could have been reclaimed and
4864 * now it is reread from disk.
4865 */
4866 if (journal) {
4867 transaction_t *transaction;
4868 tid_t tid;
4869
4870 spin_lock(&journal->j_state_lock);
4871 if (journal->j_running_transaction)
4872 transaction = journal->j_running_transaction;
4873 else
4874 transaction = journal->j_committing_transaction;
4875 if (transaction)
4876 tid = transaction->t_tid;
4877 else
4878 tid = journal->j_commit_sequence;
4879 spin_unlock(&journal->j_state_lock);
4880 ei->i_sync_tid = tid;
4881 ei->i_datasync_tid = tid;
4882 }
4883
Eric Sandeen0040d982008-02-05 22:36:43 -05004884 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004885 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
Mingming Cao617ba132006-10-11 01:20:53 -07004886 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004887 EXT4_INODE_SIZE(inode->i_sb)) {
David Howells1d1fe1e2008-02-07 00:15:37 -08004888 ret = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004889 goto bad_inode;
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004890 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004891 if (ei->i_extra_isize == 0) {
4892 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004893 ei->i_extra_isize = sizeof(struct ext4_inode) -
4894 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004895 } else {
4896 __le32 *magic = (void *)raw_inode +
Mingming Cao617ba132006-10-11 01:20:53 -07004897 EXT4_GOOD_OLD_INODE_SIZE +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004898 ei->i_extra_isize;
Mingming Cao617ba132006-10-11 01:20:53 -07004899 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004900 ei->i_state |= EXT4_STATE_XATTR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004901 }
4902 } else
4903 ei->i_extra_isize = 0;
4904
Kalpak Shahef7f3832007-07-18 09:15:20 -04004905 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4906 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4907 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4908 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4909
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004910 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4911 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4912 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4913 inode->i_version |=
4914 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4915 }
4916
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004917 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004918 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004919 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004920 ext4_error(sb, __func__,
4921 "bad extended attribute block %llu in inode #%lu",
4922 ei->i_file_acl, inode->i_ino);
4923 ret = -EIO;
4924 goto bad_inode;
4925 } else if (ei->i_flags & EXT4_EXTENTS_FL) {
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004926 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4927 (S_ISLNK(inode->i_mode) &&
4928 !ext4_inode_is_fast_symlink(inode)))
4929 /* Validate extent which is part of inode */
4930 ret = ext4_ext_check_inode(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004931 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004932 (S_ISLNK(inode->i_mode) &&
4933 !ext4_inode_is_fast_symlink(inode))) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004934 /* Validate block references which are part of inode */
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004935 ret = ext4_check_inode_blockref(inode);
4936 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004937 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004938 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004939
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004940 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004941 inode->i_op = &ext4_file_inode_operations;
4942 inode->i_fop = &ext4_file_operations;
4943 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004944 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004945 inode->i_op = &ext4_dir_inode_operations;
4946 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004947 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00004948 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004949 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004950 nd_terminate_link(ei->i_data, inode->i_size,
4951 sizeof(ei->i_data) - 1);
4952 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004953 inode->i_op = &ext4_symlink_inode_operations;
4954 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004955 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004956 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4957 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004958 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004959 if (raw_inode->i_block[0])
4960 init_special_inode(inode, inode->i_mode,
4961 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4962 else
4963 init_special_inode(inode, inode->i_mode,
4964 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004965 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004966 ret = -EIO;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004967 ext4_error(inode->i_sb, __func__,
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004968 "bogus i_mode (%o) for inode=%lu",
4969 inode->i_mode, inode->i_ino);
4970 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004971 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004972 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004973 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004974 unlock_new_inode(inode);
4975 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004976
4977bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004978 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004979 iget_failed(inode);
4980 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004981}
4982
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004983static int ext4_inode_blocks_set(handle_t *handle,
4984 struct ext4_inode *raw_inode,
4985 struct ext4_inode_info *ei)
4986{
4987 struct inode *inode = &(ei->vfs_inode);
4988 u64 i_blocks = inode->i_blocks;
4989 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004990
4991 if (i_blocks <= ~0U) {
4992 /*
4993 * i_blocks can be represnted in a 32 bit variable
4994 * as multiple of 512 bytes
4995 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004996 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004997 raw_inode->i_blocks_high = 0;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004998 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004999 return 0;
5000 }
5001 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
5002 return -EFBIG;
5003
5004 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005005 /*
5006 * i_blocks can be represented in a 48 bit variable
5007 * as multiple of 512 bytes
5008 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005009 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005010 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005011 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005012 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005013 ei->i_flags |= EXT4_HUGE_FILE_FL;
5014 /* i_block is stored in file system block size */
5015 i_blocks = i_blocks >> (inode->i_blkbits - 9);
5016 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
5017 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005018 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04005019 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005020}
5021
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005022/*
5023 * Post the struct inode info into an on-disk inode location in the
5024 * buffer-cache. This gobbles the caller's reference to the
5025 * buffer_head in the inode location struct.
5026 *
5027 * The caller must have write access to iloc->bh.
5028 */
Mingming Cao617ba132006-10-11 01:20:53 -07005029static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005030 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04005031 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005032{
Mingming Cao617ba132006-10-11 01:20:53 -07005033 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5034 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005035 struct buffer_head *bh = iloc->bh;
5036 int err = 0, rc, block;
5037
5038 /* For fields not not tracking in the in-memory inode,
5039 * initialise them to zero for new inodes. */
Mingming Cao617ba132006-10-11 01:20:53 -07005040 if (ei->i_state & EXT4_STATE_NEW)
5041 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005042
Jan Karaff9ddf72007-07-18 09:24:20 -04005043 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005044 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005045 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005046 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
5047 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
5048/*
5049 * Fix up interoperability with old kernels. Otherwise, old inodes get
5050 * re-used with the upper 16 bits of the uid/gid intact
5051 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005052 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005053 raw_inode->i_uid_high =
5054 cpu_to_le16(high_16_bits(inode->i_uid));
5055 raw_inode->i_gid_high =
5056 cpu_to_le16(high_16_bits(inode->i_gid));
5057 } else {
5058 raw_inode->i_uid_high = 0;
5059 raw_inode->i_gid_high = 0;
5060 }
5061 } else {
5062 raw_inode->i_uid_low =
5063 cpu_to_le16(fs_high2lowuid(inode->i_uid));
5064 raw_inode->i_gid_low =
5065 cpu_to_le16(fs_high2lowgid(inode->i_gid));
5066 raw_inode->i_uid_high = 0;
5067 raw_inode->i_gid_high = 0;
5068 }
5069 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04005070
5071 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5072 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5073 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5074 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5075
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005076 if (ext4_inode_blocks_set(handle, raw_inode, ei))
5077 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005078 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -04005079 raw_inode->i_flags = cpu_to_le32(ei->i_flags);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07005080 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
5081 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005082 raw_inode->i_file_acl_high =
5083 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005084 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005085 ext4_isize_set(raw_inode, ei->i_disksize);
5086 if (ei->i_disksize > 0x7fffffffULL) {
5087 struct super_block *sb = inode->i_sb;
5088 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
5089 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
5090 EXT4_SB(sb)->s_es->s_rev_level ==
5091 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
5092 /* If this is the first large file
5093 * created, add a flag to the superblock.
5094 */
5095 err = ext4_journal_get_write_access(handle,
5096 EXT4_SB(sb)->s_sbh);
5097 if (err)
5098 goto out_brelse;
5099 ext4_update_dynamic_rev(sb);
5100 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07005101 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005102 sb->s_dirt = 1;
Frank Mayhar03901312009-01-07 00:06:22 -05005103 ext4_handle_sync(handle);
5104 err = ext4_handle_dirty_metadata(handle, inode,
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005105 EXT4_SB(sb)->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005106 }
5107 }
5108 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5109 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5110 if (old_valid_dev(inode->i_rdev)) {
5111 raw_inode->i_block[0] =
5112 cpu_to_le32(old_encode_dev(inode->i_rdev));
5113 raw_inode->i_block[1] = 0;
5114 } else {
5115 raw_inode->i_block[0] = 0;
5116 raw_inode->i_block[1] =
5117 cpu_to_le32(new_encode_dev(inode->i_rdev));
5118 raw_inode->i_block[2] = 0;
5119 }
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005120 } else
5121 for (block = 0; block < EXT4_N_BLOCKS; block++)
5122 raw_inode->i_block[block] = ei->i_data[block];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005123
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005124 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
5125 if (ei->i_extra_isize) {
5126 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5127 raw_inode->i_version_hi =
5128 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005129 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005130 }
5131
Frank Mayhar830156c2009-09-29 10:07:47 -04005132 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
5133 rc = ext4_handle_dirty_metadata(handle, inode, bh);
5134 if (!err)
5135 err = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07005136 ei->i_state &= ~EXT4_STATE_NEW;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005137
Jan Karab436b9b2009-12-08 23:51:10 -05005138 ext4_update_inode_fsync_trans(handle, inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005139out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005140 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005141 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005142 return err;
5143}
5144
5145/*
Mingming Cao617ba132006-10-11 01:20:53 -07005146 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005147 *
5148 * We are called from a few places:
5149 *
5150 * - Within generic_file_write() for O_SYNC files.
5151 * Here, there will be no transaction running. We wait for any running
5152 * trasnaction to commit.
5153 *
5154 * - Within sys_sync(), kupdate and such.
5155 * We wait on commit, if tol to.
5156 *
5157 * - Within prune_icache() (PF_MEMALLOC == true)
5158 * Here we simply return. We can't afford to block kswapd on the
5159 * journal commit.
5160 *
5161 * In all cases it is actually safe for us to return without doing anything,
5162 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07005163 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005164 * knfsd.
5165 *
5166 * Note that we are absolutely dependent upon all inode dirtiers doing the
5167 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5168 * which we are interested.
5169 *
5170 * It would be a bug for them to not do this. The code:
5171 *
5172 * mark_inode_dirty(inode)
5173 * stuff();
5174 * inode->i_size = expr;
5175 *
5176 * is in error because a kswapd-driven write_inode() could occur while
5177 * `stuff()' is running, and the new i_size will be lost. Plus the inode
5178 * will no longer be on the superblock's dirty inode list.
5179 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005180int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005181{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005182 int err;
5183
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005184 if (current->flags & PF_MEMALLOC)
5185 return 0;
5186
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005187 if (EXT4_SB(inode->i_sb)->s_journal) {
5188 if (ext4_journal_current_handle()) {
5189 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5190 dump_stack();
5191 return -EIO;
5192 }
5193
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005194 if (wbc->sync_mode != WB_SYNC_ALL)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005195 return 0;
5196
5197 err = ext4_force_commit(inode->i_sb);
5198 } else {
5199 struct ext4_iloc iloc;
5200
5201 err = ext4_get_inode_loc(inode, &iloc);
5202 if (err)
5203 return err;
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005204 if (wbc->sync_mode == WB_SYNC_ALL)
Frank Mayhar830156c2009-09-29 10:07:47 -04005205 sync_dirty_buffer(iloc.bh);
5206 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
5207 ext4_error(inode->i_sb, __func__,
5208 "IO error syncing inode, "
5209 "inode=%lu, block=%llu",
5210 inode->i_ino,
5211 (unsigned long long)iloc.bh->b_blocknr);
5212 err = -EIO;
5213 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005214 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005215 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005216}
5217
5218/*
Mingming Cao617ba132006-10-11 01:20:53 -07005219 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005220 *
5221 * Called from notify_change.
5222 *
5223 * We want to trap VFS attempts to truncate the file as soon as
5224 * possible. In particular, we want to make sure that when the VFS
5225 * shrinks i_size, we put the inode on the orphan list and modify
5226 * i_disksize immediately, so that during the subsequent flushing of
5227 * dirty pages and freeing of disk blocks, we can guarantee that any
5228 * commit will leave the blocks being flushed in an unused state on
5229 * disk. (On recovery, the inode will get truncated and the blocks will
5230 * be freed, so we have a strong guarantee that no future commit will
5231 * leave these blocks visible to the user.)
5232 *
Jan Kara678aaf42008-07-11 19:27:31 -04005233 * Another thing we have to assure is that if we are in ordered mode
5234 * and inode is still attached to the committing transaction, we must
5235 * we start writeout of all the dirty pages which are being truncated.
5236 * This way we are sure that all the data written in the previous
5237 * transaction are already on disk (truncate waits for pages under
5238 * writeback).
5239 *
5240 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005241 */
Mingming Cao617ba132006-10-11 01:20:53 -07005242int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005243{
5244 struct inode *inode = dentry->d_inode;
5245 int error, rc = 0;
5246 const unsigned int ia_valid = attr->ia_valid;
5247
5248 error = inode_change_ok(inode, attr);
5249 if (error)
5250 return error;
5251
5252 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
5253 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
5254 handle_t *handle;
5255
5256 /* (user+group)*(old+new) structure, inode write (sb,
5257 * inode block, ? - but truncate inode update has it) */
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -05005258 handle = ext4_journal_start(inode, (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+
Dmitry Monakhov194074a2009-12-08 22:42:28 -05005259 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb))+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005260 if (IS_ERR(handle)) {
5261 error = PTR_ERR(handle);
5262 goto err_out;
5263 }
Jan Karaa269eb12009-01-26 17:04:39 +01005264 error = vfs_dq_transfer(inode, attr) ? -EDQUOT : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005265 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005266 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005267 return error;
5268 }
5269 /* Update corresponding info in inode so that everything is in
5270 * one transaction */
5271 if (attr->ia_valid & ATTR_UID)
5272 inode->i_uid = attr->ia_uid;
5273 if (attr->ia_valid & ATTR_GID)
5274 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005275 error = ext4_mark_inode_dirty(handle, inode);
5276 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005277 }
5278
Eric Sandeene2b46572008-01-28 23:58:27 -05005279 if (attr->ia_valid & ATTR_SIZE) {
5280 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
5281 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5282
5283 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
5284 error = -EFBIG;
5285 goto err_out;
5286 }
5287 }
5288 }
5289
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005290 if (S_ISREG(inode->i_mode) &&
5291 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
5292 handle_t *handle;
5293
Mingming Cao617ba132006-10-11 01:20:53 -07005294 handle = ext4_journal_start(inode, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005295 if (IS_ERR(handle)) {
5296 error = PTR_ERR(handle);
5297 goto err_out;
5298 }
5299
Mingming Cao617ba132006-10-11 01:20:53 -07005300 error = ext4_orphan_add(handle, inode);
5301 EXT4_I(inode)->i_disksize = attr->ia_size;
5302 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005303 if (!error)
5304 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07005305 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04005306
5307 if (ext4_should_order_data(inode)) {
5308 error = ext4_begin_ordered_truncate(inode,
5309 attr->ia_size);
5310 if (error) {
5311 /* Do as much error cleanup as possible */
5312 handle = ext4_journal_start(inode, 3);
5313 if (IS_ERR(handle)) {
5314 ext4_orphan_del(NULL, inode);
5315 goto err_out;
5316 }
5317 ext4_orphan_del(handle, inode);
5318 ext4_journal_stop(handle);
5319 goto err_out;
5320 }
5321 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005322 }
5323
5324 rc = inode_setattr(inode, attr);
5325
Mingming Cao617ba132006-10-11 01:20:53 -07005326 /* If inode_setattr's call to ext4_truncate failed to get a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005327 * transaction handle at all, we need to clean up the in-core
5328 * orphan list manually. */
5329 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005330 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005331
5332 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07005333 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005334
5335err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07005336 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005337 if (!error)
5338 error = rc;
5339 return error;
5340}
5341
Mingming Cao3e3398a2008-07-11 19:27:31 -04005342int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
5343 struct kstat *stat)
5344{
5345 struct inode *inode;
5346 unsigned long delalloc_blocks;
5347
5348 inode = dentry->d_inode;
5349 generic_fillattr(inode, stat);
5350
5351 /*
5352 * We can't update i_blocks if the block allocation is delayed
5353 * otherwise in the case of system crash before the real block
5354 * allocation is done, we will have i_blocks inconsistent with
5355 * on-disk file blocks.
5356 * We always keep i_blocks updated together with real
5357 * allocation. But to not confuse with user, stat
5358 * will return the blocks that include the delayed allocation
5359 * blocks for this file.
5360 */
5361 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
5362 delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
5363 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
5364
5365 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
5366 return 0;
5367}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005368
Mingming Caoa02908f2008-08-19 22:16:07 -04005369static int ext4_indirect_trans_blocks(struct inode *inode, int nrblocks,
5370 int chunk)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005371{
Mingming Caoa02908f2008-08-19 22:16:07 -04005372 int indirects;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005373
Mingming Caoa02908f2008-08-19 22:16:07 -04005374 /* if nrblocks are contiguous */
5375 if (chunk) {
5376 /*
5377 * With N contiguous data blocks, it need at most
5378 * N/EXT4_ADDR_PER_BLOCK(inode->i_sb) indirect blocks
5379 * 2 dindirect blocks
5380 * 1 tindirect block
5381 */
5382 indirects = nrblocks / EXT4_ADDR_PER_BLOCK(inode->i_sb);
5383 return indirects + 3;
5384 }
5385 /*
5386 * if nrblocks are not contiguous, worse case, each block touch
5387 * a indirect block, and each indirect block touch a double indirect
5388 * block, plus a triple indirect block
5389 */
5390 indirects = nrblocks * 2 + 1;
5391 return indirects;
5392}
Alex Tomasa86c6182006-10-11 01:21:03 -07005393
Mingming Caoa02908f2008-08-19 22:16:07 -04005394static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5395{
5396 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL))
Theodore Ts'oac51d832008-11-06 16:49:36 -05005397 return ext4_indirect_trans_blocks(inode, nrblocks, chunk);
5398 return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
Mingming Caoa02908f2008-08-19 22:16:07 -04005399}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005400
Mingming Caoa02908f2008-08-19 22:16:07 -04005401/*
5402 * Account for index blocks, block groups bitmaps and block group
5403 * descriptor blocks if modify datablocks and index blocks
5404 * worse case, the indexs blocks spread over different block groups
5405 *
5406 * If datablocks are discontiguous, they are possible to spread over
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005407 * different block groups too. If they are contiuguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005408 * they could still across block group boundary.
5409 *
5410 * Also account for superblock, inode, quota and xattr blocks
5411 */
5412int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5413{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005414 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5415 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005416 int idxblocks;
5417 int ret = 0;
5418
5419 /*
5420 * How many index blocks need to touch to modify nrblocks?
5421 * The "Chunk" flag indicating whether the nrblocks is
5422 * physically contiguous on disk
5423 *
5424 * For Direct IO and fallocate, they calls get_block to allocate
5425 * one single extent at a time, so they could set the "Chunk" flag
5426 */
5427 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
5428
5429 ret = idxblocks;
5430
5431 /*
5432 * Now let's see how many group bitmaps and group descriptors need
5433 * to account
5434 */
5435 groups = idxblocks;
5436 if (chunk)
5437 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005438 else
Mingming Caoa02908f2008-08-19 22:16:07 -04005439 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005440
Mingming Caoa02908f2008-08-19 22:16:07 -04005441 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005442 if (groups > ngroups)
5443 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005444 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5445 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5446
5447 /* bitmaps and block group descriptor blocks */
5448 ret += groups + gdpblocks;
5449
5450 /* Blocks for super block, inode, quota and xattr blocks */
5451 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005452
5453 return ret;
5454}
5455
5456/*
Mingming Caoa02908f2008-08-19 22:16:07 -04005457 * Calulate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005458 * the modification of a single pages into a single transaction,
5459 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005460 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005461 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005462 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005463 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005464 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005465 */
5466int ext4_writepage_trans_blocks(struct inode *inode)
5467{
5468 int bpp = ext4_journal_blocks_per_page(inode);
5469 int ret;
5470
5471 ret = ext4_meta_trans_blocks(inode, bpp, 0);
5472
5473 /* Account for data blocks for journalled mode */
5474 if (ext4_should_journal_data(inode))
5475 ret += bpp;
5476 return ret;
5477}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005478
5479/*
5480 * Calculate the journal credits for a chunk of data modification.
5481 *
5482 * This is called from DIO, fallocate or whoever calling
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005483 * ext4_get_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005484 *
5485 * journal buffers for data blocks are not included here, as DIO
5486 * and fallocate do no need to journal data buffers.
5487 */
5488int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5489{
5490 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5491}
5492
Mingming Caoa02908f2008-08-19 22:16:07 -04005493/*
Mingming Cao617ba132006-10-11 01:20:53 -07005494 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005495 * Give this, we know that the caller already has write access to iloc->bh.
5496 */
Mingming Cao617ba132006-10-11 01:20:53 -07005497int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005498 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005499{
5500 int err = 0;
5501
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005502 if (test_opt(inode->i_sb, I_VERSION))
5503 inode_inc_iversion(inode);
5504
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005505 /* the do_update_inode consumes one bh->b_count */
5506 get_bh(iloc->bh);
5507
Mingming Caodab291a2006-10-11 01:21:01 -07005508 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005509 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005510 put_bh(iloc->bh);
5511 return err;
5512}
5513
5514/*
5515 * On success, We end up with an outstanding reference count against
5516 * iloc->bh. This _must_ be cleaned up later.
5517 */
5518
5519int
Mingming Cao617ba132006-10-11 01:20:53 -07005520ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5521 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005522{
Frank Mayhar03901312009-01-07 00:06:22 -05005523 int err;
5524
5525 err = ext4_get_inode_loc(inode, iloc);
5526 if (!err) {
5527 BUFFER_TRACE(iloc->bh, "get_write_access");
5528 err = ext4_journal_get_write_access(handle, iloc->bh);
5529 if (err) {
5530 brelse(iloc->bh);
5531 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005532 }
5533 }
Mingming Cao617ba132006-10-11 01:20:53 -07005534 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005535 return err;
5536}
5537
5538/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005539 * Expand an inode by new_extra_isize bytes.
5540 * Returns 0 on success or negative error number on failure.
5541 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05005542static int ext4_expand_extra_isize(struct inode *inode,
5543 unsigned int new_extra_isize,
5544 struct ext4_iloc iloc,
5545 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005546{
5547 struct ext4_inode *raw_inode;
5548 struct ext4_xattr_ibody_header *header;
5549 struct ext4_xattr_entry *entry;
5550
5551 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
5552 return 0;
5553
5554 raw_inode = ext4_raw_inode(&iloc);
5555
5556 header = IHDR(inode, raw_inode);
5557 entry = IFIRST(header);
5558
5559 /* No extended attributes present */
5560 if (!(EXT4_I(inode)->i_state & EXT4_STATE_XATTR) ||
5561 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5562 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
5563 new_extra_isize);
5564 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5565 return 0;
5566 }
5567
5568 /* try to expand with EAs present */
5569 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
5570 raw_inode, handle);
5571}
5572
5573/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005574 * What we do here is to mark the in-core inode as clean with respect to inode
5575 * dirtiness (it may still be data-dirty).
5576 * This means that the in-core inode may be reaped by prune_icache
5577 * without having to perform any I/O. This is a very good thing,
5578 * because *any* task may call prune_icache - even ones which
5579 * have a transaction open against a different journal.
5580 *
5581 * Is this cheating? Not really. Sure, we haven't written the
5582 * inode out, but prune_icache isn't a user-visible syncing function.
5583 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5584 * we start and wait on commits.
5585 *
5586 * Is this efficient/effective? Well, we're being nice to the system
5587 * by cleaning up our inodes proactively so they can be reaped
5588 * without I/O. But we are potentially leaving up to five seconds'
5589 * worth of inodes floating about which prune_icache wants us to
5590 * write out. One way to fix that would be to get prune_icache()
5591 * to do a write_super() to free up some memory. It has the desired
5592 * effect.
5593 */
Mingming Cao617ba132006-10-11 01:20:53 -07005594int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005595{
Mingming Cao617ba132006-10-11 01:20:53 -07005596 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005597 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5598 static unsigned int mnt_count;
5599 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005600
5601 might_sleep();
Mingming Cao617ba132006-10-11 01:20:53 -07005602 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05005603 if (ext4_handle_valid(handle) &&
5604 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005605 !(EXT4_I(inode)->i_state & EXT4_STATE_NO_EXPAND)) {
5606 /*
5607 * We need extra buffer credits since we may write into EA block
5608 * with this same handle. If journal_extend fails, then it will
5609 * only result in a minor loss of functionality for that inode.
5610 * If this is felt to be critical, then e2fsck should be run to
5611 * force a large enough s_min_extra_isize.
5612 */
5613 if ((jbd2_journal_extend(handle,
5614 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
5615 ret = ext4_expand_extra_isize(inode,
5616 sbi->s_want_extra_isize,
5617 iloc, handle);
5618 if (ret) {
5619 EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND;
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005620 if (mnt_count !=
5621 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04005622 ext4_warning(inode->i_sb, __func__,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005623 "Unable to expand inode %lu. Delete"
5624 " some EAs or run e2fsck.",
5625 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005626 mnt_count =
5627 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005628 }
5629 }
5630 }
5631 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005632 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07005633 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005634 return err;
5635}
5636
5637/*
Mingming Cao617ba132006-10-11 01:20:53 -07005638 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005639 *
5640 * We're really interested in the case where a file is being extended.
5641 * i_size has been changed by generic_commit_write() and we thus need
5642 * to include the updated inode in the current transaction.
5643 *
Jan Karaa269eb12009-01-26 17:04:39 +01005644 * Also, vfs_dq_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005645 * are allocated to the file.
5646 *
5647 * If the inode is marked synchronous, we don't honour that here - doing
5648 * so would cause a commit on atime updates, which we don't bother doing.
5649 * We handle synchronous inodes at the highest possible level.
5650 */
Mingming Cao617ba132006-10-11 01:20:53 -07005651void ext4_dirty_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005652{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005653 handle_t *handle;
5654
Mingming Cao617ba132006-10-11 01:20:53 -07005655 handle = ext4_journal_start(inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005656 if (IS_ERR(handle))
5657 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005658
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005659 ext4_mark_inode_dirty(handle, inode);
5660
Mingming Cao617ba132006-10-11 01:20:53 -07005661 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005662out:
5663 return;
5664}
5665
5666#if 0
5667/*
5668 * Bind an inode's backing buffer_head into this transaction, to prevent
5669 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07005670 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005671 * returns no iloc structure, so the caller needs to repeat the iloc
5672 * lookup to mark the inode dirty later.
5673 */
Mingming Cao617ba132006-10-11 01:20:53 -07005674static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005675{
Mingming Cao617ba132006-10-11 01:20:53 -07005676 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005677
5678 int err = 0;
5679 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07005680 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005681 if (!err) {
5682 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07005683 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005684 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05005685 err = ext4_handle_dirty_metadata(handle,
5686 inode,
5687 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005688 brelse(iloc.bh);
5689 }
5690 }
Mingming Cao617ba132006-10-11 01:20:53 -07005691 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005692 return err;
5693}
5694#endif
5695
Mingming Cao617ba132006-10-11 01:20:53 -07005696int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005697{
5698 journal_t *journal;
5699 handle_t *handle;
5700 int err;
5701
5702 /*
5703 * We have to be very careful here: changing a data block's
5704 * journaling status dynamically is dangerous. If we write a
5705 * data block to the journal, change the status and then delete
5706 * that block, we risk forgetting to revoke the old log record
5707 * from the journal and so a subsequent replay can corrupt data.
5708 * So, first we make sure that the journal is empty and that
5709 * nobody is changing anything.
5710 */
5711
Mingming Cao617ba132006-10-11 01:20:53 -07005712 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005713 if (!journal)
5714 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005715 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005716 return -EROFS;
5717
Mingming Caodab291a2006-10-11 01:21:01 -07005718 jbd2_journal_lock_updates(journal);
5719 jbd2_journal_flush(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005720
5721 /*
5722 * OK, there are no updates running now, and all cached data is
5723 * synced to disk. We are now in a completely consistent state
5724 * which doesn't have anything in the journal, and we know that
5725 * no filesystem updates are running, so it is safe to modify
5726 * the inode's in-core data-journaling state flag now.
5727 */
5728
5729 if (val)
Mingming Cao617ba132006-10-11 01:20:53 -07005730 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005731 else
Mingming Cao617ba132006-10-11 01:20:53 -07005732 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
5733 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005734
Mingming Caodab291a2006-10-11 01:21:01 -07005735 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005736
5737 /* Finally we can mark the inode as dirty. */
5738
Mingming Cao617ba132006-10-11 01:20:53 -07005739 handle = ext4_journal_start(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005740 if (IS_ERR(handle))
5741 return PTR_ERR(handle);
5742
Mingming Cao617ba132006-10-11 01:20:53 -07005743 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005744 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005745 ext4_journal_stop(handle);
5746 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005747
5748 return err;
5749}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005750
5751static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5752{
5753 return !buffer_mapped(bh);
5754}
5755
Nick Pigginc2ec1752009-03-31 15:23:21 -07005756int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005757{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005758 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005759 loff_t size;
5760 unsigned long len;
5761 int ret = -EINVAL;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005762 void *fsdata;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005763 struct file *file = vma->vm_file;
5764 struct inode *inode = file->f_path.dentry->d_inode;
5765 struct address_space *mapping = inode->i_mapping;
5766
5767 /*
5768 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
5769 * get i_mutex because we are already holding mmap_sem.
5770 */
5771 down_read(&inode->i_alloc_sem);
5772 size = i_size_read(inode);
5773 if (page->mapping != mapping || size <= page_offset(page)
5774 || !PageUptodate(page)) {
5775 /* page got truncated from under us? */
5776 goto out_unlock;
5777 }
5778 ret = 0;
5779 if (PageMappedToDisk(page))
5780 goto out_unlock;
5781
5782 if (page->index == size >> PAGE_CACHE_SHIFT)
5783 len = size & ~PAGE_CACHE_MASK;
5784 else
5785 len = PAGE_CACHE_SIZE;
5786
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005787 lock_page(page);
5788 /*
5789 * return if we have all the buffers mapped. This avoid
5790 * the need to call write_begin/write_end which does a
5791 * journal_start/journal_stop which can block and take
5792 * long time
5793 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005794 if (page_has_buffers(page)) {
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005795 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005796 ext4_bh_unmapped)) {
5797 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005798 goto out_unlock;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005799 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005800 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005801 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005802 /*
5803 * OK, we need to fill the hole... Do write_begin write_end
5804 * to do block allocation/reservation.We are not holding
5805 * inode.i__mutex here. That allow * parallel write_begin,
5806 * write_end call. lock_page prevent this from happening
5807 * on the same page though
5808 */
5809 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005810 len, AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005811 if (ret < 0)
5812 goto out_unlock;
5813 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005814 len, len, page, fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005815 if (ret < 0)
5816 goto out_unlock;
5817 ret = 0;
5818out_unlock:
Nick Pigginc2ec1752009-03-31 15:23:21 -07005819 if (ret)
5820 ret = VM_FAULT_SIGBUS;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005821 up_read(&inode->i_alloc_sem);
5822 return ret;
5823}