blob: 282621f18c108e4625ec6bf28efd59a0eceacab1 [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
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001012/*
1013 * Calculate the number of metadata blocks need to reserve
1014 * to allocate @blocks for non extent file based file
1015 */
1016static int ext4_indirect_calc_metadata_amount(struct inode *inode, int blocks)
1017{
1018 int icap = EXT4_ADDR_PER_BLOCK(inode->i_sb);
1019 int ind_blks, dind_blks, tind_blks;
1020
1021 /* number of new indirect blocks needed */
1022 ind_blks = (blocks + icap - 1) / icap;
1023
1024 dind_blks = (ind_blks + icap - 1) / icap;
1025
1026 tind_blks = 1;
1027
1028 return ind_blks + dind_blks + tind_blks;
1029}
1030
1031/*
1032 * Calculate the number of metadata blocks need to reserve
1033 * to allocate given number of blocks
1034 */
1035static int ext4_calc_metadata_amount(struct inode *inode, int blocks)
1036{
Mingming Caocd213222008-08-19 22:16:59 -04001037 if (!blocks)
1038 return 0;
1039
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001040 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
1041 return ext4_ext_calc_metadata_amount(inode, blocks);
1042
1043 return ext4_indirect_calc_metadata_amount(inode, blocks);
1044}
1045
1046static void ext4_da_update_reserve_space(struct inode *inode, int used)
1047{
1048 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dmitry Monakhovd21cd8f2009-12-10 03:31:45 +00001049 int total, mdb, mdb_free, mdb_claim = 0;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001050
1051 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1052 /* recalculate the number of metablocks still need to be reserved */
1053 total = EXT4_I(inode)->i_reserved_data_blocks - used;
1054 mdb = ext4_calc_metadata_amount(inode, total);
1055
1056 /* figure out how many metablocks to release */
1057 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1058 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1059
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001060 if (mdb_free) {
1061 /* Account for allocated meta_blocks */
Dmitry Monakhovd21cd8f2009-12-10 03:31:45 +00001062 mdb_claim = EXT4_I(inode)->i_allocated_meta_blocks;
1063 BUG_ON(mdb_free < mdb_claim);
1064 mdb_free -= mdb_claim;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001065
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001066 /* update fs dirty blocks counter */
1067 percpu_counter_sub(&sbi->s_dirtyblocks_counter, mdb_free);
1068 EXT4_I(inode)->i_allocated_meta_blocks = 0;
1069 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
1070 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001071
1072 /* update per-inode reservations */
1073 BUG_ON(used > EXT4_I(inode)->i_reserved_data_blocks);
1074 EXT4_I(inode)->i_reserved_data_blocks -= used;
Dmitry Monakhovd21cd8f2009-12-10 03:31:45 +00001075 percpu_counter_sub(&sbi->s_dirtyblocks_counter, used + mdb_claim);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001076 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001077
Dmitry Monakhovd21cd8f2009-12-10 03:31:45 +00001078 vfs_dq_claim_block(inode, used + mdb_claim);
1079
Mingming Cao60e58e02009-01-22 18:13:05 +01001080 /*
1081 * free those over-booking quota for metadata blocks
1082 */
Mingming Cao60e58e02009-01-22 18:13:05 +01001083 if (mdb_free)
1084 vfs_dq_release_reservation_block(inode, mdb_free);
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -04001085
1086 /*
1087 * If we have done all the pending block allocations and if
1088 * there aren't any writers on the inode, we can discard the
1089 * inode's preallocations.
1090 */
1091 if (!total && (atomic_read(&inode->i_writecount) == 0))
1092 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001093}
1094
Theodore Ts'o80e42462009-09-08 08:21:26 -04001095static int check_block_validity(struct inode *inode, const char *msg,
1096 sector_t logical, sector_t phys, int len)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001097{
1098 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), phys, len)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001099 ext4_error(inode->i_sb, msg,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001100 "inode #%lu logical block %llu mapped to %llu "
1101 "(size %d)", inode->i_ino,
1102 (unsigned long long) logical,
1103 (unsigned long long) phys, len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001104 return -EIO;
1105 }
1106 return 0;
1107}
1108
Mingming Caof5ab0d12008-02-25 15:29:55 -05001109/*
Theodore Ts'o1f945332009-09-30 22:57:41 -04001110 * Return the number of contiguous dirty pages in a given inode
1111 * starting at page frame idx.
Theodore Ts'o55138e02009-09-29 13:31:31 -04001112 */
1113static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx,
1114 unsigned int max_pages)
1115{
1116 struct address_space *mapping = inode->i_mapping;
1117 pgoff_t index;
1118 struct pagevec pvec;
1119 pgoff_t num = 0;
1120 int i, nr_pages, done = 0;
1121
1122 if (max_pages == 0)
1123 return 0;
1124 pagevec_init(&pvec, 0);
1125 while (!done) {
1126 index = idx;
1127 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
1128 PAGECACHE_TAG_DIRTY,
1129 (pgoff_t)PAGEVEC_SIZE);
1130 if (nr_pages == 0)
1131 break;
1132 for (i = 0; i < nr_pages; i++) {
1133 struct page *page = pvec.pages[i];
1134 struct buffer_head *bh, *head;
1135
1136 lock_page(page);
1137 if (unlikely(page->mapping != mapping) ||
1138 !PageDirty(page) ||
1139 PageWriteback(page) ||
1140 page->index != idx) {
1141 done = 1;
1142 unlock_page(page);
1143 break;
1144 }
Theodore Ts'o1f945332009-09-30 22:57:41 -04001145 if (page_has_buffers(page)) {
1146 bh = head = page_buffers(page);
1147 do {
1148 if (!buffer_delay(bh) &&
1149 !buffer_unwritten(bh))
1150 done = 1;
1151 bh = bh->b_this_page;
1152 } while (!done && (bh != head));
1153 }
Theodore Ts'o55138e02009-09-29 13:31:31 -04001154 unlock_page(page);
1155 if (done)
1156 break;
1157 idx++;
1158 num++;
1159 if (num >= max_pages)
1160 break;
1161 }
1162 pagevec_release(&pvec);
1163 }
1164 return num;
1165}
1166
1167/*
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001168 * The ext4_get_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001169 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -05001170 *
Mingming Caof5ab0d12008-02-25 15:29:55 -05001171 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
1172 * and store the allocated blocks in the result buffer head and mark it
1173 * mapped.
1174 *
1175 * If file type is extents based, it will call ext4_ext_get_blocks(),
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001176 * Otherwise, call with ext4_ind_get_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -05001177 * based files
1178 *
1179 * On success, it returns the number of blocks being mapped or allocate.
1180 * if create==0 and the blocks are pre-allocated and uninitialized block,
1181 * the result buffer head is unmapped. If the create ==1, it will make sure
1182 * the buffer head is mapped.
1183 *
1184 * It returns 0 if plain look up failed (blocks have not been allocated), in
1185 * that casem, buffer head is unmapped
1186 *
1187 * It returns the error in case of allocation failure.
1188 */
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001189int ext4_get_blocks(handle_t *handle, struct inode *inode, sector_t block,
1190 unsigned int max_blocks, struct buffer_head *bh,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001191 int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001192{
1193 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -05001194
1195 clear_buffer_mapped(bh);
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001196 clear_buffer_unwritten(bh);
Mingming Caof5ab0d12008-02-25 15:29:55 -05001197
Mingming Cao00314622009-09-28 15:49:08 -04001198 ext_debug("ext4_get_blocks(): inode %lu, flag %d, max_blocks %u,"
1199 "logical block %lu\n", inode->i_ino, flags, max_blocks,
1200 (unsigned long)block);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001201 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -04001202 * Try to see if we can get the block without requesting a new
1203 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001204 */
1205 down_read((&EXT4_I(inode)->i_data_sem));
1206 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1207 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001208 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001209 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001210 retval = ext4_ind_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001211 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001212 }
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001213 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -05001214
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001215 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001216 int ret = check_block_validity(inode, "file system corruption",
1217 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001218 if (ret != 0)
1219 return ret;
1220 }
1221
Mingming Caof5ab0d12008-02-25 15:29:55 -05001222 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001223 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001224 return retval;
1225
1226 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001227 * Returns if the blocks have already allocated
1228 *
1229 * Note that if blocks have been preallocated
1230 * ext4_ext_get_block() returns th create = 0
1231 * with buffer head unmapped.
1232 */
1233 if (retval > 0 && buffer_mapped(bh))
1234 return retval;
1235
1236 /*
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001237 * When we call get_blocks without the create flag, the
1238 * BH_Unwritten flag could have gotten set if the blocks
1239 * requested were part of a uninitialized extent. We need to
1240 * clear this flag now that we are committed to convert all or
1241 * part of the uninitialized extent to be an initialized
1242 * extent. This is because we need to avoid the combination
1243 * of BH_Unwritten and BH_Mapped flags being simultaneously
1244 * set on the buffer_head.
1245 */
1246 clear_buffer_unwritten(bh);
1247
1248 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001249 * New blocks allocate and/or writing to uninitialized extent
1250 * will possibly result in updating i_data, so we take
1251 * the write lock of i_data_sem, and call get_blocks()
1252 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001253 */
1254 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -04001255
1256 /*
1257 * if the caller is from delayed allocation writeout path
1258 * we have already reserved fs blocks for allocation
1259 * let the underlying get_block() function know to
1260 * avoid double accounting
1261 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001262 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001263 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001264 /*
1265 * We need to check for EXT4 here because migrate
1266 * could have changed the inode type in between
1267 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001268 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1269 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001270 bh, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001271 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001272 retval = ext4_ind_get_blocks(handle, inode, block,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001273 max_blocks, bh, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001274
1275 if (retval > 0 && buffer_new(bh)) {
1276 /*
1277 * We allocated new blocks which will result in
1278 * i_data's format changing. Force the migrate
1279 * to fail by clearing migrate flags
1280 */
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -04001281 EXT4_I(inode)->i_state &= ~EXT4_STATE_EXT_MIGRATE;
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001282 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001283 }
Mingming Caod2a17632008-07-14 17:52:37 -04001284
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001285 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001286 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001287
1288 /*
1289 * Update reserved blocks/metadata blocks after successful
1290 * block allocation which had been deferred till now.
1291 */
1292 if ((retval > 0) && (flags & EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE))
1293 ext4_da_update_reserve_space(inode, retval);
Mingming Caod2a17632008-07-14 17:52:37 -04001294
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001295 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001296 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001297 int ret = check_block_validity(inode, "file system "
1298 "corruption after allocation",
1299 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001300 if (ret != 0)
1301 return ret;
1302 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001303 return retval;
1304}
1305
Mingming Caof3bd1f32008-08-19 22:16:03 -04001306/* Maximum number of blocks we map for direct IO at once. */
1307#define DIO_MAX_BLOCKS 4096
1308
Eric Sandeen6873fa02008-10-07 00:46:36 -04001309int ext4_get_block(struct inode *inode, sector_t iblock,
1310 struct buffer_head *bh_result, int create)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001311{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -08001312 handle_t *handle = ext4_journal_current_handle();
Jan Kara7fb54092008-02-10 01:08:38 -05001313 int ret = 0, started = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001314 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001315 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001316
Jan Kara7fb54092008-02-10 01:08:38 -05001317 if (create && !handle) {
1318 /* Direct IO write... */
1319 if (max_blocks > DIO_MAX_BLOCKS)
1320 max_blocks = DIO_MAX_BLOCKS;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001321 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
1322 handle = ext4_journal_start(inode, dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -05001323 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001324 ret = PTR_ERR(handle);
Jan Kara7fb54092008-02-10 01:08:38 -05001325 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001326 }
Jan Kara7fb54092008-02-10 01:08:38 -05001327 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001328 }
1329
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001330 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001331 create ? EXT4_GET_BLOCKS_CREATE : 0);
Jan Kara7fb54092008-02-10 01:08:38 -05001332 if (ret > 0) {
1333 bh_result->b_size = (ret << inode->i_blkbits);
1334 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001335 }
Jan Kara7fb54092008-02-10 01:08:38 -05001336 if (started)
1337 ext4_journal_stop(handle);
1338out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001339 return ret;
1340}
1341
1342/*
1343 * `handle' can be NULL if create is zero
1344 */
Mingming Cao617ba132006-10-11 01:20:53 -07001345struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001346 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347{
1348 struct buffer_head dummy;
1349 int fatal = 0, err;
Jan Kara03f5d8b2009-06-09 00:17:05 -04001350 int flags = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001351
1352 J_ASSERT(handle != NULL || create == 0);
1353
1354 dummy.b_state = 0;
1355 dummy.b_blocknr = -1000;
1356 buffer_trace_init(&dummy.b_history);
Theodore Ts'oc2177052009-05-14 00:58:52 -04001357 if (create)
1358 flags |= EXT4_GET_BLOCKS_CREATE;
1359 err = ext4_get_blocks(handle, inode, block, 1, &dummy, flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001360 /*
Theodore Ts'oc2177052009-05-14 00:58:52 -04001361 * ext4_get_blocks() returns number of blocks mapped. 0 in
1362 * case of a HOLE.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001363 */
1364 if (err > 0) {
1365 if (err > 1)
1366 WARN_ON(1);
1367 err = 0;
1368 }
1369 *errp = err;
1370 if (!err && buffer_mapped(&dummy)) {
1371 struct buffer_head *bh;
1372 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1373 if (!bh) {
1374 *errp = -EIO;
1375 goto err;
1376 }
1377 if (buffer_new(&dummy)) {
1378 J_ASSERT(create != 0);
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001379 J_ASSERT(handle != NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001380
1381 /*
1382 * Now that we do not always journal data, we should
1383 * keep in mind whether this should always journal the
1384 * new buffer as metadata. For now, regular file
Mingming Cao617ba132006-10-11 01:20:53 -07001385 * writes use ext4_get_block instead, so it's not a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001386 * problem.
1387 */
1388 lock_buffer(bh);
1389 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001390 fatal = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001391 if (!fatal && !buffer_uptodate(bh)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001392 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393 set_buffer_uptodate(bh);
1394 }
1395 unlock_buffer(bh);
Frank Mayhar03901312009-01-07 00:06:22 -05001396 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1397 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001398 if (!fatal)
1399 fatal = err;
1400 } else {
1401 BUFFER_TRACE(bh, "not a new buffer");
1402 }
1403 if (fatal) {
1404 *errp = fatal;
1405 brelse(bh);
1406 bh = NULL;
1407 }
1408 return bh;
1409 }
1410err:
1411 return NULL;
1412}
1413
Mingming Cao617ba132006-10-11 01:20:53 -07001414struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001415 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001416{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001417 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001418
Mingming Cao617ba132006-10-11 01:20:53 -07001419 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 if (!bh)
1421 return bh;
1422 if (buffer_uptodate(bh))
1423 return bh;
1424 ll_rw_block(READ_META, 1, &bh);
1425 wait_on_buffer(bh);
1426 if (buffer_uptodate(bh))
1427 return bh;
1428 put_bh(bh);
1429 *err = -EIO;
1430 return NULL;
1431}
1432
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001433static int walk_page_buffers(handle_t *handle,
1434 struct buffer_head *head,
1435 unsigned from,
1436 unsigned to,
1437 int *partial,
1438 int (*fn)(handle_t *handle,
1439 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001440{
1441 struct buffer_head *bh;
1442 unsigned block_start, block_end;
1443 unsigned blocksize = head->b_size;
1444 int err, ret = 0;
1445 struct buffer_head *next;
1446
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001447 for (bh = head, block_start = 0;
1448 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001449 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001450 next = bh->b_this_page;
1451 block_end = block_start + blocksize;
1452 if (block_end <= from || block_start >= to) {
1453 if (partial && !buffer_uptodate(bh))
1454 *partial = 1;
1455 continue;
1456 }
1457 err = (*fn)(handle, bh);
1458 if (!ret)
1459 ret = err;
1460 }
1461 return ret;
1462}
1463
1464/*
1465 * To preserve ordering, it is essential that the hole instantiation and
1466 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -07001467 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -07001468 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001469 * prepare_write() is the right place.
1470 *
Mingming Cao617ba132006-10-11 01:20:53 -07001471 * Also, this function can nest inside ext4_writepage() ->
1472 * block_write_full_page(). In that case, we *know* that ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001473 * has generated enough buffer credits to do the whole page. So we won't
1474 * block on the journal in that case, which is good, because the caller may
1475 * be PF_MEMALLOC.
1476 *
Mingming Cao617ba132006-10-11 01:20:53 -07001477 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001478 * quota file writes. If we were to commit the transaction while thus
1479 * reentered, there can be a deadlock - we would be holding a quota
1480 * lock, and the commit would never complete if another thread had a
1481 * transaction open and was blocking on the quota lock - a ranking
1482 * violation.
1483 *
Mingming Caodab291a2006-10-11 01:21:01 -07001484 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001485 * will _not_ run commit under these circumstances because handle->h_ref
1486 * is elevated. We'll still have enough credits for the tiny quotafile
1487 * write.
1488 */
1489static int do_journal_get_write_access(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001490 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001491{
1492 if (!buffer_mapped(bh) || buffer_freed(bh))
1493 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001494 return ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001495}
1496
Jan Karab9a42072009-12-08 21:24:33 -05001497/*
1498 * Truncate blocks that were not used by write. We have to truncate the
1499 * pagecache as well so that corresponding buffers get properly unmapped.
1500 */
1501static void ext4_truncate_failed_write(struct inode *inode)
1502{
1503 truncate_inode_pages(inode->i_mapping, inode->i_size);
1504 ext4_truncate(inode);
1505}
1506
Nick Pigginbfc1af62007-10-16 01:25:05 -07001507static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001508 loff_t pos, unsigned len, unsigned flags,
1509 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001510{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001511 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001512 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001513 handle_t *handle;
1514 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001515 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001516 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001517 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001518
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001519 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001520 /*
1521 * Reserve one block more for addition to orphan list in case
1522 * we allocate blocks but write fails for some reason
1523 */
1524 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001525 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001526 from = pos & (PAGE_CACHE_SIZE - 1);
1527 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001528
1529retry:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001530 handle = ext4_journal_start(inode, needed_blocks);
1531 if (IS_ERR(handle)) {
1532 ret = PTR_ERR(handle);
1533 goto out;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001534 }
1535
Jan Karaebd36102009-02-22 21:09:59 -05001536 /* We cannot recurse into the filesystem as the transaction is already
1537 * started */
1538 flags |= AOP_FLAG_NOFS;
1539
Nick Piggin54566b22009-01-04 12:00:53 -08001540 page = grab_cache_page_write_begin(mapping, index, flags);
Jan Karacf108bc2008-07-11 19:27:31 -04001541 if (!page) {
1542 ext4_journal_stop(handle);
1543 ret = -ENOMEM;
1544 goto out;
1545 }
1546 *pagep = page;
1547
Nick Pigginbfc1af62007-10-16 01:25:05 -07001548 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Jan Karaebd36102009-02-22 21:09:59 -05001549 ext4_get_block);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001550
1551 if (!ret && ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001552 ret = walk_page_buffers(handle, page_buffers(page),
1553 from, to, NULL, do_journal_get_write_access);
1554 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001555
1556 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001557 unlock_page(page);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001558 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001559 /*
1560 * block_write_begin may have instantiated a few blocks
1561 * outside i_size. Trim these off again. Don't need
1562 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001563 *
1564 * Add inode to orphan list in case we crash before
1565 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001566 */
Jan Karaffacfa72009-07-13 16:22:22 -04001567 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001568 ext4_orphan_add(handle, inode);
1569
1570 ext4_journal_stop(handle);
1571 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001572 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001573 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001574 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001575 * still be on the orphan list; we need to
1576 * make sure the inode is removed from the
1577 * orphan list in that case.
1578 */
1579 if (inode->i_nlink)
1580 ext4_orphan_del(NULL, inode);
1581 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001582 }
1583
Mingming Cao617ba132006-10-11 01:20:53 -07001584 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001585 goto retry;
Andrew Morton7479d2b2007-04-01 23:49:44 -07001586out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001587 return ret;
1588}
1589
Nick Pigginbfc1af62007-10-16 01:25:05 -07001590/* For write_end() in data=journal mode */
1591static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001592{
1593 if (!buffer_mapped(bh) || buffer_freed(bh))
1594 return 0;
1595 set_buffer_uptodate(bh);
Frank Mayhar03901312009-01-07 00:06:22 -05001596 return ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001597}
1598
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001599static int ext4_generic_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001600 struct address_space *mapping,
1601 loff_t pos, unsigned len, unsigned copied,
1602 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001603{
1604 int i_size_changed = 0;
1605 struct inode *inode = mapping->host;
1606 handle_t *handle = ext4_journal_current_handle();
1607
1608 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
1609
1610 /*
1611 * No need to use i_size_read() here, the i_size
1612 * cannot change under us because we hold i_mutex.
1613 *
1614 * But it's important to update i_size while still holding page lock:
1615 * page writeout could otherwise come in and zero beyond i_size.
1616 */
1617 if (pos + copied > inode->i_size) {
1618 i_size_write(inode, pos + copied);
1619 i_size_changed = 1;
1620 }
1621
1622 if (pos + copied > EXT4_I(inode)->i_disksize) {
1623 /* We need to mark inode dirty even if
1624 * new_i_size is less that inode->i_size
1625 * bu greater than i_disksize.(hint delalloc)
1626 */
1627 ext4_update_i_disksize(inode, (pos + copied));
1628 i_size_changed = 1;
1629 }
1630 unlock_page(page);
1631 page_cache_release(page);
1632
1633 /*
1634 * Don't mark the inode dirty under page lock. First, it unnecessarily
1635 * makes the holding time of page lock longer. Second, it forces lock
1636 * ordering of page lock and transaction start for journaling
1637 * filesystems.
1638 */
1639 if (i_size_changed)
1640 ext4_mark_inode_dirty(handle, inode);
1641
1642 return copied;
1643}
1644
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001645/*
1646 * We need to pick up the new inode size which generic_commit_write gave us
1647 * `file' can be NULL - eg, when called from page_symlink().
1648 *
Mingming Cao617ba132006-10-11 01:20:53 -07001649 * ext4 never places buffers on inode->i_mapping->private_list. metadata
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001650 * buffers are managed internally.
1651 */
Nick Pigginbfc1af62007-10-16 01:25:05 -07001652static int ext4_ordered_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001653 struct address_space *mapping,
1654 loff_t pos, unsigned len, unsigned copied,
1655 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001656{
Mingming Cao617ba132006-10-11 01:20:53 -07001657 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001658 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001659 int ret = 0, ret2;
1660
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001661 trace_ext4_ordered_write_end(inode, pos, len, copied);
Jan Kara678aaf42008-07-11 19:27:31 -04001662 ret = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001663
1664 if (ret == 0) {
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001665 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001666 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001667 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001668 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001669 /* if we have allocated more blocks and copied
1670 * less. We will have blocks allocated outside
1671 * inode->i_size. So truncate them
1672 */
1673 ext4_orphan_add(handle, inode);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001674 if (ret2 < 0)
1675 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001676 }
Mingming Cao617ba132006-10-11 01:20:53 -07001677 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001678 if (!ret)
1679 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001680
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001681 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001682 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001683 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001684 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001685 * on the orphan list; we need to make sure the inode
1686 * is removed from the orphan list in that case.
1687 */
1688 if (inode->i_nlink)
1689 ext4_orphan_del(NULL, inode);
1690 }
1691
1692
Nick Pigginbfc1af62007-10-16 01:25:05 -07001693 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001694}
1695
Nick Pigginbfc1af62007-10-16 01:25:05 -07001696static int ext4_writeback_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001697 struct address_space *mapping,
1698 loff_t pos, unsigned len, unsigned copied,
1699 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001700{
Mingming Cao617ba132006-10-11 01:20:53 -07001701 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001702 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001703 int ret = 0, ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001704
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001705 trace_ext4_writeback_write_end(inode, pos, len, copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001706 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001707 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001708 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001709 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001710 /* if we have allocated more blocks and copied
1711 * less. We will have blocks allocated outside
1712 * inode->i_size. So truncate them
1713 */
1714 ext4_orphan_add(handle, inode);
1715
Roel Kluinf8a87d82008-04-29 22:01:18 -04001716 if (ret2 < 0)
1717 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001718
Mingming Cao617ba132006-10-11 01:20:53 -07001719 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001720 if (!ret)
1721 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001722
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001723 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001724 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001725 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001726 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001727 * on the orphan list; we need to make sure the inode
1728 * is removed from the orphan list in that case.
1729 */
1730 if (inode->i_nlink)
1731 ext4_orphan_del(NULL, inode);
1732 }
1733
Nick Pigginbfc1af62007-10-16 01:25:05 -07001734 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001735}
1736
Nick Pigginbfc1af62007-10-16 01:25:05 -07001737static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001738 struct address_space *mapping,
1739 loff_t pos, unsigned len, unsigned copied,
1740 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001741{
Mingming Cao617ba132006-10-11 01:20:53 -07001742 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001743 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001744 int ret = 0, ret2;
1745 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001746 unsigned from, to;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001747 loff_t new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001748
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001749 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001750 from = pos & (PAGE_CACHE_SIZE - 1);
1751 to = from + len;
1752
1753 if (copied < len) {
1754 if (!PageUptodate(page))
1755 copied = 0;
1756 page_zero_new_buffers(page, from+copied, to);
1757 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001758
1759 ret = walk_page_buffers(handle, page_buffers(page), from,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001760 to, &partial, write_end_fn);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001761 if (!partial)
1762 SetPageUptodate(page);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001763 new_i_size = pos + copied;
1764 if (new_i_size > inode->i_size)
Nick Pigginbfc1af62007-10-16 01:25:05 -07001765 i_size_write(inode, pos+copied);
Mingming Cao617ba132006-10-11 01:20:53 -07001766 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001767 if (new_i_size > EXT4_I(inode)->i_disksize) {
1768 ext4_update_i_disksize(inode, new_i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001769 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001770 if (!ret)
1771 ret = ret2;
1772 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001773
Jan Karacf108bc2008-07-11 19:27:31 -04001774 unlock_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001775 page_cache_release(page);
Jan Karaffacfa72009-07-13 16:22:22 -04001776 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001777 /* if we have allocated more blocks and copied
1778 * less. We will have blocks allocated outside
1779 * inode->i_size. So truncate them
1780 */
1781 ext4_orphan_add(handle, inode);
1782
Mingming Cao617ba132006-10-11 01:20:53 -07001783 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001784 if (!ret)
1785 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001786 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001787 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001788 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001789 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001790 * on the orphan list; we need to make sure the inode
1791 * is removed from the orphan list in that case.
1792 */
1793 if (inode->i_nlink)
1794 ext4_orphan_del(NULL, inode);
1795 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001796
1797 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001798}
Mingming Caod2a17632008-07-14 17:52:37 -04001799
1800static int ext4_da_reserve_space(struct inode *inode, int nrblocks)
1801{
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001802 int retries = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01001803 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1804 unsigned long md_needed, mdblocks, total = 0;
Mingming Caod2a17632008-07-14 17:52:37 -04001805
1806 /*
1807 * recalculate the amount of metadata blocks to reserve
1808 * in order to allocate nrblocks
1809 * worse case is one extent per block
1810 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001811repeat:
Mingming Caod2a17632008-07-14 17:52:37 -04001812 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1813 total = EXT4_I(inode)->i_reserved_data_blocks + nrblocks;
1814 mdblocks = ext4_calc_metadata_amount(inode, total);
1815 BUG_ON(mdblocks < EXT4_I(inode)->i_reserved_meta_blocks);
1816
1817 md_needed = mdblocks - EXT4_I(inode)->i_reserved_meta_blocks;
1818 total = md_needed + nrblocks;
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001819 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caod2a17632008-07-14 17:52:37 -04001820
Mingming Cao60e58e02009-01-22 18:13:05 +01001821 /*
1822 * Make quota reservation here to prevent quota overflow
1823 * later. Real quota accounting is done at pages writeout
1824 * time.
1825 */
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001826 if (vfs_dq_reserve_block(inode, total))
Mingming Cao60e58e02009-01-22 18:13:05 +01001827 return -EDQUOT;
Mingming Cao60e58e02009-01-22 18:13:05 +01001828
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04001829 if (ext4_claim_free_blocks(sbi, total)) {
Mingming Cao9f0ccfd2009-09-28 15:49:52 -04001830 vfs_dq_release_reservation_block(inode, total);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001831 if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
1832 yield();
1833 goto repeat;
1834 }
Mingming Caod2a17632008-07-14 17:52:37 -04001835 return -ENOSPC;
1836 }
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001837 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caod2a17632008-07-14 17:52:37 -04001838 EXT4_I(inode)->i_reserved_data_blocks += nrblocks;
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001839 EXT4_I(inode)->i_reserved_meta_blocks += md_needed;
Mingming Caod2a17632008-07-14 17:52:37 -04001840 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001841
Mingming Caod2a17632008-07-14 17:52:37 -04001842 return 0; /* success */
1843}
1844
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001845static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001846{
1847 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1848 int total, mdb, mdb_free, release;
1849
Mingming Caocd213222008-08-19 22:16:59 -04001850 if (!to_free)
1851 return; /* Nothing to release, exit */
1852
Mingming Caod2a17632008-07-14 17:52:37 -04001853 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001854
1855 if (!EXT4_I(inode)->i_reserved_data_blocks) {
1856 /*
1857 * if there is no reserved blocks, but we try to free some
1858 * then the counter is messed up somewhere.
1859 * but since this function is called from invalidate
1860 * page, it's harmless to return without any action
1861 */
1862 printk(KERN_INFO "ext4 delalloc try to release %d reserved "
1863 "blocks for inode %lu, but there is no reserved "
1864 "data blocks\n", to_free, inode->i_ino);
1865 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1866 return;
1867 }
1868
Mingming Caod2a17632008-07-14 17:52:37 -04001869 /* recalculate the number of metablocks still need to be reserved */
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001870 total = EXT4_I(inode)->i_reserved_data_blocks - to_free;
Mingming Caod2a17632008-07-14 17:52:37 -04001871 mdb = ext4_calc_metadata_amount(inode, total);
1872
1873 /* figure out how many metablocks to release */
1874 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1875 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1876
Mingming Caod2a17632008-07-14 17:52:37 -04001877 release = to_free + mdb_free;
1878
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001879 /* update fs dirty blocks counter for truncate case */
1880 percpu_counter_sub(&sbi->s_dirtyblocks_counter, release);
Mingming Caod2a17632008-07-14 17:52:37 -04001881
1882 /* update per-inode reservations */
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001883 BUG_ON(to_free > EXT4_I(inode)->i_reserved_data_blocks);
1884 EXT4_I(inode)->i_reserved_data_blocks -= to_free;
Mingming Caod2a17632008-07-14 17:52:37 -04001885
1886 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1887 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
Mingming Caod2a17632008-07-14 17:52:37 -04001888 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001889
1890 vfs_dq_release_reservation_block(inode, release);
Mingming Caod2a17632008-07-14 17:52:37 -04001891}
1892
1893static void ext4_da_page_release_reservation(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001894 unsigned long offset)
Mingming Caod2a17632008-07-14 17:52:37 -04001895{
1896 int to_release = 0;
1897 struct buffer_head *head, *bh;
1898 unsigned int curr_off = 0;
1899
1900 head = page_buffers(page);
1901 bh = head;
1902 do {
1903 unsigned int next_off = curr_off + bh->b_size;
1904
1905 if ((offset <= curr_off) && (buffer_delay(bh))) {
1906 to_release++;
1907 clear_buffer_delay(bh);
1908 }
1909 curr_off = next_off;
1910 } while ((bh = bh->b_this_page) != head);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001911 ext4_da_release_space(page->mapping->host, to_release);
Mingming Caod2a17632008-07-14 17:52:37 -04001912}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001913
1914/*
Alex Tomas64769242008-07-11 19:27:31 -04001915 * Delayed allocation stuff
1916 */
1917
Alex Tomas64769242008-07-11 19:27:31 -04001918/*
1919 * mpage_da_submit_io - walks through extent of pages and try to write
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001920 * them with writepage() call back
Alex Tomas64769242008-07-11 19:27:31 -04001921 *
1922 * @mpd->inode: inode
1923 * @mpd->first_page: first page of the extent
1924 * @mpd->next_page: page after the last page of the extent
Alex Tomas64769242008-07-11 19:27:31 -04001925 *
1926 * By the time mpage_da_submit_io() is called we expect all blocks
1927 * to be allocated. this may be wrong if allocation failed.
1928 *
1929 * As pages are already locked by write_cache_pages(), we can't use it
1930 */
1931static int mpage_da_submit_io(struct mpage_da_data *mpd)
1932{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001933 long pages_skipped;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001934 struct pagevec pvec;
1935 unsigned long index, end;
1936 int ret = 0, err, nr_pages, i;
1937 struct inode *inode = mpd->inode;
1938 struct address_space *mapping = inode->i_mapping;
Alex Tomas64769242008-07-11 19:27:31 -04001939
1940 BUG_ON(mpd->next_page <= mpd->first_page);
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001941 /*
1942 * We need to start from the first_page to the next_page - 1
1943 * to make sure we also write the mapped dirty buffer_heads.
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001944 * If we look at mpd->b_blocknr we would only be looking
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001945 * at the currently mapped buffer_heads.
1946 */
Alex Tomas64769242008-07-11 19:27:31 -04001947 index = mpd->first_page;
1948 end = mpd->next_page - 1;
1949
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001950 pagevec_init(&pvec, 0);
Alex Tomas64769242008-07-11 19:27:31 -04001951 while (index <= end) {
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001952 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
Alex Tomas64769242008-07-11 19:27:31 -04001953 if (nr_pages == 0)
1954 break;
1955 for (i = 0; i < nr_pages; i++) {
1956 struct page *page = pvec.pages[i];
1957
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001958 index = page->index;
1959 if (index > end)
1960 break;
1961 index++;
1962
1963 BUG_ON(!PageLocked(page));
1964 BUG_ON(PageWriteback(page));
1965
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001966 pages_skipped = mpd->wbc->pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001967 err = mapping->a_ops->writepage(page, mpd->wbc);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001968 if (!err && (pages_skipped == mpd->wbc->pages_skipped))
1969 /*
1970 * have successfully written the page
1971 * without skipping the same
1972 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001973 mpd->pages_written++;
Alex Tomas64769242008-07-11 19:27:31 -04001974 /*
1975 * In error case, we have to continue because
1976 * remaining pages are still locked
1977 * XXX: unlock and re-dirty them?
1978 */
1979 if (ret == 0)
1980 ret = err;
1981 }
1982 pagevec_release(&pvec);
1983 }
Alex Tomas64769242008-07-11 19:27:31 -04001984 return ret;
1985}
1986
1987/*
1988 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
1989 *
1990 * @mpd->inode - inode to walk through
1991 * @exbh->b_blocknr - first block on a disk
1992 * @exbh->b_size - amount of space in bytes
1993 * @logical - first logical block to start assignment with
1994 *
1995 * the function goes through all passed space and put actual disk
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001996 * block numbers into buffer heads, dropping BH_Delay and BH_Unwritten
Alex Tomas64769242008-07-11 19:27:31 -04001997 */
1998static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
1999 struct buffer_head *exbh)
2000{
2001 struct inode *inode = mpd->inode;
2002 struct address_space *mapping = inode->i_mapping;
2003 int blocks = exbh->b_size >> inode->i_blkbits;
2004 sector_t pblock = exbh->b_blocknr, cur_logical;
2005 struct buffer_head *head, *bh;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002006 pgoff_t index, end;
Alex Tomas64769242008-07-11 19:27:31 -04002007 struct pagevec pvec;
2008 int nr_pages, i;
2009
2010 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2011 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2012 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
2013
2014 pagevec_init(&pvec, 0);
2015
2016 while (index <= end) {
2017 /* XXX: optimize tail */
2018 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2019 if (nr_pages == 0)
2020 break;
2021 for (i = 0; i < nr_pages; i++) {
2022 struct page *page = pvec.pages[i];
2023
2024 index = page->index;
2025 if (index > end)
2026 break;
2027 index++;
2028
2029 BUG_ON(!PageLocked(page));
2030 BUG_ON(PageWriteback(page));
2031 BUG_ON(!page_has_buffers(page));
2032
2033 bh = page_buffers(page);
2034 head = bh;
2035
2036 /* skip blocks out of the range */
2037 do {
2038 if (cur_logical >= logical)
2039 break;
2040 cur_logical++;
2041 } while ((bh = bh->b_this_page) != head);
2042
2043 do {
2044 if (cur_logical >= logical + blocks)
2045 break;
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002046
2047 if (buffer_delay(bh) ||
2048 buffer_unwritten(bh)) {
2049
2050 BUG_ON(bh->b_bdev != inode->i_sb->s_bdev);
2051
2052 if (buffer_delay(bh)) {
2053 clear_buffer_delay(bh);
2054 bh->b_blocknr = pblock;
2055 } else {
2056 /*
2057 * unwritten already should have
2058 * blocknr assigned. Verify that
2059 */
2060 clear_buffer_unwritten(bh);
2061 BUG_ON(bh->b_blocknr != pblock);
2062 }
2063
Mingming Cao61628a32008-07-11 19:27:31 -04002064 } else if (buffer_mapped(bh))
Alex Tomas64769242008-07-11 19:27:31 -04002065 BUG_ON(bh->b_blocknr != pblock);
Alex Tomas64769242008-07-11 19:27:31 -04002066
2067 cur_logical++;
2068 pblock++;
2069 } while ((bh = bh->b_this_page) != head);
2070 }
2071 pagevec_release(&pvec);
2072 }
2073}
2074
2075
2076/*
2077 * __unmap_underlying_blocks - just a helper function to unmap
2078 * set of blocks described by @bh
2079 */
2080static inline void __unmap_underlying_blocks(struct inode *inode,
2081 struct buffer_head *bh)
2082{
2083 struct block_device *bdev = inode->i_sb->s_bdev;
2084 int blocks, i;
2085
2086 blocks = bh->b_size >> inode->i_blkbits;
2087 for (i = 0; i < blocks; i++)
2088 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
2089}
2090
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002091static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd,
2092 sector_t logical, long blk_cnt)
2093{
2094 int nr_pages, i;
2095 pgoff_t index, end;
2096 struct pagevec pvec;
2097 struct inode *inode = mpd->inode;
2098 struct address_space *mapping = inode->i_mapping;
2099
2100 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2101 end = (logical + blk_cnt - 1) >>
2102 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2103 while (index <= end) {
2104 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2105 if (nr_pages == 0)
2106 break;
2107 for (i = 0; i < nr_pages; i++) {
2108 struct page *page = pvec.pages[i];
2109 index = page->index;
2110 if (index > end)
2111 break;
2112 index++;
2113
2114 BUG_ON(!PageLocked(page));
2115 BUG_ON(PageWriteback(page));
2116 block_invalidatepage(page, 0);
2117 ClearPageUptodate(page);
2118 unlock_page(page);
2119 }
2120 }
2121 return;
2122}
2123
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002124static void ext4_print_free_blocks(struct inode *inode)
2125{
2126 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o16939182009-09-26 17:43:59 -04002127 printk(KERN_CRIT "Total free blocks count %lld\n",
2128 ext4_count_free_blocks(inode->i_sb));
2129 printk(KERN_CRIT "Free/Dirty block details\n");
2130 printk(KERN_CRIT "free_blocks=%lld\n",
2131 (long long) percpu_counter_sum(&sbi->s_freeblocks_counter));
2132 printk(KERN_CRIT "dirty_blocks=%lld\n",
2133 (long long) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2134 printk(KERN_CRIT "Block reservation details\n");
2135 printk(KERN_CRIT "i_reserved_data_blocks=%u\n",
2136 EXT4_I(inode)->i_reserved_data_blocks);
2137 printk(KERN_CRIT "i_reserved_meta_blocks=%u\n",
2138 EXT4_I(inode)->i_reserved_meta_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002139 return;
2140}
2141
Theodore Ts'ob920c752009-05-14 00:54:29 -04002142/*
Alex Tomas64769242008-07-11 19:27:31 -04002143 * mpage_da_map_blocks - go through given space
2144 *
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002145 * @mpd - bh describing space
Alex Tomas64769242008-07-11 19:27:31 -04002146 *
2147 * The function skips space we know is already mapped to disk blocks.
2148 *
Alex Tomas64769242008-07-11 19:27:31 -04002149 */
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002150static int mpage_da_map_blocks(struct mpage_da_data *mpd)
Alex Tomas64769242008-07-11 19:27:31 -04002151{
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002152 int err, blks, get_blocks_flags;
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002153 struct buffer_head new;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002154 sector_t next = mpd->b_blocknr;
2155 unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits;
2156 loff_t disksize = EXT4_I(mpd->inode)->i_disksize;
2157 handle_t *handle = NULL;
Alex Tomas64769242008-07-11 19:27:31 -04002158
2159 /*
2160 * We consider only non-mapped and non-allocated blocks
2161 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002162 if ((mpd->b_state & (1 << BH_Mapped)) &&
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002163 !(mpd->b_state & (1 << BH_Delay)) &&
2164 !(mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002165 return 0;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002166
2167 /*
2168 * If we didn't accumulate anything to write simply return
2169 */
2170 if (!mpd->b_size)
2171 return 0;
2172
2173 handle = ext4_journal_current_handle();
2174 BUG_ON(!handle);
2175
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002176 /*
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002177 * Call ext4_get_blocks() to allocate any delayed allocation
2178 * blocks, or to convert an uninitialized extent to be
2179 * initialized (in the case where we have written into
2180 * one or more preallocated blocks).
2181 *
2182 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to
2183 * indicate that we are on the delayed allocation path. This
2184 * affects functions in many different parts of the allocation
2185 * call path. This flag exists primarily because we don't
2186 * want to change *many* call functions, so ext4_get_blocks()
2187 * will set the magic i_delalloc_reserved_flag once the
2188 * inode's allocation semaphore is taken.
2189 *
2190 * If the blocks in questions were delalloc blocks, set
2191 * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting
2192 * variables are updated after the blocks have been allocated.
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002193 */
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002194 new.b_state = 0;
2195 get_blocks_flags = (EXT4_GET_BLOCKS_CREATE |
2196 EXT4_GET_BLOCKS_DELALLOC_RESERVE);
2197 if (mpd->b_state & (1 << BH_Delay))
2198 get_blocks_flags |= EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002199 blks = ext4_get_blocks(handle, mpd->inode, next, max_blocks,
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002200 &new, get_blocks_flags);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002201 if (blks < 0) {
2202 err = blks;
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002203 /*
2204 * If get block returns with error we simply
2205 * return. Later writepage will redirty the page and
2206 * writepages will find the dirty page again
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002207 */
2208 if (err == -EAGAIN)
2209 return 0;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002210
2211 if (err == -ENOSPC &&
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002212 ext4_count_free_blocks(mpd->inode->i_sb)) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002213 mpd->retval = err;
2214 return 0;
2215 }
2216
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002217 /*
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002218 * get block failure will cause us to loop in
2219 * writepages, because a_ops->writepage won't be able
2220 * to make progress. The page will be redirtied by
2221 * writepage and writepages will again try to write
2222 * the same.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002223 */
Theodore Ts'o16939182009-09-26 17:43:59 -04002224 ext4_msg(mpd->inode->i_sb, KERN_CRIT,
2225 "delayed block allocation failed for inode %lu at "
2226 "logical offset %llu with max blocks %zd with "
2227 "error %d\n", mpd->inode->i_ino,
2228 (unsigned long long) next,
2229 mpd->b_size >> mpd->inode->i_blkbits, err);
2230 printk(KERN_CRIT "This should not happen!! "
2231 "Data will be lost\n");
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002232 if (err == -ENOSPC) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002233 ext4_print_free_blocks(mpd->inode);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002234 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002235 /* invalidate all the pages */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002236 ext4_da_block_invalidatepages(mpd, next,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002237 mpd->b_size >> mpd->inode->i_blkbits);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002238 return err;
2239 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002240 BUG_ON(blks == 0);
2241
2242 new.b_size = (blks << mpd->inode->i_blkbits);
Alex Tomas64769242008-07-11 19:27:31 -04002243
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002244 if (buffer_new(&new))
2245 __unmap_underlying_blocks(mpd->inode, &new);
Alex Tomas64769242008-07-11 19:27:31 -04002246
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002247 /*
2248 * If blocks are delayed marked, we need to
2249 * put actual blocknr and drop delayed bit
2250 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002251 if ((mpd->b_state & (1 << BH_Delay)) ||
2252 (mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002253 mpage_put_bnr_to_bhs(mpd, next, &new);
2254
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002255 if (ext4_should_order_data(mpd->inode)) {
2256 err = ext4_jbd2_file_inode(handle, mpd->inode);
2257 if (err)
2258 return err;
2259 }
2260
2261 /*
Jan Kara03f5d8b2009-06-09 00:17:05 -04002262 * Update on-disk size along with block allocation.
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002263 */
2264 disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits;
2265 if (disksize > i_size_read(mpd->inode))
2266 disksize = i_size_read(mpd->inode);
2267 if (disksize > EXT4_I(mpd->inode)->i_disksize) {
2268 ext4_update_i_disksize(mpd->inode, disksize);
2269 return ext4_mark_inode_dirty(handle, mpd->inode);
2270 }
2271
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002272 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04002273}
2274
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04002275#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
2276 (1 << BH_Delay) | (1 << BH_Unwritten))
Alex Tomas64769242008-07-11 19:27:31 -04002277
2278/*
2279 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
2280 *
2281 * @mpd->lbh - extent of blocks
2282 * @logical - logical number of the block in the file
2283 * @bh - bh of the block (used to access block's state)
2284 *
2285 * the function is used to collect contig. blocks in same state
2286 */
2287static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002288 sector_t logical, size_t b_size,
2289 unsigned long b_state)
Alex Tomas64769242008-07-11 19:27:31 -04002290{
Alex Tomas64769242008-07-11 19:27:31 -04002291 sector_t next;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002292 int nrblocks = mpd->b_size >> mpd->inode->i_blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04002293
Mingming Cao525f4ed2008-08-19 22:15:58 -04002294 /* check if thereserved journal credits might overflow */
2295 if (!(EXT4_I(mpd->inode)->i_flags & EXT4_EXTENTS_FL)) {
2296 if (nrblocks >= EXT4_MAX_TRANS_DATA) {
2297 /*
2298 * With non-extent format we are limited by the journal
2299 * credit available. Total credit needed to insert
2300 * nrblocks contiguous blocks is dependent on the
2301 * nrblocks. So limit nrblocks.
2302 */
2303 goto flush_it;
2304 } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) >
2305 EXT4_MAX_TRANS_DATA) {
2306 /*
2307 * Adding the new buffer_head would make it cross the
2308 * allowed limit for which we have journal credit
2309 * reserved. So limit the new bh->b_size
2310 */
2311 b_size = (EXT4_MAX_TRANS_DATA - nrblocks) <<
2312 mpd->inode->i_blkbits;
2313 /* we will do mpage_da_submit_io in the next loop */
2314 }
2315 }
Alex Tomas64769242008-07-11 19:27:31 -04002316 /*
2317 * First block in the extent
2318 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002319 if (mpd->b_size == 0) {
2320 mpd->b_blocknr = logical;
2321 mpd->b_size = b_size;
2322 mpd->b_state = b_state & BH_FLAGS;
Alex Tomas64769242008-07-11 19:27:31 -04002323 return;
2324 }
2325
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002326 next = mpd->b_blocknr + nrblocks;
Alex Tomas64769242008-07-11 19:27:31 -04002327 /*
2328 * Can we merge the block to our big extent?
2329 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002330 if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) {
2331 mpd->b_size += b_size;
Alex Tomas64769242008-07-11 19:27:31 -04002332 return;
2333 }
2334
Mingming Cao525f4ed2008-08-19 22:15:58 -04002335flush_it:
Alex Tomas64769242008-07-11 19:27:31 -04002336 /*
2337 * We couldn't merge the block to our extent, so we
2338 * need to flush current extent and start new one
2339 */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002340 if (mpage_da_map_blocks(mpd) == 0)
2341 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002342 mpd->io_done = 1;
2343 return;
Alex Tomas64769242008-07-11 19:27:31 -04002344}
2345
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002346static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002347{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002348 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002349}
2350
Alex Tomas64769242008-07-11 19:27:31 -04002351/*
2352 * __mpage_da_writepage - finds extent of pages and blocks
2353 *
2354 * @page: page to consider
2355 * @wbc: not used, we just follow rules
2356 * @data: context
2357 *
2358 * The function finds extents of pages and scan them for all blocks.
2359 */
2360static int __mpage_da_writepage(struct page *page,
2361 struct writeback_control *wbc, void *data)
2362{
2363 struct mpage_da_data *mpd = data;
2364 struct inode *inode = mpd->inode;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002365 struct buffer_head *bh, *head;
Alex Tomas64769242008-07-11 19:27:31 -04002366 sector_t logical;
2367
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002368 if (mpd->io_done) {
2369 /*
2370 * Rest of the page in the page_vec
2371 * redirty then and skip then. We will
Anand Gadiyarfd589a82009-07-16 17:13:03 +02002372 * try to write them again after
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002373 * starting a new transaction
2374 */
2375 redirty_page_for_writepage(wbc, page);
2376 unlock_page(page);
2377 return MPAGE_DA_EXTENT_TAIL;
2378 }
Alex Tomas64769242008-07-11 19:27:31 -04002379 /*
2380 * Can we merge this page to current extent?
2381 */
2382 if (mpd->next_page != page->index) {
2383 /*
2384 * Nope, we can't. So, we map non-allocated blocks
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002385 * and start IO on them using writepage()
Alex Tomas64769242008-07-11 19:27:31 -04002386 */
2387 if (mpd->next_page != mpd->first_page) {
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002388 if (mpage_da_map_blocks(mpd) == 0)
2389 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002390 /*
2391 * skip rest of the page in the page_vec
2392 */
2393 mpd->io_done = 1;
2394 redirty_page_for_writepage(wbc, page);
2395 unlock_page(page);
2396 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002397 }
2398
2399 /*
2400 * Start next extent of pages ...
2401 */
2402 mpd->first_page = page->index;
2403
2404 /*
2405 * ... and blocks
2406 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002407 mpd->b_size = 0;
2408 mpd->b_state = 0;
2409 mpd->b_blocknr = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002410 }
2411
2412 mpd->next_page = page->index + 1;
2413 logical = (sector_t) page->index <<
2414 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2415
2416 if (!page_has_buffers(page)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002417 mpage_add_bh_to_extent(mpd, logical, PAGE_CACHE_SIZE,
2418 (1 << BH_Dirty) | (1 << BH_Uptodate));
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002419 if (mpd->io_done)
2420 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002421 } else {
2422 /*
2423 * Page with regular buffer heads, just add all dirty ones
2424 */
2425 head = page_buffers(page);
2426 bh = head;
2427 do {
2428 BUG_ON(buffer_locked(bh));
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002429 /*
2430 * We need to try to allocate
2431 * unmapped blocks in the same page.
2432 * Otherwise we won't make progress
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002433 * with the page in ext4_writepage
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002434 */
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002435 if (ext4_bh_delay_or_unwritten(NULL, bh)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002436 mpage_add_bh_to_extent(mpd, logical,
2437 bh->b_size,
2438 bh->b_state);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002439 if (mpd->io_done)
2440 return MPAGE_DA_EXTENT_TAIL;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002441 } else if (buffer_dirty(bh) && (buffer_mapped(bh))) {
2442 /*
2443 * mapped dirty buffer. We need to update
2444 * the b_state because we look at
2445 * b_state in mpage_da_map_blocks. We don't
2446 * update b_size because if we find an
2447 * unmapped buffer_head later we need to
2448 * use the b_state flag of that buffer_head.
2449 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002450 if (mpd->b_size == 0)
2451 mpd->b_state = bh->b_state & BH_FLAGS;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002452 }
Alex Tomas64769242008-07-11 19:27:31 -04002453 logical++;
2454 } while ((bh = bh->b_this_page) != head);
2455 }
2456
2457 return 0;
2458}
2459
2460/*
Theodore Ts'ob920c752009-05-14 00:54:29 -04002461 * This is a special get_blocks_t callback which is used by
2462 * ext4_da_write_begin(). It will either return mapped block or
2463 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002464 *
2465 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
2466 * We also have b_blocknr = -1 and b_bdev initialized properly
2467 *
2468 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
2469 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
2470 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04002471 */
2472static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
2473 struct buffer_head *bh_result, int create)
2474{
2475 int ret = 0;
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002476 sector_t invalid_block = ~((sector_t) 0xffff);
2477
2478 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
2479 invalid_block = ~0;
Alex Tomas64769242008-07-11 19:27:31 -04002480
2481 BUG_ON(create == 0);
2482 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2483
2484 /*
2485 * first, we need to know whether the block is allocated already
2486 * preallocated blocks are unmapped but should treated
2487 * the same as allocated blocks.
2488 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002489 ret = ext4_get_blocks(NULL, inode, iblock, 1, bh_result, 0);
Mingming Caod2a17632008-07-14 17:52:37 -04002490 if ((ret == 0) && !buffer_delay(bh_result)) {
2491 /* the block isn't (pre)allocated yet, let's reserve space */
Alex Tomas64769242008-07-11 19:27:31 -04002492 /*
2493 * XXX: __block_prepare_write() unmaps passed block,
2494 * is it OK?
2495 */
Mingming Caod2a17632008-07-14 17:52:37 -04002496 ret = ext4_da_reserve_space(inode, 1);
2497 if (ret)
2498 /* not enough space to reserve */
2499 return ret;
2500
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002501 map_bh(bh_result, inode->i_sb, invalid_block);
Alex Tomas64769242008-07-11 19:27:31 -04002502 set_buffer_new(bh_result);
2503 set_buffer_delay(bh_result);
2504 } else if (ret > 0) {
2505 bh_result->b_size = (ret << inode->i_blkbits);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002506 if (buffer_unwritten(bh_result)) {
2507 /* A delayed write to unwritten bh should
2508 * be marked new and mapped. Mapped ensures
2509 * that we don't do get_block multiple times
2510 * when we write to the same offset and new
2511 * ensures that we do proper zero out for
2512 * partial write.
2513 */
Aneesh Kumar K.V9c1ee182009-05-13 18:36:58 -04002514 set_buffer_new(bh_result);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002515 set_buffer_mapped(bh_result);
2516 }
Alex Tomas64769242008-07-11 19:27:31 -04002517 ret = 0;
2518 }
2519
2520 return ret;
2521}
Mingming Cao61628a32008-07-11 19:27:31 -04002522
Theodore Ts'ob920c752009-05-14 00:54:29 -04002523/*
2524 * This function is used as a standard get_block_t calback function
2525 * when there is no desire to allocate any blocks. It is used as a
2526 * callback function for block_prepare_write(), nobh_writepage(), and
2527 * block_write_full_page(). These functions should only try to map a
2528 * single block at a time.
2529 *
2530 * Since this function doesn't do block allocations even if the caller
2531 * requests it by passing in create=1, it is critically important that
2532 * any caller checks to make sure that any buffer heads are returned
2533 * by this function are either all already mapped or marked for
2534 * delayed allocation before calling nobh_writepage() or
2535 * block_write_full_page(). Otherwise, b_blocknr could be left
2536 * unitialized, and the page write functions will be taken by
2537 * surprise.
2538 */
2539static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002540 struct buffer_head *bh_result, int create)
2541{
2542 int ret = 0;
2543 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2544
Theodore Ts'oa2dc52b2009-05-12 13:51:29 -04002545 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2546
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002547 /*
2548 * we don't want to do block allocation in writepage
2549 * so call get_block_wrap with create = 0
2550 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002551 ret = ext4_get_blocks(NULL, inode, iblock, max_blocks, bh_result, 0);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002552 if (ret > 0) {
2553 bh_result->b_size = (ret << inode->i_blkbits);
2554 ret = 0;
2555 }
2556 return ret;
Mingming Cao61628a32008-07-11 19:27:31 -04002557}
2558
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002559static int bget_one(handle_t *handle, struct buffer_head *bh)
2560{
2561 get_bh(bh);
2562 return 0;
2563}
2564
2565static int bput_one(handle_t *handle, struct buffer_head *bh)
2566{
2567 put_bh(bh);
2568 return 0;
2569}
2570
2571static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002572 unsigned int len)
2573{
2574 struct address_space *mapping = page->mapping;
2575 struct inode *inode = mapping->host;
2576 struct buffer_head *page_bufs;
2577 handle_t *handle = NULL;
2578 int ret = 0;
2579 int err;
2580
2581 page_bufs = page_buffers(page);
2582 BUG_ON(!page_bufs);
2583 walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one);
2584 /* As soon as we unlock the page, it can go away, but we have
2585 * references to buffers so we are safe */
2586 unlock_page(page);
2587
2588 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
2589 if (IS_ERR(handle)) {
2590 ret = PTR_ERR(handle);
2591 goto out;
2592 }
2593
2594 ret = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2595 do_journal_get_write_access);
2596
2597 err = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2598 write_end_fn);
2599 if (ret == 0)
2600 ret = err;
2601 err = ext4_journal_stop(handle);
2602 if (!ret)
2603 ret = err;
2604
2605 walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one);
2606 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
2607out:
2608 return ret;
2609}
2610
Mingming Cao61628a32008-07-11 19:27:31 -04002611/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002612 * Note that we don't need to start a transaction unless we're journaling data
2613 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2614 * need to file the inode to the transaction's list in ordered mode because if
2615 * we are writing back data added by write(), the inode is already there and if
2616 * we are writing back data modified via mmap(), noone guarantees in which
2617 * transaction the data will hit the disk. In case we are journaling data, we
2618 * cannot start transaction directly because transaction start ranks above page
2619 * lock so we have to do some magic.
2620 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04002621 * This function can get called via...
2622 * - ext4_da_writepages after taking page lock (have journal handle)
2623 * - journal_submit_inode_data_buffers (no journal handle)
2624 * - shrink_page_list via pdflush (no journal handle)
2625 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002626 *
2627 * We don't do any block allocation in this function. If we have page with
2628 * multiple blocks we need to write those buffer_heads that are mapped. This
2629 * is important for mmaped based write. So if we do with blocksize 1K
2630 * truncate(f, 1024);
2631 * a = mmap(f, 0, 4096);
2632 * a[0] = 'a';
2633 * truncate(f, 4096);
2634 * we have in the page first buffer_head mapped via page_mkwrite call back
2635 * but other bufer_heads would be unmapped but dirty(dirty done via the
2636 * do_wp_page). So writepage should write the first block. If we modify
2637 * the mmap area beyond 1024 we will again get a page_fault and the
2638 * page_mkwrite callback will do the block allocation and mark the
2639 * buffer_heads mapped.
2640 *
2641 * We redirty the page if we have any buffer_heads that is either delay or
2642 * unwritten in the page.
2643 *
2644 * We can get recursively called as show below.
2645 *
2646 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2647 * ext4_writepage()
2648 *
2649 * But since we don't do any block allocation we should not deadlock.
2650 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04002651 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002652static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002653 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002654{
Alex Tomas64769242008-07-11 19:27:31 -04002655 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002656 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002657 unsigned int len;
Mingming Cao61628a32008-07-11 19:27:31 -04002658 struct buffer_head *page_bufs;
2659 struct inode *inode = page->mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002660
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002661 trace_ext4_writepage(inode, page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002662 size = i_size_read(inode);
2663 if (page->index == size >> PAGE_CACHE_SHIFT)
2664 len = size & ~PAGE_CACHE_MASK;
2665 else
2666 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002667
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002668 if (page_has_buffers(page)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002669 page_bufs = page_buffers(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002670 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002671 ext4_bh_delay_or_unwritten)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002672 /*
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002673 * We don't want to do block allocation
2674 * So redirty the page and return
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002675 * We may reach here when we do a journal commit
2676 * via journal_submit_inode_data_buffers.
2677 * If we don't have mapping block we just ignore
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002678 * them. We can also reach here via shrink_page_list
2679 */
2680 redirty_page_for_writepage(wbc, page);
2681 unlock_page(page);
2682 return 0;
2683 }
2684 } else {
2685 /*
2686 * The test for page_has_buffers() is subtle:
2687 * We know the page is dirty but it lost buffers. That means
2688 * that at some moment in time after write_begin()/write_end()
2689 * has been called all buffers have been clean and thus they
2690 * must have been written at least once. So they are all
2691 * mapped and we can happily proceed with mapping them
2692 * and writing the page.
2693 *
2694 * Try to initialize the buffer_heads and check whether
2695 * all are mapped and non delay. We don't want to
2696 * do block allocation here.
2697 */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002698 ret = block_prepare_write(page, 0, len,
Theodore Ts'ob920c752009-05-14 00:54:29 -04002699 noalloc_get_block_write);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002700 if (!ret) {
2701 page_bufs = page_buffers(page);
2702 /* check whether all are mapped and non delay */
2703 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002704 ext4_bh_delay_or_unwritten)) {
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002705 redirty_page_for_writepage(wbc, page);
2706 unlock_page(page);
2707 return 0;
2708 }
2709 } else {
2710 /*
2711 * We can't do block allocation here
2712 * so just redity the page and unlock
2713 * and return
Mingming Cao61628a32008-07-11 19:27:31 -04002714 */
Mingming Cao61628a32008-07-11 19:27:31 -04002715 redirty_page_for_writepage(wbc, page);
2716 unlock_page(page);
2717 return 0;
2718 }
Aneesh Kumar K.Ved9b3e32008-11-07 09:06:45 -05002719 /* now mark the buffer_heads as dirty and uptodate */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002720 block_commit_write(page, 0, len);
Alex Tomas64769242008-07-11 19:27:31 -04002721 }
2722
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002723 if (PageChecked(page) && ext4_should_journal_data(inode)) {
2724 /*
2725 * It's mmapped pagecache. Add buffers and journal it. There
2726 * doesn't seem much point in redirtying the page here.
2727 */
2728 ClearPageChecked(page);
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002729 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002730 }
2731
Alex Tomas64769242008-07-11 19:27:31 -04002732 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
Theodore Ts'ob920c752009-05-14 00:54:29 -04002733 ret = nobh_writepage(page, noalloc_get_block_write, wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002734 else
Theodore Ts'ob920c752009-05-14 00:54:29 -04002735 ret = block_write_full_page(page, noalloc_get_block_write,
2736 wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002737
Alex Tomas64769242008-07-11 19:27:31 -04002738 return ret;
2739}
2740
Mingming Cao61628a32008-07-11 19:27:31 -04002741/*
Mingming Cao525f4ed2008-08-19 22:15:58 -04002742 * This is called via ext4_da_writepages() to
2743 * calulate the total number of credits to reserve to fit
2744 * a single extent allocation into a single transaction,
2745 * ext4_da_writpeages() will loop calling this before
2746 * the block allocation.
Mingming Cao61628a32008-07-11 19:27:31 -04002747 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002748
2749static int ext4_da_writepages_trans_blocks(struct inode *inode)
2750{
2751 int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
2752
2753 /*
2754 * With non-extent format the journal credit needed to
2755 * insert nrblocks contiguous block is dependent on
2756 * number of contiguous block. So we will limit
2757 * number of contiguous block to a sane value
2758 */
Julia Lawall30c6e07a2009-11-15 15:30:58 -05002759 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) &&
Mingming Cao525f4ed2008-08-19 22:15:58 -04002760 (max_blocks > EXT4_MAX_TRANS_DATA))
2761 max_blocks = EXT4_MAX_TRANS_DATA;
2762
2763 return ext4_chunk_trans_blocks(inode, max_blocks);
2764}
Mingming Cao61628a32008-07-11 19:27:31 -04002765
Alex Tomas64769242008-07-11 19:27:31 -04002766static int ext4_da_writepages(struct address_space *mapping,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002767 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002768{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002769 pgoff_t index;
2770 int range_whole = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002771 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002772 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002773 struct inode *inode = mapping->host;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002774 int no_nrwrite_index_update;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002775 int pages_written = 0;
2776 long pages_skipped;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002777 unsigned int max_pages;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002778 int range_cyclic, cycled = 1, io_done = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002779 int needed_blocks, ret = 0;
2780 long desired_nr_to_write, nr_to_writebump = 0;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002781 loff_t range_start = wbc->range_start;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002782 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Mingming Cao61628a32008-07-11 19:27:31 -04002783
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002784 trace_ext4_da_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002785
Mingming Cao61628a32008-07-11 19:27:31 -04002786 /*
2787 * No pages to write? This is mainly a kludge to avoid starting
2788 * a transaction for special inodes like journal inode on last iput()
2789 * because that could violate lock ordering on umount
2790 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002791 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Mingming Cao61628a32008-07-11 19:27:31 -04002792 return 0;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002793
2794 /*
2795 * If the filesystem has aborted, it is read-only, so return
2796 * right away instead of dumping stack traces later on that
2797 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002798 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002799 * the latter could be true if the filesystem is mounted
2800 * read-only, and in that case, ext4_da_writepages should
2801 * *never* be called, so if that ever happens, we would want
2802 * the stack trace.
2803 */
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002804 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED))
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002805 return -EROFS;
2806
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002807 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2808 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002809
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002810 range_cyclic = wbc->range_cyclic;
2811 if (wbc->range_cyclic) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002812 index = mapping->writeback_index;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002813 if (index)
2814 cycled = 0;
2815 wbc->range_start = index << PAGE_CACHE_SHIFT;
2816 wbc->range_end = LLONG_MAX;
2817 wbc->range_cyclic = 0;
2818 } else
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002819 index = wbc->range_start >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002820
Theodore Ts'o55138e02009-09-29 13:31:31 -04002821 /*
2822 * This works around two forms of stupidity. The first is in
2823 * the writeback code, which caps the maximum number of pages
2824 * written to be 1024 pages. This is wrong on multiple
2825 * levels; different architectues have a different page size,
2826 * which changes the maximum amount of data which gets
2827 * written. Secondly, 4 megabytes is way too small. XFS
2828 * forces this value to be 16 megabytes by multiplying
2829 * nr_to_write parameter by four, and then relies on its
2830 * allocator to allocate larger extents to make them
2831 * contiguous. Unfortunately this brings us to the second
2832 * stupidity, which is that ext4's mballoc code only allocates
2833 * at most 2048 blocks. So we force contiguous writes up to
2834 * the number of dirty blocks in the inode, or
2835 * sbi->max_writeback_mb_bump whichever is smaller.
2836 */
2837 max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT);
2838 if (!range_cyclic && range_whole)
2839 desired_nr_to_write = wbc->nr_to_write * 8;
2840 else
2841 desired_nr_to_write = ext4_num_dirty_pages(inode, index,
2842 max_pages);
2843 if (desired_nr_to_write > max_pages)
2844 desired_nr_to_write = max_pages;
2845
2846 if (wbc->nr_to_write < desired_nr_to_write) {
2847 nr_to_writebump = desired_nr_to_write - wbc->nr_to_write;
2848 wbc->nr_to_write = desired_nr_to_write;
2849 }
2850
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002851 mpd.wbc = wbc;
2852 mpd.inode = mapping->host;
2853
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002854 /*
2855 * we don't want write_cache_pages to update
2856 * nr_to_write and writeback_index
2857 */
2858 no_nrwrite_index_update = wbc->no_nrwrite_index_update;
2859 wbc->no_nrwrite_index_update = 1;
2860 pages_skipped = wbc->pages_skipped;
2861
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002862retry:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002863 while (!ret && wbc->nr_to_write > 0) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002864
2865 /*
2866 * we insert one extent at a time. So we need
2867 * credit needed for single extent allocation.
2868 * journalled mode is currently not supported
2869 * by delalloc
2870 */
2871 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002872 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002873
Mingming Cao61628a32008-07-11 19:27:31 -04002874 /* start a new transaction*/
2875 handle = ext4_journal_start(inode, needed_blocks);
2876 if (IS_ERR(handle)) {
2877 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002878 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002879 "%ld pages, ino %lu; err %d\n", __func__,
2880 wbc->nr_to_write, inode->i_ino, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002881 goto out_writepages;
2882 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002883
2884 /*
2885 * Now call __mpage_da_writepage to find the next
2886 * contiguous region of logical blocks that need
2887 * blocks to be allocated by ext4. We don't actually
2888 * submit the blocks for I/O here, even though
2889 * write_cache_pages thinks it will, and will set the
2890 * pages as clean for write before calling
2891 * __mpage_da_writepage().
2892 */
2893 mpd.b_size = 0;
2894 mpd.b_state = 0;
2895 mpd.b_blocknr = 0;
2896 mpd.first_page = 0;
2897 mpd.next_page = 0;
2898 mpd.io_done = 0;
2899 mpd.pages_written = 0;
2900 mpd.retval = 0;
2901 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage,
2902 &mpd);
2903 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002904 * If we have a contiguous extent of pages and we
Theodore Ts'of63e6002009-02-23 16:42:39 -05002905 * haven't done the I/O yet, map the blocks and submit
2906 * them for I/O.
2907 */
2908 if (!mpd.io_done && mpd.next_page != mpd.first_page) {
2909 if (mpage_da_map_blocks(&mpd) == 0)
2910 mpage_da_submit_io(&mpd);
2911 mpd.io_done = 1;
2912 ret = MPAGE_DA_EXTENT_TAIL;
2913 }
Theodore Ts'ob3a3ca82009-08-31 23:13:11 -04002914 trace_ext4_da_write_pages(inode, &mpd);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002915 wbc->nr_to_write -= mpd.pages_written;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002916
Mingming Cao61628a32008-07-11 19:27:31 -04002917 ext4_journal_stop(handle);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002918
Eric Sandeen8f64b322009-02-26 00:57:35 -05002919 if ((mpd.retval == -ENOSPC) && sbi->s_journal) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002920 /* commit the transaction which would
2921 * free blocks released in the transaction
2922 * and try again
2923 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002924 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002925 wbc->pages_skipped = pages_skipped;
2926 ret = 0;
2927 } else if (ret == MPAGE_DA_EXTENT_TAIL) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002928 /*
2929 * got one extent now try with
2930 * rest of the pages
2931 */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002932 pages_written += mpd.pages_written;
2933 wbc->pages_skipped = pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002934 ret = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002935 io_done = 1;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002936 } else if (wbc->nr_to_write)
Mingming Cao61628a32008-07-11 19:27:31 -04002937 /*
2938 * There is no more writeout needed
2939 * or we requested for a noblocking writeout
2940 * and we found the device congested
2941 */
Mingming Cao61628a32008-07-11 19:27:31 -04002942 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002943 }
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002944 if (!io_done && !cycled) {
2945 cycled = 1;
2946 index = 0;
2947 wbc->range_start = index << PAGE_CACHE_SHIFT;
2948 wbc->range_end = mapping->writeback_index - 1;
2949 goto retry;
2950 }
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002951 if (pages_skipped != wbc->pages_skipped)
Theodore Ts'o16939182009-09-26 17:43:59 -04002952 ext4_msg(inode->i_sb, KERN_CRIT,
2953 "This should not happen leaving %s "
2954 "with nr_to_write = %ld ret = %d\n",
2955 __func__, wbc->nr_to_write, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002956
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002957 /* Update index */
2958 index += pages_written;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002959 wbc->range_cyclic = range_cyclic;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002960 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2961 /*
2962 * set the writeback_index so that range_cyclic
2963 * mode will write it back later
2964 */
2965 mapping->writeback_index = index;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002966
Mingming Cao61628a32008-07-11 19:27:31 -04002967out_writepages:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002968 if (!no_nrwrite_index_update)
2969 wbc->no_nrwrite_index_update = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002970 if (wbc->nr_to_write > nr_to_writebump)
2971 wbc->nr_to_write -= nr_to_writebump;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002972 wbc->range_start = range_start;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002973 trace_ext4_da_writepages_result(inode, wbc, ret, pages_written);
Mingming Cao61628a32008-07-11 19:27:31 -04002974 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002975}
2976
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002977#define FALL_BACK_TO_NONDELALLOC 1
2978static int ext4_nonda_switch(struct super_block *sb)
2979{
2980 s64 free_blocks, dirty_blocks;
2981 struct ext4_sb_info *sbi = EXT4_SB(sb);
2982
2983 /*
2984 * switch to non delalloc mode if we are running low
2985 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002986 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002987 * accumulated on each CPU without updating global counters
2988 * Delalloc need an accurate free block accounting. So switch
2989 * to non delalloc when we are near to error range.
2990 */
2991 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
2992 dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyblocks_counter);
2993 if (2 * free_blocks < 3 * dirty_blocks ||
2994 free_blocks < (dirty_blocks + EXT4_FREEBLOCKS_WATERMARK)) {
2995 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002996 * free block count is less than 150% of dirty blocks
2997 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002998 */
2999 return 1;
3000 }
Eric Sandeenc8afb442009-12-23 07:58:12 -05003001 /*
3002 * Even if we don't switch but are nearing capacity,
3003 * start pushing delalloc when 1/2 of free blocks are dirty.
3004 */
3005 if (free_blocks < 2 * dirty_blocks)
3006 writeback_inodes_sb_if_idle(sb);
3007
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003008 return 0;
3009}
3010
Alex Tomas64769242008-07-11 19:27:31 -04003011static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003012 loff_t pos, unsigned len, unsigned flags,
3013 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003014{
Mingming Caod2a17632008-07-14 17:52:37 -04003015 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04003016 struct page *page;
3017 pgoff_t index;
3018 unsigned from, to;
3019 struct inode *inode = mapping->host;
3020 handle_t *handle;
3021
3022 index = pos >> PAGE_CACHE_SHIFT;
3023 from = pos & (PAGE_CACHE_SIZE - 1);
3024 to = from + len;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003025
3026 if (ext4_nonda_switch(inode->i_sb)) {
3027 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
3028 return ext4_write_begin(file, mapping, pos,
3029 len, flags, pagep, fsdata);
3030 }
3031 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003032 trace_ext4_da_write_begin(inode, pos, len, flags);
Mingming Caod2a17632008-07-14 17:52:37 -04003033retry:
Alex Tomas64769242008-07-11 19:27:31 -04003034 /*
3035 * With delayed allocation, we don't log the i_disksize update
3036 * if there is delayed block allocation. But we still need
3037 * to journalling the i_disksize update if writes to the end
3038 * of file which has an already mapped buffer.
3039 */
3040 handle = ext4_journal_start(inode, 1);
3041 if (IS_ERR(handle)) {
3042 ret = PTR_ERR(handle);
3043 goto out;
3044 }
Jan Karaebd36102009-02-22 21:09:59 -05003045 /* We cannot recurse into the filesystem as the transaction is already
3046 * started */
3047 flags |= AOP_FLAG_NOFS;
Alex Tomas64769242008-07-11 19:27:31 -04003048
Nick Piggin54566b22009-01-04 12:00:53 -08003049 page = grab_cache_page_write_begin(mapping, index, flags);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003050 if (!page) {
3051 ext4_journal_stop(handle);
3052 ret = -ENOMEM;
3053 goto out;
3054 }
Alex Tomas64769242008-07-11 19:27:31 -04003055 *pagep = page;
3056
3057 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Theodore Ts'ob920c752009-05-14 00:54:29 -04003058 ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04003059 if (ret < 0) {
3060 unlock_page(page);
3061 ext4_journal_stop(handle);
3062 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003063 /*
3064 * block_write_begin may have instantiated a few blocks
3065 * outside i_size. Trim these off again. Don't need
3066 * i_size_read because we hold i_mutex.
3067 */
3068 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003069 ext4_truncate_failed_write(inode);
Alex Tomas64769242008-07-11 19:27:31 -04003070 }
3071
Mingming Caod2a17632008-07-14 17:52:37 -04003072 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3073 goto retry;
Alex Tomas64769242008-07-11 19:27:31 -04003074out:
3075 return ret;
3076}
3077
Mingming Cao632eaea2008-07-11 19:27:31 -04003078/*
3079 * Check if we should update i_disksize
3080 * when write to the end of file but not require block allocation
3081 */
3082static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003083 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003084{
3085 struct buffer_head *bh;
3086 struct inode *inode = page->mapping->host;
3087 unsigned int idx;
3088 int i;
3089
3090 bh = page_buffers(page);
3091 idx = offset >> inode->i_blkbits;
3092
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003093 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003094 bh = bh->b_this_page;
3095
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003096 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003097 return 0;
3098 return 1;
3099}
3100
Alex Tomas64769242008-07-11 19:27:31 -04003101static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003102 struct address_space *mapping,
3103 loff_t pos, unsigned len, unsigned copied,
3104 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003105{
3106 struct inode *inode = mapping->host;
3107 int ret = 0, ret2;
3108 handle_t *handle = ext4_journal_current_handle();
3109 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003110 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003111 int write_mode = (int)(unsigned long)fsdata;
3112
3113 if (write_mode == FALL_BACK_TO_NONDELALLOC) {
3114 if (ext4_should_order_data(inode)) {
3115 return ext4_ordered_write_end(file, mapping, pos,
3116 len, copied, page, fsdata);
3117 } else if (ext4_should_writeback_data(inode)) {
3118 return ext4_writeback_write_end(file, mapping, pos,
3119 len, copied, page, fsdata);
3120 } else {
3121 BUG();
3122 }
3123 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003124
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003125 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04003126 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003127 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003128
3129 /*
3130 * generic_write_end() will run mark_inode_dirty() if i_size
3131 * changes. So let's piggyback the i_disksize mark_inode_dirty
3132 * into that.
3133 */
3134
3135 new_i_size = pos + copied;
Mingming Cao632eaea2008-07-11 19:27:31 -04003136 if (new_i_size > EXT4_I(inode)->i_disksize) {
3137 if (ext4_da_should_update_i_disksize(page, end)) {
3138 down_write(&EXT4_I(inode)->i_data_sem);
3139 if (new_i_size > EXT4_I(inode)->i_disksize) {
3140 /*
3141 * Updating i_disksize when extending file
3142 * without needing block allocation
3143 */
3144 if (ext4_should_order_data(inode))
3145 ret = ext4_jbd2_file_inode(handle,
3146 inode);
Alex Tomas64769242008-07-11 19:27:31 -04003147
Mingming Cao632eaea2008-07-11 19:27:31 -04003148 EXT4_I(inode)->i_disksize = new_i_size;
3149 }
3150 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003151 /* We need to mark inode dirty even if
3152 * new_i_size is less that inode->i_size
3153 * bu greater than i_disksize.(hint delalloc)
3154 */
3155 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003156 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003157 }
Alex Tomas64769242008-07-11 19:27:31 -04003158 ret2 = generic_write_end(file, mapping, pos, len, copied,
3159 page, fsdata);
3160 copied = ret2;
3161 if (ret2 < 0)
3162 ret = ret2;
3163 ret2 = ext4_journal_stop(handle);
3164 if (!ret)
3165 ret = ret2;
3166
3167 return ret ? ret : copied;
3168}
3169
3170static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
3171{
Alex Tomas64769242008-07-11 19:27:31 -04003172 /*
3173 * Drop reserved blocks
3174 */
3175 BUG_ON(!PageLocked(page));
3176 if (!page_has_buffers(page))
3177 goto out;
3178
Mingming Caod2a17632008-07-14 17:52:37 -04003179 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04003180
3181out:
3182 ext4_invalidatepage(page, offset);
3183
3184 return;
3185}
3186
Theodore Ts'occd25062009-02-26 01:04:07 -05003187/*
3188 * Force all delayed allocation blocks to be allocated for a given inode.
3189 */
3190int ext4_alloc_da_blocks(struct inode *inode)
3191{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003192 trace_ext4_alloc_da_blocks(inode);
3193
Theodore Ts'occd25062009-02-26 01:04:07 -05003194 if (!EXT4_I(inode)->i_reserved_data_blocks &&
3195 !EXT4_I(inode)->i_reserved_meta_blocks)
3196 return 0;
3197
3198 /*
3199 * We do something simple for now. The filemap_flush() will
3200 * also start triggering a write of the data blocks, which is
3201 * not strictly speaking necessary (and for users of
3202 * laptop_mode, not even desirable). However, to do otherwise
3203 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003204 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003205 * ext4_da_writepages() ->
3206 * write_cache_pages() ---> (via passed in callback function)
3207 * __mpage_da_writepage() -->
3208 * mpage_add_bh_to_extent()
3209 * mpage_da_map_blocks()
3210 *
3211 * The problem is that write_cache_pages(), located in
3212 * mm/page-writeback.c, marks pages clean in preparation for
3213 * doing I/O, which is not desirable if we're not planning on
3214 * doing I/O at all.
3215 *
3216 * We could call write_cache_pages(), and then redirty all of
3217 * the pages by calling redirty_page_for_writeback() but that
3218 * would be ugly in the extreme. So instead we would need to
3219 * replicate parts of the code in the above functions,
3220 * simplifying them becuase we wouldn't actually intend to
3221 * write out the pages, but rather only collect contiguous
3222 * logical block extents, call the multi-block allocator, and
3223 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003224 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003225 * For now, though, we'll cheat by calling filemap_flush(),
3226 * which will map the blocks, and start the I/O, but not
3227 * actually wait for the I/O to complete.
3228 */
3229 return filemap_flush(inode->i_mapping);
3230}
Alex Tomas64769242008-07-11 19:27:31 -04003231
3232/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003233 * bmap() is special. It gets used by applications such as lilo and by
3234 * the swapper to find the on-disk block of a specific piece of data.
3235 *
3236 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003237 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003238 * filesystem and enables swap, then they may get a nasty shock when the
3239 * data getting swapped to that swapfile suddenly gets overwritten by
3240 * the original zero's written out previously to the journal and
3241 * awaiting writeback in the kernel's buffer cache.
3242 *
3243 * So, if we see any bmap calls here on a modified, data-journaled file,
3244 * take extra steps to flush any blocks which might be in the cache.
3245 */
Mingming Cao617ba132006-10-11 01:20:53 -07003246static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003247{
3248 struct inode *inode = mapping->host;
3249 journal_t *journal;
3250 int err;
3251
Alex Tomas64769242008-07-11 19:27:31 -04003252 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3253 test_opt(inode->i_sb, DELALLOC)) {
3254 /*
3255 * With delalloc we want to sync the file
3256 * so that we can make sure we allocate
3257 * blocks for file
3258 */
3259 filemap_write_and_wait(mapping);
3260 }
3261
Frank Mayhar03901312009-01-07 00:06:22 -05003262 if (EXT4_JOURNAL(inode) && EXT4_I(inode)->i_state & EXT4_STATE_JDATA) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003263 /*
3264 * This is a REALLY heavyweight approach, but the use of
3265 * bmap on dirty files is expected to be extremely rare:
3266 * only if we run lilo or swapon on a freshly made file
3267 * do we expect this to happen.
3268 *
3269 * (bmap requires CAP_SYS_RAWIO so this does not
3270 * represent an unprivileged user DOS attack --- we'd be
3271 * in trouble if mortal users could trigger this path at
3272 * will.)
3273 *
Mingming Cao617ba132006-10-11 01:20:53 -07003274 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275 * regular files. If somebody wants to bmap a directory
3276 * or symlink and gets confused because the buffer
3277 * hasn't yet been flushed to disk, they deserve
3278 * everything they get.
3279 */
3280
Mingming Cao617ba132006-10-11 01:20:53 -07003281 EXT4_I(inode)->i_state &= ~EXT4_STATE_JDATA;
3282 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003283 jbd2_journal_lock_updates(journal);
3284 err = jbd2_journal_flush(journal);
3285 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003286
3287 if (err)
3288 return 0;
3289 }
3290
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003291 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003292}
3293
Mingming Cao617ba132006-10-11 01:20:53 -07003294static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003295{
Mingming Cao617ba132006-10-11 01:20:53 -07003296 return mpage_readpage(page, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003297}
3298
3299static int
Mingming Cao617ba132006-10-11 01:20:53 -07003300ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003301 struct list_head *pages, unsigned nr_pages)
3302{
Mingming Cao617ba132006-10-11 01:20:53 -07003303 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003304}
3305
Mingming Cao617ba132006-10-11 01:20:53 -07003306static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003307{
Mingming Cao617ba132006-10-11 01:20:53 -07003308 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003309
3310 /*
3311 * If it's a full truncate we just forget about the pending dirtying
3312 */
3313 if (offset == 0)
3314 ClearPageChecked(page);
3315
Frank Mayhar03901312009-01-07 00:06:22 -05003316 if (journal)
3317 jbd2_journal_invalidatepage(journal, page, offset);
3318 else
3319 block_invalidatepage(page, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003320}
3321
Mingming Cao617ba132006-10-11 01:20:53 -07003322static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003323{
Mingming Cao617ba132006-10-11 01:20:53 -07003324 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003325
3326 WARN_ON(PageChecked(page));
3327 if (!page_has_buffers(page))
3328 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003329 if (journal)
3330 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3331 else
3332 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003333}
3334
3335/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003336 * O_DIRECT for ext3 (or indirect map) based files
3337 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003338 * If the O_DIRECT write will extend the file then add this inode to the
3339 * orphan list. So recovery will truncate it back to the original size
3340 * if the machine crashes during the write.
3341 *
3342 * If the O_DIRECT write is intantiating holes inside i_size and the machine
Jan Kara7fb54092008-02-10 01:08:38 -05003343 * crashes then stale disk data _may_ be exposed inside the file. But current
3344 * VFS code falls back into buffered path in that case so we are safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003345 */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003346static ssize_t ext4_ind_direct_IO(int rw, struct kiocb *iocb,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003347 const struct iovec *iov, loff_t offset,
3348 unsigned long nr_segs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003349{
3350 struct file *file = iocb->ki_filp;
3351 struct inode *inode = file->f_mapping->host;
Mingming Cao617ba132006-10-11 01:20:53 -07003352 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003353 handle_t *handle;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003354 ssize_t ret;
3355 int orphan = 0;
3356 size_t count = iov_length(iov, nr_segs);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003357 int retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003358
3359 if (rw == WRITE) {
3360 loff_t final_size = offset + count;
3361
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003362 if (final_size > inode->i_size) {
Jan Kara7fb54092008-02-10 01:08:38 -05003363 /* Credits for sb + inode write */
3364 handle = ext4_journal_start(inode, 2);
3365 if (IS_ERR(handle)) {
3366 ret = PTR_ERR(handle);
3367 goto out;
3368 }
Mingming Cao617ba132006-10-11 01:20:53 -07003369 ret = ext4_orphan_add(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003370 if (ret) {
3371 ext4_journal_stop(handle);
3372 goto out;
3373 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003374 orphan = 1;
3375 ei->i_disksize = inode->i_size;
Jan Kara7fb54092008-02-10 01:08:38 -05003376 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003377 }
3378 }
3379
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003380retry:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003381 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3382 offset, nr_segs,
Mingming Cao617ba132006-10-11 01:20:53 -07003383 ext4_get_block, NULL);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003384 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3385 goto retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003386
Jan Kara7fb54092008-02-10 01:08:38 -05003387 if (orphan) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003388 int err;
3389
Jan Kara7fb54092008-02-10 01:08:38 -05003390 /* Credits for sb + inode write */
3391 handle = ext4_journal_start(inode, 2);
3392 if (IS_ERR(handle)) {
3393 /* This is really bad luck. We've written the data
3394 * but cannot extend i_size. Bail out and pretend
3395 * the write failed... */
3396 ret = PTR_ERR(handle);
3397 goto out;
3398 }
3399 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07003400 ext4_orphan_del(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003401 if (ret > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003402 loff_t end = offset + ret;
3403 if (end > inode->i_size) {
3404 ei->i_disksize = end;
3405 i_size_write(inode, end);
3406 /*
3407 * We're going to return a positive `ret'
3408 * here due to non-zero-length I/O, so there's
3409 * no way of reporting error returns from
Mingming Cao617ba132006-10-11 01:20:53 -07003410 * ext4_mark_inode_dirty() to userspace. So
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003411 * ignore it.
3412 */
Mingming Cao617ba132006-10-11 01:20:53 -07003413 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003414 }
3415 }
Mingming Cao617ba132006-10-11 01:20:53 -07003416 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003417 if (ret == 0)
3418 ret = err;
3419 }
3420out:
3421 return ret;
3422}
3423
Mingming Cao4c0425f2009-09-28 15:48:41 -04003424static int ext4_get_block_dio_write(struct inode *inode, sector_t iblock,
3425 struct buffer_head *bh_result, int create)
3426{
3427 handle_t *handle = NULL;
3428 int ret = 0;
3429 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
3430 int dio_credits;
3431
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003432 ext4_debug("ext4_get_block_dio_write: inode %lu, create flag %d\n",
3433 inode->i_ino, create);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003434 /*
3435 * DIO VFS code passes create = 0 flag for write to
3436 * the middle of file. It does this to avoid block
3437 * allocation for holes, to prevent expose stale data
3438 * out when there is parallel buffered read (which does
3439 * not hold the i_mutex lock) while direct IO write has
3440 * not completed. DIO request on holes finally falls back
3441 * to buffered IO for this reason.
3442 *
3443 * For ext4 extent based file, since we support fallocate,
3444 * new allocated extent as uninitialized, for holes, we
3445 * could fallocate blocks for holes, thus parallel
3446 * buffered IO read will zero out the page when read on
3447 * a hole while parallel DIO write to the hole has not completed.
3448 *
3449 * when we come here, we know it's a direct IO write to
3450 * to the middle of file (<i_size)
3451 * so it's safe to override the create flag from VFS.
3452 */
3453 create = EXT4_GET_BLOCKS_DIO_CREATE_EXT;
3454
3455 if (max_blocks > DIO_MAX_BLOCKS)
3456 max_blocks = DIO_MAX_BLOCKS;
3457 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
3458 handle = ext4_journal_start(inode, dio_credits);
3459 if (IS_ERR(handle)) {
3460 ret = PTR_ERR(handle);
3461 goto out;
3462 }
3463 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
3464 create);
3465 if (ret > 0) {
3466 bh_result->b_size = (ret << inode->i_blkbits);
3467 ret = 0;
3468 }
3469 ext4_journal_stop(handle);
3470out:
3471 return ret;
3472}
3473
Mingming Cao4c0425f2009-09-28 15:48:41 -04003474static void ext4_free_io_end(ext4_io_end_t *io)
3475{
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003476 BUG_ON(!io);
3477 iput(io->inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003478 kfree(io);
3479}
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003480static void dump_aio_dio_list(struct inode * inode)
3481{
3482#ifdef EXT4_DEBUG
3483 struct list_head *cur, *before, *after;
3484 ext4_io_end_t *io, *io0, *io1;
3485
3486 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3487 ext4_debug("inode %lu aio dio list is empty\n", inode->i_ino);
3488 return;
3489 }
3490
3491 ext4_debug("Dump inode %lu aio_dio_completed_IO list \n", inode->i_ino);
3492 list_for_each_entry(io, &EXT4_I(inode)->i_aio_dio_complete_list, list){
3493 cur = &io->list;
3494 before = cur->prev;
3495 io0 = container_of(before, ext4_io_end_t, list);
3496 after = cur->next;
3497 io1 = container_of(after, ext4_io_end_t, list);
3498
3499 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
3500 io, inode->i_ino, io0, io1);
3501 }
3502#endif
3503}
Mingming Cao4c0425f2009-09-28 15:48:41 -04003504
3505/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003506 * check a range of space and convert unwritten extents to written.
3507 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003508static int ext4_end_aio_dio_nolock(ext4_io_end_t *io)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003509{
Mingming Cao4c0425f2009-09-28 15:48:41 -04003510 struct inode *inode = io->inode;
3511 loff_t offset = io->offset;
3512 size_t size = io->size;
3513 int ret = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003514
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003515 ext4_debug("end_aio_dio_onlock: io 0x%p from inode %lu,list->next 0x%p,"
3516 "list->prev 0x%p\n",
3517 io, inode->i_ino, io->list.next, io->list.prev);
3518
3519 if (list_empty(&io->list))
3520 return ret;
3521
3522 if (io->flag != DIO_AIO_UNWRITTEN)
3523 return ret;
3524
Mingming Cao4c0425f2009-09-28 15:48:41 -04003525 if (offset + size <= i_size_read(inode))
3526 ret = ext4_convert_unwritten_extents(inode, offset, size);
3527
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003528 if (ret < 0) {
Mingming Cao4c0425f2009-09-28 15:48:41 -04003529 printk(KERN_EMERG "%s: failed to convert unwritten"
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003530 "extents to written extents, error is %d"
3531 " io is still on inode %lu aio dio list\n",
3532 __func__, ret, inode->i_ino);
3533 return ret;
3534 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003535
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003536 /* clear the DIO AIO unwritten flag */
3537 io->flag = 0;
3538 return ret;
3539}
3540/*
3541 * work on completed aio dio IO, to convert unwritten extents to extents
3542 */
3543static void ext4_end_aio_dio_work(struct work_struct *work)
3544{
3545 ext4_io_end_t *io = container_of(work, ext4_io_end_t, work);
3546 struct inode *inode = io->inode;
3547 int ret = 0;
3548
3549 mutex_lock(&inode->i_mutex);
3550 ret = ext4_end_aio_dio_nolock(io);
3551 if (ret >= 0) {
3552 if (!list_empty(&io->list))
3553 list_del_init(&io->list);
3554 ext4_free_io_end(io);
3555 }
3556 mutex_unlock(&inode->i_mutex);
3557}
3558/*
3559 * This function is called from ext4_sync_file().
3560 *
3561 * When AIO DIO IO is completed, the work to convert unwritten
3562 * extents to written is queued on workqueue but may not get immediately
3563 * scheduled. When fsync is called, we need to ensure the
3564 * conversion is complete before fsync returns.
3565 * The inode keeps track of a list of completed AIO from DIO path
3566 * that might needs to do the conversion. This function walks through
3567 * the list and convert the related unwritten extents to written.
3568 */
3569int flush_aio_dio_completed_IO(struct inode *inode)
3570{
3571 ext4_io_end_t *io;
3572 int ret = 0;
3573 int ret2 = 0;
3574
3575 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list))
3576 return ret;
3577
3578 dump_aio_dio_list(inode);
3579 while (!list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3580 io = list_entry(EXT4_I(inode)->i_aio_dio_complete_list.next,
3581 ext4_io_end_t, list);
3582 /*
3583 * Calling ext4_end_aio_dio_nolock() to convert completed
3584 * IO to written.
3585 *
3586 * When ext4_sync_file() is called, run_queue() may already
3587 * about to flush the work corresponding to this io structure.
3588 * It will be upset if it founds the io structure related
3589 * to the work-to-be schedule is freed.
3590 *
3591 * Thus we need to keep the io structure still valid here after
3592 * convertion finished. The io structure has a flag to
3593 * avoid double converting from both fsync and background work
3594 * queue work.
3595 */
3596 ret = ext4_end_aio_dio_nolock(io);
3597 if (ret < 0)
3598 ret2 = ret;
3599 else
3600 list_del_init(&io->list);
3601 }
3602 return (ret2 < 0) ? ret2 : 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003603}
3604
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003605static ext4_io_end_t *ext4_init_io_end (struct inode *inode)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003606{
3607 ext4_io_end_t *io = NULL;
3608
3609 io = kmalloc(sizeof(*io), GFP_NOFS);
3610
3611 if (io) {
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003612 igrab(inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003613 io->inode = inode;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003614 io->flag = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003615 io->offset = 0;
3616 io->size = 0;
3617 io->error = 0;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003618 INIT_WORK(&io->work, ext4_end_aio_dio_work);
3619 INIT_LIST_HEAD(&io->list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003620 }
3621
3622 return io;
3623}
3624
3625static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
3626 ssize_t size, void *private)
3627{
3628 ext4_io_end_t *io_end = iocb->private;
3629 struct workqueue_struct *wq;
3630
Mingming4b70df12009-11-03 14:44:54 -05003631 /* if not async direct IO or dio with 0 bytes write, just return */
3632 if (!io_end || !size)
3633 return;
3634
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003635 ext_debug("ext4_end_io_dio(): io_end 0x%p"
3636 "for inode %lu, iocb 0x%p, offset %llu, size %llu\n",
3637 iocb->private, io_end->inode->i_ino, iocb, offset,
3638 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003639
3640 /* if not aio dio with unwritten extents, just free io and return */
3641 if (io_end->flag != DIO_AIO_UNWRITTEN){
3642 ext4_free_io_end(io_end);
3643 iocb->private = NULL;
3644 return;
3645 }
3646
Mingming Cao4c0425f2009-09-28 15:48:41 -04003647 io_end->offset = offset;
3648 io_end->size = size;
3649 wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
3650
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003651 /* queue the work to convert unwritten extents to written */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003652 queue_work(wq, &io_end->work);
3653
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003654 /* Add the io_end to per-inode completed aio dio list*/
3655 list_add_tail(&io_end->list,
3656 &EXT4_I(io_end->inode)->i_aio_dio_complete_list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003657 iocb->private = NULL;
3658}
3659/*
3660 * For ext4 extent files, ext4 will do direct-io write to holes,
3661 * preallocated extents, and those write extend the file, no need to
3662 * fall back to buffered IO.
3663 *
3664 * For holes, we fallocate those blocks, mark them as unintialized
3665 * If those blocks were preallocated, we mark sure they are splited, but
3666 * still keep the range to write as unintialized.
3667 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003668 * The unwrritten extents will be converted to written when DIO is completed.
3669 * For async direct IO, since the IO may still pending when return, we
3670 * set up an end_io call back function, which will do the convertion
3671 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003672 *
3673 * If the O_DIRECT write will extend the file then add this inode to the
3674 * orphan list. So recovery will truncate it back to the original size
3675 * if the machine crashes during the write.
3676 *
3677 */
3678static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
3679 const struct iovec *iov, loff_t offset,
3680 unsigned long nr_segs)
3681{
3682 struct file *file = iocb->ki_filp;
3683 struct inode *inode = file->f_mapping->host;
3684 ssize_t ret;
3685 size_t count = iov_length(iov, nr_segs);
3686
3687 loff_t final_size = offset + count;
3688 if (rw == WRITE && final_size <= inode->i_size) {
3689 /*
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003690 * We could direct write to holes and fallocate.
3691 *
3692 * Allocated blocks to fill the hole are marked as uninitialized
Mingming Cao4c0425f2009-09-28 15:48:41 -04003693 * to prevent paralel buffered read to expose the stale data
3694 * before DIO complete the data IO.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003695 *
3696 * As to previously fallocated extents, ext4 get_block
Mingming Cao4c0425f2009-09-28 15:48:41 -04003697 * will just simply mark the buffer mapped but still
3698 * keep the extents uninitialized.
3699 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003700 * for non AIO case, we will convert those unwritten extents
3701 * to written after return back from blockdev_direct_IO.
3702 *
3703 * for async DIO, the conversion needs to be defered when
3704 * the IO is completed. The ext4 end_io callback function
3705 * will be called to take care of the conversion work.
3706 * Here for async case, we allocate an io_end structure to
3707 * hook to the iocb.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003708 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003709 iocb->private = NULL;
3710 EXT4_I(inode)->cur_aio_dio = NULL;
3711 if (!is_sync_kiocb(iocb)) {
3712 iocb->private = ext4_init_io_end(inode);
3713 if (!iocb->private)
3714 return -ENOMEM;
3715 /*
3716 * we save the io structure for current async
3717 * direct IO, so that later ext4_get_blocks()
3718 * could flag the io structure whether there
3719 * is a unwritten extents needs to be converted
3720 * when IO is completed.
3721 */
3722 EXT4_I(inode)->cur_aio_dio = iocb->private;
3723 }
3724
Mingming Cao4c0425f2009-09-28 15:48:41 -04003725 ret = blockdev_direct_IO(rw, iocb, inode,
3726 inode->i_sb->s_bdev, iov,
3727 offset, nr_segs,
3728 ext4_get_block_dio_write,
3729 ext4_end_io_dio);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003730 if (iocb->private)
3731 EXT4_I(inode)->cur_aio_dio = NULL;
3732 /*
3733 * The io_end structure takes a reference to the inode,
3734 * that structure needs to be destroyed and the
3735 * reference to the inode need to be dropped, when IO is
3736 * complete, even with 0 byte write, or failed.
3737 *
3738 * In the successful AIO DIO case, the io_end structure will be
3739 * desctroyed and the reference to the inode will be dropped
3740 * after the end_io call back function is called.
3741 *
3742 * In the case there is 0 byte write, or error case, since
3743 * VFS direct IO won't invoke the end_io call back function,
3744 * we need to free the end_io structure here.
3745 */
3746 if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
3747 ext4_free_io_end(iocb->private);
3748 iocb->private = NULL;
Mingming5f524952009-11-10 10:48:04 -05003749 } else if (ret > 0 && (EXT4_I(inode)->i_state &
3750 EXT4_STATE_DIO_UNWRITTEN)) {
Mingming109f5562009-11-10 10:48:08 -05003751 int err;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003752 /*
3753 * for non AIO case, since the IO is already
3754 * completed, we could do the convertion right here
3755 */
Mingming109f5562009-11-10 10:48:08 -05003756 err = ext4_convert_unwritten_extents(inode,
3757 offset, ret);
3758 if (err < 0)
3759 ret = err;
Mingming5f524952009-11-10 10:48:04 -05003760 EXT4_I(inode)->i_state &= ~EXT4_STATE_DIO_UNWRITTEN;
Mingming109f5562009-11-10 10:48:08 -05003761 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003762 return ret;
3763 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003764
3765 /* for write the the end of file case, we fall back to old way */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003766 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3767}
3768
3769static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3770 const struct iovec *iov, loff_t offset,
3771 unsigned long nr_segs)
3772{
3773 struct file *file = iocb->ki_filp;
3774 struct inode *inode = file->f_mapping->host;
3775
3776 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
3777 return ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
3778
3779 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3780}
3781
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003782/*
Mingming Cao617ba132006-10-11 01:20:53 -07003783 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003784 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3785 * much here because ->set_page_dirty is called under VFS locks. The page is
3786 * not necessarily locked.
3787 *
3788 * We cannot just dirty the page and leave attached buffers clean, because the
3789 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3790 * or jbddirty because all the journalling code will explode.
3791 *
3792 * So what we do is to mark the page "pending dirty" and next time writepage
3793 * is called, propagate that into the buffers appropriately.
3794 */
Mingming Cao617ba132006-10-11 01:20:53 -07003795static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003796{
3797 SetPageChecked(page);
3798 return __set_page_dirty_nobuffers(page);
3799}
3800
Mingming Cao617ba132006-10-11 01:20:53 -07003801static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003802 .readpage = ext4_readpage,
3803 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003804 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003805 .sync_page = block_sync_page,
3806 .write_begin = ext4_write_begin,
3807 .write_end = ext4_ordered_write_end,
3808 .bmap = ext4_bmap,
3809 .invalidatepage = ext4_invalidatepage,
3810 .releasepage = ext4_releasepage,
3811 .direct_IO = ext4_direct_IO,
3812 .migratepage = buffer_migrate_page,
3813 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003814 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003815};
3816
Mingming Cao617ba132006-10-11 01:20:53 -07003817static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003818 .readpage = ext4_readpage,
3819 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003820 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003821 .sync_page = block_sync_page,
3822 .write_begin = ext4_write_begin,
3823 .write_end = ext4_writeback_write_end,
3824 .bmap = ext4_bmap,
3825 .invalidatepage = ext4_invalidatepage,
3826 .releasepage = ext4_releasepage,
3827 .direct_IO = ext4_direct_IO,
3828 .migratepage = buffer_migrate_page,
3829 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003830 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003831};
3832
Mingming Cao617ba132006-10-11 01:20:53 -07003833static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003834 .readpage = ext4_readpage,
3835 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003836 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003837 .sync_page = block_sync_page,
3838 .write_begin = ext4_write_begin,
3839 .write_end = ext4_journalled_write_end,
3840 .set_page_dirty = ext4_journalled_set_page_dirty,
3841 .bmap = ext4_bmap,
3842 .invalidatepage = ext4_invalidatepage,
3843 .releasepage = ext4_releasepage,
3844 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003845 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003846};
3847
Alex Tomas64769242008-07-11 19:27:31 -04003848static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003849 .readpage = ext4_readpage,
3850 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003851 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003852 .writepages = ext4_da_writepages,
3853 .sync_page = block_sync_page,
3854 .write_begin = ext4_da_write_begin,
3855 .write_end = ext4_da_write_end,
3856 .bmap = ext4_bmap,
3857 .invalidatepage = ext4_da_invalidatepage,
3858 .releasepage = ext4_releasepage,
3859 .direct_IO = ext4_direct_IO,
3860 .migratepage = buffer_migrate_page,
3861 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003862 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003863};
3864
Mingming Cao617ba132006-10-11 01:20:53 -07003865void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003866{
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04003867 if (ext4_should_order_data(inode) &&
3868 test_opt(inode->i_sb, DELALLOC))
3869 inode->i_mapping->a_ops = &ext4_da_aops;
3870 else if (ext4_should_order_data(inode))
Mingming Cao617ba132006-10-11 01:20:53 -07003871 inode->i_mapping->a_ops = &ext4_ordered_aops;
Alex Tomas64769242008-07-11 19:27:31 -04003872 else if (ext4_should_writeback_data(inode) &&
3873 test_opt(inode->i_sb, DELALLOC))
3874 inode->i_mapping->a_ops = &ext4_da_aops;
Mingming Cao617ba132006-10-11 01:20:53 -07003875 else if (ext4_should_writeback_data(inode))
3876 inode->i_mapping->a_ops = &ext4_writeback_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003877 else
Mingming Cao617ba132006-10-11 01:20:53 -07003878 inode->i_mapping->a_ops = &ext4_journalled_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003879}
3880
3881/*
Mingming Cao617ba132006-10-11 01:20:53 -07003882 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003883 * up to the end of the block which corresponds to `from'.
3884 * This required during truncate. We need to physically zero the tail end
3885 * of that block so it doesn't yield old data if the file is later grown.
3886 */
Jan Karacf108bc2008-07-11 19:27:31 -04003887int ext4_block_truncate_page(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003888 struct address_space *mapping, loff_t from)
3889{
Mingming Cao617ba132006-10-11 01:20:53 -07003890 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003891 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003892 unsigned blocksize, length, pos;
3893 ext4_lblk_t iblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003894 struct inode *inode = mapping->host;
3895 struct buffer_head *bh;
Jan Karacf108bc2008-07-11 19:27:31 -04003896 struct page *page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003897 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003898
Theodore Ts'of4a01012009-07-05 22:08:16 -04003899 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3900 mapping_gfp_mask(mapping) & ~__GFP_FS);
Jan Karacf108bc2008-07-11 19:27:31 -04003901 if (!page)
3902 return -EINVAL;
3903
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003904 blocksize = inode->i_sb->s_blocksize;
3905 length = blocksize - (offset & (blocksize - 1));
3906 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3907
3908 /*
3909 * For "nobh" option, we can only work if we don't need to
3910 * read-in the page - otherwise we create buffers to do the IO.
3911 */
3912 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
Mingming Cao617ba132006-10-11 01:20:53 -07003913 ext4_should_writeback_data(inode) && PageUptodate(page)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003914 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003915 set_page_dirty(page);
3916 goto unlock;
3917 }
3918
3919 if (!page_has_buffers(page))
3920 create_empty_buffers(page, blocksize, 0);
3921
3922 /* Find the buffer that contains "offset" */
3923 bh = page_buffers(page);
3924 pos = blocksize;
3925 while (offset >= pos) {
3926 bh = bh->b_this_page;
3927 iblock++;
3928 pos += blocksize;
3929 }
3930
3931 err = 0;
3932 if (buffer_freed(bh)) {
3933 BUFFER_TRACE(bh, "freed: skip");
3934 goto unlock;
3935 }
3936
3937 if (!buffer_mapped(bh)) {
3938 BUFFER_TRACE(bh, "unmapped");
Mingming Cao617ba132006-10-11 01:20:53 -07003939 ext4_get_block(inode, iblock, bh, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003940 /* unmapped? It's a hole - nothing to do */
3941 if (!buffer_mapped(bh)) {
3942 BUFFER_TRACE(bh, "still unmapped");
3943 goto unlock;
3944 }
3945 }
3946
3947 /* Ok, it's mapped. Make sure it's up-to-date */
3948 if (PageUptodate(page))
3949 set_buffer_uptodate(bh);
3950
3951 if (!buffer_uptodate(bh)) {
3952 err = -EIO;
3953 ll_rw_block(READ, 1, &bh);
3954 wait_on_buffer(bh);
3955 /* Uhhuh. Read error. Complain and punt. */
3956 if (!buffer_uptodate(bh))
3957 goto unlock;
3958 }
3959
Mingming Cao617ba132006-10-11 01:20:53 -07003960 if (ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003961 BUFFER_TRACE(bh, "get write access");
Mingming Cao617ba132006-10-11 01:20:53 -07003962 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003963 if (err)
3964 goto unlock;
3965 }
3966
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003967 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003968
3969 BUFFER_TRACE(bh, "zeroed end of block");
3970
3971 err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003972 if (ext4_should_journal_data(inode)) {
Frank Mayhar03901312009-01-07 00:06:22 -05003973 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003974 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003975 if (ext4_should_order_data(inode))
Jan Kara678aaf42008-07-11 19:27:31 -04003976 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003977 mark_buffer_dirty(bh);
3978 }
3979
3980unlock:
3981 unlock_page(page);
3982 page_cache_release(page);
3983 return err;
3984}
3985
3986/*
3987 * Probably it should be a library function... search for first non-zero word
3988 * or memcmp with zero_page, whatever is better for particular architecture.
3989 * Linus?
3990 */
3991static inline int all_zeroes(__le32 *p, __le32 *q)
3992{
3993 while (p < q)
3994 if (*p++)
3995 return 0;
3996 return 1;
3997}
3998
3999/**
Mingming Cao617ba132006-10-11 01:20:53 -07004000 * ext4_find_shared - find the indirect blocks for partial truncation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004001 * @inode: inode in question
4002 * @depth: depth of the affected branch
Mingming Cao617ba132006-10-11 01:20:53 -07004003 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004004 * @chain: place to store the pointers to partial indirect blocks
4005 * @top: place to the (detached) top of branch
4006 *
Mingming Cao617ba132006-10-11 01:20:53 -07004007 * This is a helper function used by ext4_truncate().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004008 *
4009 * When we do truncate() we may have to clean the ends of several
4010 * indirect blocks but leave the blocks themselves alive. Block is
4011 * partially truncated if some data below the new i_size is refered
4012 * from it (and it is on the path to the first completely truncated
4013 * data block, indeed). We have to free the top of that path along
4014 * with everything to the right of the path. Since no allocation
Mingming Cao617ba132006-10-11 01:20:53 -07004015 * past the truncation point is possible until ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004016 * finishes, we may safely do the latter, but top of branch may
4017 * require special attention - pageout below the truncation point
4018 * might try to populate it.
4019 *
4020 * We atomically detach the top of branch from the tree, store the
4021 * block number of its root in *@top, pointers to buffer_heads of
4022 * partially truncated blocks - in @chain[].bh and pointers to
4023 * their last elements that should not be removed - in
4024 * @chain[].p. Return value is the pointer to last filled element
4025 * of @chain.
4026 *
4027 * The work left to caller to do the actual freeing of subtrees:
4028 * a) free the subtree starting from *@top
4029 * b) free the subtrees whose roots are stored in
4030 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
4031 * c) free the subtrees growing from the inode past the @chain[0].
4032 * (no partially truncated stuff there). */
4033
Mingming Cao617ba132006-10-11 01:20:53 -07004034static Indirect *ext4_find_shared(struct inode *inode, int depth,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004035 ext4_lblk_t offsets[4], Indirect chain[4],
4036 __le32 *top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004037{
4038 Indirect *partial, *p;
4039 int k, err;
4040
4041 *top = 0;
Uwe Kleine-Königbf48aab2009-10-28 20:11:03 +01004042 /* Make k index the deepest non-null offset + 1 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004043 for (k = depth; k > 1 && !offsets[k-1]; k--)
4044 ;
Mingming Cao617ba132006-10-11 01:20:53 -07004045 partial = ext4_get_branch(inode, k, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004046 /* Writer: pointers */
4047 if (!partial)
4048 partial = chain + k-1;
4049 /*
4050 * If the branch acquired continuation since we've looked at it -
4051 * fine, it should all survive and (new) top doesn't belong to us.
4052 */
4053 if (!partial->key && *partial->p)
4054 /* Writer: end */
4055 goto no_top;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004056 for (p = partial; (p > chain) && all_zeroes((__le32 *) p->bh->b_data, p->p); p--)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004057 ;
4058 /*
4059 * OK, we've found the last block that must survive. The rest of our
4060 * branch should be detached before unlocking. However, if that rest
4061 * of branch is all ours and does not grow immediately from the inode
4062 * it's easier to cheat and just decrement partial->p.
4063 */
4064 if (p == chain + k - 1 && p > chain) {
4065 p->p--;
4066 } else {
4067 *top = *p->p;
Mingming Cao617ba132006-10-11 01:20:53 -07004068 /* Nope, don't do this in ext4. Must leave the tree intact */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004069#if 0
4070 *p->p = 0;
4071#endif
4072 }
4073 /* Writer: end */
4074
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004075 while (partial > p) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004076 brelse(partial->bh);
4077 partial--;
4078 }
4079no_top:
4080 return partial;
4081}
4082
4083/*
4084 * Zero a number of block pointers in either an inode or an indirect block.
4085 * If we restart the transaction we must again get write access to the
4086 * indirect block for further modification.
4087 *
4088 * We release `count' blocks on disk, but (last - first) may be greater
4089 * than `count' because there can be holes in there.
4090 */
Mingming Cao617ba132006-10-11 01:20:53 -07004091static void ext4_clear_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004092 struct buffer_head *bh,
4093 ext4_fsblk_t block_to_free,
4094 unsigned long count, __le32 *first,
4095 __le32 *last)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004096{
4097 __le32 *p;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004098 int flags = EXT4_FREE_BLOCKS_FORGET;
4099
4100 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
4101 flags |= EXT4_FREE_BLOCKS_METADATA;
Theodore Ts'o50689692009-11-23 07:17:34 -05004102
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004103 if (try_to_extend_transaction(handle, inode)) {
4104 if (bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004105 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
4106 ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004107 }
Mingming Cao617ba132006-10-11 01:20:53 -07004108 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004109 ext4_truncate_restart_trans(handle, inode,
4110 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004111 if (bh) {
4112 BUFFER_TRACE(bh, "retaking write access");
Mingming Cao617ba132006-10-11 01:20:53 -07004113 ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004114 }
4115 }
4116
Theodore Ts'oe6362602009-11-23 07:17:05 -05004117 for (p = first; p < last; p++)
4118 *p = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004119
Theodore Ts'oe6362602009-11-23 07:17:05 -05004120 ext4_free_blocks(handle, inode, 0, block_to_free, count, flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004121}
4122
4123/**
Mingming Cao617ba132006-10-11 01:20:53 -07004124 * ext4_free_data - free a list of data blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004125 * @handle: handle for this transaction
4126 * @inode: inode we are dealing with
4127 * @this_bh: indirect buffer_head which contains *@first and *@last
4128 * @first: array of block numbers
4129 * @last: points immediately past the end of array
4130 *
4131 * We are freeing all blocks refered from that array (numbers are stored as
4132 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
4133 *
4134 * We accumulate contiguous runs of blocks to free. Conveniently, if these
4135 * blocks are contiguous then releasing them at one time will only affect one
4136 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
4137 * actually use a lot of journal space.
4138 *
4139 * @this_bh will be %NULL if @first and @last point into the inode's direct
4140 * block pointers.
4141 */
Mingming Cao617ba132006-10-11 01:20:53 -07004142static void ext4_free_data(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004143 struct buffer_head *this_bh,
4144 __le32 *first, __le32 *last)
4145{
Mingming Cao617ba132006-10-11 01:20:53 -07004146 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004147 unsigned long count = 0; /* Number of blocks in the run */
4148 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
4149 corresponding to
4150 block_to_free */
Mingming Cao617ba132006-10-11 01:20:53 -07004151 ext4_fsblk_t nr; /* Current block # */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004152 __le32 *p; /* Pointer into inode/ind
4153 for current block */
4154 int err;
4155
4156 if (this_bh) { /* For indirect block */
4157 BUFFER_TRACE(this_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004158 err = ext4_journal_get_write_access(handle, this_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004159 /* Important: if we can't update the indirect pointers
4160 * to the blocks, we can't free them. */
4161 if (err)
4162 return;
4163 }
4164
4165 for (p = first; p < last; p++) {
4166 nr = le32_to_cpu(*p);
4167 if (nr) {
4168 /* accumulate blocks to free if they're contiguous */
4169 if (count == 0) {
4170 block_to_free = nr;
4171 block_to_free_p = p;
4172 count = 1;
4173 } else if (nr == block_to_free + count) {
4174 count++;
4175 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004176 ext4_clear_blocks(handle, inode, this_bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004177 block_to_free,
4178 count, block_to_free_p, p);
4179 block_to_free = nr;
4180 block_to_free_p = p;
4181 count = 1;
4182 }
4183 }
4184 }
4185
4186 if (count > 0)
Mingming Cao617ba132006-10-11 01:20:53 -07004187 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004188 count, block_to_free_p, p);
4189
4190 if (this_bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004191 BUFFER_TRACE(this_bh, "call ext4_handle_dirty_metadata");
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004192
4193 /*
4194 * The buffer head should have an attached journal head at this
4195 * point. However, if the data is corrupted and an indirect
4196 * block pointed to itself, it would have been detached when
4197 * the block was cleared. Check for this instead of OOPSing.
4198 */
Theodore Ts'oe7f07962009-01-20 09:50:19 -05004199 if ((EXT4_JOURNAL(inode) == NULL) || bh2jh(this_bh))
Frank Mayhar03901312009-01-07 00:06:22 -05004200 ext4_handle_dirty_metadata(handle, inode, this_bh);
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004201 else
4202 ext4_error(inode->i_sb, __func__,
4203 "circular indirect block detected, "
4204 "inode=%lu, block=%llu",
4205 inode->i_ino,
4206 (unsigned long long) this_bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004207 }
4208}
4209
4210/**
Mingming Cao617ba132006-10-11 01:20:53 -07004211 * ext4_free_branches - free an array of branches
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004212 * @handle: JBD handle for this transaction
4213 * @inode: inode we are dealing with
4214 * @parent_bh: the buffer_head which contains *@first and *@last
4215 * @first: array of block numbers
4216 * @last: pointer immediately past the end of array
4217 * @depth: depth of the branches to free
4218 *
4219 * We are freeing all blocks refered from these branches (numbers are
4220 * stored as little-endian 32-bit) and updating @inode->i_blocks
4221 * appropriately.
4222 */
Mingming Cao617ba132006-10-11 01:20:53 -07004223static void ext4_free_branches(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004224 struct buffer_head *parent_bh,
4225 __le32 *first, __le32 *last, int depth)
4226{
Mingming Cao617ba132006-10-11 01:20:53 -07004227 ext4_fsblk_t nr;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004228 __le32 *p;
4229
Frank Mayhar03901312009-01-07 00:06:22 -05004230 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004231 return;
4232
4233 if (depth--) {
4234 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07004235 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004236 p = last;
4237 while (--p >= first) {
4238 nr = le32_to_cpu(*p);
4239 if (!nr)
4240 continue; /* A hole */
4241
4242 /* Go read the buffer for the next level down */
4243 bh = sb_bread(inode->i_sb, nr);
4244
4245 /*
4246 * A read failure? Report error and clear slot
4247 * (should be rare).
4248 */
4249 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07004250 ext4_error(inode->i_sb, "ext4_free_branches",
Mingming Cao2ae02102006-10-11 01:21:11 -07004251 "Read failure, inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004252 inode->i_ino, nr);
4253 continue;
4254 }
4255
4256 /* This zaps the entire block. Bottom up. */
4257 BUFFER_TRACE(bh, "free child branches");
Mingming Cao617ba132006-10-11 01:20:53 -07004258 ext4_free_branches(handle, inode, bh,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004259 (__le32 *) bh->b_data,
4260 (__le32 *) bh->b_data + addr_per_block,
4261 depth);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004262
4263 /*
4264 * We've probably journalled the indirect block several
4265 * times during the truncate. But it's no longer
4266 * needed and we now drop it from the transaction via
Mingming Caodab291a2006-10-11 01:21:01 -07004267 * jbd2_journal_revoke().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004268 *
4269 * That's easy if it's exclusively part of this
4270 * transaction. But if it's part of the committing
Mingming Caodab291a2006-10-11 01:21:01 -07004271 * transaction then jbd2_journal_forget() will simply
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004272 * brelse() it. That means that if the underlying
Mingming Cao617ba132006-10-11 01:20:53 -07004273 * block is reallocated in ext4_get_block(),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004274 * unmap_underlying_metadata() will find this block
4275 * and will try to get rid of it. damn, damn.
4276 *
4277 * If this block has already been committed to the
4278 * journal, a revoke record will be written. And
4279 * revoke records must be emitted *before* clearing
4280 * this block's bit in the bitmaps.
4281 */
Mingming Cao617ba132006-10-11 01:20:53 -07004282 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004283
4284 /*
4285 * Everything below this this pointer has been
4286 * released. Now let this top-of-subtree go.
4287 *
4288 * We want the freeing of this indirect block to be
4289 * atomic in the journal with the updating of the
4290 * bitmap block which owns it. So make some room in
4291 * the journal.
4292 *
4293 * We zero the parent pointer *after* freeing its
4294 * pointee in the bitmaps, so if extend_transaction()
4295 * for some reason fails to put the bitmap changes and
4296 * the release into the same transaction, recovery
4297 * will merely complain about releasing a free block,
4298 * rather than leaking blocks.
4299 */
Frank Mayhar03901312009-01-07 00:06:22 -05004300 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004301 return;
4302 if (try_to_extend_transaction(handle, inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004303 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004304 ext4_truncate_restart_trans(handle, inode,
4305 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004306 }
4307
Theodore Ts'oe6362602009-11-23 07:17:05 -05004308 ext4_free_blocks(handle, inode, 0, nr, 1,
4309 EXT4_FREE_BLOCKS_METADATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004310
4311 if (parent_bh) {
4312 /*
4313 * The block which we have just freed is
4314 * pointed to by an indirect block: journal it
4315 */
4316 BUFFER_TRACE(parent_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004317 if (!ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004318 parent_bh)){
4319 *p = 0;
4320 BUFFER_TRACE(parent_bh,
Frank Mayhar03901312009-01-07 00:06:22 -05004321 "call ext4_handle_dirty_metadata");
4322 ext4_handle_dirty_metadata(handle,
4323 inode,
4324 parent_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004325 }
4326 }
4327 }
4328 } else {
4329 /* We have reached the bottom of the tree. */
4330 BUFFER_TRACE(parent_bh, "free data blocks");
Mingming Cao617ba132006-10-11 01:20:53 -07004331 ext4_free_data(handle, inode, parent_bh, first, last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004332 }
4333}
4334
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004335int ext4_can_truncate(struct inode *inode)
4336{
4337 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4338 return 0;
4339 if (S_ISREG(inode->i_mode))
4340 return 1;
4341 if (S_ISDIR(inode->i_mode))
4342 return 1;
4343 if (S_ISLNK(inode->i_mode))
4344 return !ext4_inode_is_fast_symlink(inode);
4345 return 0;
4346}
4347
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004348/*
Mingming Cao617ba132006-10-11 01:20:53 -07004349 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004350 *
Mingming Cao617ba132006-10-11 01:20:53 -07004351 * We block out ext4_get_block() block instantiations across the entire
4352 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004353 * simultaneously on behalf of the same inode.
4354 *
4355 * As we work through the truncate and commmit bits of it to the journal there
4356 * is one core, guiding principle: the file's tree must always be consistent on
4357 * disk. We must be able to restart the truncate after a crash.
4358 *
4359 * The file's tree may be transiently inconsistent in memory (although it
4360 * probably isn't), but whenever we close off and commit a journal transaction,
4361 * the contents of (the filesystem + the journal) must be consistent and
4362 * restartable. It's pretty simple, really: bottom up, right to left (although
4363 * left-to-right works OK too).
4364 *
4365 * Note that at recovery time, journal replay occurs *before* the restart of
4366 * truncate against the orphan inode list.
4367 *
4368 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004369 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004370 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004371 * ext4_truncate() to have another go. So there will be instantiated blocks
4372 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004373 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004374 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004375 */
Mingming Cao617ba132006-10-11 01:20:53 -07004376void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004377{
4378 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -07004379 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004380 __le32 *i_data = ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004381 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004382 struct address_space *mapping = inode->i_mapping;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004383 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004384 Indirect chain[4];
4385 Indirect *partial;
4386 __le32 nr = 0;
4387 int n;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004388 ext4_lblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004389 unsigned blocksize = inode->i_sb->s_blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004390
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004391 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004392 return;
4393
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004394 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004395 ei->i_state |= EXT4_STATE_DA_ALLOC_CLOSE;
4396
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004397 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
Jan Karacf108bc2008-07-11 19:27:31 -04004398 ext4_ext_truncate(inode);
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004399 return;
4400 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004401
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004402 handle = start_transaction(inode);
Jan Karacf108bc2008-07-11 19:27:31 -04004403 if (IS_ERR(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004404 return; /* AKPM: return what? */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004405
4406 last_block = (inode->i_size + blocksize-1)
Mingming Cao617ba132006-10-11 01:20:53 -07004407 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004408
Jan Karacf108bc2008-07-11 19:27:31 -04004409 if (inode->i_size & (blocksize - 1))
4410 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
4411 goto out_stop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004412
Mingming Cao617ba132006-10-11 01:20:53 -07004413 n = ext4_block_to_path(inode, last_block, offsets, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004414 if (n == 0)
4415 goto out_stop; /* error */
4416
4417 /*
4418 * OK. This truncate is going to happen. We add the inode to the
4419 * orphan list, so that if this truncate spans multiple transactions,
4420 * and we crash, we will resume the truncate when the filesystem
4421 * recovers. It also marks the inode dirty, to catch the new size.
4422 *
4423 * Implication: the file must always be in a sane, consistent
4424 * truncatable state while each transaction commits.
4425 */
Mingming Cao617ba132006-10-11 01:20:53 -07004426 if (ext4_orphan_add(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004427 goto out_stop;
4428
4429 /*
Mingming Cao632eaea2008-07-11 19:27:31 -04004430 * From here we block out all ext4_get_block() callers who want to
4431 * modify the block allocation tree.
4432 */
4433 down_write(&ei->i_data_sem);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004434
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004435 ext4_discard_preallocations(inode);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004436
Mingming Cao632eaea2008-07-11 19:27:31 -04004437 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004438 * The orphan list entry will now protect us from any crash which
4439 * occurs before the truncate completes, so it is now safe to propagate
4440 * the new, shorter inode size (held for now in i_size) into the
4441 * on-disk inode. We do this via i_disksize, which is the value which
Mingming Cao617ba132006-10-11 01:20:53 -07004442 * ext4 *really* writes onto the disk inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004443 */
4444 ei->i_disksize = inode->i_size;
4445
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004446 if (n == 1) { /* direct blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07004447 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
4448 i_data + EXT4_NDIR_BLOCKS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004449 goto do_indirects;
4450 }
4451
Mingming Cao617ba132006-10-11 01:20:53 -07004452 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004453 /* Kill the top of shared branch (not detached) */
4454 if (nr) {
4455 if (partial == chain) {
4456 /* Shared branch grows from the inode */
Mingming Cao617ba132006-10-11 01:20:53 -07004457 ext4_free_branches(handle, inode, NULL,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004458 &nr, &nr+1, (chain+n-1) - partial);
4459 *partial->p = 0;
4460 /*
4461 * We mark the inode dirty prior to restart,
4462 * and prior to stop. No need for it here.
4463 */
4464 } else {
4465 /* Shared branch grows from an indirect block */
4466 BUFFER_TRACE(partial->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004467 ext4_free_branches(handle, inode, partial->bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004468 partial->p,
4469 partial->p+1, (chain+n-1) - partial);
4470 }
4471 }
4472 /* Clear the ends of indirect blocks on the shared branch */
4473 while (partial > chain) {
Mingming Cao617ba132006-10-11 01:20:53 -07004474 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004475 (__le32*)partial->bh->b_data+addr_per_block,
4476 (chain+n-1) - partial);
4477 BUFFER_TRACE(partial->bh, "call brelse");
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004478 brelse(partial->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004479 partial--;
4480 }
4481do_indirects:
4482 /* Kill the remaining (whole) subtrees */
4483 switch (offsets[0]) {
4484 default:
Mingming Cao617ba132006-10-11 01:20:53 -07004485 nr = i_data[EXT4_IND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004486 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004487 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
4488 i_data[EXT4_IND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004489 }
Mingming Cao617ba132006-10-11 01:20:53 -07004490 case EXT4_IND_BLOCK:
4491 nr = i_data[EXT4_DIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004492 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004493 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
4494 i_data[EXT4_DIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004495 }
Mingming Cao617ba132006-10-11 01:20:53 -07004496 case EXT4_DIND_BLOCK:
4497 nr = i_data[EXT4_TIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004498 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004499 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
4500 i_data[EXT4_TIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004501 }
Mingming Cao617ba132006-10-11 01:20:53 -07004502 case EXT4_TIND_BLOCK:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004503 ;
4504 }
4505
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05004506 up_write(&ei->i_data_sem);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004507 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07004508 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004509
4510 /*
4511 * In a multi-transaction truncate, we only make the final transaction
4512 * synchronous
4513 */
4514 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05004515 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004516out_stop:
4517 /*
4518 * If this was a simple ftruncate(), and the file will remain alive
4519 * then we need to clear up the orphan record which we created above.
4520 * However, if this was a real unlink then we were called by
Mingming Cao617ba132006-10-11 01:20:53 -07004521 * ext4_delete_inode(), and we allow that function to clean up the
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004522 * orphan info for us.
4523 */
4524 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004525 ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004526
Mingming Cao617ba132006-10-11 01:20:53 -07004527 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004528}
4529
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004530/*
Mingming Cao617ba132006-10-11 01:20:53 -07004531 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004532 * underlying buffer_head on success. If 'in_mem' is true, we have all
4533 * data in memory that is needed to recreate the on-disk version of this
4534 * inode.
4535 */
Mingming Cao617ba132006-10-11 01:20:53 -07004536static int __ext4_get_inode_loc(struct inode *inode,
4537 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004538{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004539 struct ext4_group_desc *gdp;
4540 struct buffer_head *bh;
4541 struct super_block *sb = inode->i_sb;
4542 ext4_fsblk_t block;
4543 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004544
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004545 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004546 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004547 return -EIO;
4548
Theodore Ts'o240799c2008-10-09 23:53:47 -04004549 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4550 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4551 if (!gdp)
4552 return -EIO;
4553
4554 /*
4555 * Figure out the offset within the block group inode table
4556 */
4557 inodes_per_block = (EXT4_BLOCK_SIZE(sb) / EXT4_INODE_SIZE(sb));
4558 inode_offset = ((inode->i_ino - 1) %
4559 EXT4_INODES_PER_GROUP(sb));
4560 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4561 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4562
4563 bh = sb_getblk(sb, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004564 if (!bh) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004565 ext4_error(sb, "ext4_get_inode_loc", "unable to read "
4566 "inode block - inode=%lu, block=%llu",
4567 inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004568 return -EIO;
4569 }
4570 if (!buffer_uptodate(bh)) {
4571 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004572
4573 /*
4574 * If the buffer has the write error flag, we have failed
4575 * to write out another inode in the same block. In this
4576 * case, we don't have to read the block because we may
4577 * read the old inode data successfully.
4578 */
4579 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4580 set_buffer_uptodate(bh);
4581
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004582 if (buffer_uptodate(bh)) {
4583 /* someone brought it uptodate while we waited */
4584 unlock_buffer(bh);
4585 goto has_buffer;
4586 }
4587
4588 /*
4589 * If we have all information of the inode in memory and this
4590 * is the only valid inode in the block, we need not read the
4591 * block.
4592 */
4593 if (in_mem) {
4594 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004595 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004596
Theodore Ts'o240799c2008-10-09 23:53:47 -04004597 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004598
4599 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004600 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004601 if (!bitmap_bh)
4602 goto make_io;
4603
4604 /*
4605 * If the inode bitmap isn't in cache then the
4606 * optimisation may end up performing two reads instead
4607 * of one, so skip it.
4608 */
4609 if (!buffer_uptodate(bitmap_bh)) {
4610 brelse(bitmap_bh);
4611 goto make_io;
4612 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004613 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004614 if (i == inode_offset)
4615 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004616 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004617 break;
4618 }
4619 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004620 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004621 /* all other inodes are free, so skip I/O */
4622 memset(bh->b_data, 0, bh->b_size);
4623 set_buffer_uptodate(bh);
4624 unlock_buffer(bh);
4625 goto has_buffer;
4626 }
4627 }
4628
4629make_io:
4630 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004631 * If we need to do any I/O, try to pre-readahead extra
4632 * blocks from the inode table.
4633 */
4634 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4635 ext4_fsblk_t b, end, table;
4636 unsigned num;
4637
4638 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004639 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004640 b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
4641 if (table > b)
4642 b = table;
4643 end = b + EXT4_SB(sb)->s_inode_readahead_blks;
4644 num = EXT4_INODES_PER_GROUP(sb);
4645 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4646 EXT4_FEATURE_RO_COMPAT_GDT_CSUM))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004647 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004648 table += num / inodes_per_block;
4649 if (end > table)
4650 end = table;
4651 while (b <= end)
4652 sb_breadahead(sb, b++);
4653 }
4654
4655 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004656 * There are other valid inodes in the buffer, this inode
4657 * has in-inode xattrs, or we don't have this inode in memory.
4658 * Read the block from disk.
4659 */
4660 get_bh(bh);
4661 bh->b_end_io = end_buffer_read_sync;
4662 submit_bh(READ_META, bh);
4663 wait_on_buffer(bh);
4664 if (!buffer_uptodate(bh)) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004665 ext4_error(sb, __func__,
4666 "unable to read inode block - inode=%lu, "
4667 "block=%llu", inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004668 brelse(bh);
4669 return -EIO;
4670 }
4671 }
4672has_buffer:
4673 iloc->bh = bh;
4674 return 0;
4675}
4676
Mingming Cao617ba132006-10-11 01:20:53 -07004677int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004678{
4679 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07004680 return __ext4_get_inode_loc(inode, iloc,
4681 !(EXT4_I(inode)->i_state & EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004682}
4683
Mingming Cao617ba132006-10-11 01:20:53 -07004684void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004685{
Mingming Cao617ba132006-10-11 01:20:53 -07004686 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004687
4688 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07004689 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004690 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004691 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004692 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004693 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004694 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004695 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004696 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004697 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004698 inode->i_flags |= S_DIRSYNC;
4699}
4700
Jan Karaff9ddf72007-07-18 09:24:20 -04004701/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4702void ext4_get_inode_flags(struct ext4_inode_info *ei)
4703{
4704 unsigned int flags = ei->vfs_inode.i_flags;
4705
4706 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
4707 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
4708 if (flags & S_SYNC)
4709 ei->i_flags |= EXT4_SYNC_FL;
4710 if (flags & S_APPEND)
4711 ei->i_flags |= EXT4_APPEND_FL;
4712 if (flags & S_IMMUTABLE)
4713 ei->i_flags |= EXT4_IMMUTABLE_FL;
4714 if (flags & S_NOATIME)
4715 ei->i_flags |= EXT4_NOATIME_FL;
4716 if (flags & S_DIRSYNC)
4717 ei->i_flags |= EXT4_DIRSYNC_FL;
4718}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004719
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004720static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004721 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004722{
4723 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004724 struct inode *inode = &(ei->vfs_inode);
4725 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004726
4727 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4728 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
4729 /* we are using combined 48 bit field */
4730 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4731 le32_to_cpu(raw_inode->i_blocks_lo);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004732 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
4733 /* i_blocks represent file system block size */
4734 return i_blocks << (inode->i_blkbits - 9);
4735 } else {
4736 return i_blocks;
4737 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004738 } else {
4739 return le32_to_cpu(raw_inode->i_blocks_lo);
4740 }
4741}
Jan Karaff9ddf72007-07-18 09:24:20 -04004742
David Howells1d1fe1e2008-02-07 00:15:37 -08004743struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004744{
Mingming Cao617ba132006-10-11 01:20:53 -07004745 struct ext4_iloc iloc;
4746 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004747 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004748 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004749 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004750 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004751 int block;
4752
David Howells1d1fe1e2008-02-07 00:15:37 -08004753 inode = iget_locked(sb, ino);
4754 if (!inode)
4755 return ERR_PTR(-ENOMEM);
4756 if (!(inode->i_state & I_NEW))
4757 return inode;
4758
4759 ei = EXT4_I(inode);
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004760 iloc.bh = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004761
David Howells1d1fe1e2008-02-07 00:15:37 -08004762 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4763 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004764 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004765 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004766 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
4767 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4768 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004769 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004770 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4771 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4772 }
4773 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004774
4775 ei->i_state = 0;
4776 ei->i_dir_start_lookup = 0;
4777 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4778 /* We now have enough fields to check if the inode was active or not.
4779 * This is needed because nfsd might try to access dead inodes
4780 * the test is that same one that e2fsck uses
4781 * NeilBrown 1999oct15
4782 */
4783 if (inode->i_nlink == 0) {
4784 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07004785 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004786 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004787 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004788 goto bad_inode;
4789 }
4790 /* The only unlinked inodes we let through here have
4791 * valid i_mode and are being read by the orphan
4792 * recovery code: that's fine, we're about to complete
4793 * the process of deleting those. */
4794 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004795 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004796 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004797 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04004798 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004799 ei->i_file_acl |=
4800 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004801 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004802 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004803#ifdef CONFIG_QUOTA
4804 ei->i_reserved_quota = 0;
4805#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004806 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4807 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004808 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004809 /*
4810 * NOTE! The in-memory inode i_data array is in little-endian order
4811 * even on big-endian machines: we do NOT byteswap the block numbers!
4812 */
Mingming Cao617ba132006-10-11 01:20:53 -07004813 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004814 ei->i_data[block] = raw_inode->i_block[block];
4815 INIT_LIST_HEAD(&ei->i_orphan);
4816
Jan Karab436b9b2009-12-08 23:51:10 -05004817 /*
4818 * Set transaction id's of transactions that have to be committed
4819 * to finish f[data]sync. We set them to currently running transaction
4820 * as we cannot be sure that the inode or some of its metadata isn't
4821 * part of the transaction - the inode could have been reclaimed and
4822 * now it is reread from disk.
4823 */
4824 if (journal) {
4825 transaction_t *transaction;
4826 tid_t tid;
4827
4828 spin_lock(&journal->j_state_lock);
4829 if (journal->j_running_transaction)
4830 transaction = journal->j_running_transaction;
4831 else
4832 transaction = journal->j_committing_transaction;
4833 if (transaction)
4834 tid = transaction->t_tid;
4835 else
4836 tid = journal->j_commit_sequence;
4837 spin_unlock(&journal->j_state_lock);
4838 ei->i_sync_tid = tid;
4839 ei->i_datasync_tid = tid;
4840 }
4841
Eric Sandeen0040d982008-02-05 22:36:43 -05004842 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004843 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
Mingming Cao617ba132006-10-11 01:20:53 -07004844 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004845 EXT4_INODE_SIZE(inode->i_sb)) {
David Howells1d1fe1e2008-02-07 00:15:37 -08004846 ret = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004847 goto bad_inode;
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004848 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004849 if (ei->i_extra_isize == 0) {
4850 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004851 ei->i_extra_isize = sizeof(struct ext4_inode) -
4852 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004853 } else {
4854 __le32 *magic = (void *)raw_inode +
Mingming Cao617ba132006-10-11 01:20:53 -07004855 EXT4_GOOD_OLD_INODE_SIZE +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004856 ei->i_extra_isize;
Mingming Cao617ba132006-10-11 01:20:53 -07004857 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004858 ei->i_state |= EXT4_STATE_XATTR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004859 }
4860 } else
4861 ei->i_extra_isize = 0;
4862
Kalpak Shahef7f3832007-07-18 09:15:20 -04004863 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4864 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4865 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4866 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4867
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004868 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4869 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4870 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4871 inode->i_version |=
4872 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4873 }
4874
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004875 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004876 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004877 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004878 ext4_error(sb, __func__,
4879 "bad extended attribute block %llu in inode #%lu",
4880 ei->i_file_acl, inode->i_ino);
4881 ret = -EIO;
4882 goto bad_inode;
4883 } else if (ei->i_flags & EXT4_EXTENTS_FL) {
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004884 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4885 (S_ISLNK(inode->i_mode) &&
4886 !ext4_inode_is_fast_symlink(inode)))
4887 /* Validate extent which is part of inode */
4888 ret = ext4_ext_check_inode(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004889 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004890 (S_ISLNK(inode->i_mode) &&
4891 !ext4_inode_is_fast_symlink(inode))) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004892 /* Validate block references which are part of inode */
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004893 ret = ext4_check_inode_blockref(inode);
4894 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004895 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004896 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004897
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004898 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004899 inode->i_op = &ext4_file_inode_operations;
4900 inode->i_fop = &ext4_file_operations;
4901 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004902 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004903 inode->i_op = &ext4_dir_inode_operations;
4904 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004905 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00004906 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004907 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004908 nd_terminate_link(ei->i_data, inode->i_size,
4909 sizeof(ei->i_data) - 1);
4910 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004911 inode->i_op = &ext4_symlink_inode_operations;
4912 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004913 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004914 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4915 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004916 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004917 if (raw_inode->i_block[0])
4918 init_special_inode(inode, inode->i_mode,
4919 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4920 else
4921 init_special_inode(inode, inode->i_mode,
4922 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004923 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004924 ret = -EIO;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004925 ext4_error(inode->i_sb, __func__,
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004926 "bogus i_mode (%o) for inode=%lu",
4927 inode->i_mode, inode->i_ino);
4928 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004929 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004930 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004931 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004932 unlock_new_inode(inode);
4933 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004934
4935bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004936 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004937 iget_failed(inode);
4938 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004939}
4940
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004941static int ext4_inode_blocks_set(handle_t *handle,
4942 struct ext4_inode *raw_inode,
4943 struct ext4_inode_info *ei)
4944{
4945 struct inode *inode = &(ei->vfs_inode);
4946 u64 i_blocks = inode->i_blocks;
4947 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004948
4949 if (i_blocks <= ~0U) {
4950 /*
4951 * i_blocks can be represnted in a 32 bit variable
4952 * as multiple of 512 bytes
4953 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004954 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004955 raw_inode->i_blocks_high = 0;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004956 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004957 return 0;
4958 }
4959 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4960 return -EFBIG;
4961
4962 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004963 /*
4964 * i_blocks can be represented in a 48 bit variable
4965 * as multiple of 512 bytes
4966 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004967 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004968 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004969 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004970 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004971 ei->i_flags |= EXT4_HUGE_FILE_FL;
4972 /* i_block is stored in file system block size */
4973 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4974 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4975 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004976 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004977 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004978}
4979
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004980/*
4981 * Post the struct inode info into an on-disk inode location in the
4982 * buffer-cache. This gobbles the caller's reference to the
4983 * buffer_head in the inode location struct.
4984 *
4985 * The caller must have write access to iloc->bh.
4986 */
Mingming Cao617ba132006-10-11 01:20:53 -07004987static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004988 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004989 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004990{
Mingming Cao617ba132006-10-11 01:20:53 -07004991 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4992 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004993 struct buffer_head *bh = iloc->bh;
4994 int err = 0, rc, block;
4995
4996 /* For fields not not tracking in the in-memory inode,
4997 * initialise them to zero for new inodes. */
Mingming Cao617ba132006-10-11 01:20:53 -07004998 if (ei->i_state & EXT4_STATE_NEW)
4999 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005000
Jan Karaff9ddf72007-07-18 09:24:20 -04005001 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005002 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005003 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005004 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
5005 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
5006/*
5007 * Fix up interoperability with old kernels. Otherwise, old inodes get
5008 * re-used with the upper 16 bits of the uid/gid intact
5009 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005010 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005011 raw_inode->i_uid_high =
5012 cpu_to_le16(high_16_bits(inode->i_uid));
5013 raw_inode->i_gid_high =
5014 cpu_to_le16(high_16_bits(inode->i_gid));
5015 } else {
5016 raw_inode->i_uid_high = 0;
5017 raw_inode->i_gid_high = 0;
5018 }
5019 } else {
5020 raw_inode->i_uid_low =
5021 cpu_to_le16(fs_high2lowuid(inode->i_uid));
5022 raw_inode->i_gid_low =
5023 cpu_to_le16(fs_high2lowgid(inode->i_gid));
5024 raw_inode->i_uid_high = 0;
5025 raw_inode->i_gid_high = 0;
5026 }
5027 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04005028
5029 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5030 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5031 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5032 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5033
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005034 if (ext4_inode_blocks_set(handle, raw_inode, ei))
5035 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005036 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -04005037 raw_inode->i_flags = cpu_to_le32(ei->i_flags);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07005038 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
5039 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005040 raw_inode->i_file_acl_high =
5041 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005042 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005043 ext4_isize_set(raw_inode, ei->i_disksize);
5044 if (ei->i_disksize > 0x7fffffffULL) {
5045 struct super_block *sb = inode->i_sb;
5046 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
5047 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
5048 EXT4_SB(sb)->s_es->s_rev_level ==
5049 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
5050 /* If this is the first large file
5051 * created, add a flag to the superblock.
5052 */
5053 err = ext4_journal_get_write_access(handle,
5054 EXT4_SB(sb)->s_sbh);
5055 if (err)
5056 goto out_brelse;
5057 ext4_update_dynamic_rev(sb);
5058 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07005059 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005060 sb->s_dirt = 1;
Frank Mayhar03901312009-01-07 00:06:22 -05005061 ext4_handle_sync(handle);
5062 err = ext4_handle_dirty_metadata(handle, inode,
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005063 EXT4_SB(sb)->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005064 }
5065 }
5066 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5067 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5068 if (old_valid_dev(inode->i_rdev)) {
5069 raw_inode->i_block[0] =
5070 cpu_to_le32(old_encode_dev(inode->i_rdev));
5071 raw_inode->i_block[1] = 0;
5072 } else {
5073 raw_inode->i_block[0] = 0;
5074 raw_inode->i_block[1] =
5075 cpu_to_le32(new_encode_dev(inode->i_rdev));
5076 raw_inode->i_block[2] = 0;
5077 }
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005078 } else
5079 for (block = 0; block < EXT4_N_BLOCKS; block++)
5080 raw_inode->i_block[block] = ei->i_data[block];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005081
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005082 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
5083 if (ei->i_extra_isize) {
5084 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5085 raw_inode->i_version_hi =
5086 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005087 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005088 }
5089
Frank Mayhar830156c2009-09-29 10:07:47 -04005090 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
5091 rc = ext4_handle_dirty_metadata(handle, inode, bh);
5092 if (!err)
5093 err = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07005094 ei->i_state &= ~EXT4_STATE_NEW;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005095
Jan Karab436b9b2009-12-08 23:51:10 -05005096 ext4_update_inode_fsync_trans(handle, inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005097out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005098 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005099 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005100 return err;
5101}
5102
5103/*
Mingming Cao617ba132006-10-11 01:20:53 -07005104 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005105 *
5106 * We are called from a few places:
5107 *
5108 * - Within generic_file_write() for O_SYNC files.
5109 * Here, there will be no transaction running. We wait for any running
5110 * trasnaction to commit.
5111 *
5112 * - Within sys_sync(), kupdate and such.
5113 * We wait on commit, if tol to.
5114 *
5115 * - Within prune_icache() (PF_MEMALLOC == true)
5116 * Here we simply return. We can't afford to block kswapd on the
5117 * journal commit.
5118 *
5119 * In all cases it is actually safe for us to return without doing anything,
5120 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07005121 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005122 * knfsd.
5123 *
5124 * Note that we are absolutely dependent upon all inode dirtiers doing the
5125 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5126 * which we are interested.
5127 *
5128 * It would be a bug for them to not do this. The code:
5129 *
5130 * mark_inode_dirty(inode)
5131 * stuff();
5132 * inode->i_size = expr;
5133 *
5134 * is in error because a kswapd-driven write_inode() could occur while
5135 * `stuff()' is running, and the new i_size will be lost. Plus the inode
5136 * will no longer be on the superblock's dirty inode list.
5137 */
Mingming Cao617ba132006-10-11 01:20:53 -07005138int ext4_write_inode(struct inode *inode, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005139{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005140 int err;
5141
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005142 if (current->flags & PF_MEMALLOC)
5143 return 0;
5144
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005145 if (EXT4_SB(inode->i_sb)->s_journal) {
5146 if (ext4_journal_current_handle()) {
5147 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5148 dump_stack();
5149 return -EIO;
5150 }
5151
5152 if (!wait)
5153 return 0;
5154
5155 err = ext4_force_commit(inode->i_sb);
5156 } else {
5157 struct ext4_iloc iloc;
5158
5159 err = ext4_get_inode_loc(inode, &iloc);
5160 if (err)
5161 return err;
Frank Mayhar830156c2009-09-29 10:07:47 -04005162 if (wait)
5163 sync_dirty_buffer(iloc.bh);
5164 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
5165 ext4_error(inode->i_sb, __func__,
5166 "IO error syncing inode, "
5167 "inode=%lu, block=%llu",
5168 inode->i_ino,
5169 (unsigned long long)iloc.bh->b_blocknr);
5170 err = -EIO;
5171 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005172 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005173 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005174}
5175
5176/*
Mingming Cao617ba132006-10-11 01:20:53 -07005177 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005178 *
5179 * Called from notify_change.
5180 *
5181 * We want to trap VFS attempts to truncate the file as soon as
5182 * possible. In particular, we want to make sure that when the VFS
5183 * shrinks i_size, we put the inode on the orphan list and modify
5184 * i_disksize immediately, so that during the subsequent flushing of
5185 * dirty pages and freeing of disk blocks, we can guarantee that any
5186 * commit will leave the blocks being flushed in an unused state on
5187 * disk. (On recovery, the inode will get truncated and the blocks will
5188 * be freed, so we have a strong guarantee that no future commit will
5189 * leave these blocks visible to the user.)
5190 *
Jan Kara678aaf42008-07-11 19:27:31 -04005191 * Another thing we have to assure is that if we are in ordered mode
5192 * and inode is still attached to the committing transaction, we must
5193 * we start writeout of all the dirty pages which are being truncated.
5194 * This way we are sure that all the data written in the previous
5195 * transaction are already on disk (truncate waits for pages under
5196 * writeback).
5197 *
5198 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005199 */
Mingming Cao617ba132006-10-11 01:20:53 -07005200int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005201{
5202 struct inode *inode = dentry->d_inode;
5203 int error, rc = 0;
5204 const unsigned int ia_valid = attr->ia_valid;
5205
5206 error = inode_change_ok(inode, attr);
5207 if (error)
5208 return error;
5209
5210 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
5211 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
5212 handle_t *handle;
5213
5214 /* (user+group)*(old+new) structure, inode write (sb,
5215 * inode block, ? - but truncate inode update has it) */
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -05005216 handle = ext4_journal_start(inode, (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+
Dmitry Monakhov194074a2009-12-08 22:42:28 -05005217 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb))+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005218 if (IS_ERR(handle)) {
5219 error = PTR_ERR(handle);
5220 goto err_out;
5221 }
Jan Karaa269eb12009-01-26 17:04:39 +01005222 error = vfs_dq_transfer(inode, attr) ? -EDQUOT : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005223 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005224 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005225 return error;
5226 }
5227 /* Update corresponding info in inode so that everything is in
5228 * one transaction */
5229 if (attr->ia_valid & ATTR_UID)
5230 inode->i_uid = attr->ia_uid;
5231 if (attr->ia_valid & ATTR_GID)
5232 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005233 error = ext4_mark_inode_dirty(handle, inode);
5234 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005235 }
5236
Eric Sandeene2b46572008-01-28 23:58:27 -05005237 if (attr->ia_valid & ATTR_SIZE) {
5238 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
5239 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5240
5241 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
5242 error = -EFBIG;
5243 goto err_out;
5244 }
5245 }
5246 }
5247
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005248 if (S_ISREG(inode->i_mode) &&
5249 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
5250 handle_t *handle;
5251
Mingming Cao617ba132006-10-11 01:20:53 -07005252 handle = ext4_journal_start(inode, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005253 if (IS_ERR(handle)) {
5254 error = PTR_ERR(handle);
5255 goto err_out;
5256 }
5257
Mingming Cao617ba132006-10-11 01:20:53 -07005258 error = ext4_orphan_add(handle, inode);
5259 EXT4_I(inode)->i_disksize = attr->ia_size;
5260 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005261 if (!error)
5262 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07005263 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04005264
5265 if (ext4_should_order_data(inode)) {
5266 error = ext4_begin_ordered_truncate(inode,
5267 attr->ia_size);
5268 if (error) {
5269 /* Do as much error cleanup as possible */
5270 handle = ext4_journal_start(inode, 3);
5271 if (IS_ERR(handle)) {
5272 ext4_orphan_del(NULL, inode);
5273 goto err_out;
5274 }
5275 ext4_orphan_del(handle, inode);
5276 ext4_journal_stop(handle);
5277 goto err_out;
5278 }
5279 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005280 }
5281
5282 rc = inode_setattr(inode, attr);
5283
Mingming Cao617ba132006-10-11 01:20:53 -07005284 /* If inode_setattr's call to ext4_truncate failed to get a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005285 * transaction handle at all, we need to clean up the in-core
5286 * orphan list manually. */
5287 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005288 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005289
5290 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07005291 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005292
5293err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07005294 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005295 if (!error)
5296 error = rc;
5297 return error;
5298}
5299
Mingming Cao3e3398a2008-07-11 19:27:31 -04005300int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
5301 struct kstat *stat)
5302{
5303 struct inode *inode;
5304 unsigned long delalloc_blocks;
5305
5306 inode = dentry->d_inode;
5307 generic_fillattr(inode, stat);
5308
5309 /*
5310 * We can't update i_blocks if the block allocation is delayed
5311 * otherwise in the case of system crash before the real block
5312 * allocation is done, we will have i_blocks inconsistent with
5313 * on-disk file blocks.
5314 * We always keep i_blocks updated together with real
5315 * allocation. But to not confuse with user, stat
5316 * will return the blocks that include the delayed allocation
5317 * blocks for this file.
5318 */
5319 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
5320 delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
5321 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
5322
5323 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
5324 return 0;
5325}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005326
Mingming Caoa02908f2008-08-19 22:16:07 -04005327static int ext4_indirect_trans_blocks(struct inode *inode, int nrblocks,
5328 int chunk)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005329{
Mingming Caoa02908f2008-08-19 22:16:07 -04005330 int indirects;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005331
Mingming Caoa02908f2008-08-19 22:16:07 -04005332 /* if nrblocks are contiguous */
5333 if (chunk) {
5334 /*
5335 * With N contiguous data blocks, it need at most
5336 * N/EXT4_ADDR_PER_BLOCK(inode->i_sb) indirect blocks
5337 * 2 dindirect blocks
5338 * 1 tindirect block
5339 */
5340 indirects = nrblocks / EXT4_ADDR_PER_BLOCK(inode->i_sb);
5341 return indirects + 3;
5342 }
5343 /*
5344 * if nrblocks are not contiguous, worse case, each block touch
5345 * a indirect block, and each indirect block touch a double indirect
5346 * block, plus a triple indirect block
5347 */
5348 indirects = nrblocks * 2 + 1;
5349 return indirects;
5350}
Alex Tomasa86c6182006-10-11 01:21:03 -07005351
Mingming Caoa02908f2008-08-19 22:16:07 -04005352static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5353{
5354 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL))
Theodore Ts'oac51d832008-11-06 16:49:36 -05005355 return ext4_indirect_trans_blocks(inode, nrblocks, chunk);
5356 return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
Mingming Caoa02908f2008-08-19 22:16:07 -04005357}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005358
Mingming Caoa02908f2008-08-19 22:16:07 -04005359/*
5360 * Account for index blocks, block groups bitmaps and block group
5361 * descriptor blocks if modify datablocks and index blocks
5362 * worse case, the indexs blocks spread over different block groups
5363 *
5364 * If datablocks are discontiguous, they are possible to spread over
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005365 * different block groups too. If they are contiuguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005366 * they could still across block group boundary.
5367 *
5368 * Also account for superblock, inode, quota and xattr blocks
5369 */
5370int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5371{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005372 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5373 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005374 int idxblocks;
5375 int ret = 0;
5376
5377 /*
5378 * How many index blocks need to touch to modify nrblocks?
5379 * The "Chunk" flag indicating whether the nrblocks is
5380 * physically contiguous on disk
5381 *
5382 * For Direct IO and fallocate, they calls get_block to allocate
5383 * one single extent at a time, so they could set the "Chunk" flag
5384 */
5385 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
5386
5387 ret = idxblocks;
5388
5389 /*
5390 * Now let's see how many group bitmaps and group descriptors need
5391 * to account
5392 */
5393 groups = idxblocks;
5394 if (chunk)
5395 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005396 else
Mingming Caoa02908f2008-08-19 22:16:07 -04005397 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005398
Mingming Caoa02908f2008-08-19 22:16:07 -04005399 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005400 if (groups > ngroups)
5401 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005402 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5403 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5404
5405 /* bitmaps and block group descriptor blocks */
5406 ret += groups + gdpblocks;
5407
5408 /* Blocks for super block, inode, quota and xattr blocks */
5409 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005410
5411 return ret;
5412}
5413
5414/*
Mingming Caoa02908f2008-08-19 22:16:07 -04005415 * Calulate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005416 * the modification of a single pages into a single transaction,
5417 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005418 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005419 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005420 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005421 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005422 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005423 */
5424int ext4_writepage_trans_blocks(struct inode *inode)
5425{
5426 int bpp = ext4_journal_blocks_per_page(inode);
5427 int ret;
5428
5429 ret = ext4_meta_trans_blocks(inode, bpp, 0);
5430
5431 /* Account for data blocks for journalled mode */
5432 if (ext4_should_journal_data(inode))
5433 ret += bpp;
5434 return ret;
5435}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005436
5437/*
5438 * Calculate the journal credits for a chunk of data modification.
5439 *
5440 * This is called from DIO, fallocate or whoever calling
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005441 * ext4_get_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005442 *
5443 * journal buffers for data blocks are not included here, as DIO
5444 * and fallocate do no need to journal data buffers.
5445 */
5446int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5447{
5448 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5449}
5450
Mingming Caoa02908f2008-08-19 22:16:07 -04005451/*
Mingming Cao617ba132006-10-11 01:20:53 -07005452 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005453 * Give this, we know that the caller already has write access to iloc->bh.
5454 */
Mingming Cao617ba132006-10-11 01:20:53 -07005455int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005456 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005457{
5458 int err = 0;
5459
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005460 if (test_opt(inode->i_sb, I_VERSION))
5461 inode_inc_iversion(inode);
5462
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005463 /* the do_update_inode consumes one bh->b_count */
5464 get_bh(iloc->bh);
5465
Mingming Caodab291a2006-10-11 01:21:01 -07005466 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005467 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005468 put_bh(iloc->bh);
5469 return err;
5470}
5471
5472/*
5473 * On success, We end up with an outstanding reference count against
5474 * iloc->bh. This _must_ be cleaned up later.
5475 */
5476
5477int
Mingming Cao617ba132006-10-11 01:20:53 -07005478ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5479 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005480{
Frank Mayhar03901312009-01-07 00:06:22 -05005481 int err;
5482
5483 err = ext4_get_inode_loc(inode, iloc);
5484 if (!err) {
5485 BUFFER_TRACE(iloc->bh, "get_write_access");
5486 err = ext4_journal_get_write_access(handle, iloc->bh);
5487 if (err) {
5488 brelse(iloc->bh);
5489 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005490 }
5491 }
Mingming Cao617ba132006-10-11 01:20:53 -07005492 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005493 return err;
5494}
5495
5496/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005497 * Expand an inode by new_extra_isize bytes.
5498 * Returns 0 on success or negative error number on failure.
5499 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05005500static int ext4_expand_extra_isize(struct inode *inode,
5501 unsigned int new_extra_isize,
5502 struct ext4_iloc iloc,
5503 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005504{
5505 struct ext4_inode *raw_inode;
5506 struct ext4_xattr_ibody_header *header;
5507 struct ext4_xattr_entry *entry;
5508
5509 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
5510 return 0;
5511
5512 raw_inode = ext4_raw_inode(&iloc);
5513
5514 header = IHDR(inode, raw_inode);
5515 entry = IFIRST(header);
5516
5517 /* No extended attributes present */
5518 if (!(EXT4_I(inode)->i_state & EXT4_STATE_XATTR) ||
5519 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5520 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
5521 new_extra_isize);
5522 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5523 return 0;
5524 }
5525
5526 /* try to expand with EAs present */
5527 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
5528 raw_inode, handle);
5529}
5530
5531/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005532 * What we do here is to mark the in-core inode as clean with respect to inode
5533 * dirtiness (it may still be data-dirty).
5534 * This means that the in-core inode may be reaped by prune_icache
5535 * without having to perform any I/O. This is a very good thing,
5536 * because *any* task may call prune_icache - even ones which
5537 * have a transaction open against a different journal.
5538 *
5539 * Is this cheating? Not really. Sure, we haven't written the
5540 * inode out, but prune_icache isn't a user-visible syncing function.
5541 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5542 * we start and wait on commits.
5543 *
5544 * Is this efficient/effective? Well, we're being nice to the system
5545 * by cleaning up our inodes proactively so they can be reaped
5546 * without I/O. But we are potentially leaving up to five seconds'
5547 * worth of inodes floating about which prune_icache wants us to
5548 * write out. One way to fix that would be to get prune_icache()
5549 * to do a write_super() to free up some memory. It has the desired
5550 * effect.
5551 */
Mingming Cao617ba132006-10-11 01:20:53 -07005552int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005553{
Mingming Cao617ba132006-10-11 01:20:53 -07005554 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005555 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5556 static unsigned int mnt_count;
5557 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005558
5559 might_sleep();
Mingming Cao617ba132006-10-11 01:20:53 -07005560 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05005561 if (ext4_handle_valid(handle) &&
5562 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005563 !(EXT4_I(inode)->i_state & EXT4_STATE_NO_EXPAND)) {
5564 /*
5565 * We need extra buffer credits since we may write into EA block
5566 * with this same handle. If journal_extend fails, then it will
5567 * only result in a minor loss of functionality for that inode.
5568 * If this is felt to be critical, then e2fsck should be run to
5569 * force a large enough s_min_extra_isize.
5570 */
5571 if ((jbd2_journal_extend(handle,
5572 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
5573 ret = ext4_expand_extra_isize(inode,
5574 sbi->s_want_extra_isize,
5575 iloc, handle);
5576 if (ret) {
5577 EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND;
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005578 if (mnt_count !=
5579 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04005580 ext4_warning(inode->i_sb, __func__,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005581 "Unable to expand inode %lu. Delete"
5582 " some EAs or run e2fsck.",
5583 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005584 mnt_count =
5585 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005586 }
5587 }
5588 }
5589 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005590 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07005591 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005592 return err;
5593}
5594
5595/*
Mingming Cao617ba132006-10-11 01:20:53 -07005596 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005597 *
5598 * We're really interested in the case where a file is being extended.
5599 * i_size has been changed by generic_commit_write() and we thus need
5600 * to include the updated inode in the current transaction.
5601 *
Jan Karaa269eb12009-01-26 17:04:39 +01005602 * Also, vfs_dq_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005603 * are allocated to the file.
5604 *
5605 * If the inode is marked synchronous, we don't honour that here - doing
5606 * so would cause a commit on atime updates, which we don't bother doing.
5607 * We handle synchronous inodes at the highest possible level.
5608 */
Mingming Cao617ba132006-10-11 01:20:53 -07005609void ext4_dirty_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005610{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005611 handle_t *handle;
5612
Mingming Cao617ba132006-10-11 01:20:53 -07005613 handle = ext4_journal_start(inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005614 if (IS_ERR(handle))
5615 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005616
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005617 ext4_mark_inode_dirty(handle, inode);
5618
Mingming Cao617ba132006-10-11 01:20:53 -07005619 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005620out:
5621 return;
5622}
5623
5624#if 0
5625/*
5626 * Bind an inode's backing buffer_head into this transaction, to prevent
5627 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07005628 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005629 * returns no iloc structure, so the caller needs to repeat the iloc
5630 * lookup to mark the inode dirty later.
5631 */
Mingming Cao617ba132006-10-11 01:20:53 -07005632static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005633{
Mingming Cao617ba132006-10-11 01:20:53 -07005634 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005635
5636 int err = 0;
5637 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07005638 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005639 if (!err) {
5640 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07005641 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005642 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05005643 err = ext4_handle_dirty_metadata(handle,
5644 inode,
5645 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005646 brelse(iloc.bh);
5647 }
5648 }
Mingming Cao617ba132006-10-11 01:20:53 -07005649 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005650 return err;
5651}
5652#endif
5653
Mingming Cao617ba132006-10-11 01:20:53 -07005654int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005655{
5656 journal_t *journal;
5657 handle_t *handle;
5658 int err;
5659
5660 /*
5661 * We have to be very careful here: changing a data block's
5662 * journaling status dynamically is dangerous. If we write a
5663 * data block to the journal, change the status and then delete
5664 * that block, we risk forgetting to revoke the old log record
5665 * from the journal and so a subsequent replay can corrupt data.
5666 * So, first we make sure that the journal is empty and that
5667 * nobody is changing anything.
5668 */
5669
Mingming Cao617ba132006-10-11 01:20:53 -07005670 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005671 if (!journal)
5672 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005673 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005674 return -EROFS;
5675
Mingming Caodab291a2006-10-11 01:21:01 -07005676 jbd2_journal_lock_updates(journal);
5677 jbd2_journal_flush(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005678
5679 /*
5680 * OK, there are no updates running now, and all cached data is
5681 * synced to disk. We are now in a completely consistent state
5682 * which doesn't have anything in the journal, and we know that
5683 * no filesystem updates are running, so it is safe to modify
5684 * the inode's in-core data-journaling state flag now.
5685 */
5686
5687 if (val)
Mingming Cao617ba132006-10-11 01:20:53 -07005688 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005689 else
Mingming Cao617ba132006-10-11 01:20:53 -07005690 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
5691 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005692
Mingming Caodab291a2006-10-11 01:21:01 -07005693 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005694
5695 /* Finally we can mark the inode as dirty. */
5696
Mingming Cao617ba132006-10-11 01:20:53 -07005697 handle = ext4_journal_start(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005698 if (IS_ERR(handle))
5699 return PTR_ERR(handle);
5700
Mingming Cao617ba132006-10-11 01:20:53 -07005701 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005702 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005703 ext4_journal_stop(handle);
5704 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005705
5706 return err;
5707}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005708
5709static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5710{
5711 return !buffer_mapped(bh);
5712}
5713
Nick Pigginc2ec1752009-03-31 15:23:21 -07005714int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005715{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005716 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005717 loff_t size;
5718 unsigned long len;
5719 int ret = -EINVAL;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005720 void *fsdata;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005721 struct file *file = vma->vm_file;
5722 struct inode *inode = file->f_path.dentry->d_inode;
5723 struct address_space *mapping = inode->i_mapping;
5724
5725 /*
5726 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
5727 * get i_mutex because we are already holding mmap_sem.
5728 */
5729 down_read(&inode->i_alloc_sem);
5730 size = i_size_read(inode);
5731 if (page->mapping != mapping || size <= page_offset(page)
5732 || !PageUptodate(page)) {
5733 /* page got truncated from under us? */
5734 goto out_unlock;
5735 }
5736 ret = 0;
5737 if (PageMappedToDisk(page))
5738 goto out_unlock;
5739
5740 if (page->index == size >> PAGE_CACHE_SHIFT)
5741 len = size & ~PAGE_CACHE_MASK;
5742 else
5743 len = PAGE_CACHE_SIZE;
5744
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005745 lock_page(page);
5746 /*
5747 * return if we have all the buffers mapped. This avoid
5748 * the need to call write_begin/write_end which does a
5749 * journal_start/journal_stop which can block and take
5750 * long time
5751 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005752 if (page_has_buffers(page)) {
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005753 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005754 ext4_bh_unmapped)) {
5755 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005756 goto out_unlock;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005757 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005758 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005759 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005760 /*
5761 * OK, we need to fill the hole... Do write_begin write_end
5762 * to do block allocation/reservation.We are not holding
5763 * inode.i__mutex here. That allow * parallel write_begin,
5764 * write_end call. lock_page prevent this from happening
5765 * on the same page though
5766 */
5767 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005768 len, AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005769 if (ret < 0)
5770 goto out_unlock;
5771 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005772 len, len, page, fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005773 if (ret < 0)
5774 goto out_unlock;
5775 ret = 0;
5776out_unlock:
Nick Pigginc2ec1752009-03-31 15:23:21 -07005777 if (ret)
5778 ret = VM_FAULT_SIGBUS;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005779 up_read(&inode->i_alloc_sem);
5780 return ret;
5781}