blob: 3e530119d7f07c43b2d8cddc8f6f9f947728da1b [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 Boissinot1cc8dcf2008-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 Boissinot1cc8dcf2008-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 Boissinot1cc8dcf2008-04-21 22:45:55 +0000513 * Normally this function find the preferred place for block allocation,
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800514 * returns it.
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400515 * Because this is only used for non-extent files, we limit the block nr
516 * to 32 bits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700517 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500518static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400519 Indirect *partial)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520{
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400521 ext4_fsblk_t goal;
522
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400524 * XXX need to get goal block from mballoc's data structures
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700525 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700526
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400527 goal = ext4_find_near(inode, partial);
528 goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
529 return goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530}
531
532/**
Mingming Cao617ba132006-10-11 01:20:53 -0700533 * ext4_blks_to_allocate: Look up the block map and count the number
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534 * of direct blocks need to be allocated for the given branch.
535 *
536 * @branch: chain of indirect blocks
537 * @k: number of blocks need for indirect blocks
538 * @blks: number of data blocks to be mapped.
539 * @blocks_to_boundary: the offset in the indirect block
540 *
541 * return the total number of blocks to be allocate, including the
542 * direct and indirect blocks.
543 */
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500544static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned int blks,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400545 int blocks_to_boundary)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700546{
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500547 unsigned int count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700548
549 /*
550 * Simple case, [t,d]Indirect block(s) has not allocated yet
551 * then it's clear blocks on that path have not allocated
552 */
553 if (k > 0) {
554 /* right now we don't handle cross boundary allocation */
555 if (blks < blocks_to_boundary + 1)
556 count += blks;
557 else
558 count += blocks_to_boundary + 1;
559 return count;
560 }
561
562 count++;
563 while (count < blks && count <= blocks_to_boundary &&
564 le32_to_cpu(*(branch[0].p + count)) == 0) {
565 count++;
566 }
567 return count;
568}
569
570/**
Mingming Cao617ba132006-10-11 01:20:53 -0700571 * ext4_alloc_blocks: multiple allocate blocks needed for a branch
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700572 * @indirect_blks: the number of blocks need to allocate for indirect
573 * blocks
574 *
575 * @new_blocks: on return it will store the new block numbers for
576 * the indirect blocks(if needed) and the first direct block,
577 * @blks: on return it will store the total number of allocated
578 * direct blocks
579 */
Mingming Cao617ba132006-10-11 01:20:53 -0700580static int ext4_alloc_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400581 ext4_lblk_t iblock, ext4_fsblk_t goal,
582 int indirect_blks, int blks,
583 ext4_fsblk_t new_blocks[4], int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700584{
Theodore Ts'o815a1132009-01-01 23:59:43 -0500585 struct ext4_allocation_request ar;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700586 int target, i;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400587 unsigned long count = 0, blk_allocated = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700588 int index = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700589 ext4_fsblk_t current_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 int ret = 0;
591
592 /*
593 * Here we try to allocate the requested multiple blocks at once,
594 * on a best-effort basis.
595 * To build a branch, we should allocate blocks for
596 * the indirect blocks(if not allocated yet), and at least
597 * the first direct block of this branch. That's the
598 * minimum number of blocks need to allocate(required)
599 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400600 /* first we try to allocate the indirect blocks */
601 target = indirect_blks;
602 while (target > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700603 count = target;
604 /* allocating blocks for indirect blocks and direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400605 current_block = ext4_new_meta_blocks(handle, inode,
606 goal, &count, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700607 if (*err)
608 goto failed_out;
609
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400610 BUG_ON(current_block + count > EXT4_MAX_BLOCK_FILE_PHYS);
611
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700612 target -= count;
613 /* allocate blocks for indirect blocks */
614 while (index < indirect_blks && count) {
615 new_blocks[index++] = current_block++;
616 count--;
617 }
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400618 if (count > 0) {
619 /*
620 * save the new block number
621 * for the first direct block
622 */
623 new_blocks[index] = current_block;
624 printk(KERN_INFO "%s returned more blocks than "
625 "requested\n", __func__);
626 WARN_ON(1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700627 break;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400628 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700629 }
630
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400631 target = blks - count ;
632 blk_allocated = count;
633 if (!target)
634 goto allocated;
635 /* Now allocate data blocks */
Theodore Ts'o815a1132009-01-01 23:59:43 -0500636 memset(&ar, 0, sizeof(ar));
637 ar.inode = inode;
638 ar.goal = goal;
639 ar.len = target;
640 ar.logical = iblock;
641 if (S_ISREG(inode->i_mode))
642 /* enable in-core preallocation only for regular files */
643 ar.flags = EXT4_MB_HINT_DATA;
644
645 current_block = ext4_mb_new_blocks(handle, &ar, err);
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400646 BUG_ON(current_block + ar.len > EXT4_MAX_BLOCK_FILE_PHYS);
Theodore Ts'o815a1132009-01-01 23:59:43 -0500647
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400648 if (*err && (target == blks)) {
649 /*
650 * if the allocation failed and we didn't allocate
651 * any blocks before
652 */
653 goto failed_out;
654 }
655 if (!*err) {
656 if (target == blks) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400657 /*
658 * save the new block number
659 * for the first direct block
660 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400661 new_blocks[index] = current_block;
662 }
Theodore Ts'o815a1132009-01-01 23:59:43 -0500663 blk_allocated += ar.len;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400664 }
665allocated:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700666 /* total number of blocks allocated for direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400667 ret = blk_allocated;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700668 *err = 0;
669 return ret;
670failed_out:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400671 for (i = 0; i < index; i++)
Theodore Ts'oe6362602009-11-23 07:17:05 -0500672 ext4_free_blocks(handle, inode, 0, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673 return ret;
674}
675
676/**
Mingming Cao617ba132006-10-11 01:20:53 -0700677 * ext4_alloc_branch - allocate and set up a chain of blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700678 * @inode: owner
679 * @indirect_blks: number of allocated indirect blocks
680 * @blks: number of allocated direct blocks
681 * @offsets: offsets (in the blocks) to store the pointers to next.
682 * @branch: place to store the chain in.
683 *
684 * This function allocates blocks, zeroes out all but the last one,
685 * links them into chain and (if we are synchronous) writes them to disk.
686 * In other words, it prepares a branch that can be spliced onto the
687 * inode. It stores the information about that chain in the branch[], in
Mingming Cao617ba132006-10-11 01:20:53 -0700688 * the same format as ext4_get_branch() would do. We are calling it after
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700689 * we had read the existing part of chain and partial points to the last
690 * triple of that (one with zero ->key). Upon the exit we have the same
Mingming Cao617ba132006-10-11 01:20:53 -0700691 * picture as after the successful ext4_get_block(), except that in one
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 * place chain is disconnected - *branch->p is still zero (we did not
693 * set the last link), but branch->key contains the number that should
694 * be placed into *branch->p to fill that gap.
695 *
696 * If allocation fails we free all blocks we've allocated (and forget
697 * their buffer_heads) and return the error value the from failed
Mingming Cao617ba132006-10-11 01:20:53 -0700698 * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 * as described above and return 0.
700 */
Mingming Cao617ba132006-10-11 01:20:53 -0700701static int ext4_alloc_branch(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400702 ext4_lblk_t iblock, int indirect_blks,
703 int *blks, ext4_fsblk_t goal,
704 ext4_lblk_t *offsets, Indirect *branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700705{
706 int blocksize = inode->i_sb->s_blocksize;
707 int i, n = 0;
708 int err = 0;
709 struct buffer_head *bh;
710 int num;
Mingming Cao617ba132006-10-11 01:20:53 -0700711 ext4_fsblk_t new_blocks[4];
712 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400714 num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700715 *blks, new_blocks, &err);
716 if (err)
717 return err;
718
719 branch[0].key = cpu_to_le32(new_blocks[0]);
720 /*
721 * metadata blocks and data blocks are allocated.
722 */
723 for (n = 1; n <= indirect_blks; n++) {
724 /*
725 * Get buffer_head for parent block, zero it out
726 * and set the pointer to new one, then send
727 * parent to disk.
728 */
729 bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
730 branch[n].bh = bh;
731 lock_buffer(bh);
732 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700733 err = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734 if (err) {
Curt Wohlgemuth6487a9d2009-07-17 10:54:08 -0400735 /* Don't brelse(bh) here; it's done in
736 * ext4_journal_forget() below */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737 unlock_buffer(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738 goto failed;
739 }
740
741 memset(bh->b_data, 0, blocksize);
742 branch[n].p = (__le32 *) bh->b_data + offsets[n];
743 branch[n].key = cpu_to_le32(new_blocks[n]);
744 *branch[n].p = branch[n].key;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400745 if (n == indirect_blks) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700746 current_block = new_blocks[n];
747 /*
748 * End of chain, update the last new metablock of
749 * the chain to point to the new allocated
750 * data blocks numbers
751 */
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400752 for (i = 1; i < num; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753 *(branch[n].p + i) = cpu_to_le32(++current_block);
754 }
755 BUFFER_TRACE(bh, "marking uptodate");
756 set_buffer_uptodate(bh);
757 unlock_buffer(bh);
758
Frank Mayhar03901312009-01-07 00:06:22 -0500759 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
760 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700761 if (err)
762 goto failed;
763 }
764 *blks = num;
765 return err;
766failed:
767 /* Allocation failed, free what we already allocated */
Theodore Ts'oe6362602009-11-23 07:17:05 -0500768 ext4_free_blocks(handle, inode, 0, new_blocks[0], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700769 for (i = 1; i <= n ; i++) {
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500770 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -0500771 * branch[i].bh is newly allocated, so there is no
772 * need to revoke the block, which is why we don't
773 * need to set EXT4_FREE_BLOCKS_METADATA.
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500774 */
Theodore Ts'oe6362602009-11-23 07:17:05 -0500775 ext4_free_blocks(handle, inode, 0, new_blocks[i], 1,
776 EXT4_FREE_BLOCKS_FORGET);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777 }
Theodore Ts'oe6362602009-11-23 07:17:05 -0500778 for (i = n+1; i < indirect_blks; i++)
779 ext4_free_blocks(handle, inode, 0, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700780
Theodore Ts'oe6362602009-11-23 07:17:05 -0500781 ext4_free_blocks(handle, inode, 0, new_blocks[i], num, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700782
783 return err;
784}
785
786/**
Mingming Cao617ba132006-10-11 01:20:53 -0700787 * ext4_splice_branch - splice the allocated branch onto inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788 * @inode: owner
789 * @block: (logical) number of block we are adding
790 * @chain: chain of indirect blocks (with a missing link - see
Mingming Cao617ba132006-10-11 01:20:53 -0700791 * ext4_alloc_branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700792 * @where: location of missing link
793 * @num: number of indirect blocks we are adding
794 * @blks: number of direct blocks we are adding
795 *
796 * This function fills the missing link and does all housekeeping needed in
797 * inode (->i_blocks, etc.). In case of success we end up with the full
798 * chain to new block and return 0.
799 */
Mingming Cao617ba132006-10-11 01:20:53 -0700800static int ext4_splice_branch(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400801 ext4_lblk_t block, Indirect *where, int num,
802 int blks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700803{
804 int i;
805 int err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700806 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700807
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700808 /*
809 * If we're splicing into a [td]indirect block (as opposed to the
810 * inode) then we need to get write access to the [td]indirect block
811 * before the splice.
812 */
813 if (where->bh) {
814 BUFFER_TRACE(where->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700815 err = ext4_journal_get_write_access(handle, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700816 if (err)
817 goto err_out;
818 }
819 /* That's it */
820
821 *where->p = where->key;
822
823 /*
824 * Update the host buffer_head or inode to point to more just allocated
825 * direct blocks blocks
826 */
827 if (num == 0 && blks > 1) {
828 current_block = le32_to_cpu(where->key) + 1;
829 for (i = 1; i < blks; i++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400830 *(where->p + i) = cpu_to_le32(current_block++);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700831 }
832
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700833 /* We are done with atomic stuff, now do the rest of housekeeping */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700834 /* had we spliced it onto indirect block? */
835 if (where->bh) {
836 /*
837 * If we spliced it onto an indirect block, we haven't
838 * altered the inode. Note however that if it is being spliced
839 * onto an indirect block at the very end of the file (the
840 * file is growing) then we *will* alter the inode to reflect
841 * the new i_size. But that is not done here - it is done in
Mingming Cao617ba132006-10-11 01:20:53 -0700842 * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700843 */
844 jbd_debug(5, "splicing indirect only\n");
Frank Mayhar03901312009-01-07 00:06:22 -0500845 BUFFER_TRACE(where->bh, "call ext4_handle_dirty_metadata");
846 err = ext4_handle_dirty_metadata(handle, inode, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700847 if (err)
848 goto err_out;
849 } else {
850 /*
851 * OK, we spliced it into the inode itself on a direct block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700852 */
Theodore Ts'o41591752009-06-15 03:41:23 -0400853 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700854 jbd_debug(5, "splicing direct\n");
855 }
856 return err;
857
858err_out:
859 for (i = 1; i <= num; i++) {
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500860 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -0500861 * branch[i].bh is newly allocated, so there is no
862 * need to revoke the block, which is why we don't
863 * need to set EXT4_FREE_BLOCKS_METADATA.
Theodore Ts'ob7e57e72009-11-22 21:00:13 -0500864 */
Theodore Ts'oe6362602009-11-23 07:17:05 -0500865 ext4_free_blocks(handle, inode, where[i].bh, 0, 1,
866 EXT4_FREE_BLOCKS_FORGET);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867 }
Theodore Ts'oe6362602009-11-23 07:17:05 -0500868 ext4_free_blocks(handle, inode, 0, le32_to_cpu(where[num].key),
869 blks, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700870
871 return err;
872}
873
874/*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400875 * The ext4_ind_get_blocks() function handles non-extents inodes
876 * (i.e., using the traditional indirect/double-indirect i_blocks
877 * scheme) for ext4_get_blocks().
878 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879 * Allocation strategy is simple: if we have to allocate something, we will
880 * have to go the whole way to leaf. So let's do it before attaching anything
881 * to tree, set linkage between the newborn blocks, write them if sync is
882 * required, recheck the path, free and repeat if check fails, otherwise
883 * set the last missing link (that will protect us from any truncate-generated
884 * removals - all blocks on the path are immune now) and possibly force the
885 * write on the parent block.
886 * That has a nice additional property: no special recovery from the failed
887 * allocations is needed - we simply release blocks and do not touch anything
888 * reachable from inode.
889 *
890 * `handle' can be NULL if create == 0.
891 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892 * return > 0, # of blocks mapped or allocated.
893 * return = 0, if plain lookup failed.
894 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500895 *
Theodore Ts'ob920c752009-05-14 00:54:29 -0400896 * The ext4_ind_get_blocks() function should be called with
897 * down_write(&EXT4_I(inode)->i_data_sem) if allocating filesystem
898 * blocks (i.e., flags has EXT4_GET_BLOCKS_CREATE set) or
899 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system
900 * blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 */
Theodore Ts'oe4d996c2009-05-12 00:25:28 -0400902static int ext4_ind_get_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400903 ext4_lblk_t iblock, unsigned int maxblocks,
904 struct buffer_head *bh_result,
905 int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906{
907 int err = -EIO;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500908 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700909 Indirect chain[4];
910 Indirect *partial;
Mingming Cao617ba132006-10-11 01:20:53 -0700911 ext4_fsblk_t goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700912 int indirect_blks;
913 int blocks_to_boundary = 0;
914 int depth;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700915 int count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700916 ext4_fsblk_t first_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700917
Alex Tomasa86c6182006-10-11 01:21:03 -0700918 J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL));
Theodore Ts'oc2177052009-05-14 00:58:52 -0400919 J_ASSERT(handle != NULL || (flags & EXT4_GET_BLOCKS_CREATE) == 0);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500920 depth = ext4_block_to_path(inode, iblock, offsets,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400921 &blocks_to_boundary);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700922
923 if (depth == 0)
924 goto out;
925
Mingming Cao617ba132006-10-11 01:20:53 -0700926 partial = ext4_get_branch(inode, depth, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700927
928 /* Simplest case - block found, no allocation needed */
929 if (!partial) {
930 first_block = le32_to_cpu(chain[depth - 1].key);
931 clear_buffer_new(bh_result);
932 count++;
933 /*map more blocks*/
934 while (count < maxblocks && count <= blocks_to_boundary) {
Mingming Cao617ba132006-10-11 01:20:53 -0700935 ext4_fsblk_t blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700937 blk = le32_to_cpu(*(chain[depth-1].p + count));
938
939 if (blk == first_block + count)
940 count++;
941 else
942 break;
943 }
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500944 goto got_it;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700945 }
946
947 /* Next simple case - plain lookup or failed read of indirect block */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400948 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0 || err == -EIO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700949 goto cleanup;
950
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400952 * Okay, we need to do block allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700953 */
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800954 goal = ext4_find_goal(inode, iblock, partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700955
956 /* the number of blocks need to allocate for [d,t]indirect blocks */
957 indirect_blks = (chain + depth) - partial - 1;
958
959 /*
960 * Next look up the indirect map to count the totoal number of
961 * direct blocks to allocate for this branch.
962 */
Mingming Cao617ba132006-10-11 01:20:53 -0700963 count = ext4_blks_to_allocate(partial, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700964 maxblocks, blocks_to_boundary);
965 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700966 * Block out ext4_truncate while we alter the tree
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700967 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400968 err = ext4_alloc_branch(handle, inode, iblock, indirect_blks,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400969 &count, goal,
970 offsets + (partial - chain), partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700971
972 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700973 * The ext4_splice_branch call will free and forget any buffers
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974 * on the new chain if there is a failure, but that risks using
975 * up transaction credits, especially for bitmaps where the
976 * credits cannot be returned. Can we handle this somehow? We
977 * may need to return -EAGAIN upwards in the worst case. --sct
978 */
979 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -0700980 err = ext4_splice_branch(handle, inode, iblock,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400981 partial, indirect_blks, count);
Jan Kara2bba7022009-11-23 07:24:48 -0500982 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700983 goto cleanup;
984
985 set_buffer_new(bh_result);
Jan Karab436b9b2009-12-08 23:51:10 -0500986
987 ext4_update_inode_fsync_trans(handle, inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988got_it:
989 map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
990 if (count > blocks_to_boundary)
991 set_buffer_boundary(bh_result);
992 err = count;
993 /* Clean up and exit */
994 partial = chain + depth - 1; /* the whole chain */
995cleanup:
996 while (partial > chain) {
997 BUFFER_TRACE(partial->bh, "call brelse");
998 brelse(partial->bh);
999 partial--;
1000 }
1001 BUFFER_TRACE(bh_result, "returned");
1002out:
1003 return err;
1004}
1005
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001006#ifdef CONFIG_QUOTA
1007qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +01001008{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001009 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +01001010}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001011#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001012
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001013/*
1014 * Calculate the number of metadata blocks need to reserve
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001015 * to allocate a new block at @lblocks for non extent file based file
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001016 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001017static int ext4_indirect_calc_metadata_amount(struct inode *inode,
1018 sector_t lblock)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001019{
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001020 struct ext4_inode_info *ei = EXT4_I(inode);
1021 int dind_mask = EXT4_ADDR_PER_BLOCK(inode->i_sb) - 1;
1022 int blk_bits;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001023
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001024 if (lblock < EXT4_NDIR_BLOCKS)
1025 return 0;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001026
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001027 lblock -= EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001028
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001029 if (ei->i_da_metadata_calc_len &&
1030 (lblock & dind_mask) == ei->i_da_metadata_calc_last_lblock) {
1031 ei->i_da_metadata_calc_len++;
1032 return 0;
1033 }
1034 ei->i_da_metadata_calc_last_lblock = lblock & dind_mask;
1035 ei->i_da_metadata_calc_len = 1;
1036 blk_bits = roundup_pow_of_two(lblock + 1);
1037 return (blk_bits / EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb)) + 1;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001038}
1039
1040/*
1041 * Calculate the number of metadata blocks need to reserve
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001042 * to allocate a block located at @lblock
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001043 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001044static int ext4_calc_metadata_amount(struct inode *inode, sector_t lblock)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001045{
1046 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001047 return ext4_ext_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001048
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001049 return ext4_indirect_calc_metadata_amount(inode, lblock);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001050}
1051
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001052/*
1053 * Called with i_data_sem down, which is important since we can call
1054 * ext4_discard_preallocations() from here.
1055 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001056void ext4_da_update_reserve_space(struct inode *inode,
1057 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001058{
1059 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001060 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001061 int mdb_free = 0, allocated_meta_blocks = 0;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001062
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001063 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'of8ec9d62010-01-01 01:00:21 -05001064 trace_ext4_da_update_reserve_space(inode, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001065 if (unlikely(used > ei->i_reserved_data_blocks)) {
1066 ext4_msg(inode->i_sb, KERN_NOTICE, "%s: ino %lu, used %d "
1067 "with only %d reserved data blocks\n",
1068 __func__, inode->i_ino, used,
1069 ei->i_reserved_data_blocks);
1070 WARN_ON(1);
1071 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001072 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001073
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001074 /* Update per-inode reservations */
1075 ei->i_reserved_data_blocks -= used;
1076 used += ei->i_allocated_meta_blocks;
1077 ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks;
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001078 allocated_meta_blocks = ei->i_allocated_meta_blocks;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001079 ei->i_allocated_meta_blocks = 0;
1080 percpu_counter_sub(&sbi->s_dirtyblocks_counter, used);
1081
1082 if (ei->i_reserved_data_blocks == 0) {
1083 /*
1084 * We can release all of the reserved metadata blocks
1085 * only when we have written all of the delayed
1086 * allocation blocks.
1087 */
Theodore Ts'oee5f4d92010-01-01 02:36:15 -05001088 mdb_free = ei->i_reserved_meta_blocks;
1089 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001090 ei->i_da_metadata_calc_len = 0;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001091 percpu_counter_sub(&sbi->s_dirtyblocks_counter, mdb_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001092 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001093 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001094
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001095 /* Update quota subsystem */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001096 if (quota_claim) {
1097 vfs_dq_claim_block(inode, used);
1098 if (mdb_free)
1099 vfs_dq_release_reservation_block(inode, mdb_free);
1100 } else {
1101 /*
1102 * We did fallocate with an offset that is already delayed
1103 * allocated. So on delayed allocated writeback we should
1104 * not update the quota for allocated blocks. But then
1105 * converting an fallocate region to initialized region would
1106 * have caused a metadata allocation. So claim quota for
1107 * that
1108 */
1109 if (allocated_meta_blocks)
1110 vfs_dq_claim_block(inode, allocated_meta_blocks);
1111 vfs_dq_release_reservation_block(inode, mdb_free + used);
1112 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -04001113
1114 /*
1115 * If we have done all the pending block allocations and if
1116 * there aren't any writers on the inode, we can discard the
1117 * inode's preallocations.
1118 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001119 if ((ei->i_reserved_data_blocks == 0) &&
1120 (atomic_read(&inode->i_writecount) == 0))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -04001121 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001122}
1123
Theodore Ts'o80e42462009-09-08 08:21:26 -04001124static int check_block_validity(struct inode *inode, const char *msg,
1125 sector_t logical, sector_t phys, int len)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001126{
1127 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), phys, len)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001128 ext4_error(inode->i_sb, msg,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001129 "inode #%lu logical block %llu mapped to %llu "
1130 "(size %d)", inode->i_ino,
1131 (unsigned long long) logical,
1132 (unsigned long long) phys, len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001133 return -EIO;
1134 }
1135 return 0;
1136}
1137
Mingming Caof5ab0d12008-02-25 15:29:55 -05001138/*
Theodore Ts'o1f945332009-09-30 22:57:41 -04001139 * Return the number of contiguous dirty pages in a given inode
1140 * starting at page frame idx.
Theodore Ts'o55138e0b2009-09-29 13:31:31 -04001141 */
1142static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx,
1143 unsigned int max_pages)
1144{
1145 struct address_space *mapping = inode->i_mapping;
1146 pgoff_t index;
1147 struct pagevec pvec;
1148 pgoff_t num = 0;
1149 int i, nr_pages, done = 0;
1150
1151 if (max_pages == 0)
1152 return 0;
1153 pagevec_init(&pvec, 0);
1154 while (!done) {
1155 index = idx;
1156 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
1157 PAGECACHE_TAG_DIRTY,
1158 (pgoff_t)PAGEVEC_SIZE);
1159 if (nr_pages == 0)
1160 break;
1161 for (i = 0; i < nr_pages; i++) {
1162 struct page *page = pvec.pages[i];
1163 struct buffer_head *bh, *head;
1164
1165 lock_page(page);
1166 if (unlikely(page->mapping != mapping) ||
1167 !PageDirty(page) ||
1168 PageWriteback(page) ||
1169 page->index != idx) {
1170 done = 1;
1171 unlock_page(page);
1172 break;
1173 }
Theodore Ts'o1f945332009-09-30 22:57:41 -04001174 if (page_has_buffers(page)) {
1175 bh = head = page_buffers(page);
1176 do {
1177 if (!buffer_delay(bh) &&
1178 !buffer_unwritten(bh))
1179 done = 1;
1180 bh = bh->b_this_page;
1181 } while (!done && (bh != head));
1182 }
Theodore Ts'o55138e0b2009-09-29 13:31:31 -04001183 unlock_page(page);
1184 if (done)
1185 break;
1186 idx++;
1187 num++;
1188 if (num >= max_pages)
1189 break;
1190 }
1191 pagevec_release(&pvec);
1192 }
1193 return num;
1194}
1195
1196/*
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001197 * The ext4_get_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001198 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -05001199 *
Mingming Caof5ab0d12008-02-25 15:29:55 -05001200 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
1201 * and store the allocated blocks in the result buffer head and mark it
1202 * mapped.
1203 *
1204 * If file type is extents based, it will call ext4_ext_get_blocks(),
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001205 * Otherwise, call with ext4_ind_get_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -05001206 * based files
1207 *
1208 * On success, it returns the number of blocks being mapped or allocate.
1209 * if create==0 and the blocks are pre-allocated and uninitialized block,
1210 * the result buffer head is unmapped. If the create ==1, it will make sure
1211 * the buffer head is mapped.
1212 *
1213 * It returns 0 if plain look up failed (blocks have not been allocated), in
1214 * that casem, buffer head is unmapped
1215 *
1216 * It returns the error in case of allocation failure.
1217 */
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001218int ext4_get_blocks(handle_t *handle, struct inode *inode, sector_t block,
1219 unsigned int max_blocks, struct buffer_head *bh,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001220 int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001221{
1222 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -05001223
1224 clear_buffer_mapped(bh);
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001225 clear_buffer_unwritten(bh);
Mingming Caof5ab0d12008-02-25 15:29:55 -05001226
Mingming Cao00314622009-09-28 15:49:08 -04001227 ext_debug("ext4_get_blocks(): inode %lu, flag %d, max_blocks %u,"
1228 "logical block %lu\n", inode->i_ino, flags, max_blocks,
1229 (unsigned long)block);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001230 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -04001231 * Try to see if we can get the block without requesting a new
1232 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001233 */
1234 down_read((&EXT4_I(inode)->i_data_sem));
1235 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1236 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001237 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001238 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001239 retval = ext4_ind_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001240 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001241 }
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001242 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -05001243
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001244 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001245 int ret = check_block_validity(inode, "file system corruption",
1246 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001247 if (ret != 0)
1248 return ret;
1249 }
1250
Mingming Caof5ab0d12008-02-25 15:29:55 -05001251 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001252 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001253 return retval;
1254
1255 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001256 * Returns if the blocks have already allocated
1257 *
1258 * Note that if blocks have been preallocated
1259 * ext4_ext_get_block() returns th create = 0
1260 * with buffer head unmapped.
1261 */
1262 if (retval > 0 && buffer_mapped(bh))
1263 return retval;
1264
1265 /*
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001266 * When we call get_blocks without the create flag, the
1267 * BH_Unwritten flag could have gotten set if the blocks
1268 * requested were part of a uninitialized extent. We need to
1269 * clear this flag now that we are committed to convert all or
1270 * part of the uninitialized extent to be an initialized
1271 * extent. This is because we need to avoid the combination
1272 * of BH_Unwritten and BH_Mapped flags being simultaneously
1273 * set on the buffer_head.
1274 */
1275 clear_buffer_unwritten(bh);
1276
1277 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001278 * New blocks allocate and/or writing to uninitialized extent
1279 * will possibly result in updating i_data, so we take
1280 * the write lock of i_data_sem, and call get_blocks()
1281 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001282 */
1283 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -04001284
1285 /*
1286 * if the caller is from delayed allocation writeout path
1287 * we have already reserved fs blocks for allocation
1288 * let the underlying get_block() function know to
1289 * avoid double accounting
1290 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001291 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001292 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001293 /*
1294 * We need to check for EXT4 here because migrate
1295 * could have changed the inode type in between
1296 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001297 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1298 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001299 bh, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001300 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001301 retval = ext4_ind_get_blocks(handle, inode, block,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001302 max_blocks, bh, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001303
1304 if (retval > 0 && buffer_new(bh)) {
1305 /*
1306 * We allocated new blocks which will result in
1307 * i_data's format changing. Force the migrate
1308 * to fail by clearing migrate flags
1309 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001310 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001311 }
Mingming Caod2a17632008-07-14 17:52:37 -04001312
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001313 /*
1314 * Update reserved blocks/metadata blocks after successful
1315 * block allocation which had been deferred till now. We don't
1316 * support fallocate for non extent files. So we can update
1317 * reserve space here.
1318 */
1319 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05001320 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05001321 ext4_da_update_reserve_space(inode, retval, 1);
1322 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001323 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001324 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001325
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001326 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001327 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001328 int ret = check_block_validity(inode, "file system "
1329 "corruption after allocation",
1330 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001331 if (ret != 0)
1332 return ret;
1333 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001334 return retval;
1335}
1336
Mingming Caof3bd1f32008-08-19 22:16:03 -04001337/* Maximum number of blocks we map for direct IO at once. */
1338#define DIO_MAX_BLOCKS 4096
1339
Eric Sandeen6873fa02008-10-07 00:46:36 -04001340int ext4_get_block(struct inode *inode, sector_t iblock,
1341 struct buffer_head *bh_result, int create)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -08001343 handle_t *handle = ext4_journal_current_handle();
Jan Kara7fb54092008-02-10 01:08:38 -05001344 int ret = 0, started = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001345 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001346 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347
Jan Kara7fb54092008-02-10 01:08:38 -05001348 if (create && !handle) {
1349 /* Direct IO write... */
1350 if (max_blocks > DIO_MAX_BLOCKS)
1351 max_blocks = DIO_MAX_BLOCKS;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001352 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
1353 handle = ext4_journal_start(inode, dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -05001354 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001355 ret = PTR_ERR(handle);
Jan Kara7fb54092008-02-10 01:08:38 -05001356 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001357 }
Jan Kara7fb54092008-02-10 01:08:38 -05001358 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001359 }
1360
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001361 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001362 create ? EXT4_GET_BLOCKS_CREATE : 0);
Jan Kara7fb54092008-02-10 01:08:38 -05001363 if (ret > 0) {
1364 bh_result->b_size = (ret << inode->i_blkbits);
1365 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001366 }
Jan Kara7fb54092008-02-10 01:08:38 -05001367 if (started)
1368 ext4_journal_stop(handle);
1369out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001370 return ret;
1371}
1372
1373/*
1374 * `handle' can be NULL if create is zero
1375 */
Mingming Cao617ba132006-10-11 01:20:53 -07001376struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001377 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001378{
1379 struct buffer_head dummy;
1380 int fatal = 0, err;
Jan Kara03f5d8b2009-06-09 00:17:05 -04001381 int flags = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001382
1383 J_ASSERT(handle != NULL || create == 0);
1384
1385 dummy.b_state = 0;
1386 dummy.b_blocknr = -1000;
1387 buffer_trace_init(&dummy.b_history);
Theodore Ts'oc2177052009-05-14 00:58:52 -04001388 if (create)
1389 flags |= EXT4_GET_BLOCKS_CREATE;
1390 err = ext4_get_blocks(handle, inode, block, 1, &dummy, flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001391 /*
Theodore Ts'oc2177052009-05-14 00:58:52 -04001392 * ext4_get_blocks() returns number of blocks mapped. 0 in
1393 * case of a HOLE.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001394 */
1395 if (err > 0) {
1396 if (err > 1)
1397 WARN_ON(1);
1398 err = 0;
1399 }
1400 *errp = err;
1401 if (!err && buffer_mapped(&dummy)) {
1402 struct buffer_head *bh;
1403 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1404 if (!bh) {
1405 *errp = -EIO;
1406 goto err;
1407 }
1408 if (buffer_new(&dummy)) {
1409 J_ASSERT(create != 0);
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001410 J_ASSERT(handle != NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001411
1412 /*
1413 * Now that we do not always journal data, we should
1414 * keep in mind whether this should always journal the
1415 * new buffer as metadata. For now, regular file
Mingming Cao617ba132006-10-11 01:20:53 -07001416 * writes use ext4_get_block instead, so it's not a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001417 * problem.
1418 */
1419 lock_buffer(bh);
1420 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001421 fatal = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001422 if (!fatal && !buffer_uptodate(bh)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001423 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001424 set_buffer_uptodate(bh);
1425 }
1426 unlock_buffer(bh);
Frank Mayhar03901312009-01-07 00:06:22 -05001427 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1428 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001429 if (!fatal)
1430 fatal = err;
1431 } else {
1432 BUFFER_TRACE(bh, "not a new buffer");
1433 }
1434 if (fatal) {
1435 *errp = fatal;
1436 brelse(bh);
1437 bh = NULL;
1438 }
1439 return bh;
1440 }
1441err:
1442 return NULL;
1443}
1444
Mingming Cao617ba132006-10-11 01:20:53 -07001445struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001446 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001447{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001448 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001449
Mingming Cao617ba132006-10-11 01:20:53 -07001450 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001451 if (!bh)
1452 return bh;
1453 if (buffer_uptodate(bh))
1454 return bh;
1455 ll_rw_block(READ_META, 1, &bh);
1456 wait_on_buffer(bh);
1457 if (buffer_uptodate(bh))
1458 return bh;
1459 put_bh(bh);
1460 *err = -EIO;
1461 return NULL;
1462}
1463
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001464static int walk_page_buffers(handle_t *handle,
1465 struct buffer_head *head,
1466 unsigned from,
1467 unsigned to,
1468 int *partial,
1469 int (*fn)(handle_t *handle,
1470 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001471{
1472 struct buffer_head *bh;
1473 unsigned block_start, block_end;
1474 unsigned blocksize = head->b_size;
1475 int err, ret = 0;
1476 struct buffer_head *next;
1477
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001478 for (bh = head, block_start = 0;
1479 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001480 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001481 next = bh->b_this_page;
1482 block_end = block_start + blocksize;
1483 if (block_end <= from || block_start >= to) {
1484 if (partial && !buffer_uptodate(bh))
1485 *partial = 1;
1486 continue;
1487 }
1488 err = (*fn)(handle, bh);
1489 if (!ret)
1490 ret = err;
1491 }
1492 return ret;
1493}
1494
1495/*
1496 * To preserve ordering, it is essential that the hole instantiation and
1497 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -07001498 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -07001499 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001500 * prepare_write() is the right place.
1501 *
Mingming Cao617ba132006-10-11 01:20:53 -07001502 * Also, this function can nest inside ext4_writepage() ->
1503 * block_write_full_page(). In that case, we *know* that ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001504 * has generated enough buffer credits to do the whole page. So we won't
1505 * block on the journal in that case, which is good, because the caller may
1506 * be PF_MEMALLOC.
1507 *
Mingming Cao617ba132006-10-11 01:20:53 -07001508 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001509 * quota file writes. If we were to commit the transaction while thus
1510 * reentered, there can be a deadlock - we would be holding a quota
1511 * lock, and the commit would never complete if another thread had a
1512 * transaction open and was blocking on the quota lock - a ranking
1513 * violation.
1514 *
Mingming Caodab291a2006-10-11 01:21:01 -07001515 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001516 * will _not_ run commit under these circumstances because handle->h_ref
1517 * is elevated. We'll still have enough credits for the tiny quotafile
1518 * write.
1519 */
1520static int do_journal_get_write_access(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001521 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001522{
1523 if (!buffer_mapped(bh) || buffer_freed(bh))
1524 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001525 return ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001526}
1527
Jan Karab9a42072009-12-08 21:24:33 -05001528/*
1529 * Truncate blocks that were not used by write. We have to truncate the
1530 * pagecache as well so that corresponding buffers get properly unmapped.
1531 */
1532static void ext4_truncate_failed_write(struct inode *inode)
1533{
1534 truncate_inode_pages(inode->i_mapping, inode->i_size);
1535 ext4_truncate(inode);
1536}
1537
Nick Pigginbfc1af62007-10-16 01:25:05 -07001538static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001539 loff_t pos, unsigned len, unsigned flags,
1540 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001541{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001542 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001543 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001544 handle_t *handle;
1545 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001546 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001547 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001548 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001549
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001550 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001551 /*
1552 * Reserve one block more for addition to orphan list in case
1553 * we allocate blocks but write fails for some reason
1554 */
1555 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001556 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001557 from = pos & (PAGE_CACHE_SIZE - 1);
1558 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001559
1560retry:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001561 handle = ext4_journal_start(inode, needed_blocks);
1562 if (IS_ERR(handle)) {
1563 ret = PTR_ERR(handle);
1564 goto out;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001565 }
1566
Jan Karaebd36102009-02-22 21:09:59 -05001567 /* We cannot recurse into the filesystem as the transaction is already
1568 * started */
1569 flags |= AOP_FLAG_NOFS;
1570
Nick Piggin54566b22009-01-04 12:00:53 -08001571 page = grab_cache_page_write_begin(mapping, index, flags);
Jan Karacf108bc2008-07-11 19:27:31 -04001572 if (!page) {
1573 ext4_journal_stop(handle);
1574 ret = -ENOMEM;
1575 goto out;
1576 }
1577 *pagep = page;
1578
Nick Pigginbfc1af62007-10-16 01:25:05 -07001579 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Jan Karaebd36102009-02-22 21:09:59 -05001580 ext4_get_block);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001581
1582 if (!ret && ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001583 ret = walk_page_buffers(handle, page_buffers(page),
1584 from, to, NULL, do_journal_get_write_access);
1585 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001586
1587 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001588 unlock_page(page);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001589 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001590 /*
1591 * block_write_begin may have instantiated a few blocks
1592 * outside i_size. Trim these off again. Don't need
1593 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001594 *
1595 * Add inode to orphan list in case we crash before
1596 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001597 */
Jan Karaffacfa72009-07-13 16:22:22 -04001598 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001599 ext4_orphan_add(handle, inode);
1600
1601 ext4_journal_stop(handle);
1602 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001603 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001604 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001605 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001606 * still be on the orphan list; we need to
1607 * make sure the inode is removed from the
1608 * orphan list in that case.
1609 */
1610 if (inode->i_nlink)
1611 ext4_orphan_del(NULL, inode);
1612 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001613 }
1614
Mingming Cao617ba132006-10-11 01:20:53 -07001615 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001616 goto retry;
Andrew Morton7479d2b2007-04-01 23:49:44 -07001617out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001618 return ret;
1619}
1620
Nick Pigginbfc1af62007-10-16 01:25:05 -07001621/* For write_end() in data=journal mode */
1622static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001623{
1624 if (!buffer_mapped(bh) || buffer_freed(bh))
1625 return 0;
1626 set_buffer_uptodate(bh);
Frank Mayhar03901312009-01-07 00:06:22 -05001627 return ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001628}
1629
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001630static int ext4_generic_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001631 struct address_space *mapping,
1632 loff_t pos, unsigned len, unsigned copied,
1633 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001634{
1635 int i_size_changed = 0;
1636 struct inode *inode = mapping->host;
1637 handle_t *handle = ext4_journal_current_handle();
1638
1639 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
1640
1641 /*
1642 * No need to use i_size_read() here, the i_size
1643 * cannot change under us because we hold i_mutex.
1644 *
1645 * But it's important to update i_size while still holding page lock:
1646 * page writeout could otherwise come in and zero beyond i_size.
1647 */
1648 if (pos + copied > inode->i_size) {
1649 i_size_write(inode, pos + copied);
1650 i_size_changed = 1;
1651 }
1652
1653 if (pos + copied > EXT4_I(inode)->i_disksize) {
1654 /* We need to mark inode dirty even if
1655 * new_i_size is less that inode->i_size
1656 * bu greater than i_disksize.(hint delalloc)
1657 */
1658 ext4_update_i_disksize(inode, (pos + copied));
1659 i_size_changed = 1;
1660 }
1661 unlock_page(page);
1662 page_cache_release(page);
1663
1664 /*
1665 * Don't mark the inode dirty under page lock. First, it unnecessarily
1666 * makes the holding time of page lock longer. Second, it forces lock
1667 * ordering of page lock and transaction start for journaling
1668 * filesystems.
1669 */
1670 if (i_size_changed)
1671 ext4_mark_inode_dirty(handle, inode);
1672
1673 return copied;
1674}
1675
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001676/*
1677 * We need to pick up the new inode size which generic_commit_write gave us
1678 * `file' can be NULL - eg, when called from page_symlink().
1679 *
Mingming Cao617ba132006-10-11 01:20:53 -07001680 * ext4 never places buffers on inode->i_mapping->private_list. metadata
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001681 * buffers are managed internally.
1682 */
Nick Pigginbfc1af62007-10-16 01:25:05 -07001683static int ext4_ordered_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001684 struct address_space *mapping,
1685 loff_t pos, unsigned len, unsigned copied,
1686 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001687{
Mingming Cao617ba132006-10-11 01:20:53 -07001688 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001689 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001690 int ret = 0, ret2;
1691
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001692 trace_ext4_ordered_write_end(inode, pos, len, copied);
Jan Kara678aaf42008-07-11 19:27:31 -04001693 ret = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001694
1695 if (ret == 0) {
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001696 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001697 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001698 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001699 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001700 /* if we have allocated more blocks and copied
1701 * less. We will have blocks allocated outside
1702 * inode->i_size. So truncate them
1703 */
1704 ext4_orphan_add(handle, inode);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001705 if (ret2 < 0)
1706 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001707 }
Mingming Cao617ba132006-10-11 01:20:53 -07001708 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001709 if (!ret)
1710 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001711
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001712 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001713 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001714 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001715 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001716 * on the orphan list; we need to make sure the inode
1717 * is removed from the orphan list in that case.
1718 */
1719 if (inode->i_nlink)
1720 ext4_orphan_del(NULL, inode);
1721 }
1722
1723
Nick Pigginbfc1af62007-10-16 01:25:05 -07001724 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001725}
1726
Nick Pigginbfc1af62007-10-16 01:25:05 -07001727static int ext4_writeback_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001728 struct address_space *mapping,
1729 loff_t pos, unsigned len, unsigned copied,
1730 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001731{
Mingming Cao617ba132006-10-11 01:20:53 -07001732 handle_t *handle = ext4_journal_current_handle();
Jan Karacf108bc2008-07-11 19:27:31 -04001733 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001734 int ret = 0, ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001735
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001736 trace_ext4_writeback_write_end(inode, pos, len, copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001737 ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001738 page, fsdata);
Roel Kluinf8a87d82008-04-29 22:01:18 -04001739 copied = ret2;
Jan Karaffacfa72009-07-13 16:22:22 -04001740 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001741 /* if we have allocated more blocks and copied
1742 * less. We will have blocks allocated outside
1743 * inode->i_size. So truncate them
1744 */
1745 ext4_orphan_add(handle, inode);
1746
Roel Kluinf8a87d82008-04-29 22:01:18 -04001747 if (ret2 < 0)
1748 ret = ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001749
Mingming Cao617ba132006-10-11 01:20:53 -07001750 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001751 if (!ret)
1752 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001753
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001754 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001755 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001756 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001757 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001758 * on the orphan list; we need to make sure the inode
1759 * is removed from the orphan list in that case.
1760 */
1761 if (inode->i_nlink)
1762 ext4_orphan_del(NULL, inode);
1763 }
1764
Nick Pigginbfc1af62007-10-16 01:25:05 -07001765 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001766}
1767
Nick Pigginbfc1af62007-10-16 01:25:05 -07001768static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001769 struct address_space *mapping,
1770 loff_t pos, unsigned len, unsigned copied,
1771 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001772{
Mingming Cao617ba132006-10-11 01:20:53 -07001773 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001774 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001775 int ret = 0, ret2;
1776 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001777 unsigned from, to;
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001778 loff_t new_i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001779
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001780 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001781 from = pos & (PAGE_CACHE_SIZE - 1);
1782 to = from + len;
1783
1784 if (copied < len) {
1785 if (!PageUptodate(page))
1786 copied = 0;
1787 page_zero_new_buffers(page, from+copied, to);
1788 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001789
1790 ret = walk_page_buffers(handle, page_buffers(page), from,
Nick Pigginbfc1af62007-10-16 01:25:05 -07001791 to, &partial, write_end_fn);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001792 if (!partial)
1793 SetPageUptodate(page);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001794 new_i_size = pos + copied;
1795 if (new_i_size > inode->i_size)
Nick Pigginbfc1af62007-10-16 01:25:05 -07001796 i_size_write(inode, pos+copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001797 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04001798 if (new_i_size > EXT4_I(inode)->i_disksize) {
1799 ext4_update_i_disksize(inode, new_i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001800 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001801 if (!ret)
1802 ret = ret2;
1803 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001804
Jan Karacf108bc2008-07-11 19:27:31 -04001805 unlock_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001806 page_cache_release(page);
Jan Karaffacfa72009-07-13 16:22:22 -04001807 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001808 /* if we have allocated more blocks and copied
1809 * less. We will have blocks allocated outside
1810 * inode->i_size. So truncate them
1811 */
1812 ext4_orphan_add(handle, inode);
1813
Mingming Cao617ba132006-10-11 01:20:53 -07001814 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001815 if (!ret)
1816 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001817 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001818 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001819 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001820 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001821 * on the orphan list; we need to make sure the inode
1822 * is removed from the orphan list in that case.
1823 */
1824 if (inode->i_nlink)
1825 ext4_orphan_del(NULL, inode);
1826 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001827
1828 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001829}
Mingming Caod2a17632008-07-14 17:52:37 -04001830
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001831/*
1832 * Reserve a single block located at lblock
1833 */
1834static int ext4_da_reserve_space(struct inode *inode, sector_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -04001835{
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001836 int retries = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01001837 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001838 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001839 unsigned long md_needed, md_reserved;
Mingming Caod2a17632008-07-14 17:52:37 -04001840
1841 /*
1842 * recalculate the amount of metadata blocks to reserve
1843 * in order to allocate nrblocks
1844 * worse case is one extent per block
1845 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001846repeat:
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001847 spin_lock(&ei->i_block_reservation_lock);
1848 md_reserved = ei->i_reserved_meta_blocks;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001849 md_needed = ext4_calc_metadata_amount(inode, lblock);
Theodore Ts'of8ec9d62010-01-01 01:00:21 -05001850 trace_ext4_da_reserve_space(inode, md_needed);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001851 spin_unlock(&ei->i_block_reservation_lock);
Mingming Caod2a17632008-07-14 17:52:37 -04001852
Mingming Cao60e58e02009-01-22 18:13:05 +01001853 /*
1854 * Make quota reservation here to prevent quota overflow
1855 * later. Real quota accounting is done at pages writeout
1856 * time.
1857 */
Aneesh Kumar K.V1db91382010-01-22 17:06:20 -05001858 if (vfs_dq_reserve_block(inode, md_needed + 1))
Mingming Cao60e58e02009-01-22 18:13:05 +01001859 return -EDQUOT;
Mingming Cao60e58e02009-01-22 18:13:05 +01001860
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001861 if (ext4_claim_free_blocks(sbi, md_needed + 1)) {
1862 vfs_dq_release_reservation_block(inode, md_needed + 1);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001863 if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
1864 yield();
1865 goto repeat;
1866 }
Mingming Caod2a17632008-07-14 17:52:37 -04001867 return -ENOSPC;
1868 }
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001869 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001870 ei->i_reserved_data_blocks++;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001871 ei->i_reserved_meta_blocks += md_needed;
1872 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001873
Mingming Caod2a17632008-07-14 17:52:37 -04001874 return 0; /* success */
1875}
1876
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001877static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001878{
1879 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001880 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001881
Mingming Caocd213222008-08-19 22:16:59 -04001882 if (!to_free)
1883 return; /* Nothing to release, exit */
1884
Mingming Caod2a17632008-07-14 17:52:37 -04001885 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001886
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001887 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001888 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001889 * if there aren't enough reserved blocks, then the
1890 * counter is messed up somewhere. Since this
1891 * function is called from invalidate page, it's
1892 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001893 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001894 ext4_msg(inode->i_sb, KERN_NOTICE, "ext4_da_release_space: "
1895 "ino %lu, to_free %d with only %d reserved "
1896 "data blocks\n", inode->i_ino, to_free,
1897 ei->i_reserved_data_blocks);
1898 WARN_ON(1);
1899 to_free = ei->i_reserved_data_blocks;
1900 }
1901 ei->i_reserved_data_blocks -= to_free;
1902
1903 if (ei->i_reserved_data_blocks == 0) {
1904 /*
1905 * We can release all of the reserved metadata blocks
1906 * only when we have written all of the delayed
1907 * allocation blocks.
1908 */
Theodore Ts'oee5f4d92010-01-01 02:36:15 -05001909 to_free += ei->i_reserved_meta_blocks;
1910 ei->i_reserved_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001911 ei->i_da_metadata_calc_len = 0;
Mingming Caocd213222008-08-19 22:16:59 -04001912 }
1913
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001914 /* update fs dirty blocks counter */
1915 percpu_counter_sub(&sbi->s_dirtyblocks_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001916
Mingming Caod2a17632008-07-14 17:52:37 -04001917 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001918
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001919 vfs_dq_release_reservation_block(inode, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001920}
1921
1922static void ext4_da_page_release_reservation(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001923 unsigned long offset)
Mingming Caod2a17632008-07-14 17:52:37 -04001924{
1925 int to_release = 0;
1926 struct buffer_head *head, *bh;
1927 unsigned int curr_off = 0;
1928
1929 head = page_buffers(page);
1930 bh = head;
1931 do {
1932 unsigned int next_off = curr_off + bh->b_size;
1933
1934 if ((offset <= curr_off) && (buffer_delay(bh))) {
1935 to_release++;
1936 clear_buffer_delay(bh);
1937 }
1938 curr_off = next_off;
1939 } while ((bh = bh->b_this_page) != head);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001940 ext4_da_release_space(page->mapping->host, to_release);
Mingming Caod2a17632008-07-14 17:52:37 -04001941}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001942
1943/*
Alex Tomas64769242008-07-11 19:27:31 -04001944 * Delayed allocation stuff
1945 */
1946
Alex Tomas64769242008-07-11 19:27:31 -04001947/*
1948 * mpage_da_submit_io - walks through extent of pages and try to write
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001949 * them with writepage() call back
Alex Tomas64769242008-07-11 19:27:31 -04001950 *
1951 * @mpd->inode: inode
1952 * @mpd->first_page: first page of the extent
1953 * @mpd->next_page: page after the last page of the extent
Alex Tomas64769242008-07-11 19:27:31 -04001954 *
1955 * By the time mpage_da_submit_io() is called we expect all blocks
1956 * to be allocated. this may be wrong if allocation failed.
1957 *
1958 * As pages are already locked by write_cache_pages(), we can't use it
1959 */
1960static int mpage_da_submit_io(struct mpage_da_data *mpd)
1961{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001962 long pages_skipped;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001963 struct pagevec pvec;
1964 unsigned long index, end;
1965 int ret = 0, err, nr_pages, i;
1966 struct inode *inode = mpd->inode;
1967 struct address_space *mapping = inode->i_mapping;
Alex Tomas64769242008-07-11 19:27:31 -04001968
1969 BUG_ON(mpd->next_page <= mpd->first_page);
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001970 /*
1971 * We need to start from the first_page to the next_page - 1
1972 * to make sure we also write the mapped dirty buffer_heads.
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001973 * If we look at mpd->b_blocknr we would only be looking
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001974 * at the currently mapped buffer_heads.
1975 */
Alex Tomas64769242008-07-11 19:27:31 -04001976 index = mpd->first_page;
1977 end = mpd->next_page - 1;
1978
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001979 pagevec_init(&pvec, 0);
Alex Tomas64769242008-07-11 19:27:31 -04001980 while (index <= end) {
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001981 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
Alex Tomas64769242008-07-11 19:27:31 -04001982 if (nr_pages == 0)
1983 break;
1984 for (i = 0; i < nr_pages; i++) {
1985 struct page *page = pvec.pages[i];
1986
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001987 index = page->index;
1988 if (index > end)
1989 break;
1990 index++;
1991
1992 BUG_ON(!PageLocked(page));
1993 BUG_ON(PageWriteback(page));
1994
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001995 pages_skipped = mpd->wbc->pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001996 err = mapping->a_ops->writepage(page, mpd->wbc);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001997 if (!err && (pages_skipped == mpd->wbc->pages_skipped))
1998 /*
1999 * have successfully written the page
2000 * without skipping the same
2001 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002002 mpd->pages_written++;
Alex Tomas64769242008-07-11 19:27:31 -04002003 /*
2004 * In error case, we have to continue because
2005 * remaining pages are still locked
2006 * XXX: unlock and re-dirty them?
2007 */
2008 if (ret == 0)
2009 ret = err;
2010 }
2011 pagevec_release(&pvec);
2012 }
Alex Tomas64769242008-07-11 19:27:31 -04002013 return ret;
2014}
2015
2016/*
2017 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
2018 *
2019 * @mpd->inode - inode to walk through
2020 * @exbh->b_blocknr - first block on a disk
2021 * @exbh->b_size - amount of space in bytes
2022 * @logical - first logical block to start assignment with
2023 *
2024 * the function goes through all passed space and put actual disk
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002025 * block numbers into buffer heads, dropping BH_Delay and BH_Unwritten
Alex Tomas64769242008-07-11 19:27:31 -04002026 */
2027static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
2028 struct buffer_head *exbh)
2029{
2030 struct inode *inode = mpd->inode;
2031 struct address_space *mapping = inode->i_mapping;
2032 int blocks = exbh->b_size >> inode->i_blkbits;
2033 sector_t pblock = exbh->b_blocknr, cur_logical;
2034 struct buffer_head *head, *bh;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002035 pgoff_t index, end;
Alex Tomas64769242008-07-11 19:27:31 -04002036 struct pagevec pvec;
2037 int nr_pages, i;
2038
2039 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2040 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2041 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
2042
2043 pagevec_init(&pvec, 0);
2044
2045 while (index <= end) {
2046 /* XXX: optimize tail */
2047 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2048 if (nr_pages == 0)
2049 break;
2050 for (i = 0; i < nr_pages; i++) {
2051 struct page *page = pvec.pages[i];
2052
2053 index = page->index;
2054 if (index > end)
2055 break;
2056 index++;
2057
2058 BUG_ON(!PageLocked(page));
2059 BUG_ON(PageWriteback(page));
2060 BUG_ON(!page_has_buffers(page));
2061
2062 bh = page_buffers(page);
2063 head = bh;
2064
2065 /* skip blocks out of the range */
2066 do {
2067 if (cur_logical >= logical)
2068 break;
2069 cur_logical++;
2070 } while ((bh = bh->b_this_page) != head);
2071
2072 do {
2073 if (cur_logical >= logical + blocks)
2074 break;
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002075
2076 if (buffer_delay(bh) ||
2077 buffer_unwritten(bh)) {
2078
2079 BUG_ON(bh->b_bdev != inode->i_sb->s_bdev);
2080
2081 if (buffer_delay(bh)) {
2082 clear_buffer_delay(bh);
2083 bh->b_blocknr = pblock;
2084 } else {
2085 /*
2086 * unwritten already should have
2087 * blocknr assigned. Verify that
2088 */
2089 clear_buffer_unwritten(bh);
2090 BUG_ON(bh->b_blocknr != pblock);
2091 }
2092
Mingming Cao61628a32008-07-11 19:27:31 -04002093 } else if (buffer_mapped(bh))
Alex Tomas64769242008-07-11 19:27:31 -04002094 BUG_ON(bh->b_blocknr != pblock);
Alex Tomas64769242008-07-11 19:27:31 -04002095
2096 cur_logical++;
2097 pblock++;
2098 } while ((bh = bh->b_this_page) != head);
2099 }
2100 pagevec_release(&pvec);
2101 }
2102}
2103
2104
2105/*
2106 * __unmap_underlying_blocks - just a helper function to unmap
2107 * set of blocks described by @bh
2108 */
2109static inline void __unmap_underlying_blocks(struct inode *inode,
2110 struct buffer_head *bh)
2111{
2112 struct block_device *bdev = inode->i_sb->s_bdev;
2113 int blocks, i;
2114
2115 blocks = bh->b_size >> inode->i_blkbits;
2116 for (i = 0; i < blocks; i++)
2117 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
2118}
2119
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002120static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd,
2121 sector_t logical, long blk_cnt)
2122{
2123 int nr_pages, i;
2124 pgoff_t index, end;
2125 struct pagevec pvec;
2126 struct inode *inode = mpd->inode;
2127 struct address_space *mapping = inode->i_mapping;
2128
2129 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2130 end = (logical + blk_cnt - 1) >>
2131 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2132 while (index <= end) {
2133 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2134 if (nr_pages == 0)
2135 break;
2136 for (i = 0; i < nr_pages; i++) {
2137 struct page *page = pvec.pages[i];
2138 index = page->index;
2139 if (index > end)
2140 break;
2141 index++;
2142
2143 BUG_ON(!PageLocked(page));
2144 BUG_ON(PageWriteback(page));
2145 block_invalidatepage(page, 0);
2146 ClearPageUptodate(page);
2147 unlock_page(page);
2148 }
2149 }
2150 return;
2151}
2152
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002153static void ext4_print_free_blocks(struct inode *inode)
2154{
2155 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o16939182009-09-26 17:43:59 -04002156 printk(KERN_CRIT "Total free blocks count %lld\n",
2157 ext4_count_free_blocks(inode->i_sb));
2158 printk(KERN_CRIT "Free/Dirty block details\n");
2159 printk(KERN_CRIT "free_blocks=%lld\n",
2160 (long long) percpu_counter_sum(&sbi->s_freeblocks_counter));
2161 printk(KERN_CRIT "dirty_blocks=%lld\n",
2162 (long long) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2163 printk(KERN_CRIT "Block reservation details\n");
2164 printk(KERN_CRIT "i_reserved_data_blocks=%u\n",
2165 EXT4_I(inode)->i_reserved_data_blocks);
2166 printk(KERN_CRIT "i_reserved_meta_blocks=%u\n",
2167 EXT4_I(inode)->i_reserved_meta_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002168 return;
2169}
2170
Theodore Ts'ob920c752009-05-14 00:54:29 -04002171/*
Alex Tomas64769242008-07-11 19:27:31 -04002172 * mpage_da_map_blocks - go through given space
2173 *
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002174 * @mpd - bh describing space
Alex Tomas64769242008-07-11 19:27:31 -04002175 *
2176 * The function skips space we know is already mapped to disk blocks.
2177 *
Alex Tomas64769242008-07-11 19:27:31 -04002178 */
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002179static int mpage_da_map_blocks(struct mpage_da_data *mpd)
Alex Tomas64769242008-07-11 19:27:31 -04002180{
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002181 int err, blks, get_blocks_flags;
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002182 struct buffer_head new;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002183 sector_t next = mpd->b_blocknr;
2184 unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits;
2185 loff_t disksize = EXT4_I(mpd->inode)->i_disksize;
2186 handle_t *handle = NULL;
Alex Tomas64769242008-07-11 19:27:31 -04002187
2188 /*
2189 * We consider only non-mapped and non-allocated blocks
2190 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002191 if ((mpd->b_state & (1 << BH_Mapped)) &&
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002192 !(mpd->b_state & (1 << BH_Delay)) &&
2193 !(mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002194 return 0;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002195
2196 /*
2197 * If we didn't accumulate anything to write simply return
2198 */
2199 if (!mpd->b_size)
2200 return 0;
2201
2202 handle = ext4_journal_current_handle();
2203 BUG_ON(!handle);
2204
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002205 /*
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002206 * Call ext4_get_blocks() to allocate any delayed allocation
2207 * blocks, or to convert an uninitialized extent to be
2208 * initialized (in the case where we have written into
2209 * one or more preallocated blocks).
2210 *
2211 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to
2212 * indicate that we are on the delayed allocation path. This
2213 * affects functions in many different parts of the allocation
2214 * call path. This flag exists primarily because we don't
2215 * want to change *many* call functions, so ext4_get_blocks()
2216 * will set the magic i_delalloc_reserved_flag once the
2217 * inode's allocation semaphore is taken.
2218 *
2219 * If the blocks in questions were delalloc blocks, set
2220 * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting
2221 * variables are updated after the blocks have been allocated.
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002222 */
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002223 new.b_state = 0;
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05002224 get_blocks_flags = EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002225 if (mpd->b_state & (1 << BH_Delay))
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05002226 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2227
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002228 blks = ext4_get_blocks(handle, mpd->inode, next, max_blocks,
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002229 &new, get_blocks_flags);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002230 if (blks < 0) {
2231 err = blks;
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002232 /*
2233 * If get block returns with error we simply
2234 * return. Later writepage will redirty the page and
2235 * writepages will find the dirty page again
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002236 */
2237 if (err == -EAGAIN)
2238 return 0;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002239
2240 if (err == -ENOSPC &&
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002241 ext4_count_free_blocks(mpd->inode->i_sb)) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002242 mpd->retval = err;
2243 return 0;
2244 }
2245
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002246 /*
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002247 * get block failure will cause us to loop in
2248 * writepages, because a_ops->writepage won't be able
2249 * to make progress. The page will be redirtied by
2250 * writepage and writepages will again try to write
2251 * the same.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002252 */
Theodore Ts'o16939182009-09-26 17:43:59 -04002253 ext4_msg(mpd->inode->i_sb, KERN_CRIT,
2254 "delayed block allocation failed for inode %lu at "
2255 "logical offset %llu with max blocks %zd with "
2256 "error %d\n", mpd->inode->i_ino,
2257 (unsigned long long) next,
2258 mpd->b_size >> mpd->inode->i_blkbits, err);
2259 printk(KERN_CRIT "This should not happen!! "
2260 "Data will be lost\n");
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002261 if (err == -ENOSPC) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002262 ext4_print_free_blocks(mpd->inode);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002263 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002264 /* invalidate all the pages */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002265 ext4_da_block_invalidatepages(mpd, next,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002266 mpd->b_size >> mpd->inode->i_blkbits);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002267 return err;
2268 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002269 BUG_ON(blks == 0);
2270
2271 new.b_size = (blks << mpd->inode->i_blkbits);
Alex Tomas64769242008-07-11 19:27:31 -04002272
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002273 if (buffer_new(&new))
2274 __unmap_underlying_blocks(mpd->inode, &new);
Alex Tomas64769242008-07-11 19:27:31 -04002275
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002276 /*
2277 * If blocks are delayed marked, we need to
2278 * put actual blocknr and drop delayed bit
2279 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002280 if ((mpd->b_state & (1 << BH_Delay)) ||
2281 (mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002282 mpage_put_bnr_to_bhs(mpd, next, &new);
2283
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002284 if (ext4_should_order_data(mpd->inode)) {
2285 err = ext4_jbd2_file_inode(handle, mpd->inode);
2286 if (err)
2287 return err;
2288 }
2289
2290 /*
Jan Kara03f5d8b2009-06-09 00:17:05 -04002291 * Update on-disk size along with block allocation.
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002292 */
2293 disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits;
2294 if (disksize > i_size_read(mpd->inode))
2295 disksize = i_size_read(mpd->inode);
2296 if (disksize > EXT4_I(mpd->inode)->i_disksize) {
2297 ext4_update_i_disksize(mpd->inode, disksize);
2298 return ext4_mark_inode_dirty(handle, mpd->inode);
2299 }
2300
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002301 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04002302}
2303
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04002304#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
2305 (1 << BH_Delay) | (1 << BH_Unwritten))
Alex Tomas64769242008-07-11 19:27:31 -04002306
2307/*
2308 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
2309 *
2310 * @mpd->lbh - extent of blocks
2311 * @logical - logical number of the block in the file
2312 * @bh - bh of the block (used to access block's state)
2313 *
2314 * the function is used to collect contig. blocks in same state
2315 */
2316static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002317 sector_t logical, size_t b_size,
2318 unsigned long b_state)
Alex Tomas64769242008-07-11 19:27:31 -04002319{
Alex Tomas64769242008-07-11 19:27:31 -04002320 sector_t next;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002321 int nrblocks = mpd->b_size >> mpd->inode->i_blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04002322
Mingming Cao525f4ed2008-08-19 22:15:58 -04002323 /* check if thereserved journal credits might overflow */
2324 if (!(EXT4_I(mpd->inode)->i_flags & EXT4_EXTENTS_FL)) {
2325 if (nrblocks >= EXT4_MAX_TRANS_DATA) {
2326 /*
2327 * With non-extent format we are limited by the journal
2328 * credit available. Total credit needed to insert
2329 * nrblocks contiguous blocks is dependent on the
2330 * nrblocks. So limit nrblocks.
2331 */
2332 goto flush_it;
2333 } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) >
2334 EXT4_MAX_TRANS_DATA) {
2335 /*
2336 * Adding the new buffer_head would make it cross the
2337 * allowed limit for which we have journal credit
2338 * reserved. So limit the new bh->b_size
2339 */
2340 b_size = (EXT4_MAX_TRANS_DATA - nrblocks) <<
2341 mpd->inode->i_blkbits;
2342 /* we will do mpage_da_submit_io in the next loop */
2343 }
2344 }
Alex Tomas64769242008-07-11 19:27:31 -04002345 /*
2346 * First block in the extent
2347 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002348 if (mpd->b_size == 0) {
2349 mpd->b_blocknr = logical;
2350 mpd->b_size = b_size;
2351 mpd->b_state = b_state & BH_FLAGS;
Alex Tomas64769242008-07-11 19:27:31 -04002352 return;
2353 }
2354
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002355 next = mpd->b_blocknr + nrblocks;
Alex Tomas64769242008-07-11 19:27:31 -04002356 /*
2357 * Can we merge the block to our big extent?
2358 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002359 if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) {
2360 mpd->b_size += b_size;
Alex Tomas64769242008-07-11 19:27:31 -04002361 return;
2362 }
2363
Mingming Cao525f4ed2008-08-19 22:15:58 -04002364flush_it:
Alex Tomas64769242008-07-11 19:27:31 -04002365 /*
2366 * We couldn't merge the block to our extent, so we
2367 * need to flush current extent and start new one
2368 */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002369 if (mpage_da_map_blocks(mpd) == 0)
2370 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002371 mpd->io_done = 1;
2372 return;
Alex Tomas64769242008-07-11 19:27:31 -04002373}
2374
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002375static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002376{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002377 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002378}
2379
Alex Tomas64769242008-07-11 19:27:31 -04002380/*
2381 * __mpage_da_writepage - finds extent of pages and blocks
2382 *
2383 * @page: page to consider
2384 * @wbc: not used, we just follow rules
2385 * @data: context
2386 *
2387 * The function finds extents of pages and scan them for all blocks.
2388 */
2389static int __mpage_da_writepage(struct page *page,
2390 struct writeback_control *wbc, void *data)
2391{
2392 struct mpage_da_data *mpd = data;
2393 struct inode *inode = mpd->inode;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002394 struct buffer_head *bh, *head;
Alex Tomas64769242008-07-11 19:27:31 -04002395 sector_t logical;
2396
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002397 if (mpd->io_done) {
2398 /*
2399 * Rest of the page in the page_vec
2400 * redirty then and skip then. We will
Anand Gadiyarfd589a82009-07-16 17:13:03 +02002401 * try to write them again after
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002402 * starting a new transaction
2403 */
2404 redirty_page_for_writepage(wbc, page);
2405 unlock_page(page);
2406 return MPAGE_DA_EXTENT_TAIL;
2407 }
Alex Tomas64769242008-07-11 19:27:31 -04002408 /*
2409 * Can we merge this page to current extent?
2410 */
2411 if (mpd->next_page != page->index) {
2412 /*
2413 * Nope, we can't. So, we map non-allocated blocks
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002414 * and start IO on them using writepage()
Alex Tomas64769242008-07-11 19:27:31 -04002415 */
2416 if (mpd->next_page != mpd->first_page) {
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002417 if (mpage_da_map_blocks(mpd) == 0)
2418 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002419 /*
2420 * skip rest of the page in the page_vec
2421 */
2422 mpd->io_done = 1;
2423 redirty_page_for_writepage(wbc, page);
2424 unlock_page(page);
2425 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002426 }
2427
2428 /*
2429 * Start next extent of pages ...
2430 */
2431 mpd->first_page = page->index;
2432
2433 /*
2434 * ... and blocks
2435 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002436 mpd->b_size = 0;
2437 mpd->b_state = 0;
2438 mpd->b_blocknr = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002439 }
2440
2441 mpd->next_page = page->index + 1;
2442 logical = (sector_t) page->index <<
2443 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2444
2445 if (!page_has_buffers(page)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002446 mpage_add_bh_to_extent(mpd, logical, PAGE_CACHE_SIZE,
2447 (1 << BH_Dirty) | (1 << BH_Uptodate));
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002448 if (mpd->io_done)
2449 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002450 } else {
2451 /*
2452 * Page with regular buffer heads, just add all dirty ones
2453 */
2454 head = page_buffers(page);
2455 bh = head;
2456 do {
2457 BUG_ON(buffer_locked(bh));
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002458 /*
2459 * We need to try to allocate
2460 * unmapped blocks in the same page.
2461 * Otherwise we won't make progress
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002462 * with the page in ext4_writepage
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002463 */
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002464 if (ext4_bh_delay_or_unwritten(NULL, bh)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002465 mpage_add_bh_to_extent(mpd, logical,
2466 bh->b_size,
2467 bh->b_state);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002468 if (mpd->io_done)
2469 return MPAGE_DA_EXTENT_TAIL;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002470 } else if (buffer_dirty(bh) && (buffer_mapped(bh))) {
2471 /*
2472 * mapped dirty buffer. We need to update
2473 * the b_state because we look at
2474 * b_state in mpage_da_map_blocks. We don't
2475 * update b_size because if we find an
2476 * unmapped buffer_head later we need to
2477 * use the b_state flag of that buffer_head.
2478 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002479 if (mpd->b_size == 0)
2480 mpd->b_state = bh->b_state & BH_FLAGS;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002481 }
Alex Tomas64769242008-07-11 19:27:31 -04002482 logical++;
2483 } while ((bh = bh->b_this_page) != head);
2484 }
2485
2486 return 0;
2487}
2488
2489/*
Theodore Ts'ob920c752009-05-14 00:54:29 -04002490 * This is a special get_blocks_t callback which is used by
2491 * ext4_da_write_begin(). It will either return mapped block or
2492 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002493 *
2494 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
2495 * We also have b_blocknr = -1 and b_bdev initialized properly
2496 *
2497 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
2498 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
2499 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04002500 */
2501static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
2502 struct buffer_head *bh_result, int create)
2503{
2504 int ret = 0;
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002505 sector_t invalid_block = ~((sector_t) 0xffff);
2506
2507 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
2508 invalid_block = ~0;
Alex Tomas64769242008-07-11 19:27:31 -04002509
2510 BUG_ON(create == 0);
2511 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2512
2513 /*
2514 * first, we need to know whether the block is allocated already
2515 * preallocated blocks are unmapped but should treated
2516 * the same as allocated blocks.
2517 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002518 ret = ext4_get_blocks(NULL, inode, iblock, 1, bh_result, 0);
Mingming Caod2a17632008-07-14 17:52:37 -04002519 if ((ret == 0) && !buffer_delay(bh_result)) {
2520 /* the block isn't (pre)allocated yet, let's reserve space */
Alex Tomas64769242008-07-11 19:27:31 -04002521 /*
2522 * XXX: __block_prepare_write() unmaps passed block,
2523 * is it OK?
2524 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -05002525 ret = ext4_da_reserve_space(inode, iblock);
Mingming Caod2a17632008-07-14 17:52:37 -04002526 if (ret)
2527 /* not enough space to reserve */
2528 return ret;
2529
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002530 map_bh(bh_result, inode->i_sb, invalid_block);
Alex Tomas64769242008-07-11 19:27:31 -04002531 set_buffer_new(bh_result);
2532 set_buffer_delay(bh_result);
2533 } else if (ret > 0) {
2534 bh_result->b_size = (ret << inode->i_blkbits);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002535 if (buffer_unwritten(bh_result)) {
2536 /* A delayed write to unwritten bh should
2537 * be marked new and mapped. Mapped ensures
2538 * that we don't do get_block multiple times
2539 * when we write to the same offset and new
2540 * ensures that we do proper zero out for
2541 * partial write.
2542 */
Aneesh Kumar K.V9c1ee182009-05-13 18:36:58 -04002543 set_buffer_new(bh_result);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002544 set_buffer_mapped(bh_result);
2545 }
Alex Tomas64769242008-07-11 19:27:31 -04002546 ret = 0;
2547 }
2548
2549 return ret;
2550}
Mingming Cao61628a32008-07-11 19:27:31 -04002551
Theodore Ts'ob920c752009-05-14 00:54:29 -04002552/*
2553 * This function is used as a standard get_block_t calback function
2554 * when there is no desire to allocate any blocks. It is used as a
2555 * callback function for block_prepare_write(), nobh_writepage(), and
2556 * block_write_full_page(). These functions should only try to map a
2557 * single block at a time.
2558 *
2559 * Since this function doesn't do block allocations even if the caller
2560 * requests it by passing in create=1, it is critically important that
2561 * any caller checks to make sure that any buffer heads are returned
2562 * by this function are either all already mapped or marked for
2563 * delayed allocation before calling nobh_writepage() or
2564 * block_write_full_page(). Otherwise, b_blocknr could be left
2565 * unitialized, and the page write functions will be taken by
2566 * surprise.
2567 */
2568static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002569 struct buffer_head *bh_result, int create)
2570{
2571 int ret = 0;
2572 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2573
Theodore Ts'oa2dc52b2009-05-12 13:51:29 -04002574 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2575
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002576 /*
2577 * we don't want to do block allocation in writepage
2578 * so call get_block_wrap with create = 0
2579 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002580 ret = ext4_get_blocks(NULL, inode, iblock, max_blocks, bh_result, 0);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002581 if (ret > 0) {
2582 bh_result->b_size = (ret << inode->i_blkbits);
2583 ret = 0;
2584 }
2585 return ret;
Mingming Cao61628a32008-07-11 19:27:31 -04002586}
2587
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002588static int bget_one(handle_t *handle, struct buffer_head *bh)
2589{
2590 get_bh(bh);
2591 return 0;
2592}
2593
2594static int bput_one(handle_t *handle, struct buffer_head *bh)
2595{
2596 put_bh(bh);
2597 return 0;
2598}
2599
2600static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002601 unsigned int len)
2602{
2603 struct address_space *mapping = page->mapping;
2604 struct inode *inode = mapping->host;
2605 struct buffer_head *page_bufs;
2606 handle_t *handle = NULL;
2607 int ret = 0;
2608 int err;
2609
2610 page_bufs = page_buffers(page);
2611 BUG_ON(!page_bufs);
2612 walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one);
2613 /* As soon as we unlock the page, it can go away, but we have
2614 * references to buffers so we are safe */
2615 unlock_page(page);
2616
2617 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
2618 if (IS_ERR(handle)) {
2619 ret = PTR_ERR(handle);
2620 goto out;
2621 }
2622
2623 ret = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2624 do_journal_get_write_access);
2625
2626 err = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2627 write_end_fn);
2628 if (ret == 0)
2629 ret = err;
2630 err = ext4_journal_stop(handle);
2631 if (!ret)
2632 ret = err;
2633
2634 walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002635 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002636out:
2637 return ret;
2638}
2639
Mingming Cao61628a32008-07-11 19:27:31 -04002640/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002641 * Note that we don't need to start a transaction unless we're journaling data
2642 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2643 * need to file the inode to the transaction's list in ordered mode because if
2644 * we are writing back data added by write(), the inode is already there and if
2645 * we are writing back data modified via mmap(), noone guarantees in which
2646 * transaction the data will hit the disk. In case we are journaling data, we
2647 * cannot start transaction directly because transaction start ranks above page
2648 * lock so we have to do some magic.
2649 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04002650 * This function can get called via...
2651 * - ext4_da_writepages after taking page lock (have journal handle)
2652 * - journal_submit_inode_data_buffers (no journal handle)
2653 * - shrink_page_list via pdflush (no journal handle)
2654 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002655 *
2656 * We don't do any block allocation in this function. If we have page with
2657 * multiple blocks we need to write those buffer_heads that are mapped. This
2658 * is important for mmaped based write. So if we do with blocksize 1K
2659 * truncate(f, 1024);
2660 * a = mmap(f, 0, 4096);
2661 * a[0] = 'a';
2662 * truncate(f, 4096);
2663 * we have in the page first buffer_head mapped via page_mkwrite call back
2664 * but other bufer_heads would be unmapped but dirty(dirty done via the
2665 * do_wp_page). So writepage should write the first block. If we modify
2666 * the mmap area beyond 1024 we will again get a page_fault and the
2667 * page_mkwrite callback will do the block allocation and mark the
2668 * buffer_heads mapped.
2669 *
2670 * We redirty the page if we have any buffer_heads that is either delay or
2671 * unwritten in the page.
2672 *
2673 * We can get recursively called as show below.
2674 *
2675 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2676 * ext4_writepage()
2677 *
2678 * But since we don't do any block allocation we should not deadlock.
2679 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04002680 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002681static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002682 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002683{
Alex Tomas64769242008-07-11 19:27:31 -04002684 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002685 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002686 unsigned int len;
Mingming Cao61628a32008-07-11 19:27:31 -04002687 struct buffer_head *page_bufs;
2688 struct inode *inode = page->mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002689
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002690 trace_ext4_writepage(inode, page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002691 size = i_size_read(inode);
2692 if (page->index == size >> PAGE_CACHE_SHIFT)
2693 len = size & ~PAGE_CACHE_MASK;
2694 else
2695 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002696
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002697 if (page_has_buffers(page)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002698 page_bufs = page_buffers(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002699 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002700 ext4_bh_delay_or_unwritten)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002701 /*
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002702 * We don't want to do block allocation
2703 * So redirty the page and return
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002704 * We may reach here when we do a journal commit
2705 * via journal_submit_inode_data_buffers.
2706 * If we don't have mapping block we just ignore
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002707 * them. We can also reach here via shrink_page_list
2708 */
2709 redirty_page_for_writepage(wbc, page);
2710 unlock_page(page);
2711 return 0;
2712 }
2713 } else {
2714 /*
2715 * The test for page_has_buffers() is subtle:
2716 * We know the page is dirty but it lost buffers. That means
2717 * that at some moment in time after write_begin()/write_end()
2718 * has been called all buffers have been clean and thus they
2719 * must have been written at least once. So they are all
2720 * mapped and we can happily proceed with mapping them
2721 * and writing the page.
2722 *
2723 * Try to initialize the buffer_heads and check whether
2724 * all are mapped and non delay. We don't want to
2725 * do block allocation here.
2726 */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002727 ret = block_prepare_write(page, 0, len,
Theodore Ts'ob920c752009-05-14 00:54:29 -04002728 noalloc_get_block_write);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002729 if (!ret) {
2730 page_bufs = page_buffers(page);
2731 /* check whether all are mapped and non delay */
2732 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002733 ext4_bh_delay_or_unwritten)) {
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002734 redirty_page_for_writepage(wbc, page);
2735 unlock_page(page);
2736 return 0;
2737 }
2738 } else {
2739 /*
2740 * We can't do block allocation here
2741 * so just redity the page and unlock
2742 * and return
Mingming Cao61628a32008-07-11 19:27:31 -04002743 */
Mingming Cao61628a32008-07-11 19:27:31 -04002744 redirty_page_for_writepage(wbc, page);
2745 unlock_page(page);
2746 return 0;
2747 }
Aneesh Kumar K.Ved9b3e32008-11-07 09:06:45 -05002748 /* now mark the buffer_heads as dirty and uptodate */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002749 block_commit_write(page, 0, len);
Alex Tomas64769242008-07-11 19:27:31 -04002750 }
2751
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002752 if (PageChecked(page) && ext4_should_journal_data(inode)) {
2753 /*
2754 * It's mmapped pagecache. Add buffers and journal it. There
2755 * doesn't seem much point in redirtying the page here.
2756 */
2757 ClearPageChecked(page);
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002758 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002759 }
2760
Alex Tomas64769242008-07-11 19:27:31 -04002761 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
Theodore Ts'ob920c752009-05-14 00:54:29 -04002762 ret = nobh_writepage(page, noalloc_get_block_write, wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002763 else
Theodore Ts'ob920c752009-05-14 00:54:29 -04002764 ret = block_write_full_page(page, noalloc_get_block_write,
2765 wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002766
Alex Tomas64769242008-07-11 19:27:31 -04002767 return ret;
2768}
2769
Mingming Cao61628a32008-07-11 19:27:31 -04002770/*
Mingming Cao525f4ed2008-08-19 22:15:58 -04002771 * This is called via ext4_da_writepages() to
2772 * calulate the total number of credits to reserve to fit
2773 * a single extent allocation into a single transaction,
2774 * ext4_da_writpeages() will loop calling this before
2775 * the block allocation.
Mingming Cao61628a32008-07-11 19:27:31 -04002776 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002777
2778static int ext4_da_writepages_trans_blocks(struct inode *inode)
2779{
2780 int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
2781
2782 /*
2783 * With non-extent format the journal credit needed to
2784 * insert nrblocks contiguous block is dependent on
2785 * number of contiguous block. So we will limit
2786 * number of contiguous block to a sane value
2787 */
Julia Lawall30c6e07a2009-11-15 15:30:58 -05002788 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) &&
Mingming Cao525f4ed2008-08-19 22:15:58 -04002789 (max_blocks > EXT4_MAX_TRANS_DATA))
2790 max_blocks = EXT4_MAX_TRANS_DATA;
2791
2792 return ext4_chunk_trans_blocks(inode, max_blocks);
2793}
Mingming Cao61628a32008-07-11 19:27:31 -04002794
Alex Tomas64769242008-07-11 19:27:31 -04002795static int ext4_da_writepages(struct address_space *mapping,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002796 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002797{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002798 pgoff_t index;
2799 int range_whole = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002800 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002801 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002802 struct inode *inode = mapping->host;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002803 int no_nrwrite_index_update;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002804 int pages_written = 0;
2805 long pages_skipped;
Theodore Ts'o55138e0b2009-09-29 13:31:31 -04002806 unsigned int max_pages;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002807 int range_cyclic, cycled = 1, io_done = 0;
Theodore Ts'o55138e0b2009-09-29 13:31:31 -04002808 int needed_blocks, ret = 0;
2809 long desired_nr_to_write, nr_to_writebump = 0;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002810 loff_t range_start = wbc->range_start;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002811 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Mingming Cao61628a32008-07-11 19:27:31 -04002812
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002813 trace_ext4_da_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002814
Mingming Cao61628a32008-07-11 19:27:31 -04002815 /*
2816 * No pages to write? This is mainly a kludge to avoid starting
2817 * a transaction for special inodes like journal inode on last iput()
2818 * because that could violate lock ordering on umount
2819 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002820 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Mingming Cao61628a32008-07-11 19:27:31 -04002821 return 0;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002822
2823 /*
2824 * If the filesystem has aborted, it is read-only, so return
2825 * right away instead of dumping stack traces later on that
2826 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002827 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002828 * the latter could be true if the filesystem is mounted
2829 * read-only, and in that case, ext4_da_writepages should
2830 * *never* be called, so if that ever happens, we would want
2831 * the stack trace.
2832 */
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002833 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED))
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002834 return -EROFS;
2835
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002836 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2837 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002838
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002839 range_cyclic = wbc->range_cyclic;
2840 if (wbc->range_cyclic) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002841 index = mapping->writeback_index;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002842 if (index)
2843 cycled = 0;
2844 wbc->range_start = index << PAGE_CACHE_SHIFT;
2845 wbc->range_end = LLONG_MAX;
2846 wbc->range_cyclic = 0;
2847 } else
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002848 index = wbc->range_start >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002849
Theodore Ts'o55138e0b2009-09-29 13:31:31 -04002850 /*
2851 * This works around two forms of stupidity. The first is in
2852 * the writeback code, which caps the maximum number of pages
2853 * written to be 1024 pages. This is wrong on multiple
2854 * levels; different architectues have a different page size,
2855 * which changes the maximum amount of data which gets
2856 * written. Secondly, 4 megabytes is way too small. XFS
2857 * forces this value to be 16 megabytes by multiplying
2858 * nr_to_write parameter by four, and then relies on its
2859 * allocator to allocate larger extents to make them
2860 * contiguous. Unfortunately this brings us to the second
2861 * stupidity, which is that ext4's mballoc code only allocates
2862 * at most 2048 blocks. So we force contiguous writes up to
2863 * the number of dirty blocks in the inode, or
2864 * sbi->max_writeback_mb_bump whichever is smaller.
2865 */
2866 max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT);
2867 if (!range_cyclic && range_whole)
2868 desired_nr_to_write = wbc->nr_to_write * 8;
2869 else
2870 desired_nr_to_write = ext4_num_dirty_pages(inode, index,
2871 max_pages);
2872 if (desired_nr_to_write > max_pages)
2873 desired_nr_to_write = max_pages;
2874
2875 if (wbc->nr_to_write < desired_nr_to_write) {
2876 nr_to_writebump = desired_nr_to_write - wbc->nr_to_write;
2877 wbc->nr_to_write = desired_nr_to_write;
2878 }
2879
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002880 mpd.wbc = wbc;
2881 mpd.inode = mapping->host;
2882
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002883 /*
2884 * we don't want write_cache_pages to update
2885 * nr_to_write and writeback_index
2886 */
2887 no_nrwrite_index_update = wbc->no_nrwrite_index_update;
2888 wbc->no_nrwrite_index_update = 1;
2889 pages_skipped = wbc->pages_skipped;
2890
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002891retry:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002892 while (!ret && wbc->nr_to_write > 0) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002893
2894 /*
2895 * we insert one extent at a time. So we need
2896 * credit needed for single extent allocation.
2897 * journalled mode is currently not supported
2898 * by delalloc
2899 */
2900 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002901 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002902
Mingming Cao61628a32008-07-11 19:27:31 -04002903 /* start a new transaction*/
2904 handle = ext4_journal_start(inode, needed_blocks);
2905 if (IS_ERR(handle)) {
2906 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002907 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002908 "%ld pages, ino %lu; err %d\n", __func__,
2909 wbc->nr_to_write, inode->i_ino, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002910 goto out_writepages;
2911 }
Theodore Ts'of63e60052009-02-23 16:42:39 -05002912
2913 /*
2914 * Now call __mpage_da_writepage to find the next
2915 * contiguous region of logical blocks that need
2916 * blocks to be allocated by ext4. We don't actually
2917 * submit the blocks for I/O here, even though
2918 * write_cache_pages thinks it will, and will set the
2919 * pages as clean for write before calling
2920 * __mpage_da_writepage().
2921 */
2922 mpd.b_size = 0;
2923 mpd.b_state = 0;
2924 mpd.b_blocknr = 0;
2925 mpd.first_page = 0;
2926 mpd.next_page = 0;
2927 mpd.io_done = 0;
2928 mpd.pages_written = 0;
2929 mpd.retval = 0;
2930 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage,
2931 &mpd);
2932 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002933 * If we have a contiguous extent of pages and we
Theodore Ts'of63e60052009-02-23 16:42:39 -05002934 * haven't done the I/O yet, map the blocks and submit
2935 * them for I/O.
2936 */
2937 if (!mpd.io_done && mpd.next_page != mpd.first_page) {
2938 if (mpage_da_map_blocks(&mpd) == 0)
2939 mpage_da_submit_io(&mpd);
2940 mpd.io_done = 1;
2941 ret = MPAGE_DA_EXTENT_TAIL;
2942 }
Theodore Ts'ob3a3ca82009-08-31 23:13:11 -04002943 trace_ext4_da_write_pages(inode, &mpd);
Theodore Ts'of63e60052009-02-23 16:42:39 -05002944 wbc->nr_to_write -= mpd.pages_written;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002945
Mingming Cao61628a32008-07-11 19:27:31 -04002946 ext4_journal_stop(handle);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002947
Eric Sandeen8f64b322009-02-26 00:57:35 -05002948 if ((mpd.retval == -ENOSPC) && sbi->s_journal) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002949 /* commit the transaction which would
2950 * free blocks released in the transaction
2951 * and try again
2952 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002953 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002954 wbc->pages_skipped = pages_skipped;
2955 ret = 0;
2956 } else if (ret == MPAGE_DA_EXTENT_TAIL) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002957 /*
2958 * got one extent now try with
2959 * rest of the pages
2960 */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002961 pages_written += mpd.pages_written;
2962 wbc->pages_skipped = pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002963 ret = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002964 io_done = 1;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002965 } else if (wbc->nr_to_write)
Mingming Cao61628a32008-07-11 19:27:31 -04002966 /*
2967 * There is no more writeout needed
2968 * or we requested for a noblocking writeout
2969 * and we found the device congested
2970 */
Mingming Cao61628a32008-07-11 19:27:31 -04002971 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002972 }
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002973 if (!io_done && !cycled) {
2974 cycled = 1;
2975 index = 0;
2976 wbc->range_start = index << PAGE_CACHE_SHIFT;
2977 wbc->range_end = mapping->writeback_index - 1;
2978 goto retry;
2979 }
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002980 if (pages_skipped != wbc->pages_skipped)
Theodore Ts'o16939182009-09-26 17:43:59 -04002981 ext4_msg(inode->i_sb, KERN_CRIT,
2982 "This should not happen leaving %s "
2983 "with nr_to_write = %ld ret = %d\n",
2984 __func__, wbc->nr_to_write, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002985
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002986 /* Update index */
2987 index += pages_written;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002988 wbc->range_cyclic = range_cyclic;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002989 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2990 /*
2991 * set the writeback_index so that range_cyclic
2992 * mode will write it back later
2993 */
2994 mapping->writeback_index = index;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002995
Mingming Cao61628a32008-07-11 19:27:31 -04002996out_writepages:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002997 if (!no_nrwrite_index_update)
2998 wbc->no_nrwrite_index_update = 0;
Richard Kennedy2faf2e12009-12-25 15:46:07 -05002999 wbc->nr_to_write -= nr_to_writebump;
Theodore Ts'ode89de62009-08-31 17:00:59 -04003000 wbc->range_start = range_start;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003001 trace_ext4_da_writepages_result(inode, wbc, ret, pages_written);
Mingming Cao61628a32008-07-11 19:27:31 -04003002 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003003}
3004
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003005#define FALL_BACK_TO_NONDELALLOC 1
3006static int ext4_nonda_switch(struct super_block *sb)
3007{
3008 s64 free_blocks, dirty_blocks;
3009 struct ext4_sb_info *sbi = EXT4_SB(sb);
3010
3011 /*
3012 * switch to non delalloc mode if we are running low
3013 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08003014 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003015 * accumulated on each CPU without updating global counters
3016 * Delalloc need an accurate free block accounting. So switch
3017 * to non delalloc when we are near to error range.
3018 */
3019 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
3020 dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyblocks_counter);
3021 if (2 * free_blocks < 3 * dirty_blocks ||
3022 free_blocks < (dirty_blocks + EXT4_FREEBLOCKS_WATERMARK)) {
3023 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05003024 * free block count is less than 150% of dirty blocks
3025 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003026 */
3027 return 1;
3028 }
Eric Sandeenc8afb442009-12-23 07:58:12 -05003029 /*
3030 * Even if we don't switch but are nearing capacity,
3031 * start pushing delalloc when 1/2 of free blocks are dirty.
3032 */
3033 if (free_blocks < 2 * dirty_blocks)
3034 writeback_inodes_sb_if_idle(sb);
3035
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003036 return 0;
3037}
3038
Alex Tomas64769242008-07-11 19:27:31 -04003039static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003040 loff_t pos, unsigned len, unsigned flags,
3041 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003042{
Aneesh Kumar K.V1db91382010-01-22 17:06:20 -05003043 int ret, retries = 0, quota_retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04003044 struct page *page;
3045 pgoff_t index;
3046 unsigned from, to;
3047 struct inode *inode = mapping->host;
3048 handle_t *handle;
3049
3050 index = pos >> PAGE_CACHE_SHIFT;
3051 from = pos & (PAGE_CACHE_SIZE - 1);
3052 to = from + len;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003053
3054 if (ext4_nonda_switch(inode->i_sb)) {
3055 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
3056 return ext4_write_begin(file, mapping, pos,
3057 len, flags, pagep, fsdata);
3058 }
3059 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003060 trace_ext4_da_write_begin(inode, pos, len, flags);
Mingming Caod2a17632008-07-14 17:52:37 -04003061retry:
Alex Tomas64769242008-07-11 19:27:31 -04003062 /*
3063 * With delayed allocation, we don't log the i_disksize update
3064 * if there is delayed block allocation. But we still need
3065 * to journalling the i_disksize update if writes to the end
3066 * of file which has an already mapped buffer.
3067 */
3068 handle = ext4_journal_start(inode, 1);
3069 if (IS_ERR(handle)) {
3070 ret = PTR_ERR(handle);
3071 goto out;
3072 }
Jan Karaebd36102009-02-22 21:09:59 -05003073 /* We cannot recurse into the filesystem as the transaction is already
3074 * started */
3075 flags |= AOP_FLAG_NOFS;
Alex Tomas64769242008-07-11 19:27:31 -04003076
Nick Piggin54566b22009-01-04 12:00:53 -08003077 page = grab_cache_page_write_begin(mapping, index, flags);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003078 if (!page) {
3079 ext4_journal_stop(handle);
3080 ret = -ENOMEM;
3081 goto out;
3082 }
Alex Tomas64769242008-07-11 19:27:31 -04003083 *pagep = page;
3084
3085 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Theodore Ts'ob920c752009-05-14 00:54:29 -04003086 ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04003087 if (ret < 0) {
3088 unlock_page(page);
3089 ext4_journal_stop(handle);
3090 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003091 /*
3092 * block_write_begin may have instantiated a few blocks
3093 * outside i_size. Trim these off again. Don't need
3094 * i_size_read because we hold i_mutex.
3095 */
3096 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003097 ext4_truncate_failed_write(inode);
Alex Tomas64769242008-07-11 19:27:31 -04003098 }
3099
Mingming Caod2a17632008-07-14 17:52:37 -04003100 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3101 goto retry;
Aneesh Kumar K.V1db91382010-01-22 17:06:20 -05003102
3103 if ((ret == -EDQUOT) &&
3104 EXT4_I(inode)->i_reserved_meta_blocks &&
3105 (quota_retries++ < 3)) {
3106 /*
3107 * Since we often over-estimate the number of meta
3108 * data blocks required, we may sometimes get a
3109 * spurios out of quota error even though there would
3110 * be enough space once we write the data blocks and
3111 * find out how many meta data blocks were _really_
3112 * required. So try forcing the inode write to see if
3113 * that helps.
3114 */
3115 write_inode_now(inode, (quota_retries == 3));
3116 goto retry;
3117 }
Alex Tomas64769242008-07-11 19:27:31 -04003118out:
3119 return ret;
3120}
3121
Mingming Cao632eaea2008-07-11 19:27:31 -04003122/*
3123 * Check if we should update i_disksize
3124 * when write to the end of file but not require block allocation
3125 */
3126static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003127 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003128{
3129 struct buffer_head *bh;
3130 struct inode *inode = page->mapping->host;
3131 unsigned int idx;
3132 int i;
3133
3134 bh = page_buffers(page);
3135 idx = offset >> inode->i_blkbits;
3136
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003137 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003138 bh = bh->b_this_page;
3139
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003140 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003141 return 0;
3142 return 1;
3143}
3144
Alex Tomas64769242008-07-11 19:27:31 -04003145static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003146 struct address_space *mapping,
3147 loff_t pos, unsigned len, unsigned copied,
3148 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003149{
3150 struct inode *inode = mapping->host;
3151 int ret = 0, ret2;
3152 handle_t *handle = ext4_journal_current_handle();
3153 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003154 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003155 int write_mode = (int)(unsigned long)fsdata;
3156
3157 if (write_mode == FALL_BACK_TO_NONDELALLOC) {
3158 if (ext4_should_order_data(inode)) {
3159 return ext4_ordered_write_end(file, mapping, pos,
3160 len, copied, page, fsdata);
3161 } else if (ext4_should_writeback_data(inode)) {
3162 return ext4_writeback_write_end(file, mapping, pos,
3163 len, copied, page, fsdata);
3164 } else {
3165 BUG();
3166 }
3167 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003168
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003169 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04003170 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003171 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003172
3173 /*
3174 * generic_write_end() will run mark_inode_dirty() if i_size
3175 * changes. So let's piggyback the i_disksize mark_inode_dirty
3176 * into that.
3177 */
3178
3179 new_i_size = pos + copied;
Mingming Cao632eaea2008-07-11 19:27:31 -04003180 if (new_i_size > EXT4_I(inode)->i_disksize) {
3181 if (ext4_da_should_update_i_disksize(page, end)) {
3182 down_write(&EXT4_I(inode)->i_data_sem);
3183 if (new_i_size > EXT4_I(inode)->i_disksize) {
3184 /*
3185 * Updating i_disksize when extending file
3186 * without needing block allocation
3187 */
3188 if (ext4_should_order_data(inode))
3189 ret = ext4_jbd2_file_inode(handle,
3190 inode);
Alex Tomas64769242008-07-11 19:27:31 -04003191
Mingming Cao632eaea2008-07-11 19:27:31 -04003192 EXT4_I(inode)->i_disksize = new_i_size;
3193 }
3194 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003195 /* We need to mark inode dirty even if
3196 * new_i_size is less that inode->i_size
3197 * bu greater than i_disksize.(hint delalloc)
3198 */
3199 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003200 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003201 }
Alex Tomas64769242008-07-11 19:27:31 -04003202 ret2 = generic_write_end(file, mapping, pos, len, copied,
3203 page, fsdata);
3204 copied = ret2;
3205 if (ret2 < 0)
3206 ret = ret2;
3207 ret2 = ext4_journal_stop(handle);
3208 if (!ret)
3209 ret = ret2;
3210
3211 return ret ? ret : copied;
3212}
3213
3214static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
3215{
Alex Tomas64769242008-07-11 19:27:31 -04003216 /*
3217 * Drop reserved blocks
3218 */
3219 BUG_ON(!PageLocked(page));
3220 if (!page_has_buffers(page))
3221 goto out;
3222
Mingming Caod2a17632008-07-14 17:52:37 -04003223 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04003224
3225out:
3226 ext4_invalidatepage(page, offset);
3227
3228 return;
3229}
3230
Theodore Ts'occd25062009-02-26 01:04:07 -05003231/*
3232 * Force all delayed allocation blocks to be allocated for a given inode.
3233 */
3234int ext4_alloc_da_blocks(struct inode *inode)
3235{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003236 trace_ext4_alloc_da_blocks(inode);
3237
Theodore Ts'occd25062009-02-26 01:04:07 -05003238 if (!EXT4_I(inode)->i_reserved_data_blocks &&
3239 !EXT4_I(inode)->i_reserved_meta_blocks)
3240 return 0;
3241
3242 /*
3243 * We do something simple for now. The filemap_flush() will
3244 * also start triggering a write of the data blocks, which is
3245 * not strictly speaking necessary (and for users of
3246 * laptop_mode, not even desirable). However, to do otherwise
3247 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003248 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003249 * ext4_da_writepages() ->
3250 * write_cache_pages() ---> (via passed in callback function)
3251 * __mpage_da_writepage() -->
3252 * mpage_add_bh_to_extent()
3253 * mpage_da_map_blocks()
3254 *
3255 * The problem is that write_cache_pages(), located in
3256 * mm/page-writeback.c, marks pages clean in preparation for
3257 * doing I/O, which is not desirable if we're not planning on
3258 * doing I/O at all.
3259 *
3260 * We could call write_cache_pages(), and then redirty all of
3261 * the pages by calling redirty_page_for_writeback() but that
3262 * would be ugly in the extreme. So instead we would need to
3263 * replicate parts of the code in the above functions,
3264 * simplifying them becuase we wouldn't actually intend to
3265 * write out the pages, but rather only collect contiguous
3266 * logical block extents, call the multi-block allocator, and
3267 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003268 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003269 * For now, though, we'll cheat by calling filemap_flush(),
3270 * which will map the blocks, and start the I/O, but not
3271 * actually wait for the I/O to complete.
3272 */
3273 return filemap_flush(inode->i_mapping);
3274}
Alex Tomas64769242008-07-11 19:27:31 -04003275
3276/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003277 * bmap() is special. It gets used by applications such as lilo and by
3278 * the swapper to find the on-disk block of a specific piece of data.
3279 *
3280 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003281 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003282 * filesystem and enables swap, then they may get a nasty shock when the
3283 * data getting swapped to that swapfile suddenly gets overwritten by
3284 * the original zero's written out previously to the journal and
3285 * awaiting writeback in the kernel's buffer cache.
3286 *
3287 * So, if we see any bmap calls here on a modified, data-journaled file,
3288 * take extra steps to flush any blocks which might be in the cache.
3289 */
Mingming Cao617ba132006-10-11 01:20:53 -07003290static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291{
3292 struct inode *inode = mapping->host;
3293 journal_t *journal;
3294 int err;
3295
Alex Tomas64769242008-07-11 19:27:31 -04003296 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3297 test_opt(inode->i_sb, DELALLOC)) {
3298 /*
3299 * With delalloc we want to sync the file
3300 * so that we can make sure we allocate
3301 * blocks for file
3302 */
3303 filemap_write_and_wait(mapping);
3304 }
3305
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003306 if (EXT4_JOURNAL(inode) &&
3307 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 /*
3309 * This is a REALLY heavyweight approach, but the use of
3310 * bmap on dirty files is expected to be extremely rare:
3311 * only if we run lilo or swapon on a freshly made file
3312 * do we expect this to happen.
3313 *
3314 * (bmap requires CAP_SYS_RAWIO so this does not
3315 * represent an unprivileged user DOS attack --- we'd be
3316 * in trouble if mortal users could trigger this path at
3317 * will.)
3318 *
Mingming Cao617ba132006-10-11 01:20:53 -07003319 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003320 * regular files. If somebody wants to bmap a directory
3321 * or symlink and gets confused because the buffer
3322 * hasn't yet been flushed to disk, they deserve
3323 * everything they get.
3324 */
3325
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003326 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07003327 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003328 jbd2_journal_lock_updates(journal);
3329 err = jbd2_journal_flush(journal);
3330 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003331
3332 if (err)
3333 return 0;
3334 }
3335
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003336 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003337}
3338
Mingming Cao617ba132006-10-11 01:20:53 -07003339static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003340{
Mingming Cao617ba132006-10-11 01:20:53 -07003341 return mpage_readpage(page, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003342}
3343
3344static int
Mingming Cao617ba132006-10-11 01:20:53 -07003345ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003346 struct list_head *pages, unsigned nr_pages)
3347{
Mingming Cao617ba132006-10-11 01:20:53 -07003348 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003349}
3350
Mingming Cao617ba132006-10-11 01:20:53 -07003351static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003352{
Mingming Cao617ba132006-10-11 01:20:53 -07003353 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003354
3355 /*
3356 * If it's a full truncate we just forget about the pending dirtying
3357 */
3358 if (offset == 0)
3359 ClearPageChecked(page);
3360
Frank Mayhar03901312009-01-07 00:06:22 -05003361 if (journal)
3362 jbd2_journal_invalidatepage(journal, page, offset);
3363 else
3364 block_invalidatepage(page, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003365}
3366
Mingming Cao617ba132006-10-11 01:20:53 -07003367static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003368{
Mingming Cao617ba132006-10-11 01:20:53 -07003369 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003370
3371 WARN_ON(PageChecked(page));
3372 if (!page_has_buffers(page))
3373 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003374 if (journal)
3375 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3376 else
3377 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003378}
3379
3380/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003381 * O_DIRECT for ext3 (or indirect map) based files
3382 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003383 * If the O_DIRECT write will extend the file then add this inode to the
3384 * orphan list. So recovery will truncate it back to the original size
3385 * if the machine crashes during the write.
3386 *
3387 * If the O_DIRECT write is intantiating holes inside i_size and the machine
Jan Kara7fb54092008-02-10 01:08:38 -05003388 * crashes then stale disk data _may_ be exposed inside the file. But current
3389 * VFS code falls back into buffered path in that case so we are safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003390 */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003391static ssize_t ext4_ind_direct_IO(int rw, struct kiocb *iocb,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003392 const struct iovec *iov, loff_t offset,
3393 unsigned long nr_segs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003394{
3395 struct file *file = iocb->ki_filp;
3396 struct inode *inode = file->f_mapping->host;
Mingming Cao617ba132006-10-11 01:20:53 -07003397 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003398 handle_t *handle;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003399 ssize_t ret;
3400 int orphan = 0;
3401 size_t count = iov_length(iov, nr_segs);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003402 int retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003403
3404 if (rw == WRITE) {
3405 loff_t final_size = offset + count;
3406
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003407 if (final_size > inode->i_size) {
Jan Kara7fb54092008-02-10 01:08:38 -05003408 /* Credits for sb + inode write */
3409 handle = ext4_journal_start(inode, 2);
3410 if (IS_ERR(handle)) {
3411 ret = PTR_ERR(handle);
3412 goto out;
3413 }
Mingming Cao617ba132006-10-11 01:20:53 -07003414 ret = ext4_orphan_add(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003415 if (ret) {
3416 ext4_journal_stop(handle);
3417 goto out;
3418 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003419 orphan = 1;
3420 ei->i_disksize = inode->i_size;
Jan Kara7fb54092008-02-10 01:08:38 -05003421 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003422 }
3423 }
3424
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003425retry:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003426 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3427 offset, nr_segs,
Mingming Cao617ba132006-10-11 01:20:53 -07003428 ext4_get_block, NULL);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003429 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3430 goto retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003431
Jan Kara7fb54092008-02-10 01:08:38 -05003432 if (orphan) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003433 int err;
3434
Jan Kara7fb54092008-02-10 01:08:38 -05003435 /* Credits for sb + inode write */
3436 handle = ext4_journal_start(inode, 2);
3437 if (IS_ERR(handle)) {
3438 /* This is really bad luck. We've written the data
3439 * but cannot extend i_size. Bail out and pretend
3440 * the write failed... */
3441 ret = PTR_ERR(handle);
3442 goto out;
3443 }
3444 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07003445 ext4_orphan_del(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003446 if (ret > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003447 loff_t end = offset + ret;
3448 if (end > inode->i_size) {
3449 ei->i_disksize = end;
3450 i_size_write(inode, end);
3451 /*
3452 * We're going to return a positive `ret'
3453 * here due to non-zero-length I/O, so there's
3454 * no way of reporting error returns from
Mingming Cao617ba132006-10-11 01:20:53 -07003455 * ext4_mark_inode_dirty() to userspace. So
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003456 * ignore it.
3457 */
Mingming Cao617ba132006-10-11 01:20:53 -07003458 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003459 }
3460 }
Mingming Cao617ba132006-10-11 01:20:53 -07003461 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003462 if (ret == 0)
3463 ret = err;
3464 }
3465out:
3466 return ret;
3467}
3468
Mingming Cao4c0425f2009-09-28 15:48:41 -04003469static int ext4_get_block_dio_write(struct inode *inode, sector_t iblock,
3470 struct buffer_head *bh_result, int create)
3471{
3472 handle_t *handle = NULL;
3473 int ret = 0;
3474 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
3475 int dio_credits;
3476
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003477 ext4_debug("ext4_get_block_dio_write: inode %lu, create flag %d\n",
3478 inode->i_ino, create);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003479 /*
3480 * DIO VFS code passes create = 0 flag for write to
3481 * the middle of file. It does this to avoid block
3482 * allocation for holes, to prevent expose stale data
3483 * out when there is parallel buffered read (which does
3484 * not hold the i_mutex lock) while direct IO write has
3485 * not completed. DIO request on holes finally falls back
3486 * to buffered IO for this reason.
3487 *
3488 * For ext4 extent based file, since we support fallocate,
3489 * new allocated extent as uninitialized, for holes, we
3490 * could fallocate blocks for holes, thus parallel
3491 * buffered IO read will zero out the page when read on
3492 * a hole while parallel DIO write to the hole has not completed.
3493 *
3494 * when we come here, we know it's a direct IO write to
3495 * to the middle of file (<i_size)
3496 * so it's safe to override the create flag from VFS.
3497 */
3498 create = EXT4_GET_BLOCKS_DIO_CREATE_EXT;
3499
3500 if (max_blocks > DIO_MAX_BLOCKS)
3501 max_blocks = DIO_MAX_BLOCKS;
3502 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
3503 handle = ext4_journal_start(inode, dio_credits);
3504 if (IS_ERR(handle)) {
3505 ret = PTR_ERR(handle);
3506 goto out;
3507 }
3508 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
3509 create);
3510 if (ret > 0) {
3511 bh_result->b_size = (ret << inode->i_blkbits);
3512 ret = 0;
3513 }
3514 ext4_journal_stop(handle);
3515out:
3516 return ret;
3517}
3518
Mingming Cao4c0425f2009-09-28 15:48:41 -04003519static void ext4_free_io_end(ext4_io_end_t *io)
3520{
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003521 BUG_ON(!io);
3522 iput(io->inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003523 kfree(io);
3524}
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003525static void dump_aio_dio_list(struct inode * inode)
3526{
3527#ifdef EXT4_DEBUG
3528 struct list_head *cur, *before, *after;
3529 ext4_io_end_t *io, *io0, *io1;
3530
3531 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3532 ext4_debug("inode %lu aio dio list is empty\n", inode->i_ino);
3533 return;
3534 }
3535
3536 ext4_debug("Dump inode %lu aio_dio_completed_IO list \n", inode->i_ino);
3537 list_for_each_entry(io, &EXT4_I(inode)->i_aio_dio_complete_list, list){
3538 cur = &io->list;
3539 before = cur->prev;
3540 io0 = container_of(before, ext4_io_end_t, list);
3541 after = cur->next;
3542 io1 = container_of(after, ext4_io_end_t, list);
3543
3544 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
3545 io, inode->i_ino, io0, io1);
3546 }
3547#endif
3548}
Mingming Cao4c0425f2009-09-28 15:48:41 -04003549
3550/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003551 * check a range of space and convert unwritten extents to written.
3552 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003553static int ext4_end_aio_dio_nolock(ext4_io_end_t *io)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003554{
Mingming Cao4c0425f2009-09-28 15:48:41 -04003555 struct inode *inode = io->inode;
3556 loff_t offset = io->offset;
Eric Sandeena1de02d2010-02-04 23:58:38 -05003557 ssize_t size = io->size;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003558 int ret = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003559
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003560 ext4_debug("end_aio_dio_onlock: io 0x%p from inode %lu,list->next 0x%p,"
3561 "list->prev 0x%p\n",
3562 io, inode->i_ino, io->list.next, io->list.prev);
3563
3564 if (list_empty(&io->list))
3565 return ret;
3566
3567 if (io->flag != DIO_AIO_UNWRITTEN)
3568 return ret;
3569
Mingming Cao4c0425f2009-09-28 15:48:41 -04003570 if (offset + size <= i_size_read(inode))
3571 ret = ext4_convert_unwritten_extents(inode, offset, size);
3572
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003573 if (ret < 0) {
Mingming Cao4c0425f2009-09-28 15:48:41 -04003574 printk(KERN_EMERG "%s: failed to convert unwritten"
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003575 "extents to written extents, error is %d"
3576 " io is still on inode %lu aio dio list\n",
3577 __func__, ret, inode->i_ino);
3578 return ret;
3579 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003580
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003581 /* clear the DIO AIO unwritten flag */
3582 io->flag = 0;
3583 return ret;
3584}
3585/*
3586 * work on completed aio dio IO, to convert unwritten extents to extents
3587 */
3588static void ext4_end_aio_dio_work(struct work_struct *work)
3589{
3590 ext4_io_end_t *io = container_of(work, ext4_io_end_t, work);
3591 struct inode *inode = io->inode;
3592 int ret = 0;
3593
3594 mutex_lock(&inode->i_mutex);
3595 ret = ext4_end_aio_dio_nolock(io);
3596 if (ret >= 0) {
3597 if (!list_empty(&io->list))
3598 list_del_init(&io->list);
3599 ext4_free_io_end(io);
3600 }
3601 mutex_unlock(&inode->i_mutex);
3602}
3603/*
3604 * This function is called from ext4_sync_file().
3605 *
3606 * When AIO DIO IO is completed, the work to convert unwritten
3607 * extents to written is queued on workqueue but may not get immediately
3608 * scheduled. When fsync is called, we need to ensure the
3609 * conversion is complete before fsync returns.
3610 * The inode keeps track of a list of completed AIO from DIO path
3611 * that might needs to do the conversion. This function walks through
3612 * the list and convert the related unwritten extents to written.
3613 */
3614int flush_aio_dio_completed_IO(struct inode *inode)
3615{
3616 ext4_io_end_t *io;
3617 int ret = 0;
3618 int ret2 = 0;
3619
3620 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list))
3621 return ret;
3622
3623 dump_aio_dio_list(inode);
3624 while (!list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3625 io = list_entry(EXT4_I(inode)->i_aio_dio_complete_list.next,
3626 ext4_io_end_t, list);
3627 /*
3628 * Calling ext4_end_aio_dio_nolock() to convert completed
3629 * IO to written.
3630 *
3631 * When ext4_sync_file() is called, run_queue() may already
3632 * about to flush the work corresponding to this io structure.
3633 * It will be upset if it founds the io structure related
3634 * to the work-to-be schedule is freed.
3635 *
3636 * Thus we need to keep the io structure still valid here after
3637 * convertion finished. The io structure has a flag to
3638 * avoid double converting from both fsync and background work
3639 * queue work.
3640 */
3641 ret = ext4_end_aio_dio_nolock(io);
3642 if (ret < 0)
3643 ret2 = ret;
3644 else
3645 list_del_init(&io->list);
3646 }
3647 return (ret2 < 0) ? ret2 : 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003648}
3649
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003650static ext4_io_end_t *ext4_init_io_end (struct inode *inode)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003651{
3652 ext4_io_end_t *io = NULL;
3653
3654 io = kmalloc(sizeof(*io), GFP_NOFS);
3655
3656 if (io) {
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003657 igrab(inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003658 io->inode = inode;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003659 io->flag = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003660 io->offset = 0;
3661 io->size = 0;
3662 io->error = 0;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003663 INIT_WORK(&io->work, ext4_end_aio_dio_work);
3664 INIT_LIST_HEAD(&io->list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003665 }
3666
3667 return io;
3668}
3669
3670static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
3671 ssize_t size, void *private)
3672{
3673 ext4_io_end_t *io_end = iocb->private;
3674 struct workqueue_struct *wq;
3675
Mingming4b70df12009-11-03 14:44:54 -05003676 /* if not async direct IO or dio with 0 bytes write, just return */
3677 if (!io_end || !size)
3678 return;
3679
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003680 ext_debug("ext4_end_io_dio(): io_end 0x%p"
3681 "for inode %lu, iocb 0x%p, offset %llu, size %llu\n",
3682 iocb->private, io_end->inode->i_ino, iocb, offset,
3683 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003684
3685 /* if not aio dio with unwritten extents, just free io and return */
3686 if (io_end->flag != DIO_AIO_UNWRITTEN){
3687 ext4_free_io_end(io_end);
3688 iocb->private = NULL;
3689 return;
3690 }
3691
Mingming Cao4c0425f2009-09-28 15:48:41 -04003692 io_end->offset = offset;
3693 io_end->size = size;
3694 wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
3695
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003696 /* queue the work to convert unwritten extents to written */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003697 queue_work(wq, &io_end->work);
3698
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003699 /* Add the io_end to per-inode completed aio dio list*/
3700 list_add_tail(&io_end->list,
3701 &EXT4_I(io_end->inode)->i_aio_dio_complete_list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003702 iocb->private = NULL;
3703}
3704/*
3705 * For ext4 extent files, ext4 will do direct-io write to holes,
3706 * preallocated extents, and those write extend the file, no need to
3707 * fall back to buffered IO.
3708 *
3709 * For holes, we fallocate those blocks, mark them as unintialized
3710 * If those blocks were preallocated, we mark sure they are splited, but
3711 * still keep the range to write as unintialized.
3712 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003713 * The unwrritten extents will be converted to written when DIO is completed.
3714 * For async direct IO, since the IO may still pending when return, we
3715 * set up an end_io call back function, which will do the convertion
3716 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003717 *
3718 * If the O_DIRECT write will extend the file then add this inode to the
3719 * orphan list. So recovery will truncate it back to the original size
3720 * if the machine crashes during the write.
3721 *
3722 */
3723static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
3724 const struct iovec *iov, loff_t offset,
3725 unsigned long nr_segs)
3726{
3727 struct file *file = iocb->ki_filp;
3728 struct inode *inode = file->f_mapping->host;
3729 ssize_t ret;
3730 size_t count = iov_length(iov, nr_segs);
3731
3732 loff_t final_size = offset + count;
3733 if (rw == WRITE && final_size <= inode->i_size) {
3734 /*
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003735 * We could direct write to holes and fallocate.
3736 *
3737 * Allocated blocks to fill the hole are marked as uninitialized
Mingming Cao4c0425f2009-09-28 15:48:41 -04003738 * to prevent paralel buffered read to expose the stale data
3739 * before DIO complete the data IO.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003740 *
3741 * As to previously fallocated extents, ext4 get_block
Mingming Cao4c0425f2009-09-28 15:48:41 -04003742 * will just simply mark the buffer mapped but still
3743 * keep the extents uninitialized.
3744 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003745 * for non AIO case, we will convert those unwritten extents
3746 * to written after return back from blockdev_direct_IO.
3747 *
3748 * for async DIO, the conversion needs to be defered when
3749 * the IO is completed. The ext4 end_io callback function
3750 * will be called to take care of the conversion work.
3751 * Here for async case, we allocate an io_end structure to
3752 * hook to the iocb.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003753 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003754 iocb->private = NULL;
3755 EXT4_I(inode)->cur_aio_dio = NULL;
3756 if (!is_sync_kiocb(iocb)) {
3757 iocb->private = ext4_init_io_end(inode);
3758 if (!iocb->private)
3759 return -ENOMEM;
3760 /*
3761 * we save the io structure for current async
3762 * direct IO, so that later ext4_get_blocks()
3763 * could flag the io structure whether there
3764 * is a unwritten extents needs to be converted
3765 * when IO is completed.
3766 */
3767 EXT4_I(inode)->cur_aio_dio = iocb->private;
3768 }
3769
Mingming Cao4c0425f2009-09-28 15:48:41 -04003770 ret = blockdev_direct_IO(rw, iocb, inode,
3771 inode->i_sb->s_bdev, iov,
3772 offset, nr_segs,
3773 ext4_get_block_dio_write,
3774 ext4_end_io_dio);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003775 if (iocb->private)
3776 EXT4_I(inode)->cur_aio_dio = NULL;
3777 /*
3778 * The io_end structure takes a reference to the inode,
3779 * that structure needs to be destroyed and the
3780 * reference to the inode need to be dropped, when IO is
3781 * complete, even with 0 byte write, or failed.
3782 *
3783 * In the successful AIO DIO case, the io_end structure will be
3784 * desctroyed and the reference to the inode will be dropped
3785 * after the end_io call back function is called.
3786 *
3787 * In the case there is 0 byte write, or error case, since
3788 * VFS direct IO won't invoke the end_io call back function,
3789 * we need to free the end_io structure here.
3790 */
3791 if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
3792 ext4_free_io_end(iocb->private);
3793 iocb->private = NULL;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003794 } else if (ret > 0 && ext4_test_inode_state(inode,
3795 EXT4_STATE_DIO_UNWRITTEN)) {
Mingming109f5562009-11-10 10:48:08 -05003796 int err;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003797 /*
3798 * for non AIO case, since the IO is already
3799 * completed, we could do the convertion right here
3800 */
Mingming109f5562009-11-10 10:48:08 -05003801 err = ext4_convert_unwritten_extents(inode,
3802 offset, ret);
3803 if (err < 0)
3804 ret = err;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003805 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
Mingming109f5562009-11-10 10:48:08 -05003806 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003807 return ret;
3808 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003809
3810 /* for write the the end of file case, we fall back to old way */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003811 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3812}
3813
3814static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3815 const struct iovec *iov, loff_t offset,
3816 unsigned long nr_segs)
3817{
3818 struct file *file = iocb->ki_filp;
3819 struct inode *inode = file->f_mapping->host;
3820
3821 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
3822 return ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
3823
3824 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3825}
3826
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003827/*
Mingming Cao617ba132006-10-11 01:20:53 -07003828 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003829 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3830 * much here because ->set_page_dirty is called under VFS locks. The page is
3831 * not necessarily locked.
3832 *
3833 * We cannot just dirty the page and leave attached buffers clean, because the
3834 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3835 * or jbddirty because all the journalling code will explode.
3836 *
3837 * So what we do is to mark the page "pending dirty" and next time writepage
3838 * is called, propagate that into the buffers appropriately.
3839 */
Mingming Cao617ba132006-10-11 01:20:53 -07003840static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003841{
3842 SetPageChecked(page);
3843 return __set_page_dirty_nobuffers(page);
3844}
3845
Mingming Cao617ba132006-10-11 01:20:53 -07003846static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003847 .readpage = ext4_readpage,
3848 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003849 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003850 .sync_page = block_sync_page,
3851 .write_begin = ext4_write_begin,
3852 .write_end = ext4_ordered_write_end,
3853 .bmap = ext4_bmap,
3854 .invalidatepage = ext4_invalidatepage,
3855 .releasepage = ext4_releasepage,
3856 .direct_IO = ext4_direct_IO,
3857 .migratepage = buffer_migrate_page,
3858 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003859 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003860};
3861
Mingming Cao617ba132006-10-11 01:20:53 -07003862static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003863 .readpage = ext4_readpage,
3864 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003865 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003866 .sync_page = block_sync_page,
3867 .write_begin = ext4_write_begin,
3868 .write_end = ext4_writeback_write_end,
3869 .bmap = ext4_bmap,
3870 .invalidatepage = ext4_invalidatepage,
3871 .releasepage = ext4_releasepage,
3872 .direct_IO = ext4_direct_IO,
3873 .migratepage = buffer_migrate_page,
3874 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003875 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003876};
3877
Mingming Cao617ba132006-10-11 01:20:53 -07003878static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003879 .readpage = ext4_readpage,
3880 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003881 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003882 .sync_page = block_sync_page,
3883 .write_begin = ext4_write_begin,
3884 .write_end = ext4_journalled_write_end,
3885 .set_page_dirty = ext4_journalled_set_page_dirty,
3886 .bmap = ext4_bmap,
3887 .invalidatepage = ext4_invalidatepage,
3888 .releasepage = ext4_releasepage,
3889 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003890 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003891};
3892
Alex Tomas64769242008-07-11 19:27:31 -04003893static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003894 .readpage = ext4_readpage,
3895 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003896 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003897 .writepages = ext4_da_writepages,
3898 .sync_page = block_sync_page,
3899 .write_begin = ext4_da_write_begin,
3900 .write_end = ext4_da_write_end,
3901 .bmap = ext4_bmap,
3902 .invalidatepage = ext4_da_invalidatepage,
3903 .releasepage = ext4_releasepage,
3904 .direct_IO = ext4_direct_IO,
3905 .migratepage = buffer_migrate_page,
3906 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003907 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003908};
3909
Mingming Cao617ba132006-10-11 01:20:53 -07003910void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003911{
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04003912 if (ext4_should_order_data(inode) &&
3913 test_opt(inode->i_sb, DELALLOC))
3914 inode->i_mapping->a_ops = &ext4_da_aops;
3915 else if (ext4_should_order_data(inode))
Mingming Cao617ba132006-10-11 01:20:53 -07003916 inode->i_mapping->a_ops = &ext4_ordered_aops;
Alex Tomas64769242008-07-11 19:27:31 -04003917 else if (ext4_should_writeback_data(inode) &&
3918 test_opt(inode->i_sb, DELALLOC))
3919 inode->i_mapping->a_ops = &ext4_da_aops;
Mingming Cao617ba132006-10-11 01:20:53 -07003920 else if (ext4_should_writeback_data(inode))
3921 inode->i_mapping->a_ops = &ext4_writeback_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003922 else
Mingming Cao617ba132006-10-11 01:20:53 -07003923 inode->i_mapping->a_ops = &ext4_journalled_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003924}
3925
3926/*
Mingming Cao617ba132006-10-11 01:20:53 -07003927 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003928 * up to the end of the block which corresponds to `from'.
3929 * This required during truncate. We need to physically zero the tail end
3930 * of that block so it doesn't yield old data if the file is later grown.
3931 */
Jan Karacf108bc2008-07-11 19:27:31 -04003932int ext4_block_truncate_page(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003933 struct address_space *mapping, loff_t from)
3934{
Mingming Cao617ba132006-10-11 01:20:53 -07003935 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003936 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003937 unsigned blocksize, length, pos;
3938 ext4_lblk_t iblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003939 struct inode *inode = mapping->host;
3940 struct buffer_head *bh;
Jan Karacf108bc2008-07-11 19:27:31 -04003941 struct page *page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003942 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003943
Theodore Ts'of4a01012009-07-05 22:08:16 -04003944 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3945 mapping_gfp_mask(mapping) & ~__GFP_FS);
Jan Karacf108bc2008-07-11 19:27:31 -04003946 if (!page)
3947 return -EINVAL;
3948
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003949 blocksize = inode->i_sb->s_blocksize;
3950 length = blocksize - (offset & (blocksize - 1));
3951 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3952
3953 /*
3954 * For "nobh" option, we can only work if we don't need to
3955 * read-in the page - otherwise we create buffers to do the IO.
3956 */
3957 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
Mingming Cao617ba132006-10-11 01:20:53 -07003958 ext4_should_writeback_data(inode) && PageUptodate(page)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003959 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003960 set_page_dirty(page);
3961 goto unlock;
3962 }
3963
3964 if (!page_has_buffers(page))
3965 create_empty_buffers(page, blocksize, 0);
3966
3967 /* Find the buffer that contains "offset" */
3968 bh = page_buffers(page);
3969 pos = blocksize;
3970 while (offset >= pos) {
3971 bh = bh->b_this_page;
3972 iblock++;
3973 pos += blocksize;
3974 }
3975
3976 err = 0;
3977 if (buffer_freed(bh)) {
3978 BUFFER_TRACE(bh, "freed: skip");
3979 goto unlock;
3980 }
3981
3982 if (!buffer_mapped(bh)) {
3983 BUFFER_TRACE(bh, "unmapped");
Mingming Cao617ba132006-10-11 01:20:53 -07003984 ext4_get_block(inode, iblock, bh, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003985 /* unmapped? It's a hole - nothing to do */
3986 if (!buffer_mapped(bh)) {
3987 BUFFER_TRACE(bh, "still unmapped");
3988 goto unlock;
3989 }
3990 }
3991
3992 /* Ok, it's mapped. Make sure it's up-to-date */
3993 if (PageUptodate(page))
3994 set_buffer_uptodate(bh);
3995
3996 if (!buffer_uptodate(bh)) {
3997 err = -EIO;
3998 ll_rw_block(READ, 1, &bh);
3999 wait_on_buffer(bh);
4000 /* Uhhuh. Read error. Complain and punt. */
4001 if (!buffer_uptodate(bh))
4002 goto unlock;
4003 }
4004
Mingming Cao617ba132006-10-11 01:20:53 -07004005 if (ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004006 BUFFER_TRACE(bh, "get write access");
Mingming Cao617ba132006-10-11 01:20:53 -07004007 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004008 if (err)
4009 goto unlock;
4010 }
4011
Christoph Lametereebd2aa2008-02-04 22:28:29 -08004012 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004013
4014 BUFFER_TRACE(bh, "zeroed end of block");
4015
4016 err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07004017 if (ext4_should_journal_data(inode)) {
Frank Mayhar03901312009-01-07 00:06:22 -05004018 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004019 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004020 if (ext4_should_order_data(inode))
Jan Kara678aaf42008-07-11 19:27:31 -04004021 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004022 mark_buffer_dirty(bh);
4023 }
4024
4025unlock:
4026 unlock_page(page);
4027 page_cache_release(page);
4028 return err;
4029}
4030
4031/*
4032 * Probably it should be a library function... search for first non-zero word
4033 * or memcmp with zero_page, whatever is better for particular architecture.
4034 * Linus?
4035 */
4036static inline int all_zeroes(__le32 *p, __le32 *q)
4037{
4038 while (p < q)
4039 if (*p++)
4040 return 0;
4041 return 1;
4042}
4043
4044/**
Mingming Cao617ba132006-10-11 01:20:53 -07004045 * ext4_find_shared - find the indirect blocks for partial truncation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004046 * @inode: inode in question
4047 * @depth: depth of the affected branch
Mingming Cao617ba132006-10-11 01:20:53 -07004048 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004049 * @chain: place to store the pointers to partial indirect blocks
4050 * @top: place to the (detached) top of branch
4051 *
Mingming Cao617ba132006-10-11 01:20:53 -07004052 * This is a helper function used by ext4_truncate().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004053 *
4054 * When we do truncate() we may have to clean the ends of several
4055 * indirect blocks but leave the blocks themselves alive. Block is
4056 * partially truncated if some data below the new i_size is refered
4057 * from it (and it is on the path to the first completely truncated
4058 * data block, indeed). We have to free the top of that path along
4059 * with everything to the right of the path. Since no allocation
Mingming Cao617ba132006-10-11 01:20:53 -07004060 * past the truncation point is possible until ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004061 * finishes, we may safely do the latter, but top of branch may
4062 * require special attention - pageout below the truncation point
4063 * might try to populate it.
4064 *
4065 * We atomically detach the top of branch from the tree, store the
4066 * block number of its root in *@top, pointers to buffer_heads of
4067 * partially truncated blocks - in @chain[].bh and pointers to
4068 * their last elements that should not be removed - in
4069 * @chain[].p. Return value is the pointer to last filled element
4070 * of @chain.
4071 *
4072 * The work left to caller to do the actual freeing of subtrees:
4073 * a) free the subtree starting from *@top
4074 * b) free the subtrees whose roots are stored in
4075 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
4076 * c) free the subtrees growing from the inode past the @chain[0].
4077 * (no partially truncated stuff there). */
4078
Mingming Cao617ba132006-10-11 01:20:53 -07004079static Indirect *ext4_find_shared(struct inode *inode, int depth,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004080 ext4_lblk_t offsets[4], Indirect chain[4],
4081 __le32 *top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004082{
4083 Indirect *partial, *p;
4084 int k, err;
4085
4086 *top = 0;
Uwe Kleine-Königbf48aab2009-10-28 20:11:03 +01004087 /* Make k index the deepest non-null offset + 1 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004088 for (k = depth; k > 1 && !offsets[k-1]; k--)
4089 ;
Mingming Cao617ba132006-10-11 01:20:53 -07004090 partial = ext4_get_branch(inode, k, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004091 /* Writer: pointers */
4092 if (!partial)
4093 partial = chain + k-1;
4094 /*
4095 * If the branch acquired continuation since we've looked at it -
4096 * fine, it should all survive and (new) top doesn't belong to us.
4097 */
4098 if (!partial->key && *partial->p)
4099 /* Writer: end */
4100 goto no_top;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004101 for (p = partial; (p > chain) && all_zeroes((__le32 *) p->bh->b_data, p->p); p--)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004102 ;
4103 /*
4104 * OK, we've found the last block that must survive. The rest of our
4105 * branch should be detached before unlocking. However, if that rest
4106 * of branch is all ours and does not grow immediately from the inode
4107 * it's easier to cheat and just decrement partial->p.
4108 */
4109 if (p == chain + k - 1 && p > chain) {
4110 p->p--;
4111 } else {
4112 *top = *p->p;
Mingming Cao617ba132006-10-11 01:20:53 -07004113 /* Nope, don't do this in ext4. Must leave the tree intact */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004114#if 0
4115 *p->p = 0;
4116#endif
4117 }
4118 /* Writer: end */
4119
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004120 while (partial > p) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004121 brelse(partial->bh);
4122 partial--;
4123 }
4124no_top:
4125 return partial;
4126}
4127
4128/*
4129 * Zero a number of block pointers in either an inode or an indirect block.
4130 * If we restart the transaction we must again get write access to the
4131 * indirect block for further modification.
4132 *
4133 * We release `count' blocks on disk, but (last - first) may be greater
4134 * than `count' because there can be holes in there.
4135 */
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004136static int ext4_clear_blocks(handle_t *handle, struct inode *inode,
4137 struct buffer_head *bh,
4138 ext4_fsblk_t block_to_free,
4139 unsigned long count, __le32 *first,
4140 __le32 *last)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004141{
4142 __le32 *p;
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004143 int flags = EXT4_FREE_BLOCKS_FORGET | EXT4_FREE_BLOCKS_VALIDATED;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004144
4145 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
4146 flags |= EXT4_FREE_BLOCKS_METADATA;
Theodore Ts'o50689692009-11-23 07:17:34 -05004147
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004148 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), block_to_free,
4149 count)) {
4150 ext4_error(inode->i_sb, __func__, "inode #%lu: "
4151 "attempt to clear blocks %llu len %lu, invalid",
4152 inode->i_ino, (unsigned long long) block_to_free,
4153 count);
4154 return 1;
4155 }
4156
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004157 if (try_to_extend_transaction(handle, inode)) {
4158 if (bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004159 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
4160 ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004161 }
Mingming Cao617ba132006-10-11 01:20:53 -07004162 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004163 ext4_truncate_restart_trans(handle, inode,
4164 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004165 if (bh) {
4166 BUFFER_TRACE(bh, "retaking write access");
Mingming Cao617ba132006-10-11 01:20:53 -07004167 ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004168 }
4169 }
4170
Theodore Ts'oe6362602009-11-23 07:17:05 -05004171 for (p = first; p < last; p++)
4172 *p = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004173
Theodore Ts'oe6362602009-11-23 07:17:05 -05004174 ext4_free_blocks(handle, inode, 0, block_to_free, count, flags);
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004175 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004176}
4177
4178/**
Mingming Cao617ba132006-10-11 01:20:53 -07004179 * ext4_free_data - free a list of data blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004180 * @handle: handle for this transaction
4181 * @inode: inode we are dealing with
4182 * @this_bh: indirect buffer_head which contains *@first and *@last
4183 * @first: array of block numbers
4184 * @last: points immediately past the end of array
4185 *
4186 * We are freeing all blocks refered from that array (numbers are stored as
4187 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
4188 *
4189 * We accumulate contiguous runs of blocks to free. Conveniently, if these
4190 * blocks are contiguous then releasing them at one time will only affect one
4191 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
4192 * actually use a lot of journal space.
4193 *
4194 * @this_bh will be %NULL if @first and @last point into the inode's direct
4195 * block pointers.
4196 */
Mingming Cao617ba132006-10-11 01:20:53 -07004197static void ext4_free_data(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004198 struct buffer_head *this_bh,
4199 __le32 *first, __le32 *last)
4200{
Mingming Cao617ba132006-10-11 01:20:53 -07004201 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004202 unsigned long count = 0; /* Number of blocks in the run */
4203 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
4204 corresponding to
4205 block_to_free */
Mingming Cao617ba132006-10-11 01:20:53 -07004206 ext4_fsblk_t nr; /* Current block # */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004207 __le32 *p; /* Pointer into inode/ind
4208 for current block */
4209 int err;
4210
4211 if (this_bh) { /* For indirect block */
4212 BUFFER_TRACE(this_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004213 err = ext4_journal_get_write_access(handle, this_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004214 /* Important: if we can't update the indirect pointers
4215 * to the blocks, we can't free them. */
4216 if (err)
4217 return;
4218 }
4219
4220 for (p = first; p < last; p++) {
4221 nr = le32_to_cpu(*p);
4222 if (nr) {
4223 /* accumulate blocks to free if they're contiguous */
4224 if (count == 0) {
4225 block_to_free = nr;
4226 block_to_free_p = p;
4227 count = 1;
4228 } else if (nr == block_to_free + count) {
4229 count++;
4230 } else {
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004231 if (ext4_clear_blocks(handle, inode, this_bh,
4232 block_to_free, count,
4233 block_to_free_p, p))
4234 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004235 block_to_free = nr;
4236 block_to_free_p = p;
4237 count = 1;
4238 }
4239 }
4240 }
4241
4242 if (count > 0)
Mingming Cao617ba132006-10-11 01:20:53 -07004243 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004244 count, block_to_free_p, p);
4245
4246 if (this_bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004247 BUFFER_TRACE(this_bh, "call ext4_handle_dirty_metadata");
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004248
4249 /*
4250 * The buffer head should have an attached journal head at this
4251 * point. However, if the data is corrupted and an indirect
4252 * block pointed to itself, it would have been detached when
4253 * the block was cleared. Check for this instead of OOPSing.
4254 */
Theodore Ts'oe7f07962009-01-20 09:50:19 -05004255 if ((EXT4_JOURNAL(inode) == NULL) || bh2jh(this_bh))
Frank Mayhar03901312009-01-07 00:06:22 -05004256 ext4_handle_dirty_metadata(handle, inode, this_bh);
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004257 else
4258 ext4_error(inode->i_sb, __func__,
4259 "circular indirect block detected, "
4260 "inode=%lu, block=%llu",
4261 inode->i_ino,
4262 (unsigned long long) this_bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004263 }
4264}
4265
4266/**
Mingming Cao617ba132006-10-11 01:20:53 -07004267 * ext4_free_branches - free an array of branches
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004268 * @handle: JBD handle for this transaction
4269 * @inode: inode we are dealing with
4270 * @parent_bh: the buffer_head which contains *@first and *@last
4271 * @first: array of block numbers
4272 * @last: pointer immediately past the end of array
4273 * @depth: depth of the branches to free
4274 *
4275 * We are freeing all blocks refered from these branches (numbers are
4276 * stored as little-endian 32-bit) and updating @inode->i_blocks
4277 * appropriately.
4278 */
Mingming Cao617ba132006-10-11 01:20:53 -07004279static void ext4_free_branches(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004280 struct buffer_head *parent_bh,
4281 __le32 *first, __le32 *last, int depth)
4282{
Mingming Cao617ba132006-10-11 01:20:53 -07004283 ext4_fsblk_t nr;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004284 __le32 *p;
4285
Frank Mayhar03901312009-01-07 00:06:22 -05004286 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004287 return;
4288
4289 if (depth--) {
4290 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07004291 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004292 p = last;
4293 while (--p >= first) {
4294 nr = le32_to_cpu(*p);
4295 if (!nr)
4296 continue; /* A hole */
4297
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004298 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb),
4299 nr, 1)) {
4300 ext4_error(inode->i_sb, __func__,
4301 "indirect mapped block in inode "
4302 "#%lu invalid (level %d, blk #%lu)",
4303 inode->i_ino, depth,
4304 (unsigned long) nr);
4305 break;
4306 }
4307
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004308 /* Go read the buffer for the next level down */
4309 bh = sb_bread(inode->i_sb, nr);
4310
4311 /*
4312 * A read failure? Report error and clear slot
4313 * (should be rare).
4314 */
4315 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07004316 ext4_error(inode->i_sb, "ext4_free_branches",
Mingming Cao2ae02102006-10-11 01:21:11 -07004317 "Read failure, inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004318 inode->i_ino, nr);
4319 continue;
4320 }
4321
4322 /* This zaps the entire block. Bottom up. */
4323 BUFFER_TRACE(bh, "free child branches");
Mingming Cao617ba132006-10-11 01:20:53 -07004324 ext4_free_branches(handle, inode, bh,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004325 (__le32 *) bh->b_data,
4326 (__le32 *) bh->b_data + addr_per_block,
4327 depth);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004328
4329 /*
4330 * We've probably journalled the indirect block several
4331 * times during the truncate. But it's no longer
4332 * needed and we now drop it from the transaction via
Mingming Caodab291a2006-10-11 01:21:01 -07004333 * jbd2_journal_revoke().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004334 *
4335 * That's easy if it's exclusively part of this
4336 * transaction. But if it's part of the committing
Mingming Caodab291a2006-10-11 01:21:01 -07004337 * transaction then jbd2_journal_forget() will simply
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004338 * brelse() it. That means that if the underlying
Mingming Cao617ba132006-10-11 01:20:53 -07004339 * block is reallocated in ext4_get_block(),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004340 * unmap_underlying_metadata() will find this block
4341 * and will try to get rid of it. damn, damn.
4342 *
4343 * If this block has already been committed to the
4344 * journal, a revoke record will be written. And
4345 * revoke records must be emitted *before* clearing
4346 * this block's bit in the bitmaps.
4347 */
Mingming Cao617ba132006-10-11 01:20:53 -07004348 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004349
4350 /*
4351 * Everything below this this pointer has been
4352 * released. Now let this top-of-subtree go.
4353 *
4354 * We want the freeing of this indirect block to be
4355 * atomic in the journal with the updating of the
4356 * bitmap block which owns it. So make some room in
4357 * the journal.
4358 *
4359 * We zero the parent pointer *after* freeing its
4360 * pointee in the bitmaps, so if extend_transaction()
4361 * for some reason fails to put the bitmap changes and
4362 * the release into the same transaction, recovery
4363 * will merely complain about releasing a free block,
4364 * rather than leaking blocks.
4365 */
Frank Mayhar03901312009-01-07 00:06:22 -05004366 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004367 return;
4368 if (try_to_extend_transaction(handle, inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004369 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004370 ext4_truncate_restart_trans(handle, inode,
4371 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004372 }
4373
Theodore Ts'oe6362602009-11-23 07:17:05 -05004374 ext4_free_blocks(handle, inode, 0, nr, 1,
4375 EXT4_FREE_BLOCKS_METADATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004376
4377 if (parent_bh) {
4378 /*
4379 * The block which we have just freed is
4380 * pointed to by an indirect block: journal it
4381 */
4382 BUFFER_TRACE(parent_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004383 if (!ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004384 parent_bh)){
4385 *p = 0;
4386 BUFFER_TRACE(parent_bh,
Frank Mayhar03901312009-01-07 00:06:22 -05004387 "call ext4_handle_dirty_metadata");
4388 ext4_handle_dirty_metadata(handle,
4389 inode,
4390 parent_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004391 }
4392 }
4393 }
4394 } else {
4395 /* We have reached the bottom of the tree. */
4396 BUFFER_TRACE(parent_bh, "free data blocks");
Mingming Cao617ba132006-10-11 01:20:53 -07004397 ext4_free_data(handle, inode, parent_bh, first, last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004398 }
4399}
4400
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004401int ext4_can_truncate(struct inode *inode)
4402{
4403 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4404 return 0;
4405 if (S_ISREG(inode->i_mode))
4406 return 1;
4407 if (S_ISDIR(inode->i_mode))
4408 return 1;
4409 if (S_ISLNK(inode->i_mode))
4410 return !ext4_inode_is_fast_symlink(inode);
4411 return 0;
4412}
4413
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004414/*
Mingming Cao617ba132006-10-11 01:20:53 -07004415 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004416 *
Mingming Cao617ba132006-10-11 01:20:53 -07004417 * We block out ext4_get_block() block instantiations across the entire
4418 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004419 * simultaneously on behalf of the same inode.
4420 *
4421 * As we work through the truncate and commmit bits of it to the journal there
4422 * is one core, guiding principle: the file's tree must always be consistent on
4423 * disk. We must be able to restart the truncate after a crash.
4424 *
4425 * The file's tree may be transiently inconsistent in memory (although it
4426 * probably isn't), but whenever we close off and commit a journal transaction,
4427 * the contents of (the filesystem + the journal) must be consistent and
4428 * restartable. It's pretty simple, really: bottom up, right to left (although
4429 * left-to-right works OK too).
4430 *
4431 * Note that at recovery time, journal replay occurs *before* the restart of
4432 * truncate against the orphan inode list.
4433 *
4434 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004435 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004436 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004437 * ext4_truncate() to have another go. So there will be instantiated blocks
4438 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004439 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004440 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004441 */
Mingming Cao617ba132006-10-11 01:20:53 -07004442void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004443{
4444 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -07004445 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004446 __le32 *i_data = ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004447 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004448 struct address_space *mapping = inode->i_mapping;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004449 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004450 Indirect chain[4];
4451 Indirect *partial;
4452 __le32 nr = 0;
4453 int n;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004454 ext4_lblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004455 unsigned blocksize = inode->i_sb->s_blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004456
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004457 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004458 return;
4459
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004460 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004461 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004462
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004463 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
Jan Karacf108bc2008-07-11 19:27:31 -04004464 ext4_ext_truncate(inode);
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004465 return;
4466 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004467
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004468 handle = start_transaction(inode);
Jan Karacf108bc2008-07-11 19:27:31 -04004469 if (IS_ERR(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004470 return; /* AKPM: return what? */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004471
4472 last_block = (inode->i_size + blocksize-1)
Mingming Cao617ba132006-10-11 01:20:53 -07004473 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004474
Jan Karacf108bc2008-07-11 19:27:31 -04004475 if (inode->i_size & (blocksize - 1))
4476 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
4477 goto out_stop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004478
Mingming Cao617ba132006-10-11 01:20:53 -07004479 n = ext4_block_to_path(inode, last_block, offsets, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004480 if (n == 0)
4481 goto out_stop; /* error */
4482
4483 /*
4484 * OK. This truncate is going to happen. We add the inode to the
4485 * orphan list, so that if this truncate spans multiple transactions,
4486 * and we crash, we will resume the truncate when the filesystem
4487 * recovers. It also marks the inode dirty, to catch the new size.
4488 *
4489 * Implication: the file must always be in a sane, consistent
4490 * truncatable state while each transaction commits.
4491 */
Mingming Cao617ba132006-10-11 01:20:53 -07004492 if (ext4_orphan_add(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004493 goto out_stop;
4494
4495 /*
Mingming Cao632eaea2008-07-11 19:27:31 -04004496 * From here we block out all ext4_get_block() callers who want to
4497 * modify the block allocation tree.
4498 */
4499 down_write(&ei->i_data_sem);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004500
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004501 ext4_discard_preallocations(inode);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004502
Mingming Cao632eaea2008-07-11 19:27:31 -04004503 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004504 * The orphan list entry will now protect us from any crash which
4505 * occurs before the truncate completes, so it is now safe to propagate
4506 * the new, shorter inode size (held for now in i_size) into the
4507 * on-disk inode. We do this via i_disksize, which is the value which
Mingming Cao617ba132006-10-11 01:20:53 -07004508 * ext4 *really* writes onto the disk inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004509 */
4510 ei->i_disksize = inode->i_size;
4511
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004512 if (n == 1) { /* direct blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07004513 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
4514 i_data + EXT4_NDIR_BLOCKS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004515 goto do_indirects;
4516 }
4517
Mingming Cao617ba132006-10-11 01:20:53 -07004518 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004519 /* Kill the top of shared branch (not detached) */
4520 if (nr) {
4521 if (partial == chain) {
4522 /* Shared branch grows from the inode */
Mingming Cao617ba132006-10-11 01:20:53 -07004523 ext4_free_branches(handle, inode, NULL,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004524 &nr, &nr+1, (chain+n-1) - partial);
4525 *partial->p = 0;
4526 /*
4527 * We mark the inode dirty prior to restart,
4528 * and prior to stop. No need for it here.
4529 */
4530 } else {
4531 /* Shared branch grows from an indirect block */
4532 BUFFER_TRACE(partial->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004533 ext4_free_branches(handle, inode, partial->bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004534 partial->p,
4535 partial->p+1, (chain+n-1) - partial);
4536 }
4537 }
4538 /* Clear the ends of indirect blocks on the shared branch */
4539 while (partial > chain) {
Mingming Cao617ba132006-10-11 01:20:53 -07004540 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004541 (__le32*)partial->bh->b_data+addr_per_block,
4542 (chain+n-1) - partial);
4543 BUFFER_TRACE(partial->bh, "call brelse");
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004544 brelse(partial->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004545 partial--;
4546 }
4547do_indirects:
4548 /* Kill the remaining (whole) subtrees */
4549 switch (offsets[0]) {
4550 default:
Mingming Cao617ba132006-10-11 01:20:53 -07004551 nr = i_data[EXT4_IND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004552 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004553 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
4554 i_data[EXT4_IND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004555 }
Mingming Cao617ba132006-10-11 01:20:53 -07004556 case EXT4_IND_BLOCK:
4557 nr = i_data[EXT4_DIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004558 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004559 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
4560 i_data[EXT4_DIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004561 }
Mingming Cao617ba132006-10-11 01:20:53 -07004562 case EXT4_DIND_BLOCK:
4563 nr = i_data[EXT4_TIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004564 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004565 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
4566 i_data[EXT4_TIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004567 }
Mingming Cao617ba132006-10-11 01:20:53 -07004568 case EXT4_TIND_BLOCK:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004569 ;
4570 }
4571
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05004572 up_write(&ei->i_data_sem);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004573 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07004574 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004575
4576 /*
4577 * In a multi-transaction truncate, we only make the final transaction
4578 * synchronous
4579 */
4580 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05004581 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004582out_stop:
4583 /*
4584 * If this was a simple ftruncate(), and the file will remain alive
4585 * then we need to clear up the orphan record which we created above.
4586 * However, if this was a real unlink then we were called by
Mingming Cao617ba132006-10-11 01:20:53 -07004587 * ext4_delete_inode(), and we allow that function to clean up the
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004588 * orphan info for us.
4589 */
4590 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004591 ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004592
Mingming Cao617ba132006-10-11 01:20:53 -07004593 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004594}
4595
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004596/*
Mingming Cao617ba132006-10-11 01:20:53 -07004597 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004598 * underlying buffer_head on success. If 'in_mem' is true, we have all
4599 * data in memory that is needed to recreate the on-disk version of this
4600 * inode.
4601 */
Mingming Cao617ba132006-10-11 01:20:53 -07004602static int __ext4_get_inode_loc(struct inode *inode,
4603 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004604{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004605 struct ext4_group_desc *gdp;
4606 struct buffer_head *bh;
4607 struct super_block *sb = inode->i_sb;
4608 ext4_fsblk_t block;
4609 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004610
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004611 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004612 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004613 return -EIO;
4614
Theodore Ts'o240799c2008-10-09 23:53:47 -04004615 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4616 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4617 if (!gdp)
4618 return -EIO;
4619
4620 /*
4621 * Figure out the offset within the block group inode table
4622 */
4623 inodes_per_block = (EXT4_BLOCK_SIZE(sb) / EXT4_INODE_SIZE(sb));
4624 inode_offset = ((inode->i_ino - 1) %
4625 EXT4_INODES_PER_GROUP(sb));
4626 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4627 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4628
4629 bh = sb_getblk(sb, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004630 if (!bh) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004631 ext4_error(sb, "ext4_get_inode_loc", "unable to read "
4632 "inode block - inode=%lu, block=%llu",
4633 inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004634 return -EIO;
4635 }
4636 if (!buffer_uptodate(bh)) {
4637 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004638
4639 /*
4640 * If the buffer has the write error flag, we have failed
4641 * to write out another inode in the same block. In this
4642 * case, we don't have to read the block because we may
4643 * read the old inode data successfully.
4644 */
4645 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4646 set_buffer_uptodate(bh);
4647
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004648 if (buffer_uptodate(bh)) {
4649 /* someone brought it uptodate while we waited */
4650 unlock_buffer(bh);
4651 goto has_buffer;
4652 }
4653
4654 /*
4655 * If we have all information of the inode in memory and this
4656 * is the only valid inode in the block, we need not read the
4657 * block.
4658 */
4659 if (in_mem) {
4660 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004661 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004662
Theodore Ts'o240799c2008-10-09 23:53:47 -04004663 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004664
4665 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004666 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004667 if (!bitmap_bh)
4668 goto make_io;
4669
4670 /*
4671 * If the inode bitmap isn't in cache then the
4672 * optimisation may end up performing two reads instead
4673 * of one, so skip it.
4674 */
4675 if (!buffer_uptodate(bitmap_bh)) {
4676 brelse(bitmap_bh);
4677 goto make_io;
4678 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004679 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004680 if (i == inode_offset)
4681 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004682 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004683 break;
4684 }
4685 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004686 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004687 /* all other inodes are free, so skip I/O */
4688 memset(bh->b_data, 0, bh->b_size);
4689 set_buffer_uptodate(bh);
4690 unlock_buffer(bh);
4691 goto has_buffer;
4692 }
4693 }
4694
4695make_io:
4696 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004697 * If we need to do any I/O, try to pre-readahead extra
4698 * blocks from the inode table.
4699 */
4700 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4701 ext4_fsblk_t b, end, table;
4702 unsigned num;
4703
4704 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004705 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004706 b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
4707 if (table > b)
4708 b = table;
4709 end = b + EXT4_SB(sb)->s_inode_readahead_blks;
4710 num = EXT4_INODES_PER_GROUP(sb);
4711 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4712 EXT4_FEATURE_RO_COMPAT_GDT_CSUM))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004713 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004714 table += num / inodes_per_block;
4715 if (end > table)
4716 end = table;
4717 while (b <= end)
4718 sb_breadahead(sb, b++);
4719 }
4720
4721 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004722 * There are other valid inodes in the buffer, this inode
4723 * has in-inode xattrs, or we don't have this inode in memory.
4724 * Read the block from disk.
4725 */
4726 get_bh(bh);
4727 bh->b_end_io = end_buffer_read_sync;
4728 submit_bh(READ_META, bh);
4729 wait_on_buffer(bh);
4730 if (!buffer_uptodate(bh)) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004731 ext4_error(sb, __func__,
4732 "unable to read inode block - inode=%lu, "
4733 "block=%llu", inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004734 brelse(bh);
4735 return -EIO;
4736 }
4737 }
4738has_buffer:
4739 iloc->bh = bh;
4740 return 0;
4741}
4742
Mingming Cao617ba132006-10-11 01:20:53 -07004743int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004744{
4745 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07004746 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004747 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004748}
4749
Mingming Cao617ba132006-10-11 01:20:53 -07004750void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004751{
Mingming Cao617ba132006-10-11 01:20:53 -07004752 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004753
4754 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07004755 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004756 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004757 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004758 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004759 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004760 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004761 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004762 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004763 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004764 inode->i_flags |= S_DIRSYNC;
4765}
4766
Jan Karaff9ddf72007-07-18 09:24:20 -04004767/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4768void ext4_get_inode_flags(struct ext4_inode_info *ei)
4769{
4770 unsigned int flags = ei->vfs_inode.i_flags;
4771
4772 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
4773 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
4774 if (flags & S_SYNC)
4775 ei->i_flags |= EXT4_SYNC_FL;
4776 if (flags & S_APPEND)
4777 ei->i_flags |= EXT4_APPEND_FL;
4778 if (flags & S_IMMUTABLE)
4779 ei->i_flags |= EXT4_IMMUTABLE_FL;
4780 if (flags & S_NOATIME)
4781 ei->i_flags |= EXT4_NOATIME_FL;
4782 if (flags & S_DIRSYNC)
4783 ei->i_flags |= EXT4_DIRSYNC_FL;
4784}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004785
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004786static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004787 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004788{
4789 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004790 struct inode *inode = &(ei->vfs_inode);
4791 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004792
4793 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4794 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
4795 /* we are using combined 48 bit field */
4796 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4797 le32_to_cpu(raw_inode->i_blocks_lo);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004798 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
4799 /* i_blocks represent file system block size */
4800 return i_blocks << (inode->i_blkbits - 9);
4801 } else {
4802 return i_blocks;
4803 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004804 } else {
4805 return le32_to_cpu(raw_inode->i_blocks_lo);
4806 }
4807}
Jan Karaff9ddf72007-07-18 09:24:20 -04004808
David Howells1d1fe1e2008-02-07 00:15:37 -08004809struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004810{
Mingming Cao617ba132006-10-11 01:20:53 -07004811 struct ext4_iloc iloc;
4812 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004813 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004814 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004815 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004816 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004817 int block;
4818
David Howells1d1fe1e2008-02-07 00:15:37 -08004819 inode = iget_locked(sb, ino);
4820 if (!inode)
4821 return ERR_PTR(-ENOMEM);
4822 if (!(inode->i_state & I_NEW))
4823 return inode;
4824
4825 ei = EXT4_I(inode);
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004826 iloc.bh = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004827
David Howells1d1fe1e2008-02-07 00:15:37 -08004828 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4829 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004830 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004831 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004832 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
4833 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4834 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004835 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004836 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4837 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4838 }
4839 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004840
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004841 ei->i_state_flags = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004842 ei->i_dir_start_lookup = 0;
4843 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4844 /* We now have enough fields to check if the inode was active or not.
4845 * This is needed because nfsd might try to access dead inodes
4846 * the test is that same one that e2fsck uses
4847 * NeilBrown 1999oct15
4848 */
4849 if (inode->i_nlink == 0) {
4850 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07004851 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004852 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004853 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004854 goto bad_inode;
4855 }
4856 /* The only unlinked inodes we let through here have
4857 * valid i_mode and are being read by the orphan
4858 * recovery code: that's fine, we're about to complete
4859 * the process of deleting those. */
4860 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004861 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004862 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004863 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04004864 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004865 ei->i_file_acl |=
4866 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004867 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004868 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004869#ifdef CONFIG_QUOTA
4870 ei->i_reserved_quota = 0;
4871#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004872 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4873 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004874 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004875 /*
4876 * NOTE! The in-memory inode i_data array is in little-endian order
4877 * even on big-endian machines: we do NOT byteswap the block numbers!
4878 */
Mingming Cao617ba132006-10-11 01:20:53 -07004879 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004880 ei->i_data[block] = raw_inode->i_block[block];
4881 INIT_LIST_HEAD(&ei->i_orphan);
4882
Jan Karab436b9b2009-12-08 23:51:10 -05004883 /*
4884 * Set transaction id's of transactions that have to be committed
4885 * to finish f[data]sync. We set them to currently running transaction
4886 * as we cannot be sure that the inode or some of its metadata isn't
4887 * part of the transaction - the inode could have been reclaimed and
4888 * now it is reread from disk.
4889 */
4890 if (journal) {
4891 transaction_t *transaction;
4892 tid_t tid;
4893
4894 spin_lock(&journal->j_state_lock);
4895 if (journal->j_running_transaction)
4896 transaction = journal->j_running_transaction;
4897 else
4898 transaction = journal->j_committing_transaction;
4899 if (transaction)
4900 tid = transaction->t_tid;
4901 else
4902 tid = journal->j_commit_sequence;
4903 spin_unlock(&journal->j_state_lock);
4904 ei->i_sync_tid = tid;
4905 ei->i_datasync_tid = tid;
4906 }
4907
Eric Sandeen0040d982008-02-05 22:36:43 -05004908 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004909 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
Mingming Cao617ba132006-10-11 01:20:53 -07004910 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004911 EXT4_INODE_SIZE(inode->i_sb)) {
David Howells1d1fe1e2008-02-07 00:15:37 -08004912 ret = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004913 goto bad_inode;
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004914 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004915 if (ei->i_extra_isize == 0) {
4916 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004917 ei->i_extra_isize = sizeof(struct ext4_inode) -
4918 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004919 } else {
4920 __le32 *magic = (void *)raw_inode +
Mingming Cao617ba132006-10-11 01:20:53 -07004921 EXT4_GOOD_OLD_INODE_SIZE +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004922 ei->i_extra_isize;
Mingming Cao617ba132006-10-11 01:20:53 -07004923 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004924 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004925 }
4926 } else
4927 ei->i_extra_isize = 0;
4928
Kalpak Shahef7f3832007-07-18 09:15:20 -04004929 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4930 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4931 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4932 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4933
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004934 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4935 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4936 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4937 inode->i_version |=
4938 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4939 }
4940
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004941 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004942 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004943 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004944 ext4_error(sb, __func__,
4945 "bad extended attribute block %llu in inode #%lu",
4946 ei->i_file_acl, inode->i_ino);
4947 ret = -EIO;
4948 goto bad_inode;
4949 } else if (ei->i_flags & EXT4_EXTENTS_FL) {
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004950 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4951 (S_ISLNK(inode->i_mode) &&
4952 !ext4_inode_is_fast_symlink(inode)))
4953 /* Validate extent which is part of inode */
4954 ret = ext4_ext_check_inode(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004955 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004956 (S_ISLNK(inode->i_mode) &&
4957 !ext4_inode_is_fast_symlink(inode))) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004958 /* Validate block references which are part of inode */
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004959 ret = ext4_check_inode_blockref(inode);
4960 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004961 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004962 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004963
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004964 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004965 inode->i_op = &ext4_file_inode_operations;
4966 inode->i_fop = &ext4_file_operations;
4967 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004968 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004969 inode->i_op = &ext4_dir_inode_operations;
4970 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004971 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00004972 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004973 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004974 nd_terminate_link(ei->i_data, inode->i_size,
4975 sizeof(ei->i_data) - 1);
4976 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004977 inode->i_op = &ext4_symlink_inode_operations;
4978 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004979 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004980 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4981 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004982 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004983 if (raw_inode->i_block[0])
4984 init_special_inode(inode, inode->i_mode,
4985 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4986 else
4987 init_special_inode(inode, inode->i_mode,
4988 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004989 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004990 ret = -EIO;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004991 ext4_error(inode->i_sb, __func__,
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004992 "bogus i_mode (%o) for inode=%lu",
4993 inode->i_mode, inode->i_ino);
4994 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004995 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004996 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004997 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004998 unlock_new_inode(inode);
4999 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005000
5001bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05005002 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08005003 iget_failed(inode);
5004 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005005}
5006
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005007static int ext4_inode_blocks_set(handle_t *handle,
5008 struct ext4_inode *raw_inode,
5009 struct ext4_inode_info *ei)
5010{
5011 struct inode *inode = &(ei->vfs_inode);
5012 u64 i_blocks = inode->i_blocks;
5013 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005014
5015 if (i_blocks <= ~0U) {
5016 /*
5017 * i_blocks can be represnted in a 32 bit variable
5018 * as multiple of 512 bytes
5019 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005020 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005021 raw_inode->i_blocks_high = 0;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005022 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04005023 return 0;
5024 }
5025 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
5026 return -EFBIG;
5027
5028 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005029 /*
5030 * i_blocks can be represented in a 48 bit variable
5031 * as multiple of 512 bytes
5032 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005033 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005034 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005035 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005036 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05005037 ei->i_flags |= EXT4_HUGE_FILE_FL;
5038 /* i_block is stored in file system block size */
5039 i_blocks = i_blocks >> (inode->i_blkbits - 9);
5040 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
5041 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005042 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04005043 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005044}
5045
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005046/*
5047 * Post the struct inode info into an on-disk inode location in the
5048 * buffer-cache. This gobbles the caller's reference to the
5049 * buffer_head in the inode location struct.
5050 *
5051 * The caller must have write access to iloc->bh.
5052 */
Mingming Cao617ba132006-10-11 01:20:53 -07005053static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005054 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04005055 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005056{
Mingming Cao617ba132006-10-11 01:20:53 -07005057 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5058 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005059 struct buffer_head *bh = iloc->bh;
5060 int err = 0, rc, block;
5061
5062 /* For fields not not tracking in the in-memory inode,
5063 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005064 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07005065 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005066
Jan Karaff9ddf72007-07-18 09:24:20 -04005067 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005068 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005069 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005070 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
5071 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
5072/*
5073 * Fix up interoperability with old kernels. Otherwise, old inodes get
5074 * re-used with the upper 16 bits of the uid/gid intact
5075 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005076 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005077 raw_inode->i_uid_high =
5078 cpu_to_le16(high_16_bits(inode->i_uid));
5079 raw_inode->i_gid_high =
5080 cpu_to_le16(high_16_bits(inode->i_gid));
5081 } else {
5082 raw_inode->i_uid_high = 0;
5083 raw_inode->i_gid_high = 0;
5084 }
5085 } else {
5086 raw_inode->i_uid_low =
5087 cpu_to_le16(fs_high2lowuid(inode->i_uid));
5088 raw_inode->i_gid_low =
5089 cpu_to_le16(fs_high2lowgid(inode->i_gid));
5090 raw_inode->i_uid_high = 0;
5091 raw_inode->i_gid_high = 0;
5092 }
5093 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04005094
5095 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5096 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5097 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5098 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5099
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005100 if (ext4_inode_blocks_set(handle, raw_inode, ei))
5101 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005102 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -04005103 raw_inode->i_flags = cpu_to_le32(ei->i_flags);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07005104 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
5105 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005106 raw_inode->i_file_acl_high =
5107 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005108 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005109 ext4_isize_set(raw_inode, ei->i_disksize);
5110 if (ei->i_disksize > 0x7fffffffULL) {
5111 struct super_block *sb = inode->i_sb;
5112 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
5113 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
5114 EXT4_SB(sb)->s_es->s_rev_level ==
5115 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
5116 /* If this is the first large file
5117 * created, add a flag to the superblock.
5118 */
5119 err = ext4_journal_get_write_access(handle,
5120 EXT4_SB(sb)->s_sbh);
5121 if (err)
5122 goto out_brelse;
5123 ext4_update_dynamic_rev(sb);
5124 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07005125 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005126 sb->s_dirt = 1;
Frank Mayhar03901312009-01-07 00:06:22 -05005127 ext4_handle_sync(handle);
5128 err = ext4_handle_dirty_metadata(handle, inode,
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005129 EXT4_SB(sb)->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005130 }
5131 }
5132 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5133 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5134 if (old_valid_dev(inode->i_rdev)) {
5135 raw_inode->i_block[0] =
5136 cpu_to_le32(old_encode_dev(inode->i_rdev));
5137 raw_inode->i_block[1] = 0;
5138 } else {
5139 raw_inode->i_block[0] = 0;
5140 raw_inode->i_block[1] =
5141 cpu_to_le32(new_encode_dev(inode->i_rdev));
5142 raw_inode->i_block[2] = 0;
5143 }
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005144 } else
5145 for (block = 0; block < EXT4_N_BLOCKS; block++)
5146 raw_inode->i_block[block] = ei->i_data[block];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005147
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005148 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
5149 if (ei->i_extra_isize) {
5150 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5151 raw_inode->i_version_hi =
5152 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005153 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005154 }
5155
Frank Mayhar830156c2009-09-29 10:07:47 -04005156 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
5157 rc = ext4_handle_dirty_metadata(handle, inode, bh);
5158 if (!err)
5159 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005160 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005161
Jan Karab436b9b2009-12-08 23:51:10 -05005162 ext4_update_inode_fsync_trans(handle, inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005163out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005164 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005165 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005166 return err;
5167}
5168
5169/*
Mingming Cao617ba132006-10-11 01:20:53 -07005170 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005171 *
5172 * We are called from a few places:
5173 *
5174 * - Within generic_file_write() for O_SYNC files.
5175 * Here, there will be no transaction running. We wait for any running
5176 * trasnaction to commit.
5177 *
5178 * - Within sys_sync(), kupdate and such.
5179 * We wait on commit, if tol to.
5180 *
5181 * - Within prune_icache() (PF_MEMALLOC == true)
5182 * Here we simply return. We can't afford to block kswapd on the
5183 * journal commit.
5184 *
5185 * In all cases it is actually safe for us to return without doing anything,
5186 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07005187 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005188 * knfsd.
5189 *
5190 * Note that we are absolutely dependent upon all inode dirtiers doing the
5191 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5192 * which we are interested.
5193 *
5194 * It would be a bug for them to not do this. The code:
5195 *
5196 * mark_inode_dirty(inode)
5197 * stuff();
5198 * inode->i_size = expr;
5199 *
5200 * is in error because a kswapd-driven write_inode() could occur while
5201 * `stuff()' is running, and the new i_size will be lost. Plus the inode
5202 * will no longer be on the superblock's dirty inode list.
5203 */
Mingming Cao617ba132006-10-11 01:20:53 -07005204int ext4_write_inode(struct inode *inode, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005205{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005206 int err;
5207
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005208 if (current->flags & PF_MEMALLOC)
5209 return 0;
5210
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005211 if (EXT4_SB(inode->i_sb)->s_journal) {
5212 if (ext4_journal_current_handle()) {
5213 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5214 dump_stack();
5215 return -EIO;
5216 }
5217
5218 if (!wait)
5219 return 0;
5220
5221 err = ext4_force_commit(inode->i_sb);
5222 } else {
5223 struct ext4_iloc iloc;
5224
5225 err = ext4_get_inode_loc(inode, &iloc);
5226 if (err)
5227 return err;
Frank Mayhar830156c2009-09-29 10:07:47 -04005228 if (wait)
5229 sync_dirty_buffer(iloc.bh);
5230 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
5231 ext4_error(inode->i_sb, __func__,
5232 "IO error syncing inode, "
5233 "inode=%lu, block=%llu",
5234 inode->i_ino,
5235 (unsigned long long)iloc.bh->b_blocknr);
5236 err = -EIO;
5237 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005238 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005239 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005240}
5241
5242/*
Mingming Cao617ba132006-10-11 01:20:53 -07005243 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005244 *
5245 * Called from notify_change.
5246 *
5247 * We want to trap VFS attempts to truncate the file as soon as
5248 * possible. In particular, we want to make sure that when the VFS
5249 * shrinks i_size, we put the inode on the orphan list and modify
5250 * i_disksize immediately, so that during the subsequent flushing of
5251 * dirty pages and freeing of disk blocks, we can guarantee that any
5252 * commit will leave the blocks being flushed in an unused state on
5253 * disk. (On recovery, the inode will get truncated and the blocks will
5254 * be freed, so we have a strong guarantee that no future commit will
5255 * leave these blocks visible to the user.)
5256 *
Jan Kara678aaf42008-07-11 19:27:31 -04005257 * Another thing we have to assure is that if we are in ordered mode
5258 * and inode is still attached to the committing transaction, we must
5259 * we start writeout of all the dirty pages which are being truncated.
5260 * This way we are sure that all the data written in the previous
5261 * transaction are already on disk (truncate waits for pages under
5262 * writeback).
5263 *
5264 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005265 */
Mingming Cao617ba132006-10-11 01:20:53 -07005266int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005267{
5268 struct inode *inode = dentry->d_inode;
5269 int error, rc = 0;
5270 const unsigned int ia_valid = attr->ia_valid;
5271
5272 error = inode_change_ok(inode, attr);
5273 if (error)
5274 return error;
5275
5276 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
5277 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
5278 handle_t *handle;
5279
5280 /* (user+group)*(old+new) structure, inode write (sb,
5281 * inode block, ? - but truncate inode update has it) */
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -05005282 handle = ext4_journal_start(inode, (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+
Dmitry Monakhov194074a2009-12-08 22:42:28 -05005283 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb))+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005284 if (IS_ERR(handle)) {
5285 error = PTR_ERR(handle);
5286 goto err_out;
5287 }
Jan Karaa269eb12009-01-26 17:04:39 +01005288 error = vfs_dq_transfer(inode, attr) ? -EDQUOT : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005289 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005290 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005291 return error;
5292 }
5293 /* Update corresponding info in inode so that everything is in
5294 * one transaction */
5295 if (attr->ia_valid & ATTR_UID)
5296 inode->i_uid = attr->ia_uid;
5297 if (attr->ia_valid & ATTR_GID)
5298 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005299 error = ext4_mark_inode_dirty(handle, inode);
5300 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005301 }
5302
Eric Sandeene2b46572008-01-28 23:58:27 -05005303 if (attr->ia_valid & ATTR_SIZE) {
5304 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
5305 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5306
5307 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
5308 error = -EFBIG;
5309 goto err_out;
5310 }
5311 }
5312 }
5313
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005314 if (S_ISREG(inode->i_mode) &&
5315 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
5316 handle_t *handle;
5317
Mingming Cao617ba132006-10-11 01:20:53 -07005318 handle = ext4_journal_start(inode, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005319 if (IS_ERR(handle)) {
5320 error = PTR_ERR(handle);
5321 goto err_out;
5322 }
5323
Mingming Cao617ba132006-10-11 01:20:53 -07005324 error = ext4_orphan_add(handle, inode);
5325 EXT4_I(inode)->i_disksize = attr->ia_size;
5326 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005327 if (!error)
5328 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07005329 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04005330
5331 if (ext4_should_order_data(inode)) {
5332 error = ext4_begin_ordered_truncate(inode,
5333 attr->ia_size);
5334 if (error) {
5335 /* Do as much error cleanup as possible */
5336 handle = ext4_journal_start(inode, 3);
5337 if (IS_ERR(handle)) {
5338 ext4_orphan_del(NULL, inode);
5339 goto err_out;
5340 }
5341 ext4_orphan_del(handle, inode);
5342 ext4_journal_stop(handle);
5343 goto err_out;
5344 }
5345 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005346 }
5347
5348 rc = inode_setattr(inode, attr);
5349
Mingming Cao617ba132006-10-11 01:20:53 -07005350 /* If inode_setattr's call to ext4_truncate failed to get a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005351 * transaction handle at all, we need to clean up the in-core
5352 * orphan list manually. */
5353 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005354 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005355
5356 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07005357 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005358
5359err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07005360 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005361 if (!error)
5362 error = rc;
5363 return error;
5364}
5365
Mingming Cao3e3398a2008-07-11 19:27:31 -04005366int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
5367 struct kstat *stat)
5368{
5369 struct inode *inode;
5370 unsigned long delalloc_blocks;
5371
5372 inode = dentry->d_inode;
5373 generic_fillattr(inode, stat);
5374
5375 /*
5376 * We can't update i_blocks if the block allocation is delayed
5377 * otherwise in the case of system crash before the real block
5378 * allocation is done, we will have i_blocks inconsistent with
5379 * on-disk file blocks.
5380 * We always keep i_blocks updated together with real
5381 * allocation. But to not confuse with user, stat
5382 * will return the blocks that include the delayed allocation
5383 * blocks for this file.
5384 */
5385 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
5386 delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
5387 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
5388
5389 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
5390 return 0;
5391}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005392
Mingming Caoa02908f2008-08-19 22:16:07 -04005393static int ext4_indirect_trans_blocks(struct inode *inode, int nrblocks,
5394 int chunk)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005395{
Mingming Caoa02908f2008-08-19 22:16:07 -04005396 int indirects;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005397
Mingming Caoa02908f2008-08-19 22:16:07 -04005398 /* if nrblocks are contiguous */
5399 if (chunk) {
5400 /*
5401 * With N contiguous data blocks, it need at most
5402 * N/EXT4_ADDR_PER_BLOCK(inode->i_sb) indirect blocks
5403 * 2 dindirect blocks
5404 * 1 tindirect block
5405 */
5406 indirects = nrblocks / EXT4_ADDR_PER_BLOCK(inode->i_sb);
5407 return indirects + 3;
5408 }
5409 /*
5410 * if nrblocks are not contiguous, worse case, each block touch
5411 * a indirect block, and each indirect block touch a double indirect
5412 * block, plus a triple indirect block
5413 */
5414 indirects = nrblocks * 2 + 1;
5415 return indirects;
5416}
Alex Tomasa86c6182006-10-11 01:21:03 -07005417
Mingming Caoa02908f2008-08-19 22:16:07 -04005418static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5419{
5420 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL))
Theodore Ts'oac51d832008-11-06 16:49:36 -05005421 return ext4_indirect_trans_blocks(inode, nrblocks, chunk);
5422 return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
Mingming Caoa02908f2008-08-19 22:16:07 -04005423}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005424
Mingming Caoa02908f2008-08-19 22:16:07 -04005425/*
5426 * Account for index blocks, block groups bitmaps and block group
5427 * descriptor blocks if modify datablocks and index blocks
5428 * worse case, the indexs blocks spread over different block groups
5429 *
5430 * If datablocks are discontiguous, they are possible to spread over
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005431 * different block groups too. If they are contiuguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005432 * they could still across block group boundary.
5433 *
5434 * Also account for superblock, inode, quota and xattr blocks
5435 */
5436int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5437{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005438 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5439 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005440 int idxblocks;
5441 int ret = 0;
5442
5443 /*
5444 * How many index blocks need to touch to modify nrblocks?
5445 * The "Chunk" flag indicating whether the nrblocks is
5446 * physically contiguous on disk
5447 *
5448 * For Direct IO and fallocate, they calls get_block to allocate
5449 * one single extent at a time, so they could set the "Chunk" flag
5450 */
5451 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
5452
5453 ret = idxblocks;
5454
5455 /*
5456 * Now let's see how many group bitmaps and group descriptors need
5457 * to account
5458 */
5459 groups = idxblocks;
5460 if (chunk)
5461 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005462 else
Mingming Caoa02908f2008-08-19 22:16:07 -04005463 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005464
Mingming Caoa02908f2008-08-19 22:16:07 -04005465 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005466 if (groups > ngroups)
5467 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005468 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5469 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5470
5471 /* bitmaps and block group descriptor blocks */
5472 ret += groups + gdpblocks;
5473
5474 /* Blocks for super block, inode, quota and xattr blocks */
5475 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005476
5477 return ret;
5478}
5479
5480/*
Mingming Caoa02908f2008-08-19 22:16:07 -04005481 * Calulate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005482 * the modification of a single pages into a single transaction,
5483 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005484 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005485 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005486 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005487 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005488 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005489 */
5490int ext4_writepage_trans_blocks(struct inode *inode)
5491{
5492 int bpp = ext4_journal_blocks_per_page(inode);
5493 int ret;
5494
5495 ret = ext4_meta_trans_blocks(inode, bpp, 0);
5496
5497 /* Account for data blocks for journalled mode */
5498 if (ext4_should_journal_data(inode))
5499 ret += bpp;
5500 return ret;
5501}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005502
5503/*
5504 * Calculate the journal credits for a chunk of data modification.
5505 *
5506 * This is called from DIO, fallocate or whoever calling
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005507 * ext4_get_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005508 *
5509 * journal buffers for data blocks are not included here, as DIO
5510 * and fallocate do no need to journal data buffers.
5511 */
5512int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5513{
5514 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5515}
5516
Mingming Caoa02908f2008-08-19 22:16:07 -04005517/*
Mingming Cao617ba132006-10-11 01:20:53 -07005518 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005519 * Give this, we know that the caller already has write access to iloc->bh.
5520 */
Mingming Cao617ba132006-10-11 01:20:53 -07005521int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005522 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005523{
5524 int err = 0;
5525
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005526 if (test_opt(inode->i_sb, I_VERSION))
5527 inode_inc_iversion(inode);
5528
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005529 /* the do_update_inode consumes one bh->b_count */
5530 get_bh(iloc->bh);
5531
Mingming Caodab291a2006-10-11 01:21:01 -07005532 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005533 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005534 put_bh(iloc->bh);
5535 return err;
5536}
5537
5538/*
5539 * On success, We end up with an outstanding reference count against
5540 * iloc->bh. This _must_ be cleaned up later.
5541 */
5542
5543int
Mingming Cao617ba132006-10-11 01:20:53 -07005544ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5545 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005546{
Frank Mayhar03901312009-01-07 00:06:22 -05005547 int err;
5548
5549 err = ext4_get_inode_loc(inode, iloc);
5550 if (!err) {
5551 BUFFER_TRACE(iloc->bh, "get_write_access");
5552 err = ext4_journal_get_write_access(handle, iloc->bh);
5553 if (err) {
5554 brelse(iloc->bh);
5555 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005556 }
5557 }
Mingming Cao617ba132006-10-11 01:20:53 -07005558 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005559 return err;
5560}
5561
5562/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005563 * Expand an inode by new_extra_isize bytes.
5564 * Returns 0 on success or negative error number on failure.
5565 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05005566static int ext4_expand_extra_isize(struct inode *inode,
5567 unsigned int new_extra_isize,
5568 struct ext4_iloc iloc,
5569 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005570{
5571 struct ext4_inode *raw_inode;
5572 struct ext4_xattr_ibody_header *header;
5573 struct ext4_xattr_entry *entry;
5574
5575 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
5576 return 0;
5577
5578 raw_inode = ext4_raw_inode(&iloc);
5579
5580 header = IHDR(inode, raw_inode);
5581 entry = IFIRST(header);
5582
5583 /* No extended attributes present */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005584 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5585 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005586 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
5587 new_extra_isize);
5588 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5589 return 0;
5590 }
5591
5592 /* try to expand with EAs present */
5593 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
5594 raw_inode, handle);
5595}
5596
5597/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005598 * What we do here is to mark the in-core inode as clean with respect to inode
5599 * dirtiness (it may still be data-dirty).
5600 * This means that the in-core inode may be reaped by prune_icache
5601 * without having to perform any I/O. This is a very good thing,
5602 * because *any* task may call prune_icache - even ones which
5603 * have a transaction open against a different journal.
5604 *
5605 * Is this cheating? Not really. Sure, we haven't written the
5606 * inode out, but prune_icache isn't a user-visible syncing function.
5607 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5608 * we start and wait on commits.
5609 *
5610 * Is this efficient/effective? Well, we're being nice to the system
5611 * by cleaning up our inodes proactively so they can be reaped
5612 * without I/O. But we are potentially leaving up to five seconds'
5613 * worth of inodes floating about which prune_icache wants us to
5614 * write out. One way to fix that would be to get prune_icache()
5615 * to do a write_super() to free up some memory. It has the desired
5616 * effect.
5617 */
Mingming Cao617ba132006-10-11 01:20:53 -07005618int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005619{
Mingming Cao617ba132006-10-11 01:20:53 -07005620 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005621 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5622 static unsigned int mnt_count;
5623 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005624
5625 might_sleep();
Mingming Cao617ba132006-10-11 01:20:53 -07005626 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05005627 if (ext4_handle_valid(handle) &&
5628 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005629 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005630 /*
5631 * We need extra buffer credits since we may write into EA block
5632 * with this same handle. If journal_extend fails, then it will
5633 * only result in a minor loss of functionality for that inode.
5634 * If this is felt to be critical, then e2fsck should be run to
5635 * force a large enough s_min_extra_isize.
5636 */
5637 if ((jbd2_journal_extend(handle,
5638 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
5639 ret = ext4_expand_extra_isize(inode,
5640 sbi->s_want_extra_isize,
5641 iloc, handle);
5642 if (ret) {
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005643 ext4_set_inode_state(inode,
5644 EXT4_STATE_NO_EXPAND);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005645 if (mnt_count !=
5646 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04005647 ext4_warning(inode->i_sb, __func__,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005648 "Unable to expand inode %lu. Delete"
5649 " some EAs or run e2fsck.",
5650 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005651 mnt_count =
5652 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005653 }
5654 }
5655 }
5656 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005657 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07005658 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005659 return err;
5660}
5661
5662/*
Mingming Cao617ba132006-10-11 01:20:53 -07005663 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005664 *
5665 * We're really interested in the case where a file is being extended.
5666 * i_size has been changed by generic_commit_write() and we thus need
5667 * to include the updated inode in the current transaction.
5668 *
Jan Karaa269eb12009-01-26 17:04:39 +01005669 * Also, vfs_dq_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005670 * are allocated to the file.
5671 *
5672 * If the inode is marked synchronous, we don't honour that here - doing
5673 * so would cause a commit on atime updates, which we don't bother doing.
5674 * We handle synchronous inodes at the highest possible level.
5675 */
Mingming Cao617ba132006-10-11 01:20:53 -07005676void ext4_dirty_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005677{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005678 handle_t *handle;
5679
Mingming Cao617ba132006-10-11 01:20:53 -07005680 handle = ext4_journal_start(inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005681 if (IS_ERR(handle))
5682 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005683
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005684 ext4_mark_inode_dirty(handle, inode);
5685
Mingming Cao617ba132006-10-11 01:20:53 -07005686 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005687out:
5688 return;
5689}
5690
5691#if 0
5692/*
5693 * Bind an inode's backing buffer_head into this transaction, to prevent
5694 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07005695 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005696 * returns no iloc structure, so the caller needs to repeat the iloc
5697 * lookup to mark the inode dirty later.
5698 */
Mingming Cao617ba132006-10-11 01:20:53 -07005699static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005700{
Mingming Cao617ba132006-10-11 01:20:53 -07005701 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005702
5703 int err = 0;
5704 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07005705 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005706 if (!err) {
5707 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07005708 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005709 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05005710 err = ext4_handle_dirty_metadata(handle,
5711 inode,
5712 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005713 brelse(iloc.bh);
5714 }
5715 }
Mingming Cao617ba132006-10-11 01:20:53 -07005716 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005717 return err;
5718}
5719#endif
5720
Mingming Cao617ba132006-10-11 01:20:53 -07005721int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005722{
5723 journal_t *journal;
5724 handle_t *handle;
5725 int err;
5726
5727 /*
5728 * We have to be very careful here: changing a data block's
5729 * journaling status dynamically is dangerous. If we write a
5730 * data block to the journal, change the status and then delete
5731 * that block, we risk forgetting to revoke the old log record
5732 * from the journal and so a subsequent replay can corrupt data.
5733 * So, first we make sure that the journal is empty and that
5734 * nobody is changing anything.
5735 */
5736
Mingming Cao617ba132006-10-11 01:20:53 -07005737 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005738 if (!journal)
5739 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005740 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005741 return -EROFS;
5742
Mingming Caodab291a2006-10-11 01:21:01 -07005743 jbd2_journal_lock_updates(journal);
5744 jbd2_journal_flush(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005745
5746 /*
5747 * OK, there are no updates running now, and all cached data is
5748 * synced to disk. We are now in a completely consistent state
5749 * which doesn't have anything in the journal, and we know that
5750 * no filesystem updates are running, so it is safe to modify
5751 * the inode's in-core data-journaling state flag now.
5752 */
5753
5754 if (val)
Mingming Cao617ba132006-10-11 01:20:53 -07005755 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005756 else
Mingming Cao617ba132006-10-11 01:20:53 -07005757 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
5758 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005759
Mingming Caodab291a2006-10-11 01:21:01 -07005760 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005761
5762 /* Finally we can mark the inode as dirty. */
5763
Mingming Cao617ba132006-10-11 01:20:53 -07005764 handle = ext4_journal_start(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005765 if (IS_ERR(handle))
5766 return PTR_ERR(handle);
5767
Mingming Cao617ba132006-10-11 01:20:53 -07005768 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005769 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005770 ext4_journal_stop(handle);
5771 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005772
5773 return err;
5774}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005775
5776static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5777{
5778 return !buffer_mapped(bh);
5779}
5780
Nick Pigginc2ec1752009-03-31 15:23:21 -07005781int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005782{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005783 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005784 loff_t size;
5785 unsigned long len;
5786 int ret = -EINVAL;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005787 void *fsdata;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005788 struct file *file = vma->vm_file;
5789 struct inode *inode = file->f_path.dentry->d_inode;
5790 struct address_space *mapping = inode->i_mapping;
5791
5792 /*
5793 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
5794 * get i_mutex because we are already holding mmap_sem.
5795 */
5796 down_read(&inode->i_alloc_sem);
5797 size = i_size_read(inode);
5798 if (page->mapping != mapping || size <= page_offset(page)
5799 || !PageUptodate(page)) {
5800 /* page got truncated from under us? */
5801 goto out_unlock;
5802 }
5803 ret = 0;
5804 if (PageMappedToDisk(page))
5805 goto out_unlock;
5806
5807 if (page->index == size >> PAGE_CACHE_SHIFT)
5808 len = size & ~PAGE_CACHE_MASK;
5809 else
5810 len = PAGE_CACHE_SIZE;
5811
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005812 lock_page(page);
5813 /*
5814 * return if we have all the buffers mapped. This avoid
5815 * the need to call write_begin/write_end which does a
5816 * journal_start/journal_stop which can block and take
5817 * long time
5818 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005819 if (page_has_buffers(page)) {
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005820 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005821 ext4_bh_unmapped)) {
5822 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005823 goto out_unlock;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005824 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005825 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005826 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005827 /*
5828 * OK, we need to fill the hole... Do write_begin write_end
5829 * to do block allocation/reservation.We are not holding
5830 * inode.i__mutex here. That allow * parallel write_begin,
5831 * write_end call. lock_page prevent this from happening
5832 * on the same page though
5833 */
5834 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005835 len, AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005836 if (ret < 0)
5837 goto out_unlock;
5838 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005839 len, len, page, fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005840 if (ret < 0)
5841 goto out_unlock;
5842 ret = 0;
5843out_unlock:
Nick Pigginc2ec1752009-03-31 15:23:21 -07005844 if (ret)
5845 ret = VM_FAULT_SIGBUS;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005846 up_read(&inode->i_alloc_sem);
5847 return ret;
5848}