blob: 0c0ddc1401e4cde5f3b043b82dfe4f21dea21846 [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/*
Mingming Cao617ba132006-10-11 01:20:53 -070074 * The ext4 forget function must perform a revoke if we are freeing data
Dave Kleikampac27a0e2006-10-11 01:20:50 -070075 * which has been journaled. Metadata (eg. indirect blocks) must be
76 * revoked in all cases.
77 *
78 * "bh" may be NULL: a metadata block may have been freed from memory
79 * but there may still be a record of it in the journal, and that record
80 * still needs to be revoked.
Frank Mayhar03901312009-01-07 00:06:22 -050081 *
Curt Wohlgemuthe6b5d302009-07-13 09:07:20 -040082 * If the handle isn't valid we're not journaling, but we still need to
83 * call into ext4_journal_revoke() to put the buffer head.
Dave Kleikampac27a0e2006-10-11 01:20:50 -070084 */
Mingming Cao617ba132006-10-11 01:20:53 -070085int ext4_forget(handle_t *handle, int is_metadata, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -040086 struct buffer_head *bh, ext4_fsblk_t blocknr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070087{
88 int err;
89
90 might_sleep();
91
Theodore Ts'obeac2da2009-11-23 07:25:08 -050092 trace_ext4_forget(inode, is_metadata, blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070093 BUFFER_TRACE(bh, "enter");
94
95 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
Theodore Ts'o7f4520c2009-06-13 10:09:41 -040096 "data mode %x\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -070097 bh, is_metadata, inode->i_mode,
98 test_opt(inode->i_sb, DATA_FLAGS));
99
100 /* Never use the revoke function if we are doing full data
101 * journaling: there is no need to, and a V1 superblock won't
102 * support it. Otherwise, only skip the revoke on un-journaled
103 * data blocks. */
104
Mingming Cao617ba132006-10-11 01:20:53 -0700105 if (test_opt(inode->i_sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ||
106 (!is_metadata && !ext4_should_journal_data(inode))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700107 if (bh) {
Mingming Caodab291a2006-10-11 01:21:01 -0700108 BUFFER_TRACE(bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -0700109 return ext4_journal_forget(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700110 }
111 return 0;
112 }
113
114 /*
115 * data!=journal && (is_metadata || should_journal_data(inode))
116 */
Mingming Cao617ba132006-10-11 01:20:53 -0700117 BUFFER_TRACE(bh, "call ext4_journal_revoke");
118 err = ext4_journal_revoke(handle, blocknr, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700119 if (err)
Harvey Harrison46e665e2008-04-17 10:38:59 -0400120 ext4_abort(inode->i_sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700121 "error %d when attempting revoke", err);
122 BUFFER_TRACE(bh, "exit");
123 return err;
124}
125
126/*
127 * Work out how many blocks we need to proceed with the next chunk of a
128 * truncate transaction.
129 */
130static unsigned long blocks_for_truncate(struct inode *inode)
131{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500132 ext4_lblk_t needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700133
134 needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9);
135
136 /* Give ourselves just enough room to cope with inodes in which
137 * i_blocks is corrupt: we've seen disk corruptions in the past
138 * which resulted in random data in an inode which looked enough
Mingming Cao617ba132006-10-11 01:20:53 -0700139 * like a regular file for ext4 to try to delete it. Things
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700140 * will go a bit crazy if that happens, but at least we should
141 * try not to panic the whole kernel. */
142 if (needed < 2)
143 needed = 2;
144
145 /* But we need to bound the transaction so we don't overflow the
146 * journal. */
Mingming Cao617ba132006-10-11 01:20:53 -0700147 if (needed > EXT4_MAX_TRANS_DATA)
148 needed = EXT4_MAX_TRANS_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700149
Mingming Cao617ba132006-10-11 01:20:53 -0700150 return EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + needed;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700151}
152
153/*
154 * Truncate transactions can be complex and absolutely huge. So we need to
155 * be able to restart the transaction at a conventient checkpoint to make
156 * sure we don't overflow the journal.
157 *
158 * start_transaction gets us a new handle for a truncate transaction,
159 * and extend_transaction tries to extend the existing one a bit. If
160 * extend fails, we need to propagate the failure up and restart the
161 * transaction in the top-level truncate loop. --sct
162 */
163static handle_t *start_transaction(struct inode *inode)
164{
165 handle_t *result;
166
Mingming Cao617ba132006-10-11 01:20:53 -0700167 result = ext4_journal_start(inode, blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700168 if (!IS_ERR(result))
169 return result;
170
Mingming Cao617ba132006-10-11 01:20:53 -0700171 ext4_std_error(inode->i_sb, PTR_ERR(result));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700172 return result;
173}
174
175/*
176 * Try to extend this transaction for the purposes of truncation.
177 *
178 * Returns 0 if we managed to create more room. If we can't create more
179 * room, and the transaction must be restarted we return 1.
180 */
181static int try_to_extend_transaction(handle_t *handle, struct inode *inode)
182{
Frank Mayhar03901312009-01-07 00:06:22 -0500183 if (!ext4_handle_valid(handle))
184 return 0;
185 if (ext4_handle_has_enough_credits(handle, EXT4_RESERVE_TRANS_BLOCKS+1))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700186 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700187 if (!ext4_journal_extend(handle, blocks_for_truncate(inode)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700188 return 0;
189 return 1;
190}
191
192/*
193 * Restart the transaction associated with *handle. This does a commit,
194 * so before we call here everything must be consistently dirtied against
195 * this transaction.
196 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500197int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -0400198 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700199{
Jan Kara487caee2009-08-17 22:17:20 -0400200 int ret;
201
202 /*
203 * Drop i_data_sem to avoid deadlock with ext4_get_blocks At this
204 * moment, get_block can be called only for blocks inside i_size since
205 * page cache has been already dropped and writes are blocked by
206 * i_mutex. So we can safely drop the i_data_sem here.
207 */
Frank Mayhar03901312009-01-07 00:06:22 -0500208 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700209 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400210 up_write(&EXT4_I(inode)->i_data_sem);
211 ret = ext4_journal_restart(handle, blocks_for_truncate(inode));
212 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500213 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400214
215 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700216}
217
218/*
219 * Called at the last iput() if i_nlink is zero.
220 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400221void ext4_delete_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222{
223 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400224 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700225
Jan Kara678aaf42008-07-11 19:27:31 -0400226 if (ext4_should_order_data(inode))
227 ext4_begin_ordered_truncate(inode, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700228 truncate_inode_pages(&inode->i_data, 0);
229
230 if (is_bad_inode(inode))
231 goto no_delete;
232
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400233 handle = ext4_journal_start(inode, blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700234 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400235 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700236 /*
237 * If we're going to skip the normal cleanup, we still need to
238 * make sure that the in-core orphan linked list is properly
239 * cleaned up.
240 */
Mingming Cao617ba132006-10-11 01:20:53 -0700241 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 goto no_delete;
243 }
244
245 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500246 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700247 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400248 err = ext4_mark_inode_dirty(handle, inode);
249 if (err) {
250 ext4_warning(inode->i_sb, __func__,
251 "couldn't mark inode dirty (err %d)", err);
252 goto stop_handle;
253 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700255 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400256
257 /*
258 * ext4_ext_truncate() doesn't reserve any slop when it
259 * restarts journal transactions; therefore there may not be
260 * enough credits left in the handle to remove the inode from
261 * the orphan list and set the dtime field.
262 */
Frank Mayhar03901312009-01-07 00:06:22 -0500263 if (!ext4_handle_has_enough_credits(handle, 3)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400264 err = ext4_journal_extend(handle, 3);
265 if (err > 0)
266 err = ext4_journal_restart(handle, 3);
267 if (err != 0) {
268 ext4_warning(inode->i_sb, __func__,
269 "couldn't extend journal (err %d)", err);
270 stop_handle:
271 ext4_journal_stop(handle);
272 goto no_delete;
273 }
274 }
275
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700276 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700277 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700278 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700279 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700280 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700281 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700282 * (Well, we could do this if we need to, but heck - it works)
283 */
Mingming Cao617ba132006-10-11 01:20:53 -0700284 ext4_orphan_del(handle, inode);
285 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700286
287 /*
288 * One subtle ordering requirement: if anything has gone wrong
289 * (transaction abort, IO errors, whatever), then we can still
290 * do these next steps (the fs will already have been marked as
291 * having errors), but we can't free the inode if the mark_dirty
292 * fails.
293 */
Mingming Cao617ba132006-10-11 01:20:53 -0700294 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700295 /* If that failed, just do the required in-core inode clear. */
296 clear_inode(inode);
297 else
Mingming Cao617ba132006-10-11 01:20:53 -0700298 ext4_free_inode(handle, inode);
299 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700300 return;
301no_delete:
302 clear_inode(inode); /* We must guarantee clearing of inode... */
303}
304
305typedef struct {
306 __le32 *p;
307 __le32 key;
308 struct buffer_head *bh;
309} Indirect;
310
311static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v)
312{
313 p->key = *(p->p = v);
314 p->bh = bh;
315}
316
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700317/**
Mingming Cao617ba132006-10-11 01:20:53 -0700318 * ext4_block_to_path - parse the block number into array of offsets
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700319 * @inode: inode in question (we are only interested in its superblock)
320 * @i_block: block number to be parsed
321 * @offsets: array to store the offsets in
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400322 * @boundary: set this non-zero if the referred-to block is likely to be
323 * followed (on disk) by an indirect block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700324 *
Mingming Cao617ba132006-10-11 01:20:53 -0700325 * To store the locations of file's data ext4 uses a data structure common
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700326 * for UNIX filesystems - tree of pointers anchored in the inode, with
327 * data blocks at leaves and indirect blocks in intermediate nodes.
328 * This function translates the block number into path in that tree -
329 * return value is the path length and @offsets[n] is the offset of
330 * pointer to (n+1)th node in the nth one. If @block is out of range
331 * (negative or too large) warning is printed and zero returned.
332 *
333 * Note: function doesn't find node addresses, so no IO is needed. All
334 * we need to know is the capacity of indirect blocks (taken from the
335 * inode->i_sb).
336 */
337
338/*
339 * Portability note: the last comparison (check that we fit into triple
340 * indirect block) is spelled differently, because otherwise on an
341 * architecture with 32-bit longs and 8Kb pages we might get into trouble
342 * if our filesystem had 8Kb blocks. We might use long long, but that would
343 * kill us on x86. Oh, well, at least the sign propagation does not matter -
344 * i_block would have to be negative in the very beginning, so we would not
345 * get there at all.
346 */
347
Mingming Cao617ba132006-10-11 01:20:53 -0700348static int ext4_block_to_path(struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400349 ext4_lblk_t i_block,
350 ext4_lblk_t offsets[4], int *boundary)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700351{
Mingming Cao617ba132006-10-11 01:20:53 -0700352 int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb);
353 int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb);
354 const long direct_blocks = EXT4_NDIR_BLOCKS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700355 indirect_blocks = ptrs,
356 double_blocks = (1 << (ptrs_bits * 2));
357 int n = 0;
358 int final = 0;
359
Roel Kluinc333e072009-08-10 22:47:22 -0400360 if (i_block < direct_blocks) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700361 offsets[n++] = i_block;
362 final = direct_blocks;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400363 } else if ((i_block -= direct_blocks) < indirect_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700364 offsets[n++] = EXT4_IND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365 offsets[n++] = i_block;
366 final = ptrs;
367 } else if ((i_block -= indirect_blocks) < double_blocks) {
Mingming Cao617ba132006-10-11 01:20:53 -0700368 offsets[n++] = EXT4_DIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700369 offsets[n++] = i_block >> ptrs_bits;
370 offsets[n++] = i_block & (ptrs - 1);
371 final = ptrs;
372 } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) {
Mingming Cao617ba132006-10-11 01:20:53 -0700373 offsets[n++] = EXT4_TIND_BLOCK;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700374 offsets[n++] = i_block >> (ptrs_bits * 2);
375 offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1);
376 offsets[n++] = i_block & (ptrs - 1);
377 final = ptrs;
378 } else {
Eric Sandeene2b46572008-01-28 23:58:27 -0500379 ext4_warning(inode->i_sb, "ext4_block_to_path",
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400380 "block %lu > max in inode %lu",
381 i_block + direct_blocks +
382 indirect_blocks + double_blocks, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700383 }
384 if (boundary)
385 *boundary = final - 1 - (i_block & (ptrs - 1));
386 return n;
387}
388
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400389static int __ext4_check_blockref(const char *function, struct inode *inode,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400390 __le32 *p, unsigned int max)
391{
Thiemo Nagelf73953c2009-04-07 18:46:47 -0400392 __le32 *bref = p;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400393 unsigned int blk;
394
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400395 while (bref < p+max) {
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400396 blk = le32_to_cpu(*bref++);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400397 if (blk &&
398 unlikely(!ext4_data_block_valid(EXT4_SB(inode->i_sb),
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400399 blk, 1))) {
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400400 ext4_error(inode->i_sb, function,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400401 "invalid block reference %u "
402 "in inode #%lu", blk, inode->i_ino);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400403 return -EIO;
404 }
405 }
406 return 0;
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400407}
408
409
410#define ext4_check_indirect_blockref(inode, bh) \
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400411 __ext4_check_blockref(__func__, inode, (__le32 *)(bh)->b_data, \
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400412 EXT4_ADDR_PER_BLOCK((inode)->i_sb))
413
414#define ext4_check_inode_blockref(inode) \
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400415 __ext4_check_blockref(__func__, inode, EXT4_I(inode)->i_data, \
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400416 EXT4_NDIR_BLOCKS)
417
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700418/**
Mingming Cao617ba132006-10-11 01:20:53 -0700419 * ext4_get_branch - read the chain of indirect blocks leading to data
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700420 * @inode: inode in question
421 * @depth: depth of the chain (1 - direct pointer, etc.)
422 * @offsets: offsets of pointers in inode/indirect blocks
423 * @chain: place to store the result
424 * @err: here we store the error value
425 *
426 * Function fills the array of triples <key, p, bh> and returns %NULL
427 * if everything went OK or the pointer to the last filled triple
428 * (incomplete one) otherwise. Upon the return chain[i].key contains
429 * the number of (i+1)-th block in the chain (as it is stored in memory,
430 * i.e. little-endian 32-bit), chain[i].p contains the address of that
431 * number (it points into struct inode for i==0 and into the bh->b_data
432 * for i>0) and chain[i].bh points to the buffer_head of i-th indirect
433 * block for i>0 and NULL for i==0. In other words, it holds the block
434 * numbers of the chain, addresses they were taken from (and where we can
435 * verify that chain did not change) and buffer_heads hosting these
436 * numbers.
437 *
438 * Function stops when it stumbles upon zero pointer (absent block)
439 * (pointer to last triple returned, *@err == 0)
440 * or when it gets an IO error reading an indirect block
441 * (ditto, *@err == -EIO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700442 * or when it reads all @depth-1 indirect blocks successfully and finds
443 * the whole chain, all way to the data (returns %NULL, *err == 0).
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500444 *
445 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500446 * down_read(&EXT4_I(inode)->i_data_sem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700447 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500448static Indirect *ext4_get_branch(struct inode *inode, int depth,
449 ext4_lblk_t *offsets,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700450 Indirect chain[4], int *err)
451{
452 struct super_block *sb = inode->i_sb;
453 Indirect *p = chain;
454 struct buffer_head *bh;
455
456 *err = 0;
457 /* i_data is not going away, no lock needed */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400458 add_chain(chain, NULL, EXT4_I(inode)->i_data + *offsets);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700459 if (!p->key)
460 goto no_block;
461 while (--depth) {
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400462 bh = sb_getblk(sb, le32_to_cpu(p->key));
463 if (unlikely(!bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700464 goto failure;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400465
Thiemo Nagelfe2c8192009-03-31 08:36:10 -0400466 if (!bh_uptodate_or_lock(bh)) {
467 if (bh_submit_read(bh) < 0) {
468 put_bh(bh);
469 goto failure;
470 }
471 /* validate block references */
472 if (ext4_check_indirect_blockref(inode, bh)) {
473 put_bh(bh);
474 goto failure;
475 }
476 }
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400477
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400478 add_chain(++p, bh, (__le32 *)bh->b_data + *++offsets);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 /* Reader: end */
480 if (!p->key)
481 goto no_block;
482 }
483 return NULL;
484
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700485failure:
486 *err = -EIO;
487no_block:
488 return p;
489}
490
491/**
Mingming Cao617ba132006-10-11 01:20:53 -0700492 * ext4_find_near - find a place for allocation with sufficient locality
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700493 * @inode: owner
494 * @ind: descriptor of indirect block.
495 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000496 * This function returns the preferred place for block allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700497 * It is used when heuristic for sequential allocation fails.
498 * Rules are:
499 * + if there is a block to the left of our position - allocate near it.
500 * + if pointer will live in indirect block - allocate near that block.
501 * + if pointer will live in inode - allocate in the same
502 * cylinder group.
503 *
504 * In the latter case we colour the starting block by the callers PID to
505 * prevent it from clashing with concurrent allocations for a different inode
506 * in the same block group. The PID is used here so that functionally related
507 * files will be close-by on-disk.
508 *
509 * Caller must make sure that @ind is valid and will stay that way.
510 */
Mingming Cao617ba132006-10-11 01:20:53 -0700511static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512{
Mingming Cao617ba132006-10-11 01:20:53 -0700513 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400514 __le32 *start = ind->bh ? (__le32 *) ind->bh->b_data : ei->i_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700515 __le32 *p;
Mingming Cao617ba132006-10-11 01:20:53 -0700516 ext4_fsblk_t bg_start;
Valerie Clement74d34872008-02-15 13:43:07 -0500517 ext4_fsblk_t last_block;
Mingming Cao617ba132006-10-11 01:20:53 -0700518 ext4_grpblk_t colour;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400519 ext4_group_t block_group;
520 int flex_size = ext4_flex_bg_size(EXT4_SB(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700521
522 /* Try to find previous block */
523 for (p = ind->p - 1; p >= start; p--) {
524 if (*p)
525 return le32_to_cpu(*p);
526 }
527
528 /* No such thing, so let's try location of indirect block */
529 if (ind->bh)
530 return ind->bh->b_blocknr;
531
532 /*
533 * It is going to be referred to from the inode itself? OK, just put it
534 * into the same cylinder group then.
535 */
Theodore Ts'oa4912122009-03-12 12:18:34 -0400536 block_group = ei->i_block_group;
537 if (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) {
538 block_group &= ~(flex_size-1);
539 if (S_ISREG(inode->i_mode))
540 block_group++;
541 }
542 bg_start = ext4_group_first_block_no(inode->i_sb, block_group);
Valerie Clement74d34872008-02-15 13:43:07 -0500543 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
544
Theodore Ts'oa4912122009-03-12 12:18:34 -0400545 /*
546 * If we are doing delayed allocation, we don't need take
547 * colour into account.
548 */
549 if (test_opt(inode->i_sb, DELALLOC))
550 return bg_start;
551
Valerie Clement74d34872008-02-15 13:43:07 -0500552 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
553 colour = (current->pid % 16) *
Mingming Cao617ba132006-10-11 01:20:53 -0700554 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
Valerie Clement74d34872008-02-15 13:43:07 -0500555 else
556 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700557 return bg_start + colour;
558}
559
560/**
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000561 * ext4_find_goal - find a preferred place for allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700562 * @inode: owner
563 * @block: block we want
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700564 * @partial: pointer to the last triple within a chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565 *
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000566 * Normally this function find the preferred place for block allocation,
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800567 * returns it.
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400568 * Because this is only used for non-extent files, we limit the block nr
569 * to 32 bits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700570 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500571static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400572 Indirect *partial)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700573{
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400574 ext4_fsblk_t goal;
575
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700576 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400577 * XXX need to get goal block from mballoc's data structures
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700578 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400580 goal = ext4_find_near(inode, partial);
581 goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
582 return goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700583}
584
585/**
Mingming Cao617ba132006-10-11 01:20:53 -0700586 * ext4_blks_to_allocate: Look up the block map and count the number
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700587 * of direct blocks need to be allocated for the given branch.
588 *
589 * @branch: chain of indirect blocks
590 * @k: number of blocks need for indirect blocks
591 * @blks: number of data blocks to be mapped.
592 * @blocks_to_boundary: the offset in the indirect block
593 *
594 * return the total number of blocks to be allocate, including the
595 * direct and indirect blocks.
596 */
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500597static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned int blks,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400598 int blocks_to_boundary)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700599{
Theodore Ts'o498e5f22008-11-05 00:14:04 -0500600 unsigned int count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700601
602 /*
603 * Simple case, [t,d]Indirect block(s) has not allocated yet
604 * then it's clear blocks on that path have not allocated
605 */
606 if (k > 0) {
607 /* right now we don't handle cross boundary allocation */
608 if (blks < blocks_to_boundary + 1)
609 count += blks;
610 else
611 count += blocks_to_boundary + 1;
612 return count;
613 }
614
615 count++;
616 while (count < blks && count <= blocks_to_boundary &&
617 le32_to_cpu(*(branch[0].p + count)) == 0) {
618 count++;
619 }
620 return count;
621}
622
623/**
Mingming Cao617ba132006-10-11 01:20:53 -0700624 * ext4_alloc_blocks: multiple allocate blocks needed for a branch
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700625 * @indirect_blks: the number of blocks need to allocate for indirect
626 * blocks
627 *
628 * @new_blocks: on return it will store the new block numbers for
629 * the indirect blocks(if needed) and the first direct block,
630 * @blks: on return it will store the total number of allocated
631 * direct blocks
632 */
Mingming Cao617ba132006-10-11 01:20:53 -0700633static int ext4_alloc_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400634 ext4_lblk_t iblock, ext4_fsblk_t goal,
635 int indirect_blks, int blks,
636 ext4_fsblk_t new_blocks[4], int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700637{
Theodore Ts'o815a1132009-01-01 23:59:43 -0500638 struct ext4_allocation_request ar;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639 int target, i;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400640 unsigned long count = 0, blk_allocated = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700641 int index = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700642 ext4_fsblk_t current_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700643 int ret = 0;
644
645 /*
646 * Here we try to allocate the requested multiple blocks at once,
647 * on a best-effort basis.
648 * To build a branch, we should allocate blocks for
649 * the indirect blocks(if not allocated yet), and at least
650 * the first direct block of this branch. That's the
651 * minimum number of blocks need to allocate(required)
652 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400653 /* first we try to allocate the indirect blocks */
654 target = indirect_blks;
655 while (target > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700656 count = target;
657 /* allocating blocks for indirect blocks and direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400658 current_block = ext4_new_meta_blocks(handle, inode,
659 goal, &count, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700660 if (*err)
661 goto failed_out;
662
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400663 BUG_ON(current_block + count > EXT4_MAX_BLOCK_FILE_PHYS);
664
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700665 target -= count;
666 /* allocate blocks for indirect blocks */
667 while (index < indirect_blks && count) {
668 new_blocks[index++] = current_block++;
669 count--;
670 }
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400671 if (count > 0) {
672 /*
673 * save the new block number
674 * for the first direct block
675 */
676 new_blocks[index] = current_block;
677 printk(KERN_INFO "%s returned more blocks than "
678 "requested\n", __func__);
679 WARN_ON(1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700680 break;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400681 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700682 }
683
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400684 target = blks - count ;
685 blk_allocated = count;
686 if (!target)
687 goto allocated;
688 /* Now allocate data blocks */
Theodore Ts'o815a1132009-01-01 23:59:43 -0500689 memset(&ar, 0, sizeof(ar));
690 ar.inode = inode;
691 ar.goal = goal;
692 ar.len = target;
693 ar.logical = iblock;
694 if (S_ISREG(inode->i_mode))
695 /* enable in-core preallocation only for regular files */
696 ar.flags = EXT4_MB_HINT_DATA;
697
698 current_block = ext4_mb_new_blocks(handle, &ar, err);
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400699 BUG_ON(current_block + ar.len > EXT4_MAX_BLOCK_FILE_PHYS);
Theodore Ts'o815a1132009-01-01 23:59:43 -0500700
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400701 if (*err && (target == blks)) {
702 /*
703 * if the allocation failed and we didn't allocate
704 * any blocks before
705 */
706 goto failed_out;
707 }
708 if (!*err) {
709 if (target == blks) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400710 /*
711 * save the new block number
712 * for the first direct block
713 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400714 new_blocks[index] = current_block;
715 }
Theodore Ts'o815a1132009-01-01 23:59:43 -0500716 blk_allocated += ar.len;
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400717 }
718allocated:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700719 /* total number of blocks allocated for direct blocks */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400720 ret = blk_allocated;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700721 *err = 0;
722 return ret;
723failed_out:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400724 for (i = 0; i < index; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500725 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700726 return ret;
727}
728
729/**
Mingming Cao617ba132006-10-11 01:20:53 -0700730 * ext4_alloc_branch - allocate and set up a chain of blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700731 * @inode: owner
732 * @indirect_blks: number of allocated indirect blocks
733 * @blks: number of allocated direct blocks
734 * @offsets: offsets (in the blocks) to store the pointers to next.
735 * @branch: place to store the chain in.
736 *
737 * This function allocates blocks, zeroes out all but the last one,
738 * links them into chain and (if we are synchronous) writes them to disk.
739 * In other words, it prepares a branch that can be spliced onto the
740 * inode. It stores the information about that chain in the branch[], in
Mingming Cao617ba132006-10-11 01:20:53 -0700741 * the same format as ext4_get_branch() would do. We are calling it after
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700742 * we had read the existing part of chain and partial points to the last
743 * triple of that (one with zero ->key). Upon the exit we have the same
Mingming Cao617ba132006-10-11 01:20:53 -0700744 * picture as after the successful ext4_get_block(), except that in one
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700745 * place chain is disconnected - *branch->p is still zero (we did not
746 * set the last link), but branch->key contains the number that should
747 * be placed into *branch->p to fill that gap.
748 *
749 * If allocation fails we free all blocks we've allocated (and forget
750 * their buffer_heads) and return the error value the from failed
Mingming Cao617ba132006-10-11 01:20:53 -0700751 * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 * as described above and return 0.
753 */
Mingming Cao617ba132006-10-11 01:20:53 -0700754static int ext4_alloc_branch(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400755 ext4_lblk_t iblock, int indirect_blks,
756 int *blks, ext4_fsblk_t goal,
757 ext4_lblk_t *offsets, Indirect *branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700758{
759 int blocksize = inode->i_sb->s_blocksize;
760 int i, n = 0;
761 int err = 0;
762 struct buffer_head *bh;
763 int num;
Mingming Cao617ba132006-10-11 01:20:53 -0700764 ext4_fsblk_t new_blocks[4];
765 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700766
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -0400767 num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700768 *blks, new_blocks, &err);
769 if (err)
770 return err;
771
772 branch[0].key = cpu_to_le32(new_blocks[0]);
773 /*
774 * metadata blocks and data blocks are allocated.
775 */
776 for (n = 1; n <= indirect_blks; n++) {
777 /*
778 * Get buffer_head for parent block, zero it out
779 * and set the pointer to new one, then send
780 * parent to disk.
781 */
782 bh = sb_getblk(inode->i_sb, new_blocks[n-1]);
783 branch[n].bh = bh;
784 lock_buffer(bh);
785 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700786 err = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700787 if (err) {
Curt Wohlgemuth6487a9d2009-07-17 10:54:08 -0400788 /* Don't brelse(bh) here; it's done in
789 * ext4_journal_forget() below */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700790 unlock_buffer(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700791 goto failed;
792 }
793
794 memset(bh->b_data, 0, blocksize);
795 branch[n].p = (__le32 *) bh->b_data + offsets[n];
796 branch[n].key = cpu_to_le32(new_blocks[n]);
797 *branch[n].p = branch[n].key;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400798 if (n == indirect_blks) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700799 current_block = new_blocks[n];
800 /*
801 * End of chain, update the last new metablock of
802 * the chain to point to the new allocated
803 * data blocks numbers
804 */
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400805 for (i = 1; i < num; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700806 *(branch[n].p + i) = cpu_to_le32(++current_block);
807 }
808 BUFFER_TRACE(bh, "marking uptodate");
809 set_buffer_uptodate(bh);
810 unlock_buffer(bh);
811
Frank Mayhar03901312009-01-07 00:06:22 -0500812 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
813 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700814 if (err)
815 goto failed;
816 }
817 *blks = num;
818 return err;
819failed:
820 /* Allocation failed, free what we already allocated */
821 for (i = 1; i <= n ; i++) {
Mingming Caodab291a2006-10-11 01:21:01 -0700822 BUFFER_TRACE(branch[i].bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -0700823 ext4_journal_forget(handle, branch[i].bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700824 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400825 for (i = 0; i < indirect_blks; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500826 ext4_free_blocks(handle, inode, new_blocks[i], 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700827
Alex Tomasc9de5602008-01-29 00:19:52 -0500828 ext4_free_blocks(handle, inode, new_blocks[i], num, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700829
830 return err;
831}
832
833/**
Mingming Cao617ba132006-10-11 01:20:53 -0700834 * ext4_splice_branch - splice the allocated branch onto inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835 * @inode: owner
836 * @block: (logical) number of block we are adding
837 * @chain: chain of indirect blocks (with a missing link - see
Mingming Cao617ba132006-10-11 01:20:53 -0700838 * ext4_alloc_branch)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700839 * @where: location of missing link
840 * @num: number of indirect blocks we are adding
841 * @blks: number of direct blocks we are adding
842 *
843 * This function fills the missing link and does all housekeeping needed in
844 * inode (->i_blocks, etc.). In case of success we end up with the full
845 * chain to new block and return 0.
846 */
Mingming Cao617ba132006-10-11 01:20:53 -0700847static int ext4_splice_branch(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400848 ext4_lblk_t block, Indirect *where, int num,
849 int blks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850{
851 int i;
852 int err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700853 ext4_fsblk_t current_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700854
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700855 /*
856 * If we're splicing into a [td]indirect block (as opposed to the
857 * inode) then we need to get write access to the [td]indirect block
858 * before the splice.
859 */
860 if (where->bh) {
861 BUFFER_TRACE(where->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700862 err = ext4_journal_get_write_access(handle, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 if (err)
864 goto err_out;
865 }
866 /* That's it */
867
868 *where->p = where->key;
869
870 /*
871 * Update the host buffer_head or inode to point to more just allocated
872 * direct blocks blocks
873 */
874 if (num == 0 && blks > 1) {
875 current_block = le32_to_cpu(where->key) + 1;
876 for (i = 1; i < blks; i++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400877 *(where->p + i) = cpu_to_le32(current_block++);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700878 }
879
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880 /* We are done with atomic stuff, now do the rest of housekeeping */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881 /* had we spliced it onto indirect block? */
882 if (where->bh) {
883 /*
884 * If we spliced it onto an indirect block, we haven't
885 * altered the inode. Note however that if it is being spliced
886 * onto an indirect block at the very end of the file (the
887 * file is growing) then we *will* alter the inode to reflect
888 * the new i_size. But that is not done here - it is done in
Mingming Cao617ba132006-10-11 01:20:53 -0700889 * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700890 */
891 jbd_debug(5, "splicing indirect only\n");
Frank Mayhar03901312009-01-07 00:06:22 -0500892 BUFFER_TRACE(where->bh, "call ext4_handle_dirty_metadata");
893 err = ext4_handle_dirty_metadata(handle, inode, where->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894 if (err)
895 goto err_out;
896 } else {
897 /*
898 * OK, we spliced it into the inode itself on a direct block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700899 */
Theodore Ts'o41591752009-06-15 03:41:23 -0400900 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 jbd_debug(5, "splicing direct\n");
902 }
903 return err;
904
905err_out:
906 for (i = 1; i <= num; i++) {
Mingming Caodab291a2006-10-11 01:21:01 -0700907 BUFFER_TRACE(where[i].bh, "call jbd2_journal_forget");
Mingming Cao617ba132006-10-11 01:20:53 -0700908 ext4_journal_forget(handle, where[i].bh);
Alex Tomasc9de5602008-01-29 00:19:52 -0500909 ext4_free_blocks(handle, inode,
910 le32_to_cpu(where[i-1].key), 1, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700911 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500912 ext4_free_blocks(handle, inode, le32_to_cpu(where[num].key), blks, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700913
914 return err;
915}
916
917/*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400918 * The ext4_ind_get_blocks() function handles non-extents inodes
919 * (i.e., using the traditional indirect/double-indirect i_blocks
920 * scheme) for ext4_get_blocks().
921 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700922 * Allocation strategy is simple: if we have to allocate something, we will
923 * have to go the whole way to leaf. So let's do it before attaching anything
924 * to tree, set linkage between the newborn blocks, write them if sync is
925 * required, recheck the path, free and repeat if check fails, otherwise
926 * set the last missing link (that will protect us from any truncate-generated
927 * removals - all blocks on the path are immune now) and possibly force the
928 * write on the parent block.
929 * That has a nice additional property: no special recovery from the failed
930 * allocations is needed - we simply release blocks and do not touch anything
931 * reachable from inode.
932 *
933 * `handle' can be NULL if create == 0.
934 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935 * return > 0, # of blocks mapped or allocated.
936 * return = 0, if plain lookup failed.
937 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500938 *
Theodore Ts'ob920c752009-05-14 00:54:29 -0400939 * The ext4_ind_get_blocks() function should be called with
940 * down_write(&EXT4_I(inode)->i_data_sem) if allocating filesystem
941 * blocks (i.e., flags has EXT4_GET_BLOCKS_CREATE set) or
942 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system
943 * blocks.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700944 */
Theodore Ts'oe4d996c2009-05-12 00:25:28 -0400945static int ext4_ind_get_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400946 ext4_lblk_t iblock, unsigned int maxblocks,
947 struct buffer_head *bh_result,
948 int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700949{
950 int err = -EIO;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500951 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700952 Indirect chain[4];
953 Indirect *partial;
Mingming Cao617ba132006-10-11 01:20:53 -0700954 ext4_fsblk_t goal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700955 int indirect_blks;
956 int blocks_to_boundary = 0;
957 int depth;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958 int count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700959 ext4_fsblk_t first_block = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700960
Alex Tomasa86c6182006-10-11 01:21:03 -0700961 J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL));
Theodore Ts'oc2177052009-05-14 00:58:52 -0400962 J_ASSERT(handle != NULL || (flags & EXT4_GET_BLOCKS_CREATE) == 0);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500963 depth = ext4_block_to_path(inode, iblock, offsets,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400964 &blocks_to_boundary);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700965
966 if (depth == 0)
967 goto out;
968
Mingming Cao617ba132006-10-11 01:20:53 -0700969 partial = ext4_get_branch(inode, depth, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700970
971 /* Simplest case - block found, no allocation needed */
972 if (!partial) {
973 first_block = le32_to_cpu(chain[depth - 1].key);
974 clear_buffer_new(bh_result);
975 count++;
976 /*map more blocks*/
977 while (count < maxblocks && count <= blocks_to_boundary) {
Mingming Cao617ba132006-10-11 01:20:53 -0700978 ext4_fsblk_t blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700979
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700980 blk = le32_to_cpu(*(chain[depth-1].p + count));
981
982 if (blk == first_block + count)
983 count++;
984 else
985 break;
986 }
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -0500987 goto got_it;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988 }
989
990 /* Next simple case - plain lookup or failed read of indirect block */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400991 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0 || err == -EIO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700992 goto cleanup;
993
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700994 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400995 * Okay, we need to do block allocation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700996 */
Akinobu Mitafb01bfd2008-02-06 01:40:16 -0800997 goal = ext4_find_goal(inode, iblock, partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998
999 /* the number of blocks need to allocate for [d,t]indirect blocks */
1000 indirect_blks = (chain + depth) - partial - 1;
1001
1002 /*
1003 * Next look up the indirect map to count the totoal number of
1004 * direct blocks to allocate for this branch.
1005 */
Mingming Cao617ba132006-10-11 01:20:53 -07001006 count = ext4_blks_to_allocate(partial, indirect_blks,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001007 maxblocks, blocks_to_boundary);
1008 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001009 * Block out ext4_truncate while we alter the tree
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001010 */
Aneesh Kumar K.V7061eba2008-07-11 19:27:31 -04001011 err = ext4_alloc_branch(handle, inode, iblock, indirect_blks,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001012 &count, goal,
1013 offsets + (partial - chain), partial);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014
1015 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001016 * The ext4_splice_branch call will free and forget any buffers
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001017 * on the new chain if there is a failure, but that risks using
1018 * up transaction credits, especially for bitmaps where the
1019 * credits cannot be returned. Can we handle this somehow? We
1020 * may need to return -EAGAIN upwards in the worst case. --sct
1021 */
1022 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07001023 err = ext4_splice_branch(handle, inode, iblock,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001024 partial, indirect_blks, count);
1025 else
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001026 goto cleanup;
1027
1028 set_buffer_new(bh_result);
1029got_it:
1030 map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key));
1031 if (count > blocks_to_boundary)
1032 set_buffer_boundary(bh_result);
1033 err = count;
1034 /* Clean up and exit */
1035 partial = chain + depth - 1; /* the whole chain */
1036cleanup:
1037 while (partial > chain) {
1038 BUFFER_TRACE(partial->bh, "call brelse");
1039 brelse(partial->bh);
1040 partial--;
1041 }
1042 BUFFER_TRACE(bh_result, "returned");
1043out:
1044 return err;
1045}
1046
Mingming Cao60e58e02009-01-22 18:13:05 +01001047qsize_t ext4_get_reserved_space(struct inode *inode)
1048{
1049 unsigned long long total;
1050
1051 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1052 total = EXT4_I(inode)->i_reserved_data_blocks +
1053 EXT4_I(inode)->i_reserved_meta_blocks;
1054 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1055
1056 return total;
1057}
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001058/*
1059 * Calculate the number of metadata blocks need to reserve
1060 * to allocate @blocks for non extent file based file
1061 */
1062static int ext4_indirect_calc_metadata_amount(struct inode *inode, int blocks)
1063{
1064 int icap = EXT4_ADDR_PER_BLOCK(inode->i_sb);
1065 int ind_blks, dind_blks, tind_blks;
1066
1067 /* number of new indirect blocks needed */
1068 ind_blks = (blocks + icap - 1) / icap;
1069
1070 dind_blks = (ind_blks + icap - 1) / icap;
1071
1072 tind_blks = 1;
1073
1074 return ind_blks + dind_blks + tind_blks;
1075}
1076
1077/*
1078 * Calculate the number of metadata blocks need to reserve
1079 * to allocate given number of blocks
1080 */
1081static int ext4_calc_metadata_amount(struct inode *inode, int blocks)
1082{
Mingming Caocd213222008-08-19 22:16:59 -04001083 if (!blocks)
1084 return 0;
1085
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001086 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
1087 return ext4_ext_calc_metadata_amount(inode, blocks);
1088
1089 return ext4_indirect_calc_metadata_amount(inode, blocks);
1090}
1091
1092static void ext4_da_update_reserve_space(struct inode *inode, int used)
1093{
1094 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1095 int total, mdb, mdb_free;
1096
1097 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1098 /* recalculate the number of metablocks still need to be reserved */
1099 total = EXT4_I(inode)->i_reserved_data_blocks - used;
1100 mdb = ext4_calc_metadata_amount(inode, total);
1101
1102 /* figure out how many metablocks to release */
1103 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1104 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1105
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001106 if (mdb_free) {
1107 /* Account for allocated meta_blocks */
1108 mdb_free -= EXT4_I(inode)->i_allocated_meta_blocks;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001109
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001110 /* update fs dirty blocks counter */
1111 percpu_counter_sub(&sbi->s_dirtyblocks_counter, mdb_free);
1112 EXT4_I(inode)->i_allocated_meta_blocks = 0;
1113 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
1114 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001115
1116 /* update per-inode reservations */
1117 BUG_ON(used > EXT4_I(inode)->i_reserved_data_blocks);
1118 EXT4_I(inode)->i_reserved_data_blocks -= used;
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001119 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001120
1121 /*
1122 * free those over-booking quota for metadata blocks
1123 */
Mingming Cao60e58e02009-01-22 18:13:05 +01001124 if (mdb_free)
1125 vfs_dq_release_reservation_block(inode, mdb_free);
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -04001126
1127 /*
1128 * If we have done all the pending block allocations and if
1129 * there aren't any writers on the inode, we can discard the
1130 * inode's preallocations.
1131 */
1132 if (!total && (atomic_read(&inode->i_writecount) == 0))
1133 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001134}
1135
Theodore Ts'o80e42462009-09-08 08:21:26 -04001136static int check_block_validity(struct inode *inode, const char *msg,
1137 sector_t logical, sector_t phys, int len)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001138{
1139 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), phys, len)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001140 ext4_error(inode->i_sb, msg,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001141 "inode #%lu logical block %llu mapped to %llu "
1142 "(size %d)", inode->i_ino,
1143 (unsigned long long) logical,
1144 (unsigned long long) phys, len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001145 return -EIO;
1146 }
1147 return 0;
1148}
1149
Mingming Caof5ab0d12008-02-25 15:29:55 -05001150/*
Theodore Ts'o1f945332009-09-30 22:57:41 -04001151 * Return the number of contiguous dirty pages in a given inode
1152 * starting at page frame idx.
Theodore Ts'o55138e02009-09-29 13:31:31 -04001153 */
1154static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx,
1155 unsigned int max_pages)
1156{
1157 struct address_space *mapping = inode->i_mapping;
1158 pgoff_t index;
1159 struct pagevec pvec;
1160 pgoff_t num = 0;
1161 int i, nr_pages, done = 0;
1162
1163 if (max_pages == 0)
1164 return 0;
1165 pagevec_init(&pvec, 0);
1166 while (!done) {
1167 index = idx;
1168 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
1169 PAGECACHE_TAG_DIRTY,
1170 (pgoff_t)PAGEVEC_SIZE);
1171 if (nr_pages == 0)
1172 break;
1173 for (i = 0; i < nr_pages; i++) {
1174 struct page *page = pvec.pages[i];
1175 struct buffer_head *bh, *head;
1176
1177 lock_page(page);
1178 if (unlikely(page->mapping != mapping) ||
1179 !PageDirty(page) ||
1180 PageWriteback(page) ||
1181 page->index != idx) {
1182 done = 1;
1183 unlock_page(page);
1184 break;
1185 }
Theodore Ts'o1f945332009-09-30 22:57:41 -04001186 if (page_has_buffers(page)) {
1187 bh = head = page_buffers(page);
1188 do {
1189 if (!buffer_delay(bh) &&
1190 !buffer_unwritten(bh))
1191 done = 1;
1192 bh = bh->b_this_page;
1193 } while (!done && (bh != head));
1194 }
Theodore Ts'o55138e02009-09-29 13:31:31 -04001195 unlock_page(page);
1196 if (done)
1197 break;
1198 idx++;
1199 num++;
1200 if (num >= max_pages)
1201 break;
1202 }
1203 pagevec_release(&pvec);
1204 }
1205 return num;
1206}
1207
1208/*
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001209 * The ext4_get_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001210 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -05001211 *
Mingming Caof5ab0d12008-02-25 15:29:55 -05001212 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
1213 * and store the allocated blocks in the result buffer head and mark it
1214 * mapped.
1215 *
1216 * If file type is extents based, it will call ext4_ext_get_blocks(),
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001217 * Otherwise, call with ext4_ind_get_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -05001218 * based files
1219 *
1220 * On success, it returns the number of blocks being mapped or allocate.
1221 * if create==0 and the blocks are pre-allocated and uninitialized block,
1222 * the result buffer head is unmapped. If the create ==1, it will make sure
1223 * the buffer head is mapped.
1224 *
1225 * It returns 0 if plain look up failed (blocks have not been allocated), in
1226 * that casem, buffer head is unmapped
1227 *
1228 * It returns the error in case of allocation failure.
1229 */
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001230int ext4_get_blocks(handle_t *handle, struct inode *inode, sector_t block,
1231 unsigned int max_blocks, struct buffer_head *bh,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001232 int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001233{
1234 int retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -05001235
1236 clear_buffer_mapped(bh);
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001237 clear_buffer_unwritten(bh);
Mingming Caof5ab0d12008-02-25 15:29:55 -05001238
Mingming Cao00314622009-09-28 15:49:08 -04001239 ext_debug("ext4_get_blocks(): inode %lu, flag %d, max_blocks %u,"
1240 "logical block %lu\n", inode->i_ino, flags, max_blocks,
1241 (unsigned long)block);
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001242 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -04001243 * Try to see if we can get the block without requesting a new
1244 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001245 */
1246 down_read((&EXT4_I(inode)->i_data_sem));
1247 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1248 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001249 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001250 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001251 retval = ext4_ind_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001252 bh, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001253 }
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001254 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -05001255
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001256 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001257 int ret = check_block_validity(inode, "file system corruption",
1258 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001259 if (ret != 0)
1260 return ret;
1261 }
1262
Mingming Caof5ab0d12008-02-25 15:29:55 -05001263 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001264 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001265 return retval;
1266
1267 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001268 * Returns if the blocks have already allocated
1269 *
1270 * Note that if blocks have been preallocated
1271 * ext4_ext_get_block() returns th create = 0
1272 * with buffer head unmapped.
1273 */
1274 if (retval > 0 && buffer_mapped(bh))
1275 return retval;
1276
1277 /*
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -04001278 * When we call get_blocks without the create flag, the
1279 * BH_Unwritten flag could have gotten set if the blocks
1280 * requested were part of a uninitialized extent. We need to
1281 * clear this flag now that we are committed to convert all or
1282 * part of the uninitialized extent to be an initialized
1283 * extent. This is because we need to avoid the combination
1284 * of BH_Unwritten and BH_Mapped flags being simultaneously
1285 * set on the buffer_head.
1286 */
1287 clear_buffer_unwritten(bh);
1288
1289 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -05001290 * New blocks allocate and/or writing to uninitialized extent
1291 * will possibly result in updating i_data, so we take
1292 * the write lock of i_data_sem, and call get_blocks()
1293 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001294 */
1295 down_write((&EXT4_I(inode)->i_data_sem));
Mingming Caod2a17632008-07-14 17:52:37 -04001296
1297 /*
1298 * if the caller is from delayed allocation writeout path
1299 * we have already reserved fs blocks for allocation
1300 * let the underlying get_block() function know to
1301 * avoid double accounting
1302 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04001303 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001304 EXT4_I(inode)->i_delalloc_reserved_flag = 1;
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001305 /*
1306 * We need to check for EXT4 here because migrate
1307 * could have changed the inode type in between
1308 */
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001309 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
1310 retval = ext4_ext_get_blocks(handle, inode, block, max_blocks,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001311 bh, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001312 } else {
Theodore Ts'oe4d996c2009-05-12 00:25:28 -04001313 retval = ext4_ind_get_blocks(handle, inode, block,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001314 max_blocks, bh, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001315
1316 if (retval > 0 && buffer_new(bh)) {
1317 /*
1318 * We allocated new blocks which will result in
1319 * i_data's format changing. Force the migrate
1320 * to fail by clearing migrate flags
1321 */
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -04001322 EXT4_I(inode)->i_state &= ~EXT4_STATE_EXT_MIGRATE;
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -04001323 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001324 }
Mingming Caod2a17632008-07-14 17:52:37 -04001325
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001326 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Mingming Caod2a17632008-07-14 17:52:37 -04001327 EXT4_I(inode)->i_delalloc_reserved_flag = 0;
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04001328
1329 /*
1330 * Update reserved blocks/metadata blocks after successful
1331 * block allocation which had been deferred till now.
1332 */
1333 if ((retval > 0) && (flags & EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE))
1334 ext4_da_update_reserve_space(inode, retval);
Mingming Caod2a17632008-07-14 17:52:37 -04001335
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -05001336 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001337 if (retval > 0 && buffer_mapped(bh)) {
Theodore Ts'o80e42462009-09-08 08:21:26 -04001338 int ret = check_block_validity(inode, "file system "
1339 "corruption after allocation",
1340 block, bh->b_blocknr, retval);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001341 if (ret != 0)
1342 return ret;
1343 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05001344 return retval;
1345}
1346
Mingming Caof3bd1f32008-08-19 22:16:03 -04001347/* Maximum number of blocks we map for direct IO at once. */
1348#define DIO_MAX_BLOCKS 4096
1349
Eric Sandeen6873fa02008-10-07 00:46:36 -04001350int ext4_get_block(struct inode *inode, sector_t iblock,
1351 struct buffer_head *bh_result, int create)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001352{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -08001353 handle_t *handle = ext4_journal_current_handle();
Jan Kara7fb54092008-02-10 01:08:38 -05001354 int ret = 0, started = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001355 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001356 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001357
Jan Kara7fb54092008-02-10 01:08:38 -05001358 if (create && !handle) {
1359 /* Direct IO write... */
1360 if (max_blocks > DIO_MAX_BLOCKS)
1361 max_blocks = DIO_MAX_BLOCKS;
Mingming Caof3bd1f32008-08-19 22:16:03 -04001362 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
1363 handle = ext4_journal_start(inode, dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -05001364 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365 ret = PTR_ERR(handle);
Jan Kara7fb54092008-02-10 01:08:38 -05001366 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001367 }
Jan Kara7fb54092008-02-10 01:08:38 -05001368 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001369 }
1370
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04001371 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
Theodore Ts'oc2177052009-05-14 00:58:52 -04001372 create ? EXT4_GET_BLOCKS_CREATE : 0);
Jan Kara7fb54092008-02-10 01:08:38 -05001373 if (ret > 0) {
1374 bh_result->b_size = (ret << inode->i_blkbits);
1375 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001376 }
Jan Kara7fb54092008-02-10 01:08:38 -05001377 if (started)
1378 ext4_journal_stop(handle);
1379out:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001380 return ret;
1381}
1382
1383/*
1384 * `handle' can be NULL if create is zero
1385 */
Mingming Cao617ba132006-10-11 01:20:53 -07001386struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001387 ext4_lblk_t block, int create, int *errp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388{
1389 struct buffer_head dummy;
1390 int fatal = 0, err;
Jan Kara03f5d8b2009-06-09 00:17:05 -04001391 int flags = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001392
1393 J_ASSERT(handle != NULL || create == 0);
1394
1395 dummy.b_state = 0;
1396 dummy.b_blocknr = -1000;
1397 buffer_trace_init(&dummy.b_history);
Theodore Ts'oc2177052009-05-14 00:58:52 -04001398 if (create)
1399 flags |= EXT4_GET_BLOCKS_CREATE;
1400 err = ext4_get_blocks(handle, inode, block, 1, &dummy, flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001401 /*
Theodore Ts'oc2177052009-05-14 00:58:52 -04001402 * ext4_get_blocks() returns number of blocks mapped. 0 in
1403 * case of a HOLE.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001404 */
1405 if (err > 0) {
1406 if (err > 1)
1407 WARN_ON(1);
1408 err = 0;
1409 }
1410 *errp = err;
1411 if (!err && buffer_mapped(&dummy)) {
1412 struct buffer_head *bh;
1413 bh = sb_getblk(inode->i_sb, dummy.b_blocknr);
1414 if (!bh) {
1415 *errp = -EIO;
1416 goto err;
1417 }
1418 if (buffer_new(&dummy)) {
1419 J_ASSERT(create != 0);
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001420 J_ASSERT(handle != NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001421
1422 /*
1423 * Now that we do not always journal data, we should
1424 * keep in mind whether this should always journal the
1425 * new buffer as metadata. For now, regular file
Mingming Cao617ba132006-10-11 01:20:53 -07001426 * writes use ext4_get_block instead, so it's not a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427 * problem.
1428 */
1429 lock_buffer(bh);
1430 BUFFER_TRACE(bh, "call get_create_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001431 fatal = ext4_journal_get_create_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001432 if (!fatal && !buffer_uptodate(bh)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001433 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001434 set_buffer_uptodate(bh);
1435 }
1436 unlock_buffer(bh);
Frank Mayhar03901312009-01-07 00:06:22 -05001437 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1438 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001439 if (!fatal)
1440 fatal = err;
1441 } else {
1442 BUFFER_TRACE(bh, "not a new buffer");
1443 }
1444 if (fatal) {
1445 *errp = fatal;
1446 brelse(bh);
1447 bh = NULL;
1448 }
1449 return bh;
1450 }
1451err:
1452 return NULL;
1453}
1454
Mingming Cao617ba132006-10-11 01:20:53 -07001455struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001456 ext4_lblk_t block, int create, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001457{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001458 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001459
Mingming Cao617ba132006-10-11 01:20:53 -07001460 bh = ext4_getblk(handle, inode, block, create, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001461 if (!bh)
1462 return bh;
1463 if (buffer_uptodate(bh))
1464 return bh;
1465 ll_rw_block(READ_META, 1, &bh);
1466 wait_on_buffer(bh);
1467 if (buffer_uptodate(bh))
1468 return bh;
1469 put_bh(bh);
1470 *err = -EIO;
1471 return NULL;
1472}
1473
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001474static int walk_page_buffers(handle_t *handle,
1475 struct buffer_head *head,
1476 unsigned from,
1477 unsigned to,
1478 int *partial,
1479 int (*fn)(handle_t *handle,
1480 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001481{
1482 struct buffer_head *bh;
1483 unsigned block_start, block_end;
1484 unsigned blocksize = head->b_size;
1485 int err, ret = 0;
1486 struct buffer_head *next;
1487
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001488 for (bh = head, block_start = 0;
1489 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001490 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001491 next = bh->b_this_page;
1492 block_end = block_start + blocksize;
1493 if (block_end <= from || block_start >= to) {
1494 if (partial && !buffer_uptodate(bh))
1495 *partial = 1;
1496 continue;
1497 }
1498 err = (*fn)(handle, bh);
1499 if (!ret)
1500 ret = err;
1501 }
1502 return ret;
1503}
1504
1505/*
1506 * To preserve ordering, it is essential that the hole instantiation and
1507 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -07001508 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -07001509 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001510 * prepare_write() is the right place.
1511 *
Mingming Cao617ba132006-10-11 01:20:53 -07001512 * Also, this function can nest inside ext4_writepage() ->
1513 * block_write_full_page(). In that case, we *know* that ext4_writepage()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001514 * has generated enough buffer credits to do the whole page. So we won't
1515 * block on the journal in that case, which is good, because the caller may
1516 * be PF_MEMALLOC.
1517 *
Mingming Cao617ba132006-10-11 01:20:53 -07001518 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001519 * quota file writes. If we were to commit the transaction while thus
1520 * reentered, there can be a deadlock - we would be holding a quota
1521 * lock, and the commit would never complete if another thread had a
1522 * transaction open and was blocking on the quota lock - a ranking
1523 * violation.
1524 *
Mingming Caodab291a2006-10-11 01:21:01 -07001525 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001526 * will _not_ run commit under these circumstances because handle->h_ref
1527 * is elevated. We'll still have enough credits for the tiny quotafile
1528 * write.
1529 */
1530static int do_journal_get_write_access(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001531 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001532{
1533 if (!buffer_mapped(bh) || buffer_freed(bh))
1534 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001535 return ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001536}
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 Karaffacfa72009-07-13 16:22:22 -04001603 ext4_truncate(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 Karaffacfa72009-07-13 16:22:22 -04001713 ext4_truncate(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 Karaffacfa72009-07-13 16:22:22 -04001755 ext4_truncate(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);
Mingming Cao617ba132006-10-11 01:20:53 -07001797 EXT4_I(inode)->i_state |= 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 Karaffacfa72009-07-13 16:22:22 -04001818 ext4_truncate(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
1831static int ext4_da_reserve_space(struct inode *inode, int nrblocks)
1832{
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001833 int retries = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01001834 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1835 unsigned long md_needed, mdblocks, total = 0;
Mingming Caod2a17632008-07-14 17:52:37 -04001836
1837 /*
1838 * recalculate the amount of metadata blocks to reserve
1839 * in order to allocate nrblocks
1840 * worse case is one extent per block
1841 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001842repeat:
Mingming Caod2a17632008-07-14 17:52:37 -04001843 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1844 total = EXT4_I(inode)->i_reserved_data_blocks + nrblocks;
1845 mdblocks = ext4_calc_metadata_amount(inode, total);
1846 BUG_ON(mdblocks < EXT4_I(inode)->i_reserved_meta_blocks);
1847
1848 md_needed = mdblocks - EXT4_I(inode)->i_reserved_meta_blocks;
1849 total = md_needed + nrblocks;
1850
Mingming Cao60e58e02009-01-22 18:13:05 +01001851 /*
1852 * Make quota reservation here to prevent quota overflow
1853 * later. Real quota accounting is done at pages writeout
1854 * time.
1855 */
1856 if (vfs_dq_reserve_block(inode, total)) {
1857 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1858 return -EDQUOT;
1859 }
1860
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04001861 if (ext4_claim_free_blocks(sbi, total)) {
Mingming Caod2a17632008-07-14 17:52:37 -04001862 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao9f0ccfd2009-09-28 15:49:52 -04001863 vfs_dq_release_reservation_block(inode, total);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04001864 if (ext4_should_retry_alloc(inode->i_sb, &retries)) {
1865 yield();
1866 goto repeat;
1867 }
Mingming Caod2a17632008-07-14 17:52:37 -04001868 return -ENOSPC;
1869 }
Mingming Caod2a17632008-07-14 17:52:37 -04001870 EXT4_I(inode)->i_reserved_data_blocks += nrblocks;
1871 EXT4_I(inode)->i_reserved_meta_blocks = mdblocks;
1872
1873 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1874 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);
1880 int total, mdb, mdb_free, release;
1881
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
1887 if (!EXT4_I(inode)->i_reserved_data_blocks) {
1888 /*
1889 * if there is no reserved blocks, but we try to free some
1890 * then the counter is messed up somewhere.
1891 * but since this function is called from invalidate
1892 * page, it's harmless to return without any action
1893 */
1894 printk(KERN_INFO "ext4 delalloc try to release %d reserved "
1895 "blocks for inode %lu, but there is no reserved "
1896 "data blocks\n", to_free, inode->i_ino);
1897 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
1898 return;
1899 }
1900
Mingming Caod2a17632008-07-14 17:52:37 -04001901 /* recalculate the number of metablocks still need to be reserved */
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001902 total = EXT4_I(inode)->i_reserved_data_blocks - to_free;
Mingming Caod2a17632008-07-14 17:52:37 -04001903 mdb = ext4_calc_metadata_amount(inode, total);
1904
1905 /* figure out how many metablocks to release */
1906 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1907 mdb_free = EXT4_I(inode)->i_reserved_meta_blocks - mdb;
1908
Mingming Caod2a17632008-07-14 17:52:37 -04001909 release = to_free + mdb_free;
1910
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04001911 /* update fs dirty blocks counter for truncate case */
1912 percpu_counter_sub(&sbi->s_dirtyblocks_counter, release);
Mingming Caod2a17632008-07-14 17:52:37 -04001913
1914 /* update per-inode reservations */
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001915 BUG_ON(to_free > EXT4_I(inode)->i_reserved_data_blocks);
1916 EXT4_I(inode)->i_reserved_data_blocks -= to_free;
Mingming Caod2a17632008-07-14 17:52:37 -04001917
1918 BUG_ON(mdb > EXT4_I(inode)->i_reserved_meta_blocks);
1919 EXT4_I(inode)->i_reserved_meta_blocks = mdb;
Mingming Caod2a17632008-07-14 17:52:37 -04001920 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001921
1922 vfs_dq_release_reservation_block(inode, release);
Mingming Caod2a17632008-07-14 17:52:37 -04001923}
1924
1925static void ext4_da_page_release_reservation(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001926 unsigned long offset)
Mingming Caod2a17632008-07-14 17:52:37 -04001927{
1928 int to_release = 0;
1929 struct buffer_head *head, *bh;
1930 unsigned int curr_off = 0;
1931
1932 head = page_buffers(page);
1933 bh = head;
1934 do {
1935 unsigned int next_off = curr_off + bh->b_size;
1936
1937 if ((offset <= curr_off) && (buffer_delay(bh))) {
1938 to_release++;
1939 clear_buffer_delay(bh);
1940 }
1941 curr_off = next_off;
1942 } while ((bh = bh->b_this_page) != head);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001943 ext4_da_release_space(page->mapping->host, to_release);
Mingming Caod2a17632008-07-14 17:52:37 -04001944}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001945
1946/*
Alex Tomas64769242008-07-11 19:27:31 -04001947 * Delayed allocation stuff
1948 */
1949
Alex Tomas64769242008-07-11 19:27:31 -04001950/*
1951 * mpage_da_submit_io - walks through extent of pages and try to write
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001952 * them with writepage() call back
Alex Tomas64769242008-07-11 19:27:31 -04001953 *
1954 * @mpd->inode: inode
1955 * @mpd->first_page: first page of the extent
1956 * @mpd->next_page: page after the last page of the extent
Alex Tomas64769242008-07-11 19:27:31 -04001957 *
1958 * By the time mpage_da_submit_io() is called we expect all blocks
1959 * to be allocated. this may be wrong if allocation failed.
1960 *
1961 * As pages are already locked by write_cache_pages(), we can't use it
1962 */
1963static int mpage_da_submit_io(struct mpage_da_data *mpd)
1964{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001965 long pages_skipped;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001966 struct pagevec pvec;
1967 unsigned long index, end;
1968 int ret = 0, err, nr_pages, i;
1969 struct inode *inode = mpd->inode;
1970 struct address_space *mapping = inode->i_mapping;
Alex Tomas64769242008-07-11 19:27:31 -04001971
1972 BUG_ON(mpd->next_page <= mpd->first_page);
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001973 /*
1974 * We need to start from the first_page to the next_page - 1
1975 * to make sure we also write the mapped dirty buffer_heads.
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05001976 * If we look at mpd->b_blocknr we would only be looking
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001977 * at the currently mapped buffer_heads.
1978 */
Alex Tomas64769242008-07-11 19:27:31 -04001979 index = mpd->first_page;
1980 end = mpd->next_page - 1;
1981
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001982 pagevec_init(&pvec, 0);
Alex Tomas64769242008-07-11 19:27:31 -04001983 while (index <= end) {
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001984 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
Alex Tomas64769242008-07-11 19:27:31 -04001985 if (nr_pages == 0)
1986 break;
1987 for (i = 0; i < nr_pages; i++) {
1988 struct page *page = pvec.pages[i];
1989
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001990 index = page->index;
1991 if (index > end)
1992 break;
1993 index++;
1994
1995 BUG_ON(!PageLocked(page));
1996 BUG_ON(PageWriteback(page));
1997
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04001998 pages_skipped = mpd->wbc->pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04001999 err = mapping->a_ops->writepage(page, mpd->wbc);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002000 if (!err && (pages_skipped == mpd->wbc->pages_skipped))
2001 /*
2002 * have successfully written the page
2003 * without skipping the same
2004 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002005 mpd->pages_written++;
Alex Tomas64769242008-07-11 19:27:31 -04002006 /*
2007 * In error case, we have to continue because
2008 * remaining pages are still locked
2009 * XXX: unlock and re-dirty them?
2010 */
2011 if (ret == 0)
2012 ret = err;
2013 }
2014 pagevec_release(&pvec);
2015 }
Alex Tomas64769242008-07-11 19:27:31 -04002016 return ret;
2017}
2018
2019/*
2020 * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers
2021 *
2022 * @mpd->inode - inode to walk through
2023 * @exbh->b_blocknr - first block on a disk
2024 * @exbh->b_size - amount of space in bytes
2025 * @logical - first logical block to start assignment with
2026 *
2027 * the function goes through all passed space and put actual disk
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002028 * block numbers into buffer heads, dropping BH_Delay and BH_Unwritten
Alex Tomas64769242008-07-11 19:27:31 -04002029 */
2030static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical,
2031 struct buffer_head *exbh)
2032{
2033 struct inode *inode = mpd->inode;
2034 struct address_space *mapping = inode->i_mapping;
2035 int blocks = exbh->b_size >> inode->i_blkbits;
2036 sector_t pblock = exbh->b_blocknr, cur_logical;
2037 struct buffer_head *head, *bh;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002038 pgoff_t index, end;
Alex Tomas64769242008-07-11 19:27:31 -04002039 struct pagevec pvec;
2040 int nr_pages, i;
2041
2042 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2043 end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2044 cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
2045
2046 pagevec_init(&pvec, 0);
2047
2048 while (index <= end) {
2049 /* XXX: optimize tail */
2050 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2051 if (nr_pages == 0)
2052 break;
2053 for (i = 0; i < nr_pages; i++) {
2054 struct page *page = pvec.pages[i];
2055
2056 index = page->index;
2057 if (index > end)
2058 break;
2059 index++;
2060
2061 BUG_ON(!PageLocked(page));
2062 BUG_ON(PageWriteback(page));
2063 BUG_ON(!page_has_buffers(page));
2064
2065 bh = page_buffers(page);
2066 head = bh;
2067
2068 /* skip blocks out of the range */
2069 do {
2070 if (cur_logical >= logical)
2071 break;
2072 cur_logical++;
2073 } while ((bh = bh->b_this_page) != head);
2074
2075 do {
2076 if (cur_logical >= logical + blocks)
2077 break;
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002078
2079 if (buffer_delay(bh) ||
2080 buffer_unwritten(bh)) {
2081
2082 BUG_ON(bh->b_bdev != inode->i_sb->s_bdev);
2083
2084 if (buffer_delay(bh)) {
2085 clear_buffer_delay(bh);
2086 bh->b_blocknr = pblock;
2087 } else {
2088 /*
2089 * unwritten already should have
2090 * blocknr assigned. Verify that
2091 */
2092 clear_buffer_unwritten(bh);
2093 BUG_ON(bh->b_blocknr != pblock);
2094 }
2095
Mingming Cao61628a32008-07-11 19:27:31 -04002096 } else if (buffer_mapped(bh))
Alex Tomas64769242008-07-11 19:27:31 -04002097 BUG_ON(bh->b_blocknr != pblock);
Alex Tomas64769242008-07-11 19:27:31 -04002098
2099 cur_logical++;
2100 pblock++;
2101 } while ((bh = bh->b_this_page) != head);
2102 }
2103 pagevec_release(&pvec);
2104 }
2105}
2106
2107
2108/*
2109 * __unmap_underlying_blocks - just a helper function to unmap
2110 * set of blocks described by @bh
2111 */
2112static inline void __unmap_underlying_blocks(struct inode *inode,
2113 struct buffer_head *bh)
2114{
2115 struct block_device *bdev = inode->i_sb->s_bdev;
2116 int blocks, i;
2117
2118 blocks = bh->b_size >> inode->i_blkbits;
2119 for (i = 0; i < blocks; i++)
2120 unmap_underlying_metadata(bdev, bh->b_blocknr + i);
2121}
2122
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002123static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd,
2124 sector_t logical, long blk_cnt)
2125{
2126 int nr_pages, i;
2127 pgoff_t index, end;
2128 struct pagevec pvec;
2129 struct inode *inode = mpd->inode;
2130 struct address_space *mapping = inode->i_mapping;
2131
2132 index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits);
2133 end = (logical + blk_cnt - 1) >>
2134 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2135 while (index <= end) {
2136 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
2137 if (nr_pages == 0)
2138 break;
2139 for (i = 0; i < nr_pages; i++) {
2140 struct page *page = pvec.pages[i];
2141 index = page->index;
2142 if (index > end)
2143 break;
2144 index++;
2145
2146 BUG_ON(!PageLocked(page));
2147 BUG_ON(PageWriteback(page));
2148 block_invalidatepage(page, 0);
2149 ClearPageUptodate(page);
2150 unlock_page(page);
2151 }
2152 }
2153 return;
2154}
2155
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002156static void ext4_print_free_blocks(struct inode *inode)
2157{
2158 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o16939182009-09-26 17:43:59 -04002159 printk(KERN_CRIT "Total free blocks count %lld\n",
2160 ext4_count_free_blocks(inode->i_sb));
2161 printk(KERN_CRIT "Free/Dirty block details\n");
2162 printk(KERN_CRIT "free_blocks=%lld\n",
2163 (long long) percpu_counter_sum(&sbi->s_freeblocks_counter));
2164 printk(KERN_CRIT "dirty_blocks=%lld\n",
2165 (long long) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2166 printk(KERN_CRIT "Block reservation details\n");
2167 printk(KERN_CRIT "i_reserved_data_blocks=%u\n",
2168 EXT4_I(inode)->i_reserved_data_blocks);
2169 printk(KERN_CRIT "i_reserved_meta_blocks=%u\n",
2170 EXT4_I(inode)->i_reserved_meta_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002171 return;
2172}
2173
Theodore Ts'ob920c752009-05-14 00:54:29 -04002174/*
Alex Tomas64769242008-07-11 19:27:31 -04002175 * mpage_da_map_blocks - go through given space
2176 *
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002177 * @mpd - bh describing space
Alex Tomas64769242008-07-11 19:27:31 -04002178 *
2179 * The function skips space we know is already mapped to disk blocks.
2180 *
Alex Tomas64769242008-07-11 19:27:31 -04002181 */
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002182static int mpage_da_map_blocks(struct mpage_da_data *mpd)
Alex Tomas64769242008-07-11 19:27:31 -04002183{
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002184 int err, blks, get_blocks_flags;
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002185 struct buffer_head new;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002186 sector_t next = mpd->b_blocknr;
2187 unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits;
2188 loff_t disksize = EXT4_I(mpd->inode)->i_disksize;
2189 handle_t *handle = NULL;
Alex Tomas64769242008-07-11 19:27:31 -04002190
2191 /*
2192 * We consider only non-mapped and non-allocated blocks
2193 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002194 if ((mpd->b_state & (1 << BH_Mapped)) &&
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002195 !(mpd->b_state & (1 << BH_Delay)) &&
2196 !(mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002197 return 0;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002198
2199 /*
2200 * If we didn't accumulate anything to write simply return
2201 */
2202 if (!mpd->b_size)
2203 return 0;
2204
2205 handle = ext4_journal_current_handle();
2206 BUG_ON(!handle);
2207
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002208 /*
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002209 * Call ext4_get_blocks() to allocate any delayed allocation
2210 * blocks, or to convert an uninitialized extent to be
2211 * initialized (in the case where we have written into
2212 * one or more preallocated blocks).
2213 *
2214 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to
2215 * indicate that we are on the delayed allocation path. This
2216 * affects functions in many different parts of the allocation
2217 * call path. This flag exists primarily because we don't
2218 * want to change *many* call functions, so ext4_get_blocks()
2219 * will set the magic i_delalloc_reserved_flag once the
2220 * inode's allocation semaphore is taken.
2221 *
2222 * If the blocks in questions were delalloc blocks, set
2223 * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting
2224 * variables are updated after the blocks have been allocated.
Aneesh Kumar K.V79ffab32009-05-13 15:13:42 -04002225 */
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002226 new.b_state = 0;
2227 get_blocks_flags = (EXT4_GET_BLOCKS_CREATE |
2228 EXT4_GET_BLOCKS_DELALLOC_RESERVE);
2229 if (mpd->b_state & (1 << BH_Delay))
2230 get_blocks_flags |= EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE;
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002231 blks = ext4_get_blocks(handle, mpd->inode, next, max_blocks,
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -04002232 &new, get_blocks_flags);
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002233 if (blks < 0) {
2234 err = blks;
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002235 /*
2236 * If get block returns with error we simply
2237 * return. Later writepage will redirty the page and
2238 * writepages will find the dirty page again
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002239 */
2240 if (err == -EAGAIN)
2241 return 0;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002242
2243 if (err == -ENOSPC &&
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002244 ext4_count_free_blocks(mpd->inode->i_sb)) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002245 mpd->retval = err;
2246 return 0;
2247 }
2248
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002249 /*
Theodore Ts'oed5bde02009-02-23 10:48:07 -05002250 * get block failure will cause us to loop in
2251 * writepages, because a_ops->writepage won't be able
2252 * to make progress. The page will be redirtied by
2253 * writepage and writepages will again try to write
2254 * the same.
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002255 */
Theodore Ts'o16939182009-09-26 17:43:59 -04002256 ext4_msg(mpd->inode->i_sb, KERN_CRIT,
2257 "delayed block allocation failed for inode %lu at "
2258 "logical offset %llu with max blocks %zd with "
2259 "error %d\n", mpd->inode->i_ino,
2260 (unsigned long long) next,
2261 mpd->b_size >> mpd->inode->i_blkbits, err);
2262 printk(KERN_CRIT "This should not happen!! "
2263 "Data will be lost\n");
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002264 if (err == -ENOSPC) {
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002265 ext4_print_free_blocks(mpd->inode);
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04002266 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002267 /* invalidate all the pages */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002268 ext4_da_block_invalidatepages(mpd, next,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002269 mpd->b_size >> mpd->inode->i_blkbits);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002270 return err;
2271 }
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002272 BUG_ON(blks == 0);
2273
2274 new.b_size = (blks << mpd->inode->i_blkbits);
Alex Tomas64769242008-07-11 19:27:31 -04002275
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002276 if (buffer_new(&new))
2277 __unmap_underlying_blocks(mpd->inode, &new);
Alex Tomas64769242008-07-11 19:27:31 -04002278
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002279 /*
2280 * If blocks are delayed marked, we need to
2281 * put actual blocknr and drop delayed bit
2282 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002283 if ((mpd->b_state & (1 << BH_Delay)) ||
2284 (mpd->b_state & (1 << BH_Unwritten)))
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002285 mpage_put_bnr_to_bhs(mpd, next, &new);
2286
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002287 if (ext4_should_order_data(mpd->inode)) {
2288 err = ext4_jbd2_file_inode(handle, mpd->inode);
2289 if (err)
2290 return err;
2291 }
2292
2293 /*
Jan Kara03f5d8b2009-06-09 00:17:05 -04002294 * Update on-disk size along with block allocation.
Theodore Ts'o2fa3cdf2009-05-14 09:29:45 -04002295 */
2296 disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits;
2297 if (disksize > i_size_read(mpd->inode))
2298 disksize = i_size_read(mpd->inode);
2299 if (disksize > EXT4_I(mpd->inode)->i_disksize) {
2300 ext4_update_i_disksize(mpd->inode, disksize);
2301 return ext4_mark_inode_dirty(handle, mpd->inode);
2302 }
2303
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002304 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04002305}
2306
Aneesh Kumar K.Vbf068ee2008-08-19 22:16:43 -04002307#define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \
2308 (1 << BH_Delay) | (1 << BH_Unwritten))
Alex Tomas64769242008-07-11 19:27:31 -04002309
2310/*
2311 * mpage_add_bh_to_extent - try to add one more block to extent of blocks
2312 *
2313 * @mpd->lbh - extent of blocks
2314 * @logical - logical number of the block in the file
2315 * @bh - bh of the block (used to access block's state)
2316 *
2317 * the function is used to collect contig. blocks in same state
2318 */
2319static void mpage_add_bh_to_extent(struct mpage_da_data *mpd,
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002320 sector_t logical, size_t b_size,
2321 unsigned long b_state)
Alex Tomas64769242008-07-11 19:27:31 -04002322{
Alex Tomas64769242008-07-11 19:27:31 -04002323 sector_t next;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002324 int nrblocks = mpd->b_size >> mpd->inode->i_blkbits;
Alex Tomas64769242008-07-11 19:27:31 -04002325
Mingming Cao525f4ed2008-08-19 22:15:58 -04002326 /* check if thereserved journal credits might overflow */
2327 if (!(EXT4_I(mpd->inode)->i_flags & EXT4_EXTENTS_FL)) {
2328 if (nrblocks >= EXT4_MAX_TRANS_DATA) {
2329 /*
2330 * With non-extent format we are limited by the journal
2331 * credit available. Total credit needed to insert
2332 * nrblocks contiguous blocks is dependent on the
2333 * nrblocks. So limit nrblocks.
2334 */
2335 goto flush_it;
2336 } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) >
2337 EXT4_MAX_TRANS_DATA) {
2338 /*
2339 * Adding the new buffer_head would make it cross the
2340 * allowed limit for which we have journal credit
2341 * reserved. So limit the new bh->b_size
2342 */
2343 b_size = (EXT4_MAX_TRANS_DATA - nrblocks) <<
2344 mpd->inode->i_blkbits;
2345 /* we will do mpage_da_submit_io in the next loop */
2346 }
2347 }
Alex Tomas64769242008-07-11 19:27:31 -04002348 /*
2349 * First block in the extent
2350 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002351 if (mpd->b_size == 0) {
2352 mpd->b_blocknr = logical;
2353 mpd->b_size = b_size;
2354 mpd->b_state = b_state & BH_FLAGS;
Alex Tomas64769242008-07-11 19:27:31 -04002355 return;
2356 }
2357
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002358 next = mpd->b_blocknr + nrblocks;
Alex Tomas64769242008-07-11 19:27:31 -04002359 /*
2360 * Can we merge the block to our big extent?
2361 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002362 if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) {
2363 mpd->b_size += b_size;
Alex Tomas64769242008-07-11 19:27:31 -04002364 return;
2365 }
2366
Mingming Cao525f4ed2008-08-19 22:15:58 -04002367flush_it:
Alex Tomas64769242008-07-11 19:27:31 -04002368 /*
2369 * We couldn't merge the block to our extent, so we
2370 * need to flush current extent and start new one
2371 */
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002372 if (mpage_da_map_blocks(mpd) == 0)
2373 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002374 mpd->io_done = 1;
2375 return;
Alex Tomas64769242008-07-11 19:27:31 -04002376}
2377
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002378static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002379{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002380 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002381}
2382
Alex Tomas64769242008-07-11 19:27:31 -04002383/*
2384 * __mpage_da_writepage - finds extent of pages and blocks
2385 *
2386 * @page: page to consider
2387 * @wbc: not used, we just follow rules
2388 * @data: context
2389 *
2390 * The function finds extents of pages and scan them for all blocks.
2391 */
2392static int __mpage_da_writepage(struct page *page,
2393 struct writeback_control *wbc, void *data)
2394{
2395 struct mpage_da_data *mpd = data;
2396 struct inode *inode = mpd->inode;
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002397 struct buffer_head *bh, *head;
Alex Tomas64769242008-07-11 19:27:31 -04002398 sector_t logical;
2399
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002400 if (mpd->io_done) {
2401 /*
2402 * Rest of the page in the page_vec
2403 * redirty then and skip then. We will
Anand Gadiyarfd589a82009-07-16 17:13:03 +02002404 * try to write them again after
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002405 * starting a new transaction
2406 */
2407 redirty_page_for_writepage(wbc, page);
2408 unlock_page(page);
2409 return MPAGE_DA_EXTENT_TAIL;
2410 }
Alex Tomas64769242008-07-11 19:27:31 -04002411 /*
2412 * Can we merge this page to current extent?
2413 */
2414 if (mpd->next_page != page->index) {
2415 /*
2416 * Nope, we can't. So, we map non-allocated blocks
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002417 * and start IO on them using writepage()
Alex Tomas64769242008-07-11 19:27:31 -04002418 */
2419 if (mpd->next_page != mpd->first_page) {
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04002420 if (mpage_da_map_blocks(mpd) == 0)
2421 mpage_da_submit_io(mpd);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002422 /*
2423 * skip rest of the page in the page_vec
2424 */
2425 mpd->io_done = 1;
2426 redirty_page_for_writepage(wbc, page);
2427 unlock_page(page);
2428 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002429 }
2430
2431 /*
2432 * Start next extent of pages ...
2433 */
2434 mpd->first_page = page->index;
2435
2436 /*
2437 * ... and blocks
2438 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002439 mpd->b_size = 0;
2440 mpd->b_state = 0;
2441 mpd->b_blocknr = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002442 }
2443
2444 mpd->next_page = page->index + 1;
2445 logical = (sector_t) page->index <<
2446 (PAGE_CACHE_SHIFT - inode->i_blkbits);
2447
2448 if (!page_has_buffers(page)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002449 mpage_add_bh_to_extent(mpd, logical, PAGE_CACHE_SIZE,
2450 (1 << BH_Dirty) | (1 << BH_Uptodate));
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002451 if (mpd->io_done)
2452 return MPAGE_DA_EXTENT_TAIL;
Alex Tomas64769242008-07-11 19:27:31 -04002453 } else {
2454 /*
2455 * Page with regular buffer heads, just add all dirty ones
2456 */
2457 head = page_buffers(page);
2458 bh = head;
2459 do {
2460 BUG_ON(buffer_locked(bh));
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002461 /*
2462 * We need to try to allocate
2463 * unmapped blocks in the same page.
2464 * Otherwise we won't make progress
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002465 * with the page in ext4_writepage
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002466 */
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002467 if (ext4_bh_delay_or_unwritten(NULL, bh)) {
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002468 mpage_add_bh_to_extent(mpd, logical,
2469 bh->b_size,
2470 bh->b_state);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002471 if (mpd->io_done)
2472 return MPAGE_DA_EXTENT_TAIL;
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05002473 } else if (buffer_dirty(bh) && (buffer_mapped(bh))) {
2474 /*
2475 * mapped dirty buffer. We need to update
2476 * the b_state because we look at
2477 * b_state in mpage_da_map_blocks. We don't
2478 * update b_size because if we find an
2479 * unmapped buffer_head later we need to
2480 * use the b_state flag of that buffer_head.
2481 */
Theodore Ts'o8dc207c2009-02-23 06:46:01 -05002482 if (mpd->b_size == 0)
2483 mpd->b_state = bh->b_state & BH_FLAGS;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002484 }
Alex Tomas64769242008-07-11 19:27:31 -04002485 logical++;
2486 } while ((bh = bh->b_this_page) != head);
2487 }
2488
2489 return 0;
2490}
2491
2492/*
Theodore Ts'ob920c752009-05-14 00:54:29 -04002493 * This is a special get_blocks_t callback which is used by
2494 * ext4_da_write_begin(). It will either return mapped block or
2495 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002496 *
2497 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
2498 * We also have b_blocknr = -1 and b_bdev initialized properly
2499 *
2500 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
2501 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
2502 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04002503 */
2504static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
2505 struct buffer_head *bh_result, int create)
2506{
2507 int ret = 0;
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002508 sector_t invalid_block = ~((sector_t) 0xffff);
2509
2510 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
2511 invalid_block = ~0;
Alex Tomas64769242008-07-11 19:27:31 -04002512
2513 BUG_ON(create == 0);
2514 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2515
2516 /*
2517 * first, we need to know whether the block is allocated already
2518 * preallocated blocks are unmapped but should treated
2519 * the same as allocated blocks.
2520 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002521 ret = ext4_get_blocks(NULL, inode, iblock, 1, bh_result, 0);
Mingming Caod2a17632008-07-14 17:52:37 -04002522 if ((ret == 0) && !buffer_delay(bh_result)) {
2523 /* the block isn't (pre)allocated yet, let's reserve space */
Alex Tomas64769242008-07-11 19:27:31 -04002524 /*
2525 * XXX: __block_prepare_write() unmaps passed block,
2526 * is it OK?
2527 */
Mingming Caod2a17632008-07-14 17:52:37 -04002528 ret = ext4_da_reserve_space(inode, 1);
2529 if (ret)
2530 /* not enough space to reserve */
2531 return ret;
2532
Aneesh Kumar K.V33b98172009-05-12 14:40:37 -04002533 map_bh(bh_result, inode->i_sb, invalid_block);
Alex Tomas64769242008-07-11 19:27:31 -04002534 set_buffer_new(bh_result);
2535 set_buffer_delay(bh_result);
2536 } else if (ret > 0) {
2537 bh_result->b_size = (ret << inode->i_blkbits);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002538 if (buffer_unwritten(bh_result)) {
2539 /* A delayed write to unwritten bh should
2540 * be marked new and mapped. Mapped ensures
2541 * that we don't do get_block multiple times
2542 * when we write to the same offset and new
2543 * ensures that we do proper zero out for
2544 * partial write.
2545 */
Aneesh Kumar K.V9c1ee182009-05-13 18:36:58 -04002546 set_buffer_new(bh_result);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002547 set_buffer_mapped(bh_result);
2548 }
Alex Tomas64769242008-07-11 19:27:31 -04002549 ret = 0;
2550 }
2551
2552 return ret;
2553}
Mingming Cao61628a32008-07-11 19:27:31 -04002554
Theodore Ts'ob920c752009-05-14 00:54:29 -04002555/*
2556 * This function is used as a standard get_block_t calback function
2557 * when there is no desire to allocate any blocks. It is used as a
2558 * callback function for block_prepare_write(), nobh_writepage(), and
2559 * block_write_full_page(). These functions should only try to map a
2560 * single block at a time.
2561 *
2562 * Since this function doesn't do block allocations even if the caller
2563 * requests it by passing in create=1, it is critically important that
2564 * any caller checks to make sure that any buffer heads are returned
2565 * by this function are either all already mapped or marked for
2566 * delayed allocation before calling nobh_writepage() or
2567 * block_write_full_page(). Otherwise, b_blocknr could be left
2568 * unitialized, and the page write functions will be taken by
2569 * surprise.
2570 */
2571static int noalloc_get_block_write(struct inode *inode, sector_t iblock,
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002572 struct buffer_head *bh_result, int create)
2573{
2574 int ret = 0;
2575 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
2576
Theodore Ts'oa2dc52b2009-05-12 13:51:29 -04002577 BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize);
2578
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002579 /*
2580 * we don't want to do block allocation in writepage
2581 * so call get_block_wrap with create = 0
2582 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04002583 ret = ext4_get_blocks(NULL, inode, iblock, max_blocks, bh_result, 0);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002584 if (ret > 0) {
2585 bh_result->b_size = (ret << inode->i_blkbits);
2586 ret = 0;
2587 }
2588 return ret;
Mingming Cao61628a32008-07-11 19:27:31 -04002589}
2590
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002591static int bget_one(handle_t *handle, struct buffer_head *bh)
2592{
2593 get_bh(bh);
2594 return 0;
2595}
2596
2597static int bput_one(handle_t *handle, struct buffer_head *bh)
2598{
2599 put_bh(bh);
2600 return 0;
2601}
2602
2603static int __ext4_journalled_writepage(struct page *page,
2604 struct writeback_control *wbc,
2605 unsigned int len)
2606{
2607 struct address_space *mapping = page->mapping;
2608 struct inode *inode = mapping->host;
2609 struct buffer_head *page_bufs;
2610 handle_t *handle = NULL;
2611 int ret = 0;
2612 int err;
2613
2614 page_bufs = page_buffers(page);
2615 BUG_ON(!page_bufs);
2616 walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one);
2617 /* As soon as we unlock the page, it can go away, but we have
2618 * references to buffers so we are safe */
2619 unlock_page(page);
2620
2621 handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode));
2622 if (IS_ERR(handle)) {
2623 ret = PTR_ERR(handle);
2624 goto out;
2625 }
2626
2627 ret = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2628 do_journal_get_write_access);
2629
2630 err = walk_page_buffers(handle, page_bufs, 0, len, NULL,
2631 write_end_fn);
2632 if (ret == 0)
2633 ret = err;
2634 err = ext4_journal_stop(handle);
2635 if (!ret)
2636 ret = err;
2637
2638 walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one);
2639 EXT4_I(inode)->i_state |= EXT4_STATE_JDATA;
2640out:
2641 return ret;
2642}
2643
Mingming Cao61628a32008-07-11 19:27:31 -04002644/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002645 * Note that we don't need to start a transaction unless we're journaling data
2646 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2647 * need to file the inode to the transaction's list in ordered mode because if
2648 * we are writing back data added by write(), the inode is already there and if
2649 * we are writing back data modified via mmap(), noone guarantees in which
2650 * transaction the data will hit the disk. In case we are journaling data, we
2651 * cannot start transaction directly because transaction start ranks above page
2652 * lock so we have to do some magic.
2653 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04002654 * This function can get called via...
2655 * - ext4_da_writepages after taking page lock (have journal handle)
2656 * - journal_submit_inode_data_buffers (no journal handle)
2657 * - shrink_page_list via pdflush (no journal handle)
2658 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002659 *
2660 * We don't do any block allocation in this function. If we have page with
2661 * multiple blocks we need to write those buffer_heads that are mapped. This
2662 * is important for mmaped based write. So if we do with blocksize 1K
2663 * truncate(f, 1024);
2664 * a = mmap(f, 0, 4096);
2665 * a[0] = 'a';
2666 * truncate(f, 4096);
2667 * we have in the page first buffer_head mapped via page_mkwrite call back
2668 * but other bufer_heads would be unmapped but dirty(dirty done via the
2669 * do_wp_page). So writepage should write the first block. If we modify
2670 * the mmap area beyond 1024 we will again get a page_fault and the
2671 * page_mkwrite callback will do the block allocation and mark the
2672 * buffer_heads mapped.
2673 *
2674 * We redirty the page if we have any buffer_heads that is either delay or
2675 * unwritten in the page.
2676 *
2677 * We can get recursively called as show below.
2678 *
2679 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2680 * ext4_writepage()
2681 *
2682 * But since we don't do any block allocation we should not deadlock.
2683 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04002684 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002685static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002686 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002687{
Alex Tomas64769242008-07-11 19:27:31 -04002688 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002689 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002690 unsigned int len;
Mingming Cao61628a32008-07-11 19:27:31 -04002691 struct buffer_head *page_bufs;
2692 struct inode *inode = page->mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002693
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002694 trace_ext4_writepage(inode, page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002695 size = i_size_read(inode);
2696 if (page->index == size >> PAGE_CACHE_SHIFT)
2697 len = size & ~PAGE_CACHE_MASK;
2698 else
2699 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002700
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002701 if (page_has_buffers(page)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002702 page_bufs = page_buffers(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002703 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002704 ext4_bh_delay_or_unwritten)) {
Mingming Cao61628a32008-07-11 19:27:31 -04002705 /*
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002706 * We don't want to do block allocation
2707 * So redirty the page and return
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002708 * We may reach here when we do a journal commit
2709 * via journal_submit_inode_data_buffers.
2710 * If we don't have mapping block we just ignore
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002711 * them. We can also reach here via shrink_page_list
2712 */
2713 redirty_page_for_writepage(wbc, page);
2714 unlock_page(page);
2715 return 0;
2716 }
2717 } else {
2718 /*
2719 * The test for page_has_buffers() is subtle:
2720 * We know the page is dirty but it lost buffers. That means
2721 * that at some moment in time after write_begin()/write_end()
2722 * has been called all buffers have been clean and thus they
2723 * must have been written at least once. So they are all
2724 * mapped and we can happily proceed with mapping them
2725 * and writing the page.
2726 *
2727 * Try to initialize the buffer_heads and check whether
2728 * all are mapped and non delay. We don't want to
2729 * do block allocation here.
2730 */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002731 ret = block_prepare_write(page, 0, len,
Theodore Ts'ob920c752009-05-14 00:54:29 -04002732 noalloc_get_block_write);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002733 if (!ret) {
2734 page_bufs = page_buffers(page);
2735 /* check whether all are mapped and non delay */
2736 if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002737 ext4_bh_delay_or_unwritten)) {
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002738 redirty_page_for_writepage(wbc, page);
2739 unlock_page(page);
2740 return 0;
2741 }
2742 } else {
2743 /*
2744 * We can't do block allocation here
2745 * so just redity the page and unlock
2746 * and return
Mingming Cao61628a32008-07-11 19:27:31 -04002747 */
Mingming Cao61628a32008-07-11 19:27:31 -04002748 redirty_page_for_writepage(wbc, page);
2749 unlock_page(page);
2750 return 0;
2751 }
Aneesh Kumar K.Ved9b3e32008-11-07 09:06:45 -05002752 /* now mark the buffer_heads as dirty and uptodate */
Aneesh Kumar K.Vb767e782009-06-04 08:06:06 -04002753 block_commit_write(page, 0, len);
Alex Tomas64769242008-07-11 19:27:31 -04002754 }
2755
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002756 if (PageChecked(page) && ext4_should_journal_data(inode)) {
2757 /*
2758 * It's mmapped pagecache. Add buffers and journal it. There
2759 * doesn't seem much point in redirtying the page here.
2760 */
2761 ClearPageChecked(page);
2762 return __ext4_journalled_writepage(page, wbc, len);
2763 }
2764
Alex Tomas64769242008-07-11 19:27:31 -04002765 if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode))
Theodore Ts'ob920c752009-05-14 00:54:29 -04002766 ret = nobh_writepage(page, noalloc_get_block_write, wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002767 else
Theodore Ts'ob920c752009-05-14 00:54:29 -04002768 ret = block_write_full_page(page, noalloc_get_block_write,
2769 wbc);
Alex Tomas64769242008-07-11 19:27:31 -04002770
Alex Tomas64769242008-07-11 19:27:31 -04002771 return ret;
2772}
2773
Mingming Cao61628a32008-07-11 19:27:31 -04002774/*
Mingming Cao525f4ed2008-08-19 22:15:58 -04002775 * This is called via ext4_da_writepages() to
2776 * calulate the total number of credits to reserve to fit
2777 * a single extent allocation into a single transaction,
2778 * ext4_da_writpeages() will loop calling this before
2779 * the block allocation.
Mingming Cao61628a32008-07-11 19:27:31 -04002780 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002781
2782static int ext4_da_writepages_trans_blocks(struct inode *inode)
2783{
2784 int max_blocks = EXT4_I(inode)->i_reserved_data_blocks;
2785
2786 /*
2787 * With non-extent format the journal credit needed to
2788 * insert nrblocks contiguous block is dependent on
2789 * number of contiguous block. So we will limit
2790 * number of contiguous block to a sane value
2791 */
Julia Lawall30c6e07a2009-11-15 15:30:58 -05002792 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) &&
Mingming Cao525f4ed2008-08-19 22:15:58 -04002793 (max_blocks > EXT4_MAX_TRANS_DATA))
2794 max_blocks = EXT4_MAX_TRANS_DATA;
2795
2796 return ext4_chunk_trans_blocks(inode, max_blocks);
2797}
Mingming Cao61628a32008-07-11 19:27:31 -04002798
Alex Tomas64769242008-07-11 19:27:31 -04002799static int ext4_da_writepages(struct address_space *mapping,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002800 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002801{
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002802 pgoff_t index;
2803 int range_whole = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002804 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002805 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002806 struct inode *inode = mapping->host;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002807 int no_nrwrite_index_update;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002808 int pages_written = 0;
2809 long pages_skipped;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002810 unsigned int max_pages;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002811 int range_cyclic, cycled = 1, io_done = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04002812 int needed_blocks, ret = 0;
2813 long desired_nr_to_write, nr_to_writebump = 0;
Theodore Ts'ode89de62009-08-31 17:00:59 -04002814 loff_t range_start = wbc->range_start;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002815 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Mingming Cao61628a32008-07-11 19:27:31 -04002816
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002817 trace_ext4_da_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002818
Mingming Cao61628a32008-07-11 19:27:31 -04002819 /*
2820 * No pages to write? This is mainly a kludge to avoid starting
2821 * a transaction for special inodes like journal inode on last iput()
2822 * because that could violate lock ordering on umount
2823 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002824 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Mingming Cao61628a32008-07-11 19:27:31 -04002825 return 0;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002826
2827 /*
2828 * If the filesystem has aborted, it is read-only, so return
2829 * right away instead of dumping stack traces later on that
2830 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002831 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002832 * the latter could be true if the filesystem is mounted
2833 * read-only, and in that case, ext4_da_writepages should
2834 * *never* be called, so if that ever happens, we would want
2835 * the stack trace.
2836 */
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002837 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED))
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002838 return -EROFS;
2839
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002840 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2841 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002842
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002843 range_cyclic = wbc->range_cyclic;
2844 if (wbc->range_cyclic) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002845 index = mapping->writeback_index;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002846 if (index)
2847 cycled = 0;
2848 wbc->range_start = index << PAGE_CACHE_SHIFT;
2849 wbc->range_end = LLONG_MAX;
2850 wbc->range_cyclic = 0;
2851 } else
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002852 index = wbc->range_start >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002853
Theodore Ts'o55138e02009-09-29 13:31:31 -04002854 /*
2855 * This works around two forms of stupidity. The first is in
2856 * the writeback code, which caps the maximum number of pages
2857 * written to be 1024 pages. This is wrong on multiple
2858 * levels; different architectues have a different page size,
2859 * which changes the maximum amount of data which gets
2860 * written. Secondly, 4 megabytes is way too small. XFS
2861 * forces this value to be 16 megabytes by multiplying
2862 * nr_to_write parameter by four, and then relies on its
2863 * allocator to allocate larger extents to make them
2864 * contiguous. Unfortunately this brings us to the second
2865 * stupidity, which is that ext4's mballoc code only allocates
2866 * at most 2048 blocks. So we force contiguous writes up to
2867 * the number of dirty blocks in the inode, or
2868 * sbi->max_writeback_mb_bump whichever is smaller.
2869 */
2870 max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT);
2871 if (!range_cyclic && range_whole)
2872 desired_nr_to_write = wbc->nr_to_write * 8;
2873 else
2874 desired_nr_to_write = ext4_num_dirty_pages(inode, index,
2875 max_pages);
2876 if (desired_nr_to_write > max_pages)
2877 desired_nr_to_write = max_pages;
2878
2879 if (wbc->nr_to_write < desired_nr_to_write) {
2880 nr_to_writebump = desired_nr_to_write - wbc->nr_to_write;
2881 wbc->nr_to_write = desired_nr_to_write;
2882 }
2883
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002884 mpd.wbc = wbc;
2885 mpd.inode = mapping->host;
2886
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002887 /*
2888 * we don't want write_cache_pages to update
2889 * nr_to_write and writeback_index
2890 */
2891 no_nrwrite_index_update = wbc->no_nrwrite_index_update;
2892 wbc->no_nrwrite_index_update = 1;
2893 pages_skipped = wbc->pages_skipped;
2894
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002895retry:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002896 while (!ret && wbc->nr_to_write > 0) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002897
2898 /*
2899 * we insert one extent at a time. So we need
2900 * credit needed for single extent allocation.
2901 * journalled mode is currently not supported
2902 * by delalloc
2903 */
2904 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002905 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002906
Mingming Cao61628a32008-07-11 19:27:31 -04002907 /* start a new transaction*/
2908 handle = ext4_journal_start(inode, needed_blocks);
2909 if (IS_ERR(handle)) {
2910 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002911 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002912 "%ld pages, ino %lu; err %d\n", __func__,
2913 wbc->nr_to_write, inode->i_ino, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002914 goto out_writepages;
2915 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002916
2917 /*
2918 * Now call __mpage_da_writepage to find the next
2919 * contiguous region of logical blocks that need
2920 * blocks to be allocated by ext4. We don't actually
2921 * submit the blocks for I/O here, even though
2922 * write_cache_pages thinks it will, and will set the
2923 * pages as clean for write before calling
2924 * __mpage_da_writepage().
2925 */
2926 mpd.b_size = 0;
2927 mpd.b_state = 0;
2928 mpd.b_blocknr = 0;
2929 mpd.first_page = 0;
2930 mpd.next_page = 0;
2931 mpd.io_done = 0;
2932 mpd.pages_written = 0;
2933 mpd.retval = 0;
2934 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage,
2935 &mpd);
2936 /*
2937 * If we have a contigous extent of pages and we
2938 * haven't done the I/O yet, map the blocks and submit
2939 * them for I/O.
2940 */
2941 if (!mpd.io_done && mpd.next_page != mpd.first_page) {
2942 if (mpage_da_map_blocks(&mpd) == 0)
2943 mpage_da_submit_io(&mpd);
2944 mpd.io_done = 1;
2945 ret = MPAGE_DA_EXTENT_TAIL;
2946 }
Theodore Ts'ob3a3ca82009-08-31 23:13:11 -04002947 trace_ext4_da_write_pages(inode, &mpd);
Theodore Ts'of63e6002009-02-23 16:42:39 -05002948 wbc->nr_to_write -= mpd.pages_written;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002949
Mingming Cao61628a32008-07-11 19:27:31 -04002950 ext4_journal_stop(handle);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002951
Eric Sandeen8f64b322009-02-26 00:57:35 -05002952 if ((mpd.retval == -ENOSPC) && sbi->s_journal) {
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002953 /* commit the transaction which would
2954 * free blocks released in the transaction
2955 * and try again
2956 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002957 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002958 wbc->pages_skipped = pages_skipped;
2959 ret = 0;
2960 } else if (ret == MPAGE_DA_EXTENT_TAIL) {
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002961 /*
2962 * got one extent now try with
2963 * rest of the pages
2964 */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002965 pages_written += mpd.pages_written;
2966 wbc->pages_skipped = pages_skipped;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002967 ret = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002968 io_done = 1;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002969 } else if (wbc->nr_to_write)
Mingming Cao61628a32008-07-11 19:27:31 -04002970 /*
2971 * There is no more writeout needed
2972 * or we requested for a noblocking writeout
2973 * and we found the device congested
2974 */
Mingming Cao61628a32008-07-11 19:27:31 -04002975 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002976 }
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002977 if (!io_done && !cycled) {
2978 cycled = 1;
2979 index = 0;
2980 wbc->range_start = index << PAGE_CACHE_SHIFT;
2981 wbc->range_end = mapping->writeback_index - 1;
2982 goto retry;
2983 }
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002984 if (pages_skipped != wbc->pages_skipped)
Theodore Ts'o16939182009-09-26 17:43:59 -04002985 ext4_msg(inode->i_sb, KERN_CRIT,
2986 "This should not happen leaving %s "
2987 "with nr_to_write = %ld ret = %d\n",
2988 __func__, wbc->nr_to_write, ret);
Mingming Cao61628a32008-07-11 19:27:31 -04002989
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002990 /* Update index */
2991 index += pages_written;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002992 wbc->range_cyclic = range_cyclic;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002993 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2994 /*
2995 * set the writeback_index so that range_cyclic
2996 * mode will write it back later
2997 */
2998 mapping->writeback_index = index;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002999
Mingming Cao61628a32008-07-11 19:27:31 -04003000out_writepages:
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04003001 if (!no_nrwrite_index_update)
3002 wbc->no_nrwrite_index_update = 0;
Theodore Ts'o55138e02009-09-29 13:31:31 -04003003 if (wbc->nr_to_write > nr_to_writebump)
3004 wbc->nr_to_write -= nr_to_writebump;
Theodore Ts'ode89de62009-08-31 17:00:59 -04003005 wbc->range_start = range_start;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003006 trace_ext4_da_writepages_result(inode, wbc, ret, pages_written);
Mingming Cao61628a32008-07-11 19:27:31 -04003007 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003008}
3009
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003010#define FALL_BACK_TO_NONDELALLOC 1
3011static int ext4_nonda_switch(struct super_block *sb)
3012{
3013 s64 free_blocks, dirty_blocks;
3014 struct ext4_sb_info *sbi = EXT4_SB(sb);
3015
3016 /*
3017 * switch to non delalloc mode if we are running low
3018 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08003019 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003020 * accumulated on each CPU without updating global counters
3021 * Delalloc need an accurate free block accounting. So switch
3022 * to non delalloc when we are near to error range.
3023 */
3024 free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
3025 dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyblocks_counter);
3026 if (2 * free_blocks < 3 * dirty_blocks ||
3027 free_blocks < (dirty_blocks + EXT4_FREEBLOCKS_WATERMARK)) {
3028 /*
3029 * free block count is less that 150% of dirty blocks
3030 * or free blocks is less that watermark
3031 */
3032 return 1;
3033 }
3034 return 0;
3035}
3036
Alex Tomas64769242008-07-11 19:27:31 -04003037static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003038 loff_t pos, unsigned len, unsigned flags,
3039 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003040{
Mingming Caod2a17632008-07-14 17:52:37 -04003041 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04003042 struct page *page;
3043 pgoff_t index;
3044 unsigned from, to;
3045 struct inode *inode = mapping->host;
3046 handle_t *handle;
3047
3048 index = pos >> PAGE_CACHE_SHIFT;
3049 from = pos & (PAGE_CACHE_SIZE - 1);
3050 to = from + len;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003051
3052 if (ext4_nonda_switch(inode->i_sb)) {
3053 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
3054 return ext4_write_begin(file, mapping, pos,
3055 len, flags, pagep, fsdata);
3056 }
3057 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003058 trace_ext4_da_write_begin(inode, pos, len, flags);
Mingming Caod2a17632008-07-14 17:52:37 -04003059retry:
Alex Tomas64769242008-07-11 19:27:31 -04003060 /*
3061 * With delayed allocation, we don't log the i_disksize update
3062 * if there is delayed block allocation. But we still need
3063 * to journalling the i_disksize update if writes to the end
3064 * of file which has an already mapped buffer.
3065 */
3066 handle = ext4_journal_start(inode, 1);
3067 if (IS_ERR(handle)) {
3068 ret = PTR_ERR(handle);
3069 goto out;
3070 }
Jan Karaebd36102009-02-22 21:09:59 -05003071 /* We cannot recurse into the filesystem as the transaction is already
3072 * started */
3073 flags |= AOP_FLAG_NOFS;
Alex Tomas64769242008-07-11 19:27:31 -04003074
Nick Piggin54566b22009-01-04 12:00:53 -08003075 page = grab_cache_page_write_begin(mapping, index, flags);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003076 if (!page) {
3077 ext4_journal_stop(handle);
3078 ret = -ENOMEM;
3079 goto out;
3080 }
Alex Tomas64769242008-07-11 19:27:31 -04003081 *pagep = page;
3082
3083 ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
Theodore Ts'ob920c752009-05-14 00:54:29 -04003084 ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04003085 if (ret < 0) {
3086 unlock_page(page);
3087 ext4_journal_stop(handle);
3088 page_cache_release(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003089 /*
3090 * block_write_begin may have instantiated a few blocks
3091 * outside i_size. Trim these off again. Don't need
3092 * i_size_read because we hold i_mutex.
3093 */
3094 if (pos + len > inode->i_size)
Jan Karaffacfa72009-07-13 16:22:22 -04003095 ext4_truncate(inode);
Alex Tomas64769242008-07-11 19:27:31 -04003096 }
3097
Mingming Caod2a17632008-07-14 17:52:37 -04003098 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3099 goto retry;
Alex Tomas64769242008-07-11 19:27:31 -04003100out:
3101 return ret;
3102}
3103
Mingming Cao632eaea2008-07-11 19:27:31 -04003104/*
3105 * Check if we should update i_disksize
3106 * when write to the end of file but not require block allocation
3107 */
3108static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003109 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003110{
3111 struct buffer_head *bh;
3112 struct inode *inode = page->mapping->host;
3113 unsigned int idx;
3114 int i;
3115
3116 bh = page_buffers(page);
3117 idx = offset >> inode->i_blkbits;
3118
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003119 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003120 bh = bh->b_this_page;
3121
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003122 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003123 return 0;
3124 return 1;
3125}
3126
Alex Tomas64769242008-07-11 19:27:31 -04003127static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003128 struct address_space *mapping,
3129 loff_t pos, unsigned len, unsigned copied,
3130 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003131{
3132 struct inode *inode = mapping->host;
3133 int ret = 0, ret2;
3134 handle_t *handle = ext4_journal_current_handle();
3135 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003136 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003137 int write_mode = (int)(unsigned long)fsdata;
3138
3139 if (write_mode == FALL_BACK_TO_NONDELALLOC) {
3140 if (ext4_should_order_data(inode)) {
3141 return ext4_ordered_write_end(file, mapping, pos,
3142 len, copied, page, fsdata);
3143 } else if (ext4_should_writeback_data(inode)) {
3144 return ext4_writeback_write_end(file, mapping, pos,
3145 len, copied, page, fsdata);
3146 } else {
3147 BUG();
3148 }
3149 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003150
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003151 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04003152 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003153 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003154
3155 /*
3156 * generic_write_end() will run mark_inode_dirty() if i_size
3157 * changes. So let's piggyback the i_disksize mark_inode_dirty
3158 * into that.
3159 */
3160
3161 new_i_size = pos + copied;
Mingming Cao632eaea2008-07-11 19:27:31 -04003162 if (new_i_size > EXT4_I(inode)->i_disksize) {
3163 if (ext4_da_should_update_i_disksize(page, end)) {
3164 down_write(&EXT4_I(inode)->i_data_sem);
3165 if (new_i_size > EXT4_I(inode)->i_disksize) {
3166 /*
3167 * Updating i_disksize when extending file
3168 * without needing block allocation
3169 */
3170 if (ext4_should_order_data(inode))
3171 ret = ext4_jbd2_file_inode(handle,
3172 inode);
Alex Tomas64769242008-07-11 19:27:31 -04003173
Mingming Cao632eaea2008-07-11 19:27:31 -04003174 EXT4_I(inode)->i_disksize = new_i_size;
3175 }
3176 up_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003177 /* We need to mark inode dirty even if
3178 * new_i_size is less that inode->i_size
3179 * bu greater than i_disksize.(hint delalloc)
3180 */
3181 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003182 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003183 }
Alex Tomas64769242008-07-11 19:27:31 -04003184 ret2 = generic_write_end(file, mapping, pos, len, copied,
3185 page, fsdata);
3186 copied = ret2;
3187 if (ret2 < 0)
3188 ret = ret2;
3189 ret2 = ext4_journal_stop(handle);
3190 if (!ret)
3191 ret = ret2;
3192
3193 return ret ? ret : copied;
3194}
3195
3196static void ext4_da_invalidatepage(struct page *page, unsigned long offset)
3197{
Alex Tomas64769242008-07-11 19:27:31 -04003198 /*
3199 * Drop reserved blocks
3200 */
3201 BUG_ON(!PageLocked(page));
3202 if (!page_has_buffers(page))
3203 goto out;
3204
Mingming Caod2a17632008-07-14 17:52:37 -04003205 ext4_da_page_release_reservation(page, offset);
Alex Tomas64769242008-07-11 19:27:31 -04003206
3207out:
3208 ext4_invalidatepage(page, offset);
3209
3210 return;
3211}
3212
Theodore Ts'occd25062009-02-26 01:04:07 -05003213/*
3214 * Force all delayed allocation blocks to be allocated for a given inode.
3215 */
3216int ext4_alloc_da_blocks(struct inode *inode)
3217{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003218 trace_ext4_alloc_da_blocks(inode);
3219
Theodore Ts'occd25062009-02-26 01:04:07 -05003220 if (!EXT4_I(inode)->i_reserved_data_blocks &&
3221 !EXT4_I(inode)->i_reserved_meta_blocks)
3222 return 0;
3223
3224 /*
3225 * We do something simple for now. The filemap_flush() will
3226 * also start triggering a write of the data blocks, which is
3227 * not strictly speaking necessary (and for users of
3228 * laptop_mode, not even desirable). However, to do otherwise
3229 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003230 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003231 * ext4_da_writepages() ->
3232 * write_cache_pages() ---> (via passed in callback function)
3233 * __mpage_da_writepage() -->
3234 * mpage_add_bh_to_extent()
3235 * mpage_da_map_blocks()
3236 *
3237 * The problem is that write_cache_pages(), located in
3238 * mm/page-writeback.c, marks pages clean in preparation for
3239 * doing I/O, which is not desirable if we're not planning on
3240 * doing I/O at all.
3241 *
3242 * We could call write_cache_pages(), and then redirty all of
3243 * the pages by calling redirty_page_for_writeback() but that
3244 * would be ugly in the extreme. So instead we would need to
3245 * replicate parts of the code in the above functions,
3246 * simplifying them becuase we wouldn't actually intend to
3247 * write out the pages, but rather only collect contiguous
3248 * logical block extents, call the multi-block allocator, and
3249 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003250 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003251 * For now, though, we'll cheat by calling filemap_flush(),
3252 * which will map the blocks, and start the I/O, but not
3253 * actually wait for the I/O to complete.
3254 */
3255 return filemap_flush(inode->i_mapping);
3256}
Alex Tomas64769242008-07-11 19:27:31 -04003257
3258/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003259 * bmap() is special. It gets used by applications such as lilo and by
3260 * the swapper to find the on-disk block of a specific piece of data.
3261 *
3262 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003263 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264 * filesystem and enables swap, then they may get a nasty shock when the
3265 * data getting swapped to that swapfile suddenly gets overwritten by
3266 * the original zero's written out previously to the journal and
3267 * awaiting writeback in the kernel's buffer cache.
3268 *
3269 * So, if we see any bmap calls here on a modified, data-journaled file,
3270 * take extra steps to flush any blocks which might be in the cache.
3271 */
Mingming Cao617ba132006-10-11 01:20:53 -07003272static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003273{
3274 struct inode *inode = mapping->host;
3275 journal_t *journal;
3276 int err;
3277
Alex Tomas64769242008-07-11 19:27:31 -04003278 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3279 test_opt(inode->i_sb, DELALLOC)) {
3280 /*
3281 * With delalloc we want to sync the file
3282 * so that we can make sure we allocate
3283 * blocks for file
3284 */
3285 filemap_write_and_wait(mapping);
3286 }
3287
Frank Mayhar03901312009-01-07 00:06:22 -05003288 if (EXT4_JOURNAL(inode) && EXT4_I(inode)->i_state & EXT4_STATE_JDATA) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289 /*
3290 * This is a REALLY heavyweight approach, but the use of
3291 * bmap on dirty files is expected to be extremely rare:
3292 * only if we run lilo or swapon on a freshly made file
3293 * do we expect this to happen.
3294 *
3295 * (bmap requires CAP_SYS_RAWIO so this does not
3296 * represent an unprivileged user DOS attack --- we'd be
3297 * in trouble if mortal users could trigger this path at
3298 * will.)
3299 *
Mingming Cao617ba132006-10-11 01:20:53 -07003300 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003301 * regular files. If somebody wants to bmap a directory
3302 * or symlink and gets confused because the buffer
3303 * hasn't yet been flushed to disk, they deserve
3304 * everything they get.
3305 */
3306
Mingming Cao617ba132006-10-11 01:20:53 -07003307 EXT4_I(inode)->i_state &= ~EXT4_STATE_JDATA;
3308 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003309 jbd2_journal_lock_updates(journal);
3310 err = jbd2_journal_flush(journal);
3311 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003312
3313 if (err)
3314 return 0;
3315 }
3316
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003317 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003318}
3319
Mingming Cao617ba132006-10-11 01:20:53 -07003320static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003321{
Mingming Cao617ba132006-10-11 01:20:53 -07003322 return mpage_readpage(page, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003323}
3324
3325static int
Mingming Cao617ba132006-10-11 01:20:53 -07003326ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003327 struct list_head *pages, unsigned nr_pages)
3328{
Mingming Cao617ba132006-10-11 01:20:53 -07003329 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003330}
3331
Mingming Cao617ba132006-10-11 01:20:53 -07003332static void ext4_invalidatepage(struct page *page, unsigned long offset)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003333{
Mingming Cao617ba132006-10-11 01:20:53 -07003334 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003335
3336 /*
3337 * If it's a full truncate we just forget about the pending dirtying
3338 */
3339 if (offset == 0)
3340 ClearPageChecked(page);
3341
Frank Mayhar03901312009-01-07 00:06:22 -05003342 if (journal)
3343 jbd2_journal_invalidatepage(journal, page, offset);
3344 else
3345 block_invalidatepage(page, offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003346}
3347
Mingming Cao617ba132006-10-11 01:20:53 -07003348static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003349{
Mingming Cao617ba132006-10-11 01:20:53 -07003350 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003351
3352 WARN_ON(PageChecked(page));
3353 if (!page_has_buffers(page))
3354 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003355 if (journal)
3356 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3357 else
3358 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003359}
3360
3361/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003362 * O_DIRECT for ext3 (or indirect map) based files
3363 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003364 * If the O_DIRECT write will extend the file then add this inode to the
3365 * orphan list. So recovery will truncate it back to the original size
3366 * if the machine crashes during the write.
3367 *
3368 * If the O_DIRECT write is intantiating holes inside i_size and the machine
Jan Kara7fb54092008-02-10 01:08:38 -05003369 * crashes then stale disk data _may_ be exposed inside the file. But current
3370 * VFS code falls back into buffered path in that case so we are safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003371 */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003372static ssize_t ext4_ind_direct_IO(int rw, struct kiocb *iocb,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003373 const struct iovec *iov, loff_t offset,
3374 unsigned long nr_segs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003375{
3376 struct file *file = iocb->ki_filp;
3377 struct inode *inode = file->f_mapping->host;
Mingming Cao617ba132006-10-11 01:20:53 -07003378 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003379 handle_t *handle;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003380 ssize_t ret;
3381 int orphan = 0;
3382 size_t count = iov_length(iov, nr_segs);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003383 int retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003384
3385 if (rw == WRITE) {
3386 loff_t final_size = offset + count;
3387
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003388 if (final_size > inode->i_size) {
Jan Kara7fb54092008-02-10 01:08:38 -05003389 /* Credits for sb + inode write */
3390 handle = ext4_journal_start(inode, 2);
3391 if (IS_ERR(handle)) {
3392 ret = PTR_ERR(handle);
3393 goto out;
3394 }
Mingming Cao617ba132006-10-11 01:20:53 -07003395 ret = ext4_orphan_add(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003396 if (ret) {
3397 ext4_journal_stop(handle);
3398 goto out;
3399 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003400 orphan = 1;
3401 ei->i_disksize = inode->i_size;
Jan Kara7fb54092008-02-10 01:08:38 -05003402 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003403 }
3404 }
3405
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003406retry:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003407 ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3408 offset, nr_segs,
Mingming Cao617ba132006-10-11 01:20:53 -07003409 ext4_get_block, NULL);
Eric Sandeenfbbf6942009-10-02 21:20:55 -04003410 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3411 goto retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003412
Jan Kara7fb54092008-02-10 01:08:38 -05003413 if (orphan) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003414 int err;
3415
Jan Kara7fb54092008-02-10 01:08:38 -05003416 /* Credits for sb + inode write */
3417 handle = ext4_journal_start(inode, 2);
3418 if (IS_ERR(handle)) {
3419 /* This is really bad luck. We've written the data
3420 * but cannot extend i_size. Bail out and pretend
3421 * the write failed... */
3422 ret = PTR_ERR(handle);
3423 goto out;
3424 }
3425 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07003426 ext4_orphan_del(handle, inode);
Jan Kara7fb54092008-02-10 01:08:38 -05003427 if (ret > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003428 loff_t end = offset + ret;
3429 if (end > inode->i_size) {
3430 ei->i_disksize = end;
3431 i_size_write(inode, end);
3432 /*
3433 * We're going to return a positive `ret'
3434 * here due to non-zero-length I/O, so there's
3435 * no way of reporting error returns from
Mingming Cao617ba132006-10-11 01:20:53 -07003436 * ext4_mark_inode_dirty() to userspace. So
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003437 * ignore it.
3438 */
Mingming Cao617ba132006-10-11 01:20:53 -07003439 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003440 }
3441 }
Mingming Cao617ba132006-10-11 01:20:53 -07003442 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003443 if (ret == 0)
3444 ret = err;
3445 }
3446out:
3447 return ret;
3448}
3449
Mingming Cao4c0425f2009-09-28 15:48:41 -04003450static int ext4_get_block_dio_write(struct inode *inode, sector_t iblock,
3451 struct buffer_head *bh_result, int create)
3452{
3453 handle_t *handle = NULL;
3454 int ret = 0;
3455 unsigned max_blocks = bh_result->b_size >> inode->i_blkbits;
3456 int dio_credits;
3457
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003458 ext4_debug("ext4_get_block_dio_write: inode %lu, create flag %d\n",
3459 inode->i_ino, create);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003460 /*
3461 * DIO VFS code passes create = 0 flag for write to
3462 * the middle of file. It does this to avoid block
3463 * allocation for holes, to prevent expose stale data
3464 * out when there is parallel buffered read (which does
3465 * not hold the i_mutex lock) while direct IO write has
3466 * not completed. DIO request on holes finally falls back
3467 * to buffered IO for this reason.
3468 *
3469 * For ext4 extent based file, since we support fallocate,
3470 * new allocated extent as uninitialized, for holes, we
3471 * could fallocate blocks for holes, thus parallel
3472 * buffered IO read will zero out the page when read on
3473 * a hole while parallel DIO write to the hole has not completed.
3474 *
3475 * when we come here, we know it's a direct IO write to
3476 * to the middle of file (<i_size)
3477 * so it's safe to override the create flag from VFS.
3478 */
3479 create = EXT4_GET_BLOCKS_DIO_CREATE_EXT;
3480
3481 if (max_blocks > DIO_MAX_BLOCKS)
3482 max_blocks = DIO_MAX_BLOCKS;
3483 dio_credits = ext4_chunk_trans_blocks(inode, max_blocks);
3484 handle = ext4_journal_start(inode, dio_credits);
3485 if (IS_ERR(handle)) {
3486 ret = PTR_ERR(handle);
3487 goto out;
3488 }
3489 ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result,
3490 create);
3491 if (ret > 0) {
3492 bh_result->b_size = (ret << inode->i_blkbits);
3493 ret = 0;
3494 }
3495 ext4_journal_stop(handle);
3496out:
3497 return ret;
3498}
3499
Mingming Cao4c0425f2009-09-28 15:48:41 -04003500static void ext4_free_io_end(ext4_io_end_t *io)
3501{
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003502 BUG_ON(!io);
3503 iput(io->inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003504 kfree(io);
3505}
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003506static void dump_aio_dio_list(struct inode * inode)
3507{
3508#ifdef EXT4_DEBUG
3509 struct list_head *cur, *before, *after;
3510 ext4_io_end_t *io, *io0, *io1;
3511
3512 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3513 ext4_debug("inode %lu aio dio list is empty\n", inode->i_ino);
3514 return;
3515 }
3516
3517 ext4_debug("Dump inode %lu aio_dio_completed_IO list \n", inode->i_ino);
3518 list_for_each_entry(io, &EXT4_I(inode)->i_aio_dio_complete_list, list){
3519 cur = &io->list;
3520 before = cur->prev;
3521 io0 = container_of(before, ext4_io_end_t, list);
3522 after = cur->next;
3523 io1 = container_of(after, ext4_io_end_t, list);
3524
3525 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
3526 io, inode->i_ino, io0, io1);
3527 }
3528#endif
3529}
Mingming Cao4c0425f2009-09-28 15:48:41 -04003530
3531/*
Mingming Cao4c0425f2009-09-28 15:48:41 -04003532 * check a range of space and convert unwritten extents to written.
3533 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003534static int ext4_end_aio_dio_nolock(ext4_io_end_t *io)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003535{
Mingming Cao4c0425f2009-09-28 15:48:41 -04003536 struct inode *inode = io->inode;
3537 loff_t offset = io->offset;
3538 size_t size = io->size;
3539 int ret = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003540
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003541 ext4_debug("end_aio_dio_onlock: io 0x%p from inode %lu,list->next 0x%p,"
3542 "list->prev 0x%p\n",
3543 io, inode->i_ino, io->list.next, io->list.prev);
3544
3545 if (list_empty(&io->list))
3546 return ret;
3547
3548 if (io->flag != DIO_AIO_UNWRITTEN)
3549 return ret;
3550
Mingming Cao4c0425f2009-09-28 15:48:41 -04003551 if (offset + size <= i_size_read(inode))
3552 ret = ext4_convert_unwritten_extents(inode, offset, size);
3553
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003554 if (ret < 0) {
Mingming Cao4c0425f2009-09-28 15:48:41 -04003555 printk(KERN_EMERG "%s: failed to convert unwritten"
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003556 "extents to written extents, error is %d"
3557 " io is still on inode %lu aio dio list\n",
3558 __func__, ret, inode->i_ino);
3559 return ret;
3560 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003561
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003562 /* clear the DIO AIO unwritten flag */
3563 io->flag = 0;
3564 return ret;
3565}
3566/*
3567 * work on completed aio dio IO, to convert unwritten extents to extents
3568 */
3569static void ext4_end_aio_dio_work(struct work_struct *work)
3570{
3571 ext4_io_end_t *io = container_of(work, ext4_io_end_t, work);
3572 struct inode *inode = io->inode;
3573 int ret = 0;
3574
3575 mutex_lock(&inode->i_mutex);
3576 ret = ext4_end_aio_dio_nolock(io);
3577 if (ret >= 0) {
3578 if (!list_empty(&io->list))
3579 list_del_init(&io->list);
3580 ext4_free_io_end(io);
3581 }
3582 mutex_unlock(&inode->i_mutex);
3583}
3584/*
3585 * This function is called from ext4_sync_file().
3586 *
3587 * When AIO DIO IO is completed, the work to convert unwritten
3588 * extents to written is queued on workqueue but may not get immediately
3589 * scheduled. When fsync is called, we need to ensure the
3590 * conversion is complete before fsync returns.
3591 * The inode keeps track of a list of completed AIO from DIO path
3592 * that might needs to do the conversion. This function walks through
3593 * the list and convert the related unwritten extents to written.
3594 */
3595int flush_aio_dio_completed_IO(struct inode *inode)
3596{
3597 ext4_io_end_t *io;
3598 int ret = 0;
3599 int ret2 = 0;
3600
3601 if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list))
3602 return ret;
3603
3604 dump_aio_dio_list(inode);
3605 while (!list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){
3606 io = list_entry(EXT4_I(inode)->i_aio_dio_complete_list.next,
3607 ext4_io_end_t, list);
3608 /*
3609 * Calling ext4_end_aio_dio_nolock() to convert completed
3610 * IO to written.
3611 *
3612 * When ext4_sync_file() is called, run_queue() may already
3613 * about to flush the work corresponding to this io structure.
3614 * It will be upset if it founds the io structure related
3615 * to the work-to-be schedule is freed.
3616 *
3617 * Thus we need to keep the io structure still valid here after
3618 * convertion finished. The io structure has a flag to
3619 * avoid double converting from both fsync and background work
3620 * queue work.
3621 */
3622 ret = ext4_end_aio_dio_nolock(io);
3623 if (ret < 0)
3624 ret2 = ret;
3625 else
3626 list_del_init(&io->list);
3627 }
3628 return (ret2 < 0) ? ret2 : 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003629}
3630
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003631static ext4_io_end_t *ext4_init_io_end (struct inode *inode)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003632{
3633 ext4_io_end_t *io = NULL;
3634
3635 io = kmalloc(sizeof(*io), GFP_NOFS);
3636
3637 if (io) {
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003638 igrab(inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003639 io->inode = inode;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003640 io->flag = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003641 io->offset = 0;
3642 io->size = 0;
3643 io->error = 0;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003644 INIT_WORK(&io->work, ext4_end_aio_dio_work);
3645 INIT_LIST_HEAD(&io->list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003646 }
3647
3648 return io;
3649}
3650
3651static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
3652 ssize_t size, void *private)
3653{
3654 ext4_io_end_t *io_end = iocb->private;
3655 struct workqueue_struct *wq;
3656
Mingming4b70df12009-11-03 14:44:54 -05003657 /* if not async direct IO or dio with 0 bytes write, just return */
3658 if (!io_end || !size)
3659 return;
3660
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003661 ext_debug("ext4_end_io_dio(): io_end 0x%p"
3662 "for inode %lu, iocb 0x%p, offset %llu, size %llu\n",
3663 iocb->private, io_end->inode->i_ino, iocb, offset,
3664 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003665
3666 /* if not aio dio with unwritten extents, just free io and return */
3667 if (io_end->flag != DIO_AIO_UNWRITTEN){
3668 ext4_free_io_end(io_end);
3669 iocb->private = NULL;
3670 return;
3671 }
3672
Mingming Cao4c0425f2009-09-28 15:48:41 -04003673 io_end->offset = offset;
3674 io_end->size = size;
3675 wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
3676
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003677 /* queue the work to convert unwritten extents to written */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003678 queue_work(wq, &io_end->work);
3679
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003680 /* Add the io_end to per-inode completed aio dio list*/
3681 list_add_tail(&io_end->list,
3682 &EXT4_I(io_end->inode)->i_aio_dio_complete_list);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003683 iocb->private = NULL;
3684}
3685/*
3686 * For ext4 extent files, ext4 will do direct-io write to holes,
3687 * preallocated extents, and those write extend the file, no need to
3688 * fall back to buffered IO.
3689 *
3690 * For holes, we fallocate those blocks, mark them as unintialized
3691 * If those blocks were preallocated, we mark sure they are splited, but
3692 * still keep the range to write as unintialized.
3693 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003694 * The unwrritten extents will be converted to written when DIO is completed.
3695 * For async direct IO, since the IO may still pending when return, we
3696 * set up an end_io call back function, which will do the convertion
3697 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003698 *
3699 * If the O_DIRECT write will extend the file then add this inode to the
3700 * orphan list. So recovery will truncate it back to the original size
3701 * if the machine crashes during the write.
3702 *
3703 */
3704static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
3705 const struct iovec *iov, loff_t offset,
3706 unsigned long nr_segs)
3707{
3708 struct file *file = iocb->ki_filp;
3709 struct inode *inode = file->f_mapping->host;
3710 ssize_t ret;
3711 size_t count = iov_length(iov, nr_segs);
3712
3713 loff_t final_size = offset + count;
3714 if (rw == WRITE && final_size <= inode->i_size) {
3715 /*
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003716 * We could direct write to holes and fallocate.
3717 *
3718 * Allocated blocks to fill the hole are marked as uninitialized
Mingming Cao4c0425f2009-09-28 15:48:41 -04003719 * to prevent paralel buffered read to expose the stale data
3720 * before DIO complete the data IO.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003721 *
3722 * As to previously fallocated extents, ext4 get_block
Mingming Cao4c0425f2009-09-28 15:48:41 -04003723 * will just simply mark the buffer mapped but still
3724 * keep the extents uninitialized.
3725 *
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003726 * for non AIO case, we will convert those unwritten extents
3727 * to written after return back from blockdev_direct_IO.
3728 *
3729 * for async DIO, the conversion needs to be defered when
3730 * the IO is completed. The ext4 end_io callback function
3731 * will be called to take care of the conversion work.
3732 * Here for async case, we allocate an io_end structure to
3733 * hook to the iocb.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003734 */
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003735 iocb->private = NULL;
3736 EXT4_I(inode)->cur_aio_dio = NULL;
3737 if (!is_sync_kiocb(iocb)) {
3738 iocb->private = ext4_init_io_end(inode);
3739 if (!iocb->private)
3740 return -ENOMEM;
3741 /*
3742 * we save the io structure for current async
3743 * direct IO, so that later ext4_get_blocks()
3744 * could flag the io structure whether there
3745 * is a unwritten extents needs to be converted
3746 * when IO is completed.
3747 */
3748 EXT4_I(inode)->cur_aio_dio = iocb->private;
3749 }
3750
Mingming Cao4c0425f2009-09-28 15:48:41 -04003751 ret = blockdev_direct_IO(rw, iocb, inode,
3752 inode->i_sb->s_bdev, iov,
3753 offset, nr_segs,
3754 ext4_get_block_dio_write,
3755 ext4_end_io_dio);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003756 if (iocb->private)
3757 EXT4_I(inode)->cur_aio_dio = NULL;
3758 /*
3759 * The io_end structure takes a reference to the inode,
3760 * that structure needs to be destroyed and the
3761 * reference to the inode need to be dropped, when IO is
3762 * complete, even with 0 byte write, or failed.
3763 *
3764 * In the successful AIO DIO case, the io_end structure will be
3765 * desctroyed and the reference to the inode will be dropped
3766 * after the end_io call back function is called.
3767 *
3768 * In the case there is 0 byte write, or error case, since
3769 * VFS direct IO won't invoke the end_io call back function,
3770 * we need to free the end_io structure here.
3771 */
3772 if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) {
3773 ext4_free_io_end(iocb->private);
3774 iocb->private = NULL;
Mingming5f524952009-11-10 10:48:04 -05003775 } else if (ret > 0 && (EXT4_I(inode)->i_state &
3776 EXT4_STATE_DIO_UNWRITTEN)) {
Mingming109f5562009-11-10 10:48:08 -05003777 int err;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003778 /*
3779 * for non AIO case, since the IO is already
3780 * completed, we could do the convertion right here
3781 */
Mingming109f5562009-11-10 10:48:08 -05003782 err = ext4_convert_unwritten_extents(inode,
3783 offset, ret);
3784 if (err < 0)
3785 ret = err;
Mingming5f524952009-11-10 10:48:04 -05003786 EXT4_I(inode)->i_state &= ~EXT4_STATE_DIO_UNWRITTEN;
Mingming109f5562009-11-10 10:48:08 -05003787 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003788 return ret;
3789 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003790
3791 /* for write the the end of file case, we fall back to old way */
Mingming Cao4c0425f2009-09-28 15:48:41 -04003792 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3793}
3794
3795static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3796 const struct iovec *iov, loff_t offset,
3797 unsigned long nr_segs)
3798{
3799 struct file *file = iocb->ki_filp;
3800 struct inode *inode = file->f_mapping->host;
3801
3802 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)
3803 return ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
3804
3805 return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3806}
3807
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003808/*
Mingming Cao617ba132006-10-11 01:20:53 -07003809 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003810 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3811 * much here because ->set_page_dirty is called under VFS locks. The page is
3812 * not necessarily locked.
3813 *
3814 * We cannot just dirty the page and leave attached buffers clean, because the
3815 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3816 * or jbddirty because all the journalling code will explode.
3817 *
3818 * So what we do is to mark the page "pending dirty" and next time writepage
3819 * is called, propagate that into the buffers appropriately.
3820 */
Mingming Cao617ba132006-10-11 01:20:53 -07003821static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003822{
3823 SetPageChecked(page);
3824 return __set_page_dirty_nobuffers(page);
3825}
3826
Mingming Cao617ba132006-10-11 01:20:53 -07003827static const struct address_space_operations ext4_ordered_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003828 .readpage = ext4_readpage,
3829 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003830 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003831 .sync_page = block_sync_page,
3832 .write_begin = ext4_write_begin,
3833 .write_end = ext4_ordered_write_end,
3834 .bmap = ext4_bmap,
3835 .invalidatepage = ext4_invalidatepage,
3836 .releasepage = ext4_releasepage,
3837 .direct_IO = ext4_direct_IO,
3838 .migratepage = buffer_migrate_page,
3839 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003840 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003841};
3842
Mingming Cao617ba132006-10-11 01:20:53 -07003843static const struct address_space_operations ext4_writeback_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003844 .readpage = ext4_readpage,
3845 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003846 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003847 .sync_page = block_sync_page,
3848 .write_begin = ext4_write_begin,
3849 .write_end = ext4_writeback_write_end,
3850 .bmap = ext4_bmap,
3851 .invalidatepage = ext4_invalidatepage,
3852 .releasepage = ext4_releasepage,
3853 .direct_IO = ext4_direct_IO,
3854 .migratepage = buffer_migrate_page,
3855 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003856 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003857};
3858
Mingming Cao617ba132006-10-11 01:20:53 -07003859static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003860 .readpage = ext4_readpage,
3861 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003862 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003863 .sync_page = block_sync_page,
3864 .write_begin = ext4_write_begin,
3865 .write_end = ext4_journalled_write_end,
3866 .set_page_dirty = ext4_journalled_set_page_dirty,
3867 .bmap = ext4_bmap,
3868 .invalidatepage = ext4_invalidatepage,
3869 .releasepage = ext4_releasepage,
3870 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003871 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003872};
3873
Alex Tomas64769242008-07-11 19:27:31 -04003874static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003875 .readpage = ext4_readpage,
3876 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003877 .writepage = ext4_writepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003878 .writepages = ext4_da_writepages,
3879 .sync_page = block_sync_page,
3880 .write_begin = ext4_da_write_begin,
3881 .write_end = ext4_da_write_end,
3882 .bmap = ext4_bmap,
3883 .invalidatepage = ext4_da_invalidatepage,
3884 .releasepage = ext4_releasepage,
3885 .direct_IO = ext4_direct_IO,
3886 .migratepage = buffer_migrate_page,
3887 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003888 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003889};
3890
Mingming Cao617ba132006-10-11 01:20:53 -07003891void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003892{
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04003893 if (ext4_should_order_data(inode) &&
3894 test_opt(inode->i_sb, DELALLOC))
3895 inode->i_mapping->a_ops = &ext4_da_aops;
3896 else if (ext4_should_order_data(inode))
Mingming Cao617ba132006-10-11 01:20:53 -07003897 inode->i_mapping->a_ops = &ext4_ordered_aops;
Alex Tomas64769242008-07-11 19:27:31 -04003898 else if (ext4_should_writeback_data(inode) &&
3899 test_opt(inode->i_sb, DELALLOC))
3900 inode->i_mapping->a_ops = &ext4_da_aops;
Mingming Cao617ba132006-10-11 01:20:53 -07003901 else if (ext4_should_writeback_data(inode))
3902 inode->i_mapping->a_ops = &ext4_writeback_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003903 else
Mingming Cao617ba132006-10-11 01:20:53 -07003904 inode->i_mapping->a_ops = &ext4_journalled_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003905}
3906
3907/*
Mingming Cao617ba132006-10-11 01:20:53 -07003908 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003909 * up to the end of the block which corresponds to `from'.
3910 * This required during truncate. We need to physically zero the tail end
3911 * of that block so it doesn't yield old data if the file is later grown.
3912 */
Jan Karacf108bc2008-07-11 19:27:31 -04003913int ext4_block_truncate_page(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003914 struct address_space *mapping, loff_t from)
3915{
Mingming Cao617ba132006-10-11 01:20:53 -07003916 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003917 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003918 unsigned blocksize, length, pos;
3919 ext4_lblk_t iblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003920 struct inode *inode = mapping->host;
3921 struct buffer_head *bh;
Jan Karacf108bc2008-07-11 19:27:31 -04003922 struct page *page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003923 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003924
Theodore Ts'of4a01012009-07-05 22:08:16 -04003925 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3926 mapping_gfp_mask(mapping) & ~__GFP_FS);
Jan Karacf108bc2008-07-11 19:27:31 -04003927 if (!page)
3928 return -EINVAL;
3929
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003930 blocksize = inode->i_sb->s_blocksize;
3931 length = blocksize - (offset & (blocksize - 1));
3932 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3933
3934 /*
3935 * For "nobh" option, we can only work if we don't need to
3936 * read-in the page - otherwise we create buffers to do the IO.
3937 */
3938 if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) &&
Mingming Cao617ba132006-10-11 01:20:53 -07003939 ext4_should_writeback_data(inode) && PageUptodate(page)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003940 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003941 set_page_dirty(page);
3942 goto unlock;
3943 }
3944
3945 if (!page_has_buffers(page))
3946 create_empty_buffers(page, blocksize, 0);
3947
3948 /* Find the buffer that contains "offset" */
3949 bh = page_buffers(page);
3950 pos = blocksize;
3951 while (offset >= pos) {
3952 bh = bh->b_this_page;
3953 iblock++;
3954 pos += blocksize;
3955 }
3956
3957 err = 0;
3958 if (buffer_freed(bh)) {
3959 BUFFER_TRACE(bh, "freed: skip");
3960 goto unlock;
3961 }
3962
3963 if (!buffer_mapped(bh)) {
3964 BUFFER_TRACE(bh, "unmapped");
Mingming Cao617ba132006-10-11 01:20:53 -07003965 ext4_get_block(inode, iblock, bh, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003966 /* unmapped? It's a hole - nothing to do */
3967 if (!buffer_mapped(bh)) {
3968 BUFFER_TRACE(bh, "still unmapped");
3969 goto unlock;
3970 }
3971 }
3972
3973 /* Ok, it's mapped. Make sure it's up-to-date */
3974 if (PageUptodate(page))
3975 set_buffer_uptodate(bh);
3976
3977 if (!buffer_uptodate(bh)) {
3978 err = -EIO;
3979 ll_rw_block(READ, 1, &bh);
3980 wait_on_buffer(bh);
3981 /* Uhhuh. Read error. Complain and punt. */
3982 if (!buffer_uptodate(bh))
3983 goto unlock;
3984 }
3985
Mingming Cao617ba132006-10-11 01:20:53 -07003986 if (ext4_should_journal_data(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003987 BUFFER_TRACE(bh, "get write access");
Mingming Cao617ba132006-10-11 01:20:53 -07003988 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003989 if (err)
3990 goto unlock;
3991 }
3992
Christoph Lametereebd2aa2008-02-04 22:28:29 -08003993 zero_user(page, offset, length);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003994
3995 BUFFER_TRACE(bh, "zeroed end of block");
3996
3997 err = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003998 if (ext4_should_journal_data(inode)) {
Frank Mayhar03901312009-01-07 00:06:22 -05003999 err = ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004000 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004001 if (ext4_should_order_data(inode))
Jan Kara678aaf42008-07-11 19:27:31 -04004002 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004003 mark_buffer_dirty(bh);
4004 }
4005
4006unlock:
4007 unlock_page(page);
4008 page_cache_release(page);
4009 return err;
4010}
4011
4012/*
4013 * Probably it should be a library function... search for first non-zero word
4014 * or memcmp with zero_page, whatever is better for particular architecture.
4015 * Linus?
4016 */
4017static inline int all_zeroes(__le32 *p, __le32 *q)
4018{
4019 while (p < q)
4020 if (*p++)
4021 return 0;
4022 return 1;
4023}
4024
4025/**
Mingming Cao617ba132006-10-11 01:20:53 -07004026 * ext4_find_shared - find the indirect blocks for partial truncation.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004027 * @inode: inode in question
4028 * @depth: depth of the affected branch
Mingming Cao617ba132006-10-11 01:20:53 -07004029 * @offsets: offsets of pointers in that branch (see ext4_block_to_path)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004030 * @chain: place to store the pointers to partial indirect blocks
4031 * @top: place to the (detached) top of branch
4032 *
Mingming Cao617ba132006-10-11 01:20:53 -07004033 * This is a helper function used by ext4_truncate().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004034 *
4035 * When we do truncate() we may have to clean the ends of several
4036 * indirect blocks but leave the blocks themselves alive. Block is
4037 * partially truncated if some data below the new i_size is refered
4038 * from it (and it is on the path to the first completely truncated
4039 * data block, indeed). We have to free the top of that path along
4040 * with everything to the right of the path. Since no allocation
Mingming Cao617ba132006-10-11 01:20:53 -07004041 * past the truncation point is possible until ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004042 * finishes, we may safely do the latter, but top of branch may
4043 * require special attention - pageout below the truncation point
4044 * might try to populate it.
4045 *
4046 * We atomically detach the top of branch from the tree, store the
4047 * block number of its root in *@top, pointers to buffer_heads of
4048 * partially truncated blocks - in @chain[].bh and pointers to
4049 * their last elements that should not be removed - in
4050 * @chain[].p. Return value is the pointer to last filled element
4051 * of @chain.
4052 *
4053 * The work left to caller to do the actual freeing of subtrees:
4054 * a) free the subtree starting from *@top
4055 * b) free the subtrees whose roots are stored in
4056 * (@chain[i].p+1 .. end of @chain[i].bh->b_data)
4057 * c) free the subtrees growing from the inode past the @chain[0].
4058 * (no partially truncated stuff there). */
4059
Mingming Cao617ba132006-10-11 01:20:53 -07004060static Indirect *ext4_find_shared(struct inode *inode, int depth,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004061 ext4_lblk_t offsets[4], Indirect chain[4],
4062 __le32 *top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004063{
4064 Indirect *partial, *p;
4065 int k, err;
4066
4067 *top = 0;
4068 /* Make k index the deepest non-null offest + 1 */
4069 for (k = depth; k > 1 && !offsets[k-1]; k--)
4070 ;
Mingming Cao617ba132006-10-11 01:20:53 -07004071 partial = ext4_get_branch(inode, k, offsets, chain, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004072 /* Writer: pointers */
4073 if (!partial)
4074 partial = chain + k-1;
4075 /*
4076 * If the branch acquired continuation since we've looked at it -
4077 * fine, it should all survive and (new) top doesn't belong to us.
4078 */
4079 if (!partial->key && *partial->p)
4080 /* Writer: end */
4081 goto no_top;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004082 for (p = partial; (p > chain) && all_zeroes((__le32 *) p->bh->b_data, p->p); p--)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004083 ;
4084 /*
4085 * OK, we've found the last block that must survive. The rest of our
4086 * branch should be detached before unlocking. However, if that rest
4087 * of branch is all ours and does not grow immediately from the inode
4088 * it's easier to cheat and just decrement partial->p.
4089 */
4090 if (p == chain + k - 1 && p > chain) {
4091 p->p--;
4092 } else {
4093 *top = *p->p;
Mingming Cao617ba132006-10-11 01:20:53 -07004094 /* Nope, don't do this in ext4. Must leave the tree intact */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004095#if 0
4096 *p->p = 0;
4097#endif
4098 }
4099 /* Writer: end */
4100
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004101 while (partial > p) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004102 brelse(partial->bh);
4103 partial--;
4104 }
4105no_top:
4106 return partial;
4107}
4108
4109/*
4110 * Zero a number of block pointers in either an inode or an indirect block.
4111 * If we restart the transaction we must again get write access to the
4112 * indirect block for further modification.
4113 *
4114 * We release `count' blocks on disk, but (last - first) may be greater
4115 * than `count' because there can be holes in there.
4116 */
Mingming Cao617ba132006-10-11 01:20:53 -07004117static void ext4_clear_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004118 struct buffer_head *bh,
4119 ext4_fsblk_t block_to_free,
4120 unsigned long count, __le32 *first,
4121 __le32 *last)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004122{
4123 __le32 *p;
Theodore Ts'o50689692009-11-23 07:17:34 -05004124 int is_metadata = S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode);
4125
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004126 if (try_to_extend_transaction(handle, inode)) {
4127 if (bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004128 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
4129 ext4_handle_dirty_metadata(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004130 }
Mingming Cao617ba132006-10-11 01:20:53 -07004131 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004132 ext4_truncate_restart_trans(handle, inode,
4133 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004134 if (bh) {
4135 BUFFER_TRACE(bh, "retaking write access");
Mingming Cao617ba132006-10-11 01:20:53 -07004136 ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004137 }
4138 }
4139
4140 /*
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004141 * Any buffers which are on the journal will be in memory. We
4142 * find them on the hash table so jbd2_journal_revoke() will
4143 * run jbd2_journal_forget() on them. We've already detached
4144 * each block from the file, so bforget() in
4145 * jbd2_journal_forget() should be safe.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004146 *
Mingming Caodab291a2006-10-11 01:21:01 -07004147 * AKPM: turn on bforget in jbd2_journal_forget()!!!
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004148 */
4149 for (p = first; p < last; p++) {
4150 u32 nr = le32_to_cpu(*p);
4151 if (nr) {
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004152 struct buffer_head *tbh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004153
4154 *p = 0;
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004155 tbh = sb_find_get_block(inode->i_sb, nr);
Theodore Ts'o50689692009-11-23 07:17:34 -05004156 ext4_forget(handle, is_metadata, inode, tbh, nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004157 }
4158 }
4159
Theodore Ts'o50689692009-11-23 07:17:34 -05004160 ext4_free_blocks(handle, inode, block_to_free, count, is_metadata);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004161}
4162
4163/**
Mingming Cao617ba132006-10-11 01:20:53 -07004164 * ext4_free_data - free a list of data blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004165 * @handle: handle for this transaction
4166 * @inode: inode we are dealing with
4167 * @this_bh: indirect buffer_head which contains *@first and *@last
4168 * @first: array of block numbers
4169 * @last: points immediately past the end of array
4170 *
4171 * We are freeing all blocks refered from that array (numbers are stored as
4172 * little-endian 32-bit) and updating @inode->i_blocks appropriately.
4173 *
4174 * We accumulate contiguous runs of blocks to free. Conveniently, if these
4175 * blocks are contiguous then releasing them at one time will only affect one
4176 * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't
4177 * actually use a lot of journal space.
4178 *
4179 * @this_bh will be %NULL if @first and @last point into the inode's direct
4180 * block pointers.
4181 */
Mingming Cao617ba132006-10-11 01:20:53 -07004182static void ext4_free_data(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004183 struct buffer_head *this_bh,
4184 __le32 *first, __le32 *last)
4185{
Mingming Cao617ba132006-10-11 01:20:53 -07004186 ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004187 unsigned long count = 0; /* Number of blocks in the run */
4188 __le32 *block_to_free_p = NULL; /* Pointer into inode/ind
4189 corresponding to
4190 block_to_free */
Mingming Cao617ba132006-10-11 01:20:53 -07004191 ext4_fsblk_t nr; /* Current block # */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004192 __le32 *p; /* Pointer into inode/ind
4193 for current block */
4194 int err;
4195
4196 if (this_bh) { /* For indirect block */
4197 BUFFER_TRACE(this_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004198 err = ext4_journal_get_write_access(handle, this_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004199 /* Important: if we can't update the indirect pointers
4200 * to the blocks, we can't free them. */
4201 if (err)
4202 return;
4203 }
4204
4205 for (p = first; p < last; p++) {
4206 nr = le32_to_cpu(*p);
4207 if (nr) {
4208 /* accumulate blocks to free if they're contiguous */
4209 if (count == 0) {
4210 block_to_free = nr;
4211 block_to_free_p = p;
4212 count = 1;
4213 } else if (nr == block_to_free + count) {
4214 count++;
4215 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004216 ext4_clear_blocks(handle, inode, this_bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004217 block_to_free,
4218 count, block_to_free_p, p);
4219 block_to_free = nr;
4220 block_to_free_p = p;
4221 count = 1;
4222 }
4223 }
4224 }
4225
4226 if (count > 0)
Mingming Cao617ba132006-10-11 01:20:53 -07004227 ext4_clear_blocks(handle, inode, this_bh, block_to_free,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004228 count, block_to_free_p, p);
4229
4230 if (this_bh) {
Frank Mayhar03901312009-01-07 00:06:22 -05004231 BUFFER_TRACE(this_bh, "call ext4_handle_dirty_metadata");
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004232
4233 /*
4234 * The buffer head should have an attached journal head at this
4235 * point. However, if the data is corrupted and an indirect
4236 * block pointed to itself, it would have been detached when
4237 * the block was cleared. Check for this instead of OOPSing.
4238 */
Theodore Ts'oe7f07962009-01-20 09:50:19 -05004239 if ((EXT4_JOURNAL(inode) == NULL) || bh2jh(this_bh))
Frank Mayhar03901312009-01-07 00:06:22 -05004240 ext4_handle_dirty_metadata(handle, inode, this_bh);
Duane Griffin71dc8fb2008-07-11 19:27:31 -04004241 else
4242 ext4_error(inode->i_sb, __func__,
4243 "circular indirect block detected, "
4244 "inode=%lu, block=%llu",
4245 inode->i_ino,
4246 (unsigned long long) this_bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004247 }
4248}
4249
4250/**
Mingming Cao617ba132006-10-11 01:20:53 -07004251 * ext4_free_branches - free an array of branches
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004252 * @handle: JBD handle for this transaction
4253 * @inode: inode we are dealing with
4254 * @parent_bh: the buffer_head which contains *@first and *@last
4255 * @first: array of block numbers
4256 * @last: pointer immediately past the end of array
4257 * @depth: depth of the branches to free
4258 *
4259 * We are freeing all blocks refered from these branches (numbers are
4260 * stored as little-endian 32-bit) and updating @inode->i_blocks
4261 * appropriately.
4262 */
Mingming Cao617ba132006-10-11 01:20:53 -07004263static void ext4_free_branches(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004264 struct buffer_head *parent_bh,
4265 __le32 *first, __le32 *last, int depth)
4266{
Mingming Cao617ba132006-10-11 01:20:53 -07004267 ext4_fsblk_t nr;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004268 __le32 *p;
4269
Frank Mayhar03901312009-01-07 00:06:22 -05004270 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004271 return;
4272
4273 if (depth--) {
4274 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07004275 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004276 p = last;
4277 while (--p >= first) {
4278 nr = le32_to_cpu(*p);
4279 if (!nr)
4280 continue; /* A hole */
4281
4282 /* Go read the buffer for the next level down */
4283 bh = sb_bread(inode->i_sb, nr);
4284
4285 /*
4286 * A read failure? Report error and clear slot
4287 * (should be rare).
4288 */
4289 if (!bh) {
Mingming Cao617ba132006-10-11 01:20:53 -07004290 ext4_error(inode->i_sb, "ext4_free_branches",
Mingming Cao2ae02102006-10-11 01:21:11 -07004291 "Read failure, inode=%lu, block=%llu",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004292 inode->i_ino, nr);
4293 continue;
4294 }
4295
4296 /* This zaps the entire block. Bottom up. */
4297 BUFFER_TRACE(bh, "free child branches");
Mingming Cao617ba132006-10-11 01:20:53 -07004298 ext4_free_branches(handle, inode, bh,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004299 (__le32 *) bh->b_data,
4300 (__le32 *) bh->b_data + addr_per_block,
4301 depth);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004302
4303 /*
4304 * We've probably journalled the indirect block several
4305 * times during the truncate. But it's no longer
4306 * needed and we now drop it from the transaction via
Mingming Caodab291a2006-10-11 01:21:01 -07004307 * jbd2_journal_revoke().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004308 *
4309 * That's easy if it's exclusively part of this
4310 * transaction. But if it's part of the committing
Mingming Caodab291a2006-10-11 01:21:01 -07004311 * transaction then jbd2_journal_forget() will simply
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004312 * brelse() it. That means that if the underlying
Mingming Cao617ba132006-10-11 01:20:53 -07004313 * block is reallocated in ext4_get_block(),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004314 * unmap_underlying_metadata() will find this block
4315 * and will try to get rid of it. damn, damn.
4316 *
4317 * If this block has already been committed to the
4318 * journal, a revoke record will be written. And
4319 * revoke records must be emitted *before* clearing
4320 * this block's bit in the bitmaps.
4321 */
Mingming Cao617ba132006-10-11 01:20:53 -07004322 ext4_forget(handle, 1, inode, bh, bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004323
4324 /*
4325 * Everything below this this pointer has been
4326 * released. Now let this top-of-subtree go.
4327 *
4328 * We want the freeing of this indirect block to be
4329 * atomic in the journal with the updating of the
4330 * bitmap block which owns it. So make some room in
4331 * the journal.
4332 *
4333 * We zero the parent pointer *after* freeing its
4334 * pointee in the bitmaps, so if extend_transaction()
4335 * for some reason fails to put the bitmap changes and
4336 * the release into the same transaction, recovery
4337 * will merely complain about releasing a free block,
4338 * rather than leaking blocks.
4339 */
Frank Mayhar03901312009-01-07 00:06:22 -05004340 if (ext4_handle_is_aborted(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004341 return;
4342 if (try_to_extend_transaction(handle, inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004343 ext4_mark_inode_dirty(handle, inode);
Jan Kara487caee2009-08-17 22:17:20 -04004344 ext4_truncate_restart_trans(handle, inode,
4345 blocks_for_truncate(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004346 }
4347
Alex Tomasc9de5602008-01-29 00:19:52 -05004348 ext4_free_blocks(handle, inode, nr, 1, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004349
4350 if (parent_bh) {
4351 /*
4352 * The block which we have just freed is
4353 * pointed to by an indirect block: journal it
4354 */
4355 BUFFER_TRACE(parent_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004356 if (!ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004357 parent_bh)){
4358 *p = 0;
4359 BUFFER_TRACE(parent_bh,
Frank Mayhar03901312009-01-07 00:06:22 -05004360 "call ext4_handle_dirty_metadata");
4361 ext4_handle_dirty_metadata(handle,
4362 inode,
4363 parent_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004364 }
4365 }
4366 }
4367 } else {
4368 /* We have reached the bottom of the tree. */
4369 BUFFER_TRACE(parent_bh, "free data blocks");
Mingming Cao617ba132006-10-11 01:20:53 -07004370 ext4_free_data(handle, inode, parent_bh, first, last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004371 }
4372}
4373
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004374int ext4_can_truncate(struct inode *inode)
4375{
4376 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4377 return 0;
4378 if (S_ISREG(inode->i_mode))
4379 return 1;
4380 if (S_ISDIR(inode->i_mode))
4381 return 1;
4382 if (S_ISLNK(inode->i_mode))
4383 return !ext4_inode_is_fast_symlink(inode);
4384 return 0;
4385}
4386
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004387/*
Mingming Cao617ba132006-10-11 01:20:53 -07004388 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004389 *
Mingming Cao617ba132006-10-11 01:20:53 -07004390 * We block out ext4_get_block() block instantiations across the entire
4391 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004392 * simultaneously on behalf of the same inode.
4393 *
4394 * As we work through the truncate and commmit bits of it to the journal there
4395 * is one core, guiding principle: the file's tree must always be consistent on
4396 * disk. We must be able to restart the truncate after a crash.
4397 *
4398 * The file's tree may be transiently inconsistent in memory (although it
4399 * probably isn't), but whenever we close off and commit a journal transaction,
4400 * the contents of (the filesystem + the journal) must be consistent and
4401 * restartable. It's pretty simple, really: bottom up, right to left (although
4402 * left-to-right works OK too).
4403 *
4404 * Note that at recovery time, journal replay occurs *before* the restart of
4405 * truncate against the orphan inode list.
4406 *
4407 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004408 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004409 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004410 * ext4_truncate() to have another go. So there will be instantiated blocks
4411 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004412 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004413 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004414 */
Mingming Cao617ba132006-10-11 01:20:53 -07004415void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004416{
4417 handle_t *handle;
Mingming Cao617ba132006-10-11 01:20:53 -07004418 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004419 __le32 *i_data = ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004420 int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004421 struct address_space *mapping = inode->i_mapping;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004422 ext4_lblk_t offsets[4];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004423 Indirect chain[4];
4424 Indirect *partial;
4425 __le32 nr = 0;
4426 int n;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004427 ext4_lblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004428 unsigned blocksize = inode->i_sb->s_blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004429
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004430 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004431 return;
4432
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004433 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004434 ei->i_state |= EXT4_STATE_DA_ALLOC_CLOSE;
4435
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004436 if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) {
Jan Karacf108bc2008-07-11 19:27:31 -04004437 ext4_ext_truncate(inode);
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004438 return;
4439 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004440
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004441 handle = start_transaction(inode);
Jan Karacf108bc2008-07-11 19:27:31 -04004442 if (IS_ERR(handle))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004443 return; /* AKPM: return what? */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004444
4445 last_block = (inode->i_size + blocksize-1)
Mingming Cao617ba132006-10-11 01:20:53 -07004446 >> EXT4_BLOCK_SIZE_BITS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004447
Jan Karacf108bc2008-07-11 19:27:31 -04004448 if (inode->i_size & (blocksize - 1))
4449 if (ext4_block_truncate_page(handle, mapping, inode->i_size))
4450 goto out_stop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004451
Mingming Cao617ba132006-10-11 01:20:53 -07004452 n = ext4_block_to_path(inode, last_block, offsets, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004453 if (n == 0)
4454 goto out_stop; /* error */
4455
4456 /*
4457 * OK. This truncate is going to happen. We add the inode to the
4458 * orphan list, so that if this truncate spans multiple transactions,
4459 * and we crash, we will resume the truncate when the filesystem
4460 * recovers. It also marks the inode dirty, to catch the new size.
4461 *
4462 * Implication: the file must always be in a sane, consistent
4463 * truncatable state while each transaction commits.
4464 */
Mingming Cao617ba132006-10-11 01:20:53 -07004465 if (ext4_orphan_add(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004466 goto out_stop;
4467
4468 /*
Mingming Cao632eaea2008-07-11 19:27:31 -04004469 * From here we block out all ext4_get_block() callers who want to
4470 * modify the block allocation tree.
4471 */
4472 down_write(&ei->i_data_sem);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004473
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004474 ext4_discard_preallocations(inode);
Theodore Ts'ob4df2032008-08-13 21:44:34 -04004475
Mingming Cao632eaea2008-07-11 19:27:31 -04004476 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004477 * The orphan list entry will now protect us from any crash which
4478 * occurs before the truncate completes, so it is now safe to propagate
4479 * the new, shorter inode size (held for now in i_size) into the
4480 * on-disk inode. We do this via i_disksize, which is the value which
Mingming Cao617ba132006-10-11 01:20:53 -07004481 * ext4 *really* writes onto the disk inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004482 */
4483 ei->i_disksize = inode->i_size;
4484
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004485 if (n == 1) { /* direct blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07004486 ext4_free_data(handle, inode, NULL, i_data+offsets[0],
4487 i_data + EXT4_NDIR_BLOCKS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004488 goto do_indirects;
4489 }
4490
Mingming Cao617ba132006-10-11 01:20:53 -07004491 partial = ext4_find_shared(inode, n, offsets, chain, &nr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004492 /* Kill the top of shared branch (not detached) */
4493 if (nr) {
4494 if (partial == chain) {
4495 /* Shared branch grows from the inode */
Mingming Cao617ba132006-10-11 01:20:53 -07004496 ext4_free_branches(handle, inode, NULL,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004497 &nr, &nr+1, (chain+n-1) - partial);
4498 *partial->p = 0;
4499 /*
4500 * We mark the inode dirty prior to restart,
4501 * and prior to stop. No need for it here.
4502 */
4503 } else {
4504 /* Shared branch grows from an indirect block */
4505 BUFFER_TRACE(partial->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07004506 ext4_free_branches(handle, inode, partial->bh,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004507 partial->p,
4508 partial->p+1, (chain+n-1) - partial);
4509 }
4510 }
4511 /* Clear the ends of indirect blocks on the shared branch */
4512 while (partial > chain) {
Mingming Cao617ba132006-10-11 01:20:53 -07004513 ext4_free_branches(handle, inode, partial->bh, partial->p + 1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004514 (__le32*)partial->bh->b_data+addr_per_block,
4515 (chain+n-1) - partial);
4516 BUFFER_TRACE(partial->bh, "call brelse");
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004517 brelse(partial->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004518 partial--;
4519 }
4520do_indirects:
4521 /* Kill the remaining (whole) subtrees */
4522 switch (offsets[0]) {
4523 default:
Mingming Cao617ba132006-10-11 01:20:53 -07004524 nr = i_data[EXT4_IND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004525 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004526 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1);
4527 i_data[EXT4_IND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004528 }
Mingming Cao617ba132006-10-11 01:20:53 -07004529 case EXT4_IND_BLOCK:
4530 nr = i_data[EXT4_DIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004531 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004532 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2);
4533 i_data[EXT4_DIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004534 }
Mingming Cao617ba132006-10-11 01:20:53 -07004535 case EXT4_DIND_BLOCK:
4536 nr = i_data[EXT4_TIND_BLOCK];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004537 if (nr) {
Mingming Cao617ba132006-10-11 01:20:53 -07004538 ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3);
4539 i_data[EXT4_TIND_BLOCK] = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004540 }
Mingming Cao617ba132006-10-11 01:20:53 -07004541 case EXT4_TIND_BLOCK:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004542 ;
4543 }
4544
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05004545 up_write(&ei->i_data_sem);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004546 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07004547 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004548
4549 /*
4550 * In a multi-transaction truncate, we only make the final transaction
4551 * synchronous
4552 */
4553 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05004554 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004555out_stop:
4556 /*
4557 * If this was a simple ftruncate(), and the file will remain alive
4558 * then we need to clear up the orphan record which we created above.
4559 * However, if this was a real unlink then we were called by
Mingming Cao617ba132006-10-11 01:20:53 -07004560 * ext4_delete_inode(), and we allow that function to clean up the
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004561 * orphan info for us.
4562 */
4563 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004564 ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004565
Mingming Cao617ba132006-10-11 01:20:53 -07004566 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004567}
4568
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004569/*
Mingming Cao617ba132006-10-11 01:20:53 -07004570 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004571 * underlying buffer_head on success. If 'in_mem' is true, we have all
4572 * data in memory that is needed to recreate the on-disk version of this
4573 * inode.
4574 */
Mingming Cao617ba132006-10-11 01:20:53 -07004575static int __ext4_get_inode_loc(struct inode *inode,
4576 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004577{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004578 struct ext4_group_desc *gdp;
4579 struct buffer_head *bh;
4580 struct super_block *sb = inode->i_sb;
4581 ext4_fsblk_t block;
4582 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004583
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004584 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004585 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004586 return -EIO;
4587
Theodore Ts'o240799c2008-10-09 23:53:47 -04004588 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4589 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4590 if (!gdp)
4591 return -EIO;
4592
4593 /*
4594 * Figure out the offset within the block group inode table
4595 */
4596 inodes_per_block = (EXT4_BLOCK_SIZE(sb) / EXT4_INODE_SIZE(sb));
4597 inode_offset = ((inode->i_ino - 1) %
4598 EXT4_INODES_PER_GROUP(sb));
4599 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4600 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4601
4602 bh = sb_getblk(sb, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004603 if (!bh) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004604 ext4_error(sb, "ext4_get_inode_loc", "unable to read "
4605 "inode block - inode=%lu, block=%llu",
4606 inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004607 return -EIO;
4608 }
4609 if (!buffer_uptodate(bh)) {
4610 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004611
4612 /*
4613 * If the buffer has the write error flag, we have failed
4614 * to write out another inode in the same block. In this
4615 * case, we don't have to read the block because we may
4616 * read the old inode data successfully.
4617 */
4618 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4619 set_buffer_uptodate(bh);
4620
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004621 if (buffer_uptodate(bh)) {
4622 /* someone brought it uptodate while we waited */
4623 unlock_buffer(bh);
4624 goto has_buffer;
4625 }
4626
4627 /*
4628 * If we have all information of the inode in memory and this
4629 * is the only valid inode in the block, we need not read the
4630 * block.
4631 */
4632 if (in_mem) {
4633 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004634 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004635
Theodore Ts'o240799c2008-10-09 23:53:47 -04004636 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004637
4638 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004639 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004640 if (!bitmap_bh)
4641 goto make_io;
4642
4643 /*
4644 * If the inode bitmap isn't in cache then the
4645 * optimisation may end up performing two reads instead
4646 * of one, so skip it.
4647 */
4648 if (!buffer_uptodate(bitmap_bh)) {
4649 brelse(bitmap_bh);
4650 goto make_io;
4651 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004652 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004653 if (i == inode_offset)
4654 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004655 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004656 break;
4657 }
4658 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004659 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004660 /* all other inodes are free, so skip I/O */
4661 memset(bh->b_data, 0, bh->b_size);
4662 set_buffer_uptodate(bh);
4663 unlock_buffer(bh);
4664 goto has_buffer;
4665 }
4666 }
4667
4668make_io:
4669 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004670 * If we need to do any I/O, try to pre-readahead extra
4671 * blocks from the inode table.
4672 */
4673 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4674 ext4_fsblk_t b, end, table;
4675 unsigned num;
4676
4677 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004678 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004679 b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1);
4680 if (table > b)
4681 b = table;
4682 end = b + EXT4_SB(sb)->s_inode_readahead_blks;
4683 num = EXT4_INODES_PER_GROUP(sb);
4684 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4685 EXT4_FEATURE_RO_COMPAT_GDT_CSUM))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004686 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004687 table += num / inodes_per_block;
4688 if (end > table)
4689 end = table;
4690 while (b <= end)
4691 sb_breadahead(sb, b++);
4692 }
4693
4694 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004695 * There are other valid inodes in the buffer, this inode
4696 * has in-inode xattrs, or we don't have this inode in memory.
4697 * Read the block from disk.
4698 */
4699 get_bh(bh);
4700 bh->b_end_io = end_buffer_read_sync;
4701 submit_bh(READ_META, bh);
4702 wait_on_buffer(bh);
4703 if (!buffer_uptodate(bh)) {
Theodore Ts'o240799c2008-10-09 23:53:47 -04004704 ext4_error(sb, __func__,
4705 "unable to read inode block - inode=%lu, "
4706 "block=%llu", inode->i_ino, block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004707 brelse(bh);
4708 return -EIO;
4709 }
4710 }
4711has_buffer:
4712 iloc->bh = bh;
4713 return 0;
4714}
4715
Mingming Cao617ba132006-10-11 01:20:53 -07004716int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004717{
4718 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07004719 return __ext4_get_inode_loc(inode, iloc,
4720 !(EXT4_I(inode)->i_state & EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004721}
4722
Mingming Cao617ba132006-10-11 01:20:53 -07004723void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004724{
Mingming Cao617ba132006-10-11 01:20:53 -07004725 unsigned int flags = EXT4_I(inode)->i_flags;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004726
4727 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Mingming Cao617ba132006-10-11 01:20:53 -07004728 if (flags & EXT4_SYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004729 inode->i_flags |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004730 if (flags & EXT4_APPEND_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004731 inode->i_flags |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004732 if (flags & EXT4_IMMUTABLE_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004733 inode->i_flags |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004734 if (flags & EXT4_NOATIME_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004735 inode->i_flags |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004736 if (flags & EXT4_DIRSYNC_FL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004737 inode->i_flags |= S_DIRSYNC;
4738}
4739
Jan Karaff9ddf72007-07-18 09:24:20 -04004740/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4741void ext4_get_inode_flags(struct ext4_inode_info *ei)
4742{
4743 unsigned int flags = ei->vfs_inode.i_flags;
4744
4745 ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
4746 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL);
4747 if (flags & S_SYNC)
4748 ei->i_flags |= EXT4_SYNC_FL;
4749 if (flags & S_APPEND)
4750 ei->i_flags |= EXT4_APPEND_FL;
4751 if (flags & S_IMMUTABLE)
4752 ei->i_flags |= EXT4_IMMUTABLE_FL;
4753 if (flags & S_NOATIME)
4754 ei->i_flags |= EXT4_NOATIME_FL;
4755 if (flags & S_DIRSYNC)
4756 ei->i_flags |= EXT4_DIRSYNC_FL;
4757}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004758
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004759static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004760 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004761{
4762 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004763 struct inode *inode = &(ei->vfs_inode);
4764 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004765
4766 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4767 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
4768 /* we are using combined 48 bit field */
4769 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4770 le32_to_cpu(raw_inode->i_blocks_lo);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004771 if (ei->i_flags & EXT4_HUGE_FILE_FL) {
4772 /* i_blocks represent file system block size */
4773 return i_blocks << (inode->i_blkbits - 9);
4774 } else {
4775 return i_blocks;
4776 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004777 } else {
4778 return le32_to_cpu(raw_inode->i_blocks_lo);
4779 }
4780}
Jan Karaff9ddf72007-07-18 09:24:20 -04004781
David Howells1d1fe1e2008-02-07 00:15:37 -08004782struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004783{
Mingming Cao617ba132006-10-11 01:20:53 -07004784 struct ext4_iloc iloc;
4785 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004786 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004787 struct inode *inode;
4788 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004789 int block;
4790
David Howells1d1fe1e2008-02-07 00:15:37 -08004791 inode = iget_locked(sb, ino);
4792 if (!inode)
4793 return ERR_PTR(-ENOMEM);
4794 if (!(inode->i_state & I_NEW))
4795 return inode;
4796
4797 ei = EXT4_I(inode);
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004798 iloc.bh = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004799
David Howells1d1fe1e2008-02-07 00:15:37 -08004800 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4801 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004802 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004803 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004804 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
4805 inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4806 inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004807 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808 inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4809 inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4810 }
4811 inode->i_nlink = le16_to_cpu(raw_inode->i_links_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004812
4813 ei->i_state = 0;
4814 ei->i_dir_start_lookup = 0;
4815 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4816 /* We now have enough fields to check if the inode was active or not.
4817 * This is needed because nfsd might try to access dead inodes
4818 * the test is that same one that e2fsck uses
4819 * NeilBrown 1999oct15
4820 */
4821 if (inode->i_nlink == 0) {
4822 if (inode->i_mode == 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07004823 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004824 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004825 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004826 goto bad_inode;
4827 }
4828 /* The only unlinked inodes we let through here have
4829 * valid i_mode and are being read by the orphan
4830 * recovery code: that's fine, we're about to complete
4831 * the process of deleting those. */
4832 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004833 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004834 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004835 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04004836 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004837 ei->i_file_acl |=
4838 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004839 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004840 ei->i_disksize = inode->i_size;
4841 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4842 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004843 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004844 /*
4845 * NOTE! The in-memory inode i_data array is in little-endian order
4846 * even on big-endian machines: we do NOT byteswap the block numbers!
4847 */
Mingming Cao617ba132006-10-11 01:20:53 -07004848 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004849 ei->i_data[block] = raw_inode->i_block[block];
4850 INIT_LIST_HEAD(&ei->i_orphan);
4851
Eric Sandeen0040d982008-02-05 22:36:43 -05004852 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004853 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
Mingming Cao617ba132006-10-11 01:20:53 -07004854 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004855 EXT4_INODE_SIZE(inode->i_sb)) {
David Howells1d1fe1e2008-02-07 00:15:37 -08004856 ret = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004857 goto bad_inode;
Kirill Korotaeve5d28612007-06-23 17:16:51 -07004858 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004859 if (ei->i_extra_isize == 0) {
4860 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004861 ei->i_extra_isize = sizeof(struct ext4_inode) -
4862 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004863 } else {
4864 __le32 *magic = (void *)raw_inode +
Mingming Cao617ba132006-10-11 01:20:53 -07004865 EXT4_GOOD_OLD_INODE_SIZE +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004866 ei->i_extra_isize;
Mingming Cao617ba132006-10-11 01:20:53 -07004867 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC))
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004868 ei->i_state |= EXT4_STATE_XATTR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004869 }
4870 } else
4871 ei->i_extra_isize = 0;
4872
Kalpak Shahef7f3832007-07-18 09:15:20 -04004873 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4874 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4875 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4876 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4877
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004878 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4879 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4880 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4881 inode->i_version |=
4882 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4883 }
4884
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004885 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004886 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004887 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004888 ext4_error(sb, __func__,
4889 "bad extended attribute block %llu in inode #%lu",
4890 ei->i_file_acl, inode->i_ino);
4891 ret = -EIO;
4892 goto bad_inode;
4893 } else if (ei->i_flags & EXT4_EXTENTS_FL) {
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004894 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4895 (S_ISLNK(inode->i_mode) &&
4896 !ext4_inode_is_fast_symlink(inode)))
4897 /* Validate extent which is part of inode */
4898 ret = ext4_ext_check_inode(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004899 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004900 (S_ISLNK(inode->i_mode) &&
4901 !ext4_inode_is_fast_symlink(inode))) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004902 /* Validate block references which are part of inode */
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004903 ret = ext4_check_inode_blockref(inode);
4904 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004905 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004906 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004907
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004908 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004909 inode->i_op = &ext4_file_inode_operations;
4910 inode->i_fop = &ext4_file_operations;
4911 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004912 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004913 inode->i_op = &ext4_dir_inode_operations;
4914 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004915 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00004916 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004917 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004918 nd_terminate_link(ei->i_data, inode->i_size,
4919 sizeof(ei->i_data) - 1);
4920 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004921 inode->i_op = &ext4_symlink_inode_operations;
4922 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004923 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004924 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4925 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004926 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004927 if (raw_inode->i_block[0])
4928 init_special_inode(inode, inode->i_mode,
4929 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4930 else
4931 init_special_inode(inode, inode->i_mode,
4932 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004933 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004934 ret = -EIO;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004935 ext4_error(inode->i_sb, __func__,
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004936 "bogus i_mode (%o) for inode=%lu",
4937 inode->i_mode, inode->i_ino);
4938 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004939 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004940 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004941 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004942 unlock_new_inode(inode);
4943 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004944
4945bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004946 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004947 iget_failed(inode);
4948 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004949}
4950
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004951static int ext4_inode_blocks_set(handle_t *handle,
4952 struct ext4_inode *raw_inode,
4953 struct ext4_inode_info *ei)
4954{
4955 struct inode *inode = &(ei->vfs_inode);
4956 u64 i_blocks = inode->i_blocks;
4957 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004958
4959 if (i_blocks <= ~0U) {
4960 /*
4961 * i_blocks can be represnted in a 32 bit variable
4962 * as multiple of 512 bytes
4963 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004964 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004965 raw_inode->i_blocks_high = 0;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004966 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004967 return 0;
4968 }
4969 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4970 return -EFBIG;
4971
4972 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004973 /*
4974 * i_blocks can be represented in a 48 bit variable
4975 * as multiple of 512 bytes
4976 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004977 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004978 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004979 ei->i_flags &= ~EXT4_HUGE_FILE_FL;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004980 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004981 ei->i_flags |= EXT4_HUGE_FILE_FL;
4982 /* i_block is stored in file system block size */
4983 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4984 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4985 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004986 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004987 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004988}
4989
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004990/*
4991 * Post the struct inode info into an on-disk inode location in the
4992 * buffer-cache. This gobbles the caller's reference to the
4993 * buffer_head in the inode location struct.
4994 *
4995 * The caller must have write access to iloc->bh.
4996 */
Mingming Cao617ba132006-10-11 01:20:53 -07004997static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004998 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004999 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005000{
Mingming Cao617ba132006-10-11 01:20:53 -07005001 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5002 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005003 struct buffer_head *bh = iloc->bh;
5004 int err = 0, rc, block;
5005
5006 /* For fields not not tracking in the in-memory inode,
5007 * initialise them to zero for new inodes. */
Mingming Cao617ba132006-10-11 01:20:53 -07005008 if (ei->i_state & EXT4_STATE_NEW)
5009 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005010
Jan Karaff9ddf72007-07-18 09:24:20 -04005011 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005012 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005013 if (!(test_opt(inode->i_sb, NO_UID32))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005014 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid));
5015 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid));
5016/*
5017 * Fix up interoperability with old kernels. Otherwise, old inodes get
5018 * re-used with the upper 16 bits of the uid/gid intact
5019 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005020 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005021 raw_inode->i_uid_high =
5022 cpu_to_le16(high_16_bits(inode->i_uid));
5023 raw_inode->i_gid_high =
5024 cpu_to_le16(high_16_bits(inode->i_gid));
5025 } else {
5026 raw_inode->i_uid_high = 0;
5027 raw_inode->i_gid_high = 0;
5028 }
5029 } else {
5030 raw_inode->i_uid_low =
5031 cpu_to_le16(fs_high2lowuid(inode->i_uid));
5032 raw_inode->i_gid_low =
5033 cpu_to_le16(fs_high2lowgid(inode->i_gid));
5034 raw_inode->i_uid_high = 0;
5035 raw_inode->i_gid_high = 0;
5036 }
5037 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04005038
5039 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5040 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5041 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5042 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5043
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005044 if (ext4_inode_blocks_set(handle, raw_inode, ei))
5045 goto out_brelse;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005046 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o1b9c12f2009-09-17 08:32:22 -04005047 raw_inode->i_flags = cpu_to_le32(ei->i_flags);
Mingming Cao9b8f1f02006-10-11 01:21:13 -07005048 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
5049 cpu_to_le32(EXT4_OS_HURD))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005050 raw_inode->i_file_acl_high =
5051 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005052 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005053 ext4_isize_set(raw_inode, ei->i_disksize);
5054 if (ei->i_disksize > 0x7fffffffULL) {
5055 struct super_block *sb = inode->i_sb;
5056 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
5057 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
5058 EXT4_SB(sb)->s_es->s_rev_level ==
5059 cpu_to_le32(EXT4_GOOD_OLD_REV)) {
5060 /* If this is the first large file
5061 * created, add a flag to the superblock.
5062 */
5063 err = ext4_journal_get_write_access(handle,
5064 EXT4_SB(sb)->s_sbh);
5065 if (err)
5066 goto out_brelse;
5067 ext4_update_dynamic_rev(sb);
5068 EXT4_SET_RO_COMPAT_FEATURE(sb,
Mingming Cao617ba132006-10-11 01:20:53 -07005069 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005070 sb->s_dirt = 1;
Frank Mayhar03901312009-01-07 00:06:22 -05005071 ext4_handle_sync(handle);
5072 err = ext4_handle_dirty_metadata(handle, inode,
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005073 EXT4_SB(sb)->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005074 }
5075 }
5076 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5077 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5078 if (old_valid_dev(inode->i_rdev)) {
5079 raw_inode->i_block[0] =
5080 cpu_to_le32(old_encode_dev(inode->i_rdev));
5081 raw_inode->i_block[1] = 0;
5082 } else {
5083 raw_inode->i_block[0] = 0;
5084 raw_inode->i_block[1] =
5085 cpu_to_le32(new_encode_dev(inode->i_rdev));
5086 raw_inode->i_block[2] = 0;
5087 }
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005088 } else
5089 for (block = 0; block < EXT4_N_BLOCKS; block++)
5090 raw_inode->i_block[block] = ei->i_data[block];
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005091
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005092 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
5093 if (ei->i_extra_isize) {
5094 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5095 raw_inode->i_version_hi =
5096 cpu_to_le32(inode->i_version >> 32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005097 raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005098 }
5099
Frank Mayhar830156c2009-09-29 10:07:47 -04005100 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
5101 rc = ext4_handle_dirty_metadata(handle, inode, bh);
5102 if (!err)
5103 err = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07005104 ei->i_state &= ~EXT4_STATE_NEW;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005105
5106out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005107 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005108 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005109 return err;
5110}
5111
5112/*
Mingming Cao617ba132006-10-11 01:20:53 -07005113 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005114 *
5115 * We are called from a few places:
5116 *
5117 * - Within generic_file_write() for O_SYNC files.
5118 * Here, there will be no transaction running. We wait for any running
5119 * trasnaction to commit.
5120 *
5121 * - Within sys_sync(), kupdate and such.
5122 * We wait on commit, if tol to.
5123 *
5124 * - Within prune_icache() (PF_MEMALLOC == true)
5125 * Here we simply return. We can't afford to block kswapd on the
5126 * journal commit.
5127 *
5128 * In all cases it is actually safe for us to return without doing anything,
5129 * because the inode has been copied into a raw inode buffer in
Mingming Cao617ba132006-10-11 01:20:53 -07005130 * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005131 * knfsd.
5132 *
5133 * Note that we are absolutely dependent upon all inode dirtiers doing the
5134 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5135 * which we are interested.
5136 *
5137 * It would be a bug for them to not do this. The code:
5138 *
5139 * mark_inode_dirty(inode)
5140 * stuff();
5141 * inode->i_size = expr;
5142 *
5143 * is in error because a kswapd-driven write_inode() could occur while
5144 * `stuff()' is running, and the new i_size will be lost. Plus the inode
5145 * will no longer be on the superblock's dirty inode list.
5146 */
Mingming Cao617ba132006-10-11 01:20:53 -07005147int ext4_write_inode(struct inode *inode, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005148{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005149 int err;
5150
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005151 if (current->flags & PF_MEMALLOC)
5152 return 0;
5153
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005154 if (EXT4_SB(inode->i_sb)->s_journal) {
5155 if (ext4_journal_current_handle()) {
5156 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5157 dump_stack();
5158 return -EIO;
5159 }
5160
5161 if (!wait)
5162 return 0;
5163
5164 err = ext4_force_commit(inode->i_sb);
5165 } else {
5166 struct ext4_iloc iloc;
5167
5168 err = ext4_get_inode_loc(inode, &iloc);
5169 if (err)
5170 return err;
Frank Mayhar830156c2009-09-29 10:07:47 -04005171 if (wait)
5172 sync_dirty_buffer(iloc.bh);
5173 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
5174 ext4_error(inode->i_sb, __func__,
5175 "IO error syncing inode, "
5176 "inode=%lu, block=%llu",
5177 inode->i_ino,
5178 (unsigned long long)iloc.bh->b_blocknr);
5179 err = -EIO;
5180 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005181 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005182 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005183}
5184
5185/*
Mingming Cao617ba132006-10-11 01:20:53 -07005186 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005187 *
5188 * Called from notify_change.
5189 *
5190 * We want to trap VFS attempts to truncate the file as soon as
5191 * possible. In particular, we want to make sure that when the VFS
5192 * shrinks i_size, we put the inode on the orphan list and modify
5193 * i_disksize immediately, so that during the subsequent flushing of
5194 * dirty pages and freeing of disk blocks, we can guarantee that any
5195 * commit will leave the blocks being flushed in an unused state on
5196 * disk. (On recovery, the inode will get truncated and the blocks will
5197 * be freed, so we have a strong guarantee that no future commit will
5198 * leave these blocks visible to the user.)
5199 *
Jan Kara678aaf42008-07-11 19:27:31 -04005200 * Another thing we have to assure is that if we are in ordered mode
5201 * and inode is still attached to the committing transaction, we must
5202 * we start writeout of all the dirty pages which are being truncated.
5203 * This way we are sure that all the data written in the previous
5204 * transaction are already on disk (truncate waits for pages under
5205 * writeback).
5206 *
5207 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005208 */
Mingming Cao617ba132006-10-11 01:20:53 -07005209int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005210{
5211 struct inode *inode = dentry->d_inode;
5212 int error, rc = 0;
5213 const unsigned int ia_valid = attr->ia_valid;
5214
5215 error = inode_change_ok(inode, attr);
5216 if (error)
5217 return error;
5218
5219 if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) ||
5220 (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) {
5221 handle_t *handle;
5222
5223 /* (user+group)*(old+new) structure, inode write (sb,
5224 * inode block, ? - but truncate inode update has it) */
Mingming Cao617ba132006-10-11 01:20:53 -07005225 handle = ext4_journal_start(inode, 2*(EXT4_QUOTA_INIT_BLOCKS(inode->i_sb)+
5226 EXT4_QUOTA_DEL_BLOCKS(inode->i_sb))+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005227 if (IS_ERR(handle)) {
5228 error = PTR_ERR(handle);
5229 goto err_out;
5230 }
Jan Karaa269eb12009-01-26 17:04:39 +01005231 error = vfs_dq_transfer(inode, attr) ? -EDQUOT : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005232 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005233 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005234 return error;
5235 }
5236 /* Update corresponding info in inode so that everything is in
5237 * one transaction */
5238 if (attr->ia_valid & ATTR_UID)
5239 inode->i_uid = attr->ia_uid;
5240 if (attr->ia_valid & ATTR_GID)
5241 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005242 error = ext4_mark_inode_dirty(handle, inode);
5243 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005244 }
5245
Eric Sandeene2b46572008-01-28 23:58:27 -05005246 if (attr->ia_valid & ATTR_SIZE) {
5247 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
5248 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5249
5250 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
5251 error = -EFBIG;
5252 goto err_out;
5253 }
5254 }
5255 }
5256
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005257 if (S_ISREG(inode->i_mode) &&
5258 attr->ia_valid & ATTR_SIZE && attr->ia_size < inode->i_size) {
5259 handle_t *handle;
5260
Mingming Cao617ba132006-10-11 01:20:53 -07005261 handle = ext4_journal_start(inode, 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005262 if (IS_ERR(handle)) {
5263 error = PTR_ERR(handle);
5264 goto err_out;
5265 }
5266
Mingming Cao617ba132006-10-11 01:20:53 -07005267 error = ext4_orphan_add(handle, inode);
5268 EXT4_I(inode)->i_disksize = attr->ia_size;
5269 rc = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005270 if (!error)
5271 error = rc;
Mingming Cao617ba132006-10-11 01:20:53 -07005272 ext4_journal_stop(handle);
Jan Kara678aaf42008-07-11 19:27:31 -04005273
5274 if (ext4_should_order_data(inode)) {
5275 error = ext4_begin_ordered_truncate(inode,
5276 attr->ia_size);
5277 if (error) {
5278 /* Do as much error cleanup as possible */
5279 handle = ext4_journal_start(inode, 3);
5280 if (IS_ERR(handle)) {
5281 ext4_orphan_del(NULL, inode);
5282 goto err_out;
5283 }
5284 ext4_orphan_del(handle, inode);
5285 ext4_journal_stop(handle);
5286 goto err_out;
5287 }
5288 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005289 }
5290
5291 rc = inode_setattr(inode, attr);
5292
Mingming Cao617ba132006-10-11 01:20:53 -07005293 /* If inode_setattr's call to ext4_truncate failed to get a
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005294 * transaction handle at all, we need to clean up the in-core
5295 * orphan list manually. */
5296 if (inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005297 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005298
5299 if (!rc && (ia_valid & ATTR_MODE))
Mingming Cao617ba132006-10-11 01:20:53 -07005300 rc = ext4_acl_chmod(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005301
5302err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07005303 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005304 if (!error)
5305 error = rc;
5306 return error;
5307}
5308
Mingming Cao3e3398a2008-07-11 19:27:31 -04005309int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
5310 struct kstat *stat)
5311{
5312 struct inode *inode;
5313 unsigned long delalloc_blocks;
5314
5315 inode = dentry->d_inode;
5316 generic_fillattr(inode, stat);
5317
5318 /*
5319 * We can't update i_blocks if the block allocation is delayed
5320 * otherwise in the case of system crash before the real block
5321 * allocation is done, we will have i_blocks inconsistent with
5322 * on-disk file blocks.
5323 * We always keep i_blocks updated together with real
5324 * allocation. But to not confuse with user, stat
5325 * will return the blocks that include the delayed allocation
5326 * blocks for this file.
5327 */
5328 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
5329 delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks;
5330 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
5331
5332 stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9;
5333 return 0;
5334}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005335
Mingming Caoa02908f2008-08-19 22:16:07 -04005336static int ext4_indirect_trans_blocks(struct inode *inode, int nrblocks,
5337 int chunk)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005338{
Mingming Caoa02908f2008-08-19 22:16:07 -04005339 int indirects;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005340
Mingming Caoa02908f2008-08-19 22:16:07 -04005341 /* if nrblocks are contiguous */
5342 if (chunk) {
5343 /*
5344 * With N contiguous data blocks, it need at most
5345 * N/EXT4_ADDR_PER_BLOCK(inode->i_sb) indirect blocks
5346 * 2 dindirect blocks
5347 * 1 tindirect block
5348 */
5349 indirects = nrblocks / EXT4_ADDR_PER_BLOCK(inode->i_sb);
5350 return indirects + 3;
5351 }
5352 /*
5353 * if nrblocks are not contiguous, worse case, each block touch
5354 * a indirect block, and each indirect block touch a double indirect
5355 * block, plus a triple indirect block
5356 */
5357 indirects = nrblocks * 2 + 1;
5358 return indirects;
5359}
Alex Tomasa86c6182006-10-11 01:21:03 -07005360
Mingming Caoa02908f2008-08-19 22:16:07 -04005361static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5362{
5363 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL))
Theodore Ts'oac51d832008-11-06 16:49:36 -05005364 return ext4_indirect_trans_blocks(inode, nrblocks, chunk);
5365 return ext4_ext_index_trans_blocks(inode, nrblocks, chunk);
Mingming Caoa02908f2008-08-19 22:16:07 -04005366}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005367
Mingming Caoa02908f2008-08-19 22:16:07 -04005368/*
5369 * Account for index blocks, block groups bitmaps and block group
5370 * descriptor blocks if modify datablocks and index blocks
5371 * worse case, the indexs blocks spread over different block groups
5372 *
5373 * If datablocks are discontiguous, they are possible to spread over
5374 * different block groups too. If they are contiugous, with flexbg,
5375 * they could still across block group boundary.
5376 *
5377 * Also account for superblock, inode, quota and xattr blocks
5378 */
5379int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk)
5380{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005381 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5382 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005383 int idxblocks;
5384 int ret = 0;
5385
5386 /*
5387 * How many index blocks need to touch to modify nrblocks?
5388 * The "Chunk" flag indicating whether the nrblocks is
5389 * physically contiguous on disk
5390 *
5391 * For Direct IO and fallocate, they calls get_block to allocate
5392 * one single extent at a time, so they could set the "Chunk" flag
5393 */
5394 idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk);
5395
5396 ret = idxblocks;
5397
5398 /*
5399 * Now let's see how many group bitmaps and group descriptors need
5400 * to account
5401 */
5402 groups = idxblocks;
5403 if (chunk)
5404 groups += 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005405 else
Mingming Caoa02908f2008-08-19 22:16:07 -04005406 groups += nrblocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005407
Mingming Caoa02908f2008-08-19 22:16:07 -04005408 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005409 if (groups > ngroups)
5410 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005411 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5412 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5413
5414 /* bitmaps and block group descriptor blocks */
5415 ret += groups + gdpblocks;
5416
5417 /* Blocks for super block, inode, quota and xattr blocks */
5418 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005419
5420 return ret;
5421}
5422
5423/*
Mingming Caoa02908f2008-08-19 22:16:07 -04005424 * Calulate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005425 * the modification of a single pages into a single transaction,
5426 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005427 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005428 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005429 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005430 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005431 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005432 */
5433int ext4_writepage_trans_blocks(struct inode *inode)
5434{
5435 int bpp = ext4_journal_blocks_per_page(inode);
5436 int ret;
5437
5438 ret = ext4_meta_trans_blocks(inode, bpp, 0);
5439
5440 /* Account for data blocks for journalled mode */
5441 if (ext4_should_journal_data(inode))
5442 ret += bpp;
5443 return ret;
5444}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005445
5446/*
5447 * Calculate the journal credits for a chunk of data modification.
5448 *
5449 * This is called from DIO, fallocate or whoever calling
Theodore Ts'o12b7ac12009-05-14 00:57:44 -04005450 * ext4_get_blocks() to map/allocate a chunk of contigous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005451 *
5452 * journal buffers for data blocks are not included here, as DIO
5453 * and fallocate do no need to journal data buffers.
5454 */
5455int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5456{
5457 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5458}
5459
Mingming Caoa02908f2008-08-19 22:16:07 -04005460/*
Mingming Cao617ba132006-10-11 01:20:53 -07005461 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005462 * Give this, we know that the caller already has write access to iloc->bh.
5463 */
Mingming Cao617ba132006-10-11 01:20:53 -07005464int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005465 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005466{
5467 int err = 0;
5468
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005469 if (test_opt(inode->i_sb, I_VERSION))
5470 inode_inc_iversion(inode);
5471
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005472 /* the do_update_inode consumes one bh->b_count */
5473 get_bh(iloc->bh);
5474
Mingming Caodab291a2006-10-11 01:21:01 -07005475 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005476 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005477 put_bh(iloc->bh);
5478 return err;
5479}
5480
5481/*
5482 * On success, We end up with an outstanding reference count against
5483 * iloc->bh. This _must_ be cleaned up later.
5484 */
5485
5486int
Mingming Cao617ba132006-10-11 01:20:53 -07005487ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5488 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005489{
Frank Mayhar03901312009-01-07 00:06:22 -05005490 int err;
5491
5492 err = ext4_get_inode_loc(inode, iloc);
5493 if (!err) {
5494 BUFFER_TRACE(iloc->bh, "get_write_access");
5495 err = ext4_journal_get_write_access(handle, iloc->bh);
5496 if (err) {
5497 brelse(iloc->bh);
5498 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005499 }
5500 }
Mingming Cao617ba132006-10-11 01:20:53 -07005501 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005502 return err;
5503}
5504
5505/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005506 * Expand an inode by new_extra_isize bytes.
5507 * Returns 0 on success or negative error number on failure.
5508 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05005509static int ext4_expand_extra_isize(struct inode *inode,
5510 unsigned int new_extra_isize,
5511 struct ext4_iloc iloc,
5512 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005513{
5514 struct ext4_inode *raw_inode;
5515 struct ext4_xattr_ibody_header *header;
5516 struct ext4_xattr_entry *entry;
5517
5518 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
5519 return 0;
5520
5521 raw_inode = ext4_raw_inode(&iloc);
5522
5523 header = IHDR(inode, raw_inode);
5524 entry = IFIRST(header);
5525
5526 /* No extended attributes present */
5527 if (!(EXT4_I(inode)->i_state & EXT4_STATE_XATTR) ||
5528 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5529 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
5530 new_extra_isize);
5531 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5532 return 0;
5533 }
5534
5535 /* try to expand with EAs present */
5536 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
5537 raw_inode, handle);
5538}
5539
5540/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005541 * What we do here is to mark the in-core inode as clean with respect to inode
5542 * dirtiness (it may still be data-dirty).
5543 * This means that the in-core inode may be reaped by prune_icache
5544 * without having to perform any I/O. This is a very good thing,
5545 * because *any* task may call prune_icache - even ones which
5546 * have a transaction open against a different journal.
5547 *
5548 * Is this cheating? Not really. Sure, we haven't written the
5549 * inode out, but prune_icache isn't a user-visible syncing function.
5550 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5551 * we start and wait on commits.
5552 *
5553 * Is this efficient/effective? Well, we're being nice to the system
5554 * by cleaning up our inodes proactively so they can be reaped
5555 * without I/O. But we are potentially leaving up to five seconds'
5556 * worth of inodes floating about which prune_icache wants us to
5557 * write out. One way to fix that would be to get prune_icache()
5558 * to do a write_super() to free up some memory. It has the desired
5559 * effect.
5560 */
Mingming Cao617ba132006-10-11 01:20:53 -07005561int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005562{
Mingming Cao617ba132006-10-11 01:20:53 -07005563 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005564 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5565 static unsigned int mnt_count;
5566 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005567
5568 might_sleep();
Mingming Cao617ba132006-10-11 01:20:53 -07005569 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05005570 if (ext4_handle_valid(handle) &&
5571 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005572 !(EXT4_I(inode)->i_state & EXT4_STATE_NO_EXPAND)) {
5573 /*
5574 * We need extra buffer credits since we may write into EA block
5575 * with this same handle. If journal_extend fails, then it will
5576 * only result in a minor loss of functionality for that inode.
5577 * If this is felt to be critical, then e2fsck should be run to
5578 * force a large enough s_min_extra_isize.
5579 */
5580 if ((jbd2_journal_extend(handle,
5581 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
5582 ret = ext4_expand_extra_isize(inode,
5583 sbi->s_want_extra_isize,
5584 iloc, handle);
5585 if (ret) {
5586 EXT4_I(inode)->i_state |= EXT4_STATE_NO_EXPAND;
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005587 if (mnt_count !=
5588 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04005589 ext4_warning(inode->i_sb, __func__,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005590 "Unable to expand inode %lu. Delete"
5591 " some EAs or run e2fsck.",
5592 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005593 mnt_count =
5594 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005595 }
5596 }
5597 }
5598 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005599 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07005600 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005601 return err;
5602}
5603
5604/*
Mingming Cao617ba132006-10-11 01:20:53 -07005605 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005606 *
5607 * We're really interested in the case where a file is being extended.
5608 * i_size has been changed by generic_commit_write() and we thus need
5609 * to include the updated inode in the current transaction.
5610 *
Jan Karaa269eb12009-01-26 17:04:39 +01005611 * Also, vfs_dq_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005612 * are allocated to the file.
5613 *
5614 * If the inode is marked synchronous, we don't honour that here - doing
5615 * so would cause a commit on atime updates, which we don't bother doing.
5616 * We handle synchronous inodes at the highest possible level.
5617 */
Mingming Cao617ba132006-10-11 01:20:53 -07005618void ext4_dirty_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005619{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005620 handle_t *handle;
5621
Mingming Cao617ba132006-10-11 01:20:53 -07005622 handle = ext4_journal_start(inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005623 if (IS_ERR(handle))
5624 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005625
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005626 ext4_mark_inode_dirty(handle, inode);
5627
Mingming Cao617ba132006-10-11 01:20:53 -07005628 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005629out:
5630 return;
5631}
5632
5633#if 0
5634/*
5635 * Bind an inode's backing buffer_head into this transaction, to prevent
5636 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07005637 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005638 * returns no iloc structure, so the caller needs to repeat the iloc
5639 * lookup to mark the inode dirty later.
5640 */
Mingming Cao617ba132006-10-11 01:20:53 -07005641static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005642{
Mingming Cao617ba132006-10-11 01:20:53 -07005643 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005644
5645 int err = 0;
5646 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07005647 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005648 if (!err) {
5649 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07005650 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005651 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05005652 err = ext4_handle_dirty_metadata(handle,
5653 inode,
5654 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005655 brelse(iloc.bh);
5656 }
5657 }
Mingming Cao617ba132006-10-11 01:20:53 -07005658 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005659 return err;
5660}
5661#endif
5662
Mingming Cao617ba132006-10-11 01:20:53 -07005663int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005664{
5665 journal_t *journal;
5666 handle_t *handle;
5667 int err;
5668
5669 /*
5670 * We have to be very careful here: changing a data block's
5671 * journaling status dynamically is dangerous. If we write a
5672 * data block to the journal, change the status and then delete
5673 * that block, we risk forgetting to revoke the old log record
5674 * from the journal and so a subsequent replay can corrupt data.
5675 * So, first we make sure that the journal is empty and that
5676 * nobody is changing anything.
5677 */
5678
Mingming Cao617ba132006-10-11 01:20:53 -07005679 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005680 if (!journal)
5681 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005682 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005683 return -EROFS;
5684
Mingming Caodab291a2006-10-11 01:21:01 -07005685 jbd2_journal_lock_updates(journal);
5686 jbd2_journal_flush(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005687
5688 /*
5689 * OK, there are no updates running now, and all cached data is
5690 * synced to disk. We are now in a completely consistent state
5691 * which doesn't have anything in the journal, and we know that
5692 * no filesystem updates are running, so it is safe to modify
5693 * the inode's in-core data-journaling state flag now.
5694 */
5695
5696 if (val)
Mingming Cao617ba132006-10-11 01:20:53 -07005697 EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005698 else
Mingming Cao617ba132006-10-11 01:20:53 -07005699 EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL;
5700 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005701
Mingming Caodab291a2006-10-11 01:21:01 -07005702 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005703
5704 /* Finally we can mark the inode as dirty. */
5705
Mingming Cao617ba132006-10-11 01:20:53 -07005706 handle = ext4_journal_start(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005707 if (IS_ERR(handle))
5708 return PTR_ERR(handle);
5709
Mingming Cao617ba132006-10-11 01:20:53 -07005710 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005711 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005712 ext4_journal_stop(handle);
5713 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005714
5715 return err;
5716}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005717
5718static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5719{
5720 return !buffer_mapped(bh);
5721}
5722
Nick Pigginc2ec1752009-03-31 15:23:21 -07005723int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005724{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005725 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005726 loff_t size;
5727 unsigned long len;
5728 int ret = -EINVAL;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005729 void *fsdata;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005730 struct file *file = vma->vm_file;
5731 struct inode *inode = file->f_path.dentry->d_inode;
5732 struct address_space *mapping = inode->i_mapping;
5733
5734 /*
5735 * Get i_alloc_sem to stop truncates messing with the inode. We cannot
5736 * get i_mutex because we are already holding mmap_sem.
5737 */
5738 down_read(&inode->i_alloc_sem);
5739 size = i_size_read(inode);
5740 if (page->mapping != mapping || size <= page_offset(page)
5741 || !PageUptodate(page)) {
5742 /* page got truncated from under us? */
5743 goto out_unlock;
5744 }
5745 ret = 0;
5746 if (PageMappedToDisk(page))
5747 goto out_unlock;
5748
5749 if (page->index == size >> PAGE_CACHE_SHIFT)
5750 len = size & ~PAGE_CACHE_MASK;
5751 else
5752 len = PAGE_CACHE_SIZE;
5753
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005754 lock_page(page);
5755 /*
5756 * return if we have all the buffers mapped. This avoid
5757 * the need to call write_begin/write_end which does a
5758 * journal_start/journal_stop which can block and take
5759 * long time
5760 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005761 if (page_has_buffers(page)) {
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005762 if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL,
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005763 ext4_bh_unmapped)) {
5764 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005765 goto out_unlock;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005766 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005767 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005768 unlock_page(page);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005769 /*
5770 * OK, we need to fill the hole... Do write_begin write_end
5771 * to do block allocation/reservation.We are not holding
5772 * inode.i__mutex here. That allow * parallel write_begin,
5773 * write_end call. lock_page prevent this from happening
5774 * on the same page though
5775 */
5776 ret = mapping->a_ops->write_begin(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005777 len, AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005778 if (ret < 0)
5779 goto out_unlock;
5780 ret = mapping->a_ops->write_end(file, mapping, page_offset(page),
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04005781 len, len, page, fsdata);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005782 if (ret < 0)
5783 goto out_unlock;
5784 ret = 0;
5785out_unlock:
Nick Pigginc2ec1752009-03-31 15:23:21 -07005786 if (ret)
5787 ret = VM_FAULT_SIGBUS;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005788 up_read(&inode->i_alloc_sem);
5789 return ret;
5790}