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