]>
Commit | Line | Data |
---|---|---|
a86c6181 AT |
1 | /* |
2 | * Copyright (c) 2003-2006, Cluster File Systems, Inc, [email protected] | |
3 | * Written by Alex Tomas <[email protected]> | |
4 | * | |
5 | * Architecture independence: | |
6 | * Copyright (c) 2005, Bull S.A. | |
7 | * Written by Pierre Peiffer <[email protected]> | |
8 | * | |
9 | * This program is free software; you can redistribute it and/or modify | |
10 | * it under the terms of the GNU General Public License version 2 as | |
11 | * published by the Free Software Foundation. | |
12 | * | |
13 | * This program is distributed in the hope that it will be useful, | |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | * GNU General Public License for more details. | |
17 | * | |
18 | * You should have received a copy of the GNU General Public Licens | |
19 | * along with this program; if not, write to the Free Software | |
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111- | |
21 | */ | |
22 | ||
23 | /* | |
24 | * Extents support for EXT4 | |
25 | * | |
26 | * TODO: | |
27 | * - ext4*_error() should be used in some situations | |
28 | * - analyze all BUG()/BUG_ON(), use -EIO where appropriate | |
29 | * - smart tree reduction | |
30 | */ | |
31 | ||
32 | #include <linux/module.h> | |
33 | #include <linux/fs.h> | |
34 | #include <linux/time.h> | |
35 | #include <linux/ext4_jbd2.h> | |
cd02ff0b | 36 | #include <linux/jbd2.h> |
a86c6181 AT |
37 | #include <linux/highuid.h> |
38 | #include <linux/pagemap.h> | |
39 | #include <linux/quotaops.h> | |
40 | #include <linux/string.h> | |
41 | #include <linux/slab.h> | |
a2df2a63 | 42 | #include <linux/falloc.h> |
a86c6181 AT |
43 | #include <linux/ext4_fs_extents.h> |
44 | #include <asm/uaccess.h> | |
45 | ||
46 | ||
d0d856e8 RD |
47 | /* |
48 | * ext_pblock: | |
49 | * combine low and high parts of physical block number into ext4_fsblk_t | |
50 | */ | |
09b88252 | 51 | static ext4_fsblk_t ext_pblock(struct ext4_extent *ex) |
f65e6fba AT |
52 | { |
53 | ext4_fsblk_t block; | |
54 | ||
b377611d | 55 | block = le32_to_cpu(ex->ee_start_lo); |
9b8f1f01 | 56 | block |= ((ext4_fsblk_t) le16_to_cpu(ex->ee_start_hi) << 31) << 1; |
f65e6fba AT |
57 | return block; |
58 | } | |
59 | ||
d0d856e8 RD |
60 | /* |
61 | * idx_pblock: | |
62 | * combine low and high parts of a leaf physical block number into ext4_fsblk_t | |
63 | */ | |
c14c6fd5 | 64 | ext4_fsblk_t idx_pblock(struct ext4_extent_idx *ix) |
f65e6fba AT |
65 | { |
66 | ext4_fsblk_t block; | |
67 | ||
d8dd0b45 | 68 | block = le32_to_cpu(ix->ei_leaf_lo); |
9b8f1f01 | 69 | block |= ((ext4_fsblk_t) le16_to_cpu(ix->ei_leaf_hi) << 31) << 1; |
f65e6fba AT |
70 | return block; |
71 | } | |
72 | ||
d0d856e8 RD |
73 | /* |
74 | * ext4_ext_store_pblock: | |
75 | * stores a large physical block number into an extent struct, | |
76 | * breaking it into parts | |
77 | */ | |
c14c6fd5 | 78 | void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb) |
f65e6fba | 79 | { |
b377611d | 80 | ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff)); |
9b8f1f01 | 81 | ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff); |
f65e6fba AT |
82 | } |
83 | ||
d0d856e8 RD |
84 | /* |
85 | * ext4_idx_store_pblock: | |
86 | * stores a large physical block number into an index struct, | |
87 | * breaking it into parts | |
88 | */ | |
09b88252 | 89 | static void ext4_idx_store_pblock(struct ext4_extent_idx *ix, ext4_fsblk_t pb) |
f65e6fba | 90 | { |
d8dd0b45 | 91 | ix->ei_leaf_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff)); |
9b8f1f01 | 92 | ix->ei_leaf_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff); |
f65e6fba AT |
93 | } |
94 | ||
a86c6181 AT |
95 | static handle_t *ext4_ext_journal_restart(handle_t *handle, int needed) |
96 | { | |
97 | int err; | |
98 | ||
99 | if (handle->h_buffer_credits > needed) | |
100 | return handle; | |
101 | if (!ext4_journal_extend(handle, needed)) | |
102 | return handle; | |
103 | err = ext4_journal_restart(handle, needed); | |
104 | ||
105 | return handle; | |
106 | } | |
107 | ||
108 | /* | |
109 | * could return: | |
110 | * - EROFS | |
111 | * - ENOMEM | |
112 | */ | |
113 | static int ext4_ext_get_access(handle_t *handle, struct inode *inode, | |
114 | struct ext4_ext_path *path) | |
115 | { | |
116 | if (path->p_bh) { | |
117 | /* path points to block */ | |
118 | return ext4_journal_get_write_access(handle, path->p_bh); | |
119 | } | |
120 | /* path points to leaf/index in inode body */ | |
121 | /* we use in-core data, no need to protect them */ | |
122 | return 0; | |
123 | } | |
124 | ||
125 | /* | |
126 | * could return: | |
127 | * - EROFS | |
128 | * - ENOMEM | |
129 | * - EIO | |
130 | */ | |
131 | static int ext4_ext_dirty(handle_t *handle, struct inode *inode, | |
132 | struct ext4_ext_path *path) | |
133 | { | |
134 | int err; | |
135 | if (path->p_bh) { | |
136 | /* path points to block */ | |
137 | err = ext4_journal_dirty_metadata(handle, path->p_bh); | |
138 | } else { | |
139 | /* path points to leaf/index in inode body */ | |
140 | err = ext4_mark_inode_dirty(handle, inode); | |
141 | } | |
142 | return err; | |
143 | } | |
144 | ||
f65e6fba | 145 | static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode, |
a86c6181 | 146 | struct ext4_ext_path *path, |
725d26d3 | 147 | ext4_lblk_t block) |
a86c6181 AT |
148 | { |
149 | struct ext4_inode_info *ei = EXT4_I(inode); | |
f65e6fba | 150 | ext4_fsblk_t bg_start; |
74d3487f | 151 | ext4_fsblk_t last_block; |
f65e6fba | 152 | ext4_grpblk_t colour; |
a86c6181 AT |
153 | int depth; |
154 | ||
155 | if (path) { | |
156 | struct ext4_extent *ex; | |
157 | depth = path->p_depth; | |
158 | ||
159 | /* try to predict block placement */ | |
7e028976 AM |
160 | ex = path[depth].p_ext; |
161 | if (ex) | |
f65e6fba | 162 | return ext_pblock(ex)+(block-le32_to_cpu(ex->ee_block)); |
a86c6181 | 163 | |
d0d856e8 RD |
164 | /* it looks like index is empty; |
165 | * try to find starting block from index itself */ | |
a86c6181 AT |
166 | if (path[depth].p_bh) |
167 | return path[depth].p_bh->b_blocknr; | |
168 | } | |
169 | ||
170 | /* OK. use inode's group */ | |
171 | bg_start = (ei->i_block_group * EXT4_BLOCKS_PER_GROUP(inode->i_sb)) + | |
172 | le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_first_data_block); | |
74d3487f VC |
173 | last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1; |
174 | ||
175 | if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block) | |
176 | colour = (current->pid % 16) * | |
a86c6181 | 177 | (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16); |
74d3487f VC |
178 | else |
179 | colour = (current->pid % 16) * ((last_block - bg_start) / 16); | |
a86c6181 AT |
180 | return bg_start + colour + block; |
181 | } | |
182 | ||
f65e6fba | 183 | static ext4_fsblk_t |
a86c6181 AT |
184 | ext4_ext_new_block(handle_t *handle, struct inode *inode, |
185 | struct ext4_ext_path *path, | |
186 | struct ext4_extent *ex, int *err) | |
187 | { | |
f65e6fba | 188 | ext4_fsblk_t goal, newblock; |
a86c6181 AT |
189 | |
190 | goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); | |
191 | newblock = ext4_new_block(handle, inode, goal, err); | |
192 | return newblock; | |
193 | } | |
194 | ||
09b88252 | 195 | static int ext4_ext_space_block(struct inode *inode) |
a86c6181 AT |
196 | { |
197 | int size; | |
198 | ||
199 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) | |
200 | / sizeof(struct ext4_extent); | |
bbf2f9fb | 201 | #ifdef AGGRESSIVE_TEST |
a86c6181 AT |
202 | if (size > 6) |
203 | size = 6; | |
204 | #endif | |
205 | return size; | |
206 | } | |
207 | ||
09b88252 | 208 | static int ext4_ext_space_block_idx(struct inode *inode) |
a86c6181 AT |
209 | { |
210 | int size; | |
211 | ||
212 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) | |
213 | / sizeof(struct ext4_extent_idx); | |
bbf2f9fb | 214 | #ifdef AGGRESSIVE_TEST |
a86c6181 AT |
215 | if (size > 5) |
216 | size = 5; | |
217 | #endif | |
218 | return size; | |
219 | } | |
220 | ||
09b88252 | 221 | static int ext4_ext_space_root(struct inode *inode) |
a86c6181 AT |
222 | { |
223 | int size; | |
224 | ||
225 | size = sizeof(EXT4_I(inode)->i_data); | |
226 | size -= sizeof(struct ext4_extent_header); | |
227 | size /= sizeof(struct ext4_extent); | |
bbf2f9fb | 228 | #ifdef AGGRESSIVE_TEST |
a86c6181 AT |
229 | if (size > 3) |
230 | size = 3; | |
231 | #endif | |
232 | return size; | |
233 | } | |
234 | ||
09b88252 | 235 | static int ext4_ext_space_root_idx(struct inode *inode) |
a86c6181 AT |
236 | { |
237 | int size; | |
238 | ||
239 | size = sizeof(EXT4_I(inode)->i_data); | |
240 | size -= sizeof(struct ext4_extent_header); | |
241 | size /= sizeof(struct ext4_extent_idx); | |
bbf2f9fb | 242 | #ifdef AGGRESSIVE_TEST |
a86c6181 AT |
243 | if (size > 4) |
244 | size = 4; | |
245 | #endif | |
246 | return size; | |
247 | } | |
248 | ||
c29c0ae7 AT |
249 | static int |
250 | ext4_ext_max_entries(struct inode *inode, int depth) | |
251 | { | |
252 | int max; | |
253 | ||
254 | if (depth == ext_depth(inode)) { | |
255 | if (depth == 0) | |
256 | max = ext4_ext_space_root(inode); | |
257 | else | |
258 | max = ext4_ext_space_root_idx(inode); | |
259 | } else { | |
260 | if (depth == 0) | |
261 | max = ext4_ext_space_block(inode); | |
262 | else | |
263 | max = ext4_ext_space_block_idx(inode); | |
264 | } | |
265 | ||
266 | return max; | |
267 | } | |
268 | ||
269 | static int __ext4_ext_check_header(const char *function, struct inode *inode, | |
270 | struct ext4_extent_header *eh, | |
271 | int depth) | |
272 | { | |
273 | const char *error_msg; | |
274 | int max = 0; | |
275 | ||
276 | if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) { | |
277 | error_msg = "invalid magic"; | |
278 | goto corrupted; | |
279 | } | |
280 | if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) { | |
281 | error_msg = "unexpected eh_depth"; | |
282 | goto corrupted; | |
283 | } | |
284 | if (unlikely(eh->eh_max == 0)) { | |
285 | error_msg = "invalid eh_max"; | |
286 | goto corrupted; | |
287 | } | |
288 | max = ext4_ext_max_entries(inode, depth); | |
289 | if (unlikely(le16_to_cpu(eh->eh_max) > max)) { | |
290 | error_msg = "too large eh_max"; | |
291 | goto corrupted; | |
292 | } | |
293 | if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) { | |
294 | error_msg = "invalid eh_entries"; | |
295 | goto corrupted; | |
296 | } | |
297 | return 0; | |
298 | ||
299 | corrupted: | |
300 | ext4_error(inode->i_sb, function, | |
301 | "bad header in inode #%lu: %s - magic %x, " | |
302 | "entries %u, max %u(%u), depth %u(%u)", | |
303 | inode->i_ino, error_msg, le16_to_cpu(eh->eh_magic), | |
304 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max), | |
305 | max, le16_to_cpu(eh->eh_depth), depth); | |
306 | ||
307 | return -EIO; | |
308 | } | |
309 | ||
310 | #define ext4_ext_check_header(inode, eh, depth) \ | |
311 | __ext4_ext_check_header(__FUNCTION__, inode, eh, depth) | |
312 | ||
a86c6181 AT |
313 | #ifdef EXT_DEBUG |
314 | static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path) | |
315 | { | |
316 | int k, l = path->p_depth; | |
317 | ||
318 | ext_debug("path:"); | |
319 | for (k = 0; k <= l; k++, path++) { | |
320 | if (path->p_idx) { | |
2ae02107 | 321 | ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block), |
f65e6fba | 322 | idx_pblock(path->p_idx)); |
a86c6181 | 323 | } else if (path->p_ext) { |
2ae02107 | 324 | ext_debug(" %d:%d:%llu ", |
a86c6181 | 325 | le32_to_cpu(path->p_ext->ee_block), |
a2df2a63 | 326 | ext4_ext_get_actual_len(path->p_ext), |
f65e6fba | 327 | ext_pblock(path->p_ext)); |
a86c6181 AT |
328 | } else |
329 | ext_debug(" []"); | |
330 | } | |
331 | ext_debug("\n"); | |
332 | } | |
333 | ||
334 | static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path) | |
335 | { | |
336 | int depth = ext_depth(inode); | |
337 | struct ext4_extent_header *eh; | |
338 | struct ext4_extent *ex; | |
339 | int i; | |
340 | ||
341 | if (!path) | |
342 | return; | |
343 | ||
344 | eh = path[depth].p_hdr; | |
345 | ex = EXT_FIRST_EXTENT(eh); | |
346 | ||
347 | for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) { | |
2ae02107 | 348 | ext_debug("%d:%d:%llu ", le32_to_cpu(ex->ee_block), |
a2df2a63 | 349 | ext4_ext_get_actual_len(ex), ext_pblock(ex)); |
a86c6181 AT |
350 | } |
351 | ext_debug("\n"); | |
352 | } | |
353 | #else | |
354 | #define ext4_ext_show_path(inode,path) | |
355 | #define ext4_ext_show_leaf(inode,path) | |
356 | #endif | |
357 | ||
b35905c1 | 358 | void ext4_ext_drop_refs(struct ext4_ext_path *path) |
a86c6181 AT |
359 | { |
360 | int depth = path->p_depth; | |
361 | int i; | |
362 | ||
363 | for (i = 0; i <= depth; i++, path++) | |
364 | if (path->p_bh) { | |
365 | brelse(path->p_bh); | |
366 | path->p_bh = NULL; | |
367 | } | |
368 | } | |
369 | ||
370 | /* | |
d0d856e8 RD |
371 | * ext4_ext_binsearch_idx: |
372 | * binary search for the closest index of the given block | |
c29c0ae7 | 373 | * the header must be checked before calling this |
a86c6181 AT |
374 | */ |
375 | static void | |
725d26d3 AK |
376 | ext4_ext_binsearch_idx(struct inode *inode, |
377 | struct ext4_ext_path *path, ext4_lblk_t block) | |
a86c6181 AT |
378 | { |
379 | struct ext4_extent_header *eh = path->p_hdr; | |
380 | struct ext4_extent_idx *r, *l, *m; | |
381 | ||
a86c6181 | 382 | |
bba90743 | 383 | ext_debug("binsearch for %u(idx): ", block); |
a86c6181 AT |
384 | |
385 | l = EXT_FIRST_INDEX(eh) + 1; | |
e9f410b1 | 386 | r = EXT_LAST_INDEX(eh); |
a86c6181 AT |
387 | while (l <= r) { |
388 | m = l + (r - l) / 2; | |
389 | if (block < le32_to_cpu(m->ei_block)) | |
390 | r = m - 1; | |
391 | else | |
392 | l = m + 1; | |
26d535ed DM |
393 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block), |
394 | m, le32_to_cpu(m->ei_block), | |
395 | r, le32_to_cpu(r->ei_block)); | |
a86c6181 AT |
396 | } |
397 | ||
398 | path->p_idx = l - 1; | |
f65e6fba | 399 | ext_debug(" -> %d->%lld ", le32_to_cpu(path->p_idx->ei_block), |
26d535ed | 400 | idx_pblock(path->p_idx)); |
a86c6181 AT |
401 | |
402 | #ifdef CHECK_BINSEARCH | |
403 | { | |
404 | struct ext4_extent_idx *chix, *ix; | |
405 | int k; | |
406 | ||
407 | chix = ix = EXT_FIRST_INDEX(eh); | |
408 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) { | |
409 | if (k != 0 && | |
410 | le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) { | |
411 | printk("k=%d, ix=0x%p, first=0x%p\n", k, | |
412 | ix, EXT_FIRST_INDEX(eh)); | |
413 | printk("%u <= %u\n", | |
414 | le32_to_cpu(ix->ei_block), | |
415 | le32_to_cpu(ix[-1].ei_block)); | |
416 | } | |
417 | BUG_ON(k && le32_to_cpu(ix->ei_block) | |
8c55e204 | 418 | <= le32_to_cpu(ix[-1].ei_block)); |
a86c6181 AT |
419 | if (block < le32_to_cpu(ix->ei_block)) |
420 | break; | |
421 | chix = ix; | |
422 | } | |
423 | BUG_ON(chix != path->p_idx); | |
424 | } | |
425 | #endif | |
426 | ||
427 | } | |
428 | ||
429 | /* | |
d0d856e8 RD |
430 | * ext4_ext_binsearch: |
431 | * binary search for closest extent of the given block | |
c29c0ae7 | 432 | * the header must be checked before calling this |
a86c6181 AT |
433 | */ |
434 | static void | |
725d26d3 AK |
435 | ext4_ext_binsearch(struct inode *inode, |
436 | struct ext4_ext_path *path, ext4_lblk_t block) | |
a86c6181 AT |
437 | { |
438 | struct ext4_extent_header *eh = path->p_hdr; | |
439 | struct ext4_extent *r, *l, *m; | |
440 | ||
a86c6181 AT |
441 | if (eh->eh_entries == 0) { |
442 | /* | |
d0d856e8 RD |
443 | * this leaf is empty: |
444 | * we get such a leaf in split/add case | |
a86c6181 AT |
445 | */ |
446 | return; | |
447 | } | |
448 | ||
bba90743 | 449 | ext_debug("binsearch for %u: ", block); |
a86c6181 AT |
450 | |
451 | l = EXT_FIRST_EXTENT(eh) + 1; | |
e9f410b1 | 452 | r = EXT_LAST_EXTENT(eh); |
a86c6181 AT |
453 | |
454 | while (l <= r) { | |
455 | m = l + (r - l) / 2; | |
456 | if (block < le32_to_cpu(m->ee_block)) | |
457 | r = m - 1; | |
458 | else | |
459 | l = m + 1; | |
26d535ed DM |
460 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block), |
461 | m, le32_to_cpu(m->ee_block), | |
462 | r, le32_to_cpu(r->ee_block)); | |
a86c6181 AT |
463 | } |
464 | ||
465 | path->p_ext = l - 1; | |
2ae02107 | 466 | ext_debug(" -> %d:%llu:%d ", |
8c55e204 DK |
467 | le32_to_cpu(path->p_ext->ee_block), |
468 | ext_pblock(path->p_ext), | |
a2df2a63 | 469 | ext4_ext_get_actual_len(path->p_ext)); |
a86c6181 AT |
470 | |
471 | #ifdef CHECK_BINSEARCH | |
472 | { | |
473 | struct ext4_extent *chex, *ex; | |
474 | int k; | |
475 | ||
476 | chex = ex = EXT_FIRST_EXTENT(eh); | |
477 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) { | |
478 | BUG_ON(k && le32_to_cpu(ex->ee_block) | |
8c55e204 | 479 | <= le32_to_cpu(ex[-1].ee_block)); |
a86c6181 AT |
480 | if (block < le32_to_cpu(ex->ee_block)) |
481 | break; | |
482 | chex = ex; | |
483 | } | |
484 | BUG_ON(chex != path->p_ext); | |
485 | } | |
486 | #endif | |
487 | ||
488 | } | |
489 | ||
490 | int ext4_ext_tree_init(handle_t *handle, struct inode *inode) | |
491 | { | |
492 | struct ext4_extent_header *eh; | |
493 | ||
494 | eh = ext_inode_hdr(inode); | |
495 | eh->eh_depth = 0; | |
496 | eh->eh_entries = 0; | |
497 | eh->eh_magic = EXT4_EXT_MAGIC; | |
498 | eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode)); | |
499 | ext4_mark_inode_dirty(handle, inode); | |
500 | ext4_ext_invalidate_cache(inode); | |
501 | return 0; | |
502 | } | |
503 | ||
504 | struct ext4_ext_path * | |
725d26d3 AK |
505 | ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block, |
506 | struct ext4_ext_path *path) | |
a86c6181 AT |
507 | { |
508 | struct ext4_extent_header *eh; | |
509 | struct buffer_head *bh; | |
510 | short int depth, i, ppos = 0, alloc = 0; | |
511 | ||
512 | eh = ext_inode_hdr(inode); | |
c29c0ae7 AT |
513 | depth = ext_depth(inode); |
514 | if (ext4_ext_check_header(inode, eh, depth)) | |
a86c6181 AT |
515 | return ERR_PTR(-EIO); |
516 | ||
a86c6181 AT |
517 | |
518 | /* account possible depth increase */ | |
519 | if (!path) { | |
5d4958f9 | 520 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2), |
a86c6181 AT |
521 | GFP_NOFS); |
522 | if (!path) | |
523 | return ERR_PTR(-ENOMEM); | |
524 | alloc = 1; | |
525 | } | |
a86c6181 AT |
526 | path[0].p_hdr = eh; |
527 | ||
c29c0ae7 | 528 | i = depth; |
a86c6181 AT |
529 | /* walk through the tree */ |
530 | while (i) { | |
531 | ext_debug("depth %d: num %d, max %d\n", | |
532 | ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max)); | |
c29c0ae7 | 533 | |
a86c6181 | 534 | ext4_ext_binsearch_idx(inode, path + ppos, block); |
f65e6fba | 535 | path[ppos].p_block = idx_pblock(path[ppos].p_idx); |
a86c6181 AT |
536 | path[ppos].p_depth = i; |
537 | path[ppos].p_ext = NULL; | |
538 | ||
539 | bh = sb_bread(inode->i_sb, path[ppos].p_block); | |
540 | if (!bh) | |
541 | goto err; | |
542 | ||
543 | eh = ext_block_hdr(bh); | |
544 | ppos++; | |
545 | BUG_ON(ppos > depth); | |
546 | path[ppos].p_bh = bh; | |
547 | path[ppos].p_hdr = eh; | |
548 | i--; | |
549 | ||
c29c0ae7 | 550 | if (ext4_ext_check_header(inode, eh, i)) |
a86c6181 AT |
551 | goto err; |
552 | } | |
553 | ||
554 | path[ppos].p_depth = i; | |
555 | path[ppos].p_hdr = eh; | |
556 | path[ppos].p_ext = NULL; | |
557 | path[ppos].p_idx = NULL; | |
558 | ||
a86c6181 AT |
559 | /* find extent */ |
560 | ext4_ext_binsearch(inode, path + ppos, block); | |
561 | ||
562 | ext4_ext_show_path(inode, path); | |
563 | ||
564 | return path; | |
565 | ||
566 | err: | |
567 | ext4_ext_drop_refs(path); | |
568 | if (alloc) | |
569 | kfree(path); | |
570 | return ERR_PTR(-EIO); | |
571 | } | |
572 | ||
573 | /* | |
d0d856e8 RD |
574 | * ext4_ext_insert_index: |
575 | * insert new index [@logical;@ptr] into the block at @curp; | |
576 | * check where to insert: before @curp or after @curp | |
a86c6181 AT |
577 | */ |
578 | static int ext4_ext_insert_index(handle_t *handle, struct inode *inode, | |
579 | struct ext4_ext_path *curp, | |
f65e6fba | 580 | int logical, ext4_fsblk_t ptr) |
a86c6181 AT |
581 | { |
582 | struct ext4_extent_idx *ix; | |
583 | int len, err; | |
584 | ||
7e028976 AM |
585 | err = ext4_ext_get_access(handle, inode, curp); |
586 | if (err) | |
a86c6181 AT |
587 | return err; |
588 | ||
589 | BUG_ON(logical == le32_to_cpu(curp->p_idx->ei_block)); | |
590 | len = EXT_MAX_INDEX(curp->p_hdr) - curp->p_idx; | |
591 | if (logical > le32_to_cpu(curp->p_idx->ei_block)) { | |
592 | /* insert after */ | |
593 | if (curp->p_idx != EXT_LAST_INDEX(curp->p_hdr)) { | |
594 | len = (len - 1) * sizeof(struct ext4_extent_idx); | |
595 | len = len < 0 ? 0 : len; | |
26d535ed | 596 | ext_debug("insert new index %d after: %llu. " |
a86c6181 AT |
597 | "move %d from 0x%p to 0x%p\n", |
598 | logical, ptr, len, | |
599 | (curp->p_idx + 1), (curp->p_idx + 2)); | |
600 | memmove(curp->p_idx + 2, curp->p_idx + 1, len); | |
601 | } | |
602 | ix = curp->p_idx + 1; | |
603 | } else { | |
604 | /* insert before */ | |
605 | len = len * sizeof(struct ext4_extent_idx); | |
606 | len = len < 0 ? 0 : len; | |
26d535ed | 607 | ext_debug("insert new index %d before: %llu. " |
a86c6181 AT |
608 | "move %d from 0x%p to 0x%p\n", |
609 | logical, ptr, len, | |
610 | curp->p_idx, (curp->p_idx + 1)); | |
611 | memmove(curp->p_idx + 1, curp->p_idx, len); | |
612 | ix = curp->p_idx; | |
613 | } | |
614 | ||
615 | ix->ei_block = cpu_to_le32(logical); | |
f65e6fba | 616 | ext4_idx_store_pblock(ix, ptr); |
a86c6181 AT |
617 | curp->p_hdr->eh_entries = cpu_to_le16(le16_to_cpu(curp->p_hdr->eh_entries)+1); |
618 | ||
619 | BUG_ON(le16_to_cpu(curp->p_hdr->eh_entries) | |
8c55e204 | 620 | > le16_to_cpu(curp->p_hdr->eh_max)); |
a86c6181 AT |
621 | BUG_ON(ix > EXT_LAST_INDEX(curp->p_hdr)); |
622 | ||
623 | err = ext4_ext_dirty(handle, inode, curp); | |
624 | ext4_std_error(inode->i_sb, err); | |
625 | ||
626 | return err; | |
627 | } | |
628 | ||
629 | /* | |
d0d856e8 RD |
630 | * ext4_ext_split: |
631 | * inserts new subtree into the path, using free index entry | |
632 | * at depth @at: | |
633 | * - allocates all needed blocks (new leaf and all intermediate index blocks) | |
634 | * - makes decision where to split | |
635 | * - moves remaining extents and index entries (right to the split point) | |
636 | * into the newly allocated blocks | |
637 | * - initializes subtree | |
a86c6181 AT |
638 | */ |
639 | static int ext4_ext_split(handle_t *handle, struct inode *inode, | |
640 | struct ext4_ext_path *path, | |
641 | struct ext4_extent *newext, int at) | |
642 | { | |
643 | struct buffer_head *bh = NULL; | |
644 | int depth = ext_depth(inode); | |
645 | struct ext4_extent_header *neh; | |
646 | struct ext4_extent_idx *fidx; | |
647 | struct ext4_extent *ex; | |
648 | int i = at, k, m, a; | |
f65e6fba | 649 | ext4_fsblk_t newblock, oldblock; |
a86c6181 | 650 | __le32 border; |
f65e6fba | 651 | ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */ |
a86c6181 AT |
652 | int err = 0; |
653 | ||
654 | /* make decision: where to split? */ | |
d0d856e8 | 655 | /* FIXME: now decision is simplest: at current extent */ |
a86c6181 | 656 | |
d0d856e8 | 657 | /* if current leaf will be split, then we should use |
a86c6181 AT |
658 | * border from split point */ |
659 | BUG_ON(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr)); | |
660 | if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) { | |
661 | border = path[depth].p_ext[1].ee_block; | |
d0d856e8 | 662 | ext_debug("leaf will be split." |
a86c6181 | 663 | " next leaf starts at %d\n", |
8c55e204 | 664 | le32_to_cpu(border)); |
a86c6181 AT |
665 | } else { |
666 | border = newext->ee_block; | |
667 | ext_debug("leaf will be added." | |
668 | " next leaf starts at %d\n", | |
8c55e204 | 669 | le32_to_cpu(border)); |
a86c6181 AT |
670 | } |
671 | ||
672 | /* | |
d0d856e8 RD |
673 | * If error occurs, then we break processing |
674 | * and mark filesystem read-only. index won't | |
a86c6181 | 675 | * be inserted and tree will be in consistent |
d0d856e8 | 676 | * state. Next mount will repair buffers too. |
a86c6181 AT |
677 | */ |
678 | ||
679 | /* | |
d0d856e8 RD |
680 | * Get array to track all allocated blocks. |
681 | * We need this to handle errors and free blocks | |
682 | * upon them. | |
a86c6181 | 683 | */ |
5d4958f9 | 684 | ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS); |
a86c6181 AT |
685 | if (!ablocks) |
686 | return -ENOMEM; | |
a86c6181 AT |
687 | |
688 | /* allocate all needed blocks */ | |
689 | ext_debug("allocate %d blocks for indexes/leaf\n", depth - at); | |
690 | for (a = 0; a < depth - at; a++) { | |
691 | newblock = ext4_ext_new_block(handle, inode, path, newext, &err); | |
692 | if (newblock == 0) | |
693 | goto cleanup; | |
694 | ablocks[a] = newblock; | |
695 | } | |
696 | ||
697 | /* initialize new leaf */ | |
698 | newblock = ablocks[--a]; | |
699 | BUG_ON(newblock == 0); | |
700 | bh = sb_getblk(inode->i_sb, newblock); | |
701 | if (!bh) { | |
702 | err = -EIO; | |
703 | goto cleanup; | |
704 | } | |
705 | lock_buffer(bh); | |
706 | ||
7e028976 AM |
707 | err = ext4_journal_get_create_access(handle, bh); |
708 | if (err) | |
a86c6181 AT |
709 | goto cleanup; |
710 | ||
711 | neh = ext_block_hdr(bh); | |
712 | neh->eh_entries = 0; | |
713 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode)); | |
714 | neh->eh_magic = EXT4_EXT_MAGIC; | |
715 | neh->eh_depth = 0; | |
716 | ex = EXT_FIRST_EXTENT(neh); | |
717 | ||
d0d856e8 | 718 | /* move remainder of path[depth] to the new leaf */ |
a86c6181 AT |
719 | BUG_ON(path[depth].p_hdr->eh_entries != path[depth].p_hdr->eh_max); |
720 | /* start copy from next extent */ | |
721 | /* TODO: we could do it by single memmove */ | |
722 | m = 0; | |
723 | path[depth].p_ext++; | |
724 | while (path[depth].p_ext <= | |
725 | EXT_MAX_EXTENT(path[depth].p_hdr)) { | |
2ae02107 | 726 | ext_debug("move %d:%llu:%d in new leaf %llu\n", |
8c55e204 DK |
727 | le32_to_cpu(path[depth].p_ext->ee_block), |
728 | ext_pblock(path[depth].p_ext), | |
a2df2a63 | 729 | ext4_ext_get_actual_len(path[depth].p_ext), |
a86c6181 AT |
730 | newblock); |
731 | /*memmove(ex++, path[depth].p_ext++, | |
732 | sizeof(struct ext4_extent)); | |
733 | neh->eh_entries++;*/ | |
734 | path[depth].p_ext++; | |
735 | m++; | |
736 | } | |
737 | if (m) { | |
738 | memmove(ex, path[depth].p_ext-m, sizeof(struct ext4_extent)*m); | |
739 | neh->eh_entries = cpu_to_le16(le16_to_cpu(neh->eh_entries)+m); | |
740 | } | |
741 | ||
742 | set_buffer_uptodate(bh); | |
743 | unlock_buffer(bh); | |
744 | ||
7e028976 AM |
745 | err = ext4_journal_dirty_metadata(handle, bh); |
746 | if (err) | |
a86c6181 AT |
747 | goto cleanup; |
748 | brelse(bh); | |
749 | bh = NULL; | |
750 | ||
751 | /* correct old leaf */ | |
752 | if (m) { | |
7e028976 AM |
753 | err = ext4_ext_get_access(handle, inode, path + depth); |
754 | if (err) | |
a86c6181 AT |
755 | goto cleanup; |
756 | path[depth].p_hdr->eh_entries = | |
757 | cpu_to_le16(le16_to_cpu(path[depth].p_hdr->eh_entries)-m); | |
7e028976 AM |
758 | err = ext4_ext_dirty(handle, inode, path + depth); |
759 | if (err) | |
a86c6181 AT |
760 | goto cleanup; |
761 | ||
762 | } | |
763 | ||
764 | /* create intermediate indexes */ | |
765 | k = depth - at - 1; | |
766 | BUG_ON(k < 0); | |
767 | if (k) | |
768 | ext_debug("create %d intermediate indices\n", k); | |
769 | /* insert new index into current index block */ | |
770 | /* current depth stored in i var */ | |
771 | i = depth - 1; | |
772 | while (k--) { | |
773 | oldblock = newblock; | |
774 | newblock = ablocks[--a]; | |
bba90743 | 775 | bh = sb_getblk(inode->i_sb, newblock); |
a86c6181 AT |
776 | if (!bh) { |
777 | err = -EIO; | |
778 | goto cleanup; | |
779 | } | |
780 | lock_buffer(bh); | |
781 | ||
7e028976 AM |
782 | err = ext4_journal_get_create_access(handle, bh); |
783 | if (err) | |
a86c6181 AT |
784 | goto cleanup; |
785 | ||
786 | neh = ext_block_hdr(bh); | |
787 | neh->eh_entries = cpu_to_le16(1); | |
788 | neh->eh_magic = EXT4_EXT_MAGIC; | |
789 | neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode)); | |
790 | neh->eh_depth = cpu_to_le16(depth - i); | |
791 | fidx = EXT_FIRST_INDEX(neh); | |
792 | fidx->ei_block = border; | |
f65e6fba | 793 | ext4_idx_store_pblock(fidx, oldblock); |
a86c6181 | 794 | |
bba90743 ES |
795 | ext_debug("int.index at %d (block %llu): %u -> %llu\n", |
796 | i, newblock, le32_to_cpu(border), oldblock); | |
a86c6181 AT |
797 | /* copy indexes */ |
798 | m = 0; | |
799 | path[i].p_idx++; | |
800 | ||
801 | ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx, | |
802 | EXT_MAX_INDEX(path[i].p_hdr)); | |
803 | BUG_ON(EXT_MAX_INDEX(path[i].p_hdr) != | |
804 | EXT_LAST_INDEX(path[i].p_hdr)); | |
805 | while (path[i].p_idx <= EXT_MAX_INDEX(path[i].p_hdr)) { | |
26d535ed | 806 | ext_debug("%d: move %d:%llu in new index %llu\n", i, |
8c55e204 DK |
807 | le32_to_cpu(path[i].p_idx->ei_block), |
808 | idx_pblock(path[i].p_idx), | |
809 | newblock); | |
a86c6181 AT |
810 | /*memmove(++fidx, path[i].p_idx++, |
811 | sizeof(struct ext4_extent_idx)); | |
812 | neh->eh_entries++; | |
813 | BUG_ON(neh->eh_entries > neh->eh_max);*/ | |
814 | path[i].p_idx++; | |
815 | m++; | |
816 | } | |
817 | if (m) { | |
818 | memmove(++fidx, path[i].p_idx - m, | |
819 | sizeof(struct ext4_extent_idx) * m); | |
820 | neh->eh_entries = | |
821 | cpu_to_le16(le16_to_cpu(neh->eh_entries) + m); | |
822 | } | |
823 | set_buffer_uptodate(bh); | |
824 | unlock_buffer(bh); | |
825 | ||
7e028976 AM |
826 | err = ext4_journal_dirty_metadata(handle, bh); |
827 | if (err) | |
a86c6181 AT |
828 | goto cleanup; |
829 | brelse(bh); | |
830 | bh = NULL; | |
831 | ||
832 | /* correct old index */ | |
833 | if (m) { | |
834 | err = ext4_ext_get_access(handle, inode, path + i); | |
835 | if (err) | |
836 | goto cleanup; | |
837 | path[i].p_hdr->eh_entries = cpu_to_le16(le16_to_cpu(path[i].p_hdr->eh_entries)-m); | |
838 | err = ext4_ext_dirty(handle, inode, path + i); | |
839 | if (err) | |
840 | goto cleanup; | |
841 | } | |
842 | ||
843 | i--; | |
844 | } | |
845 | ||
846 | /* insert new index */ | |
a86c6181 AT |
847 | err = ext4_ext_insert_index(handle, inode, path + at, |
848 | le32_to_cpu(border), newblock); | |
849 | ||
850 | cleanup: | |
851 | if (bh) { | |
852 | if (buffer_locked(bh)) | |
853 | unlock_buffer(bh); | |
854 | brelse(bh); | |
855 | } | |
856 | ||
857 | if (err) { | |
858 | /* free all allocated blocks in error case */ | |
859 | for (i = 0; i < depth; i++) { | |
860 | if (!ablocks[i]) | |
861 | continue; | |
c9de560d | 862 | ext4_free_blocks(handle, inode, ablocks[i], 1, 1); |
a86c6181 AT |
863 | } |
864 | } | |
865 | kfree(ablocks); | |
866 | ||
867 | return err; | |
868 | } | |
869 | ||
870 | /* | |
d0d856e8 RD |
871 | * ext4_ext_grow_indepth: |
872 | * implements tree growing procedure: | |
873 | * - allocates new block | |
874 | * - moves top-level data (index block or leaf) into the new block | |
875 | * - initializes new top-level, creating index that points to the | |
876 | * just created block | |
a86c6181 AT |
877 | */ |
878 | static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode, | |
879 | struct ext4_ext_path *path, | |
880 | struct ext4_extent *newext) | |
881 | { | |
882 | struct ext4_ext_path *curp = path; | |
883 | struct ext4_extent_header *neh; | |
884 | struct ext4_extent_idx *fidx; | |
885 | struct buffer_head *bh; | |
f65e6fba | 886 | ext4_fsblk_t newblock; |
a86c6181 AT |
887 | int err = 0; |
888 | ||
889 | newblock = ext4_ext_new_block(handle, inode, path, newext, &err); | |
890 | if (newblock == 0) | |
891 | return err; | |
892 | ||
893 | bh = sb_getblk(inode->i_sb, newblock); | |
894 | if (!bh) { | |
895 | err = -EIO; | |
896 | ext4_std_error(inode->i_sb, err); | |
897 | return err; | |
898 | } | |
899 | lock_buffer(bh); | |
900 | ||
7e028976 AM |
901 | err = ext4_journal_get_create_access(handle, bh); |
902 | if (err) { | |
a86c6181 AT |
903 | unlock_buffer(bh); |
904 | goto out; | |
905 | } | |
906 | ||
907 | /* move top-level index/leaf into new block */ | |
908 | memmove(bh->b_data, curp->p_hdr, sizeof(EXT4_I(inode)->i_data)); | |
909 | ||
910 | /* set size of new block */ | |
911 | neh = ext_block_hdr(bh); | |
912 | /* old root could have indexes or leaves | |
913 | * so calculate e_max right way */ | |
914 | if (ext_depth(inode)) | |
915 | neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode)); | |
916 | else | |
917 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode)); | |
918 | neh->eh_magic = EXT4_EXT_MAGIC; | |
919 | set_buffer_uptodate(bh); | |
920 | unlock_buffer(bh); | |
921 | ||
7e028976 AM |
922 | err = ext4_journal_dirty_metadata(handle, bh); |
923 | if (err) | |
a86c6181 AT |
924 | goto out; |
925 | ||
926 | /* create index in new top-level index: num,max,pointer */ | |
7e028976 AM |
927 | err = ext4_ext_get_access(handle, inode, curp); |
928 | if (err) | |
a86c6181 AT |
929 | goto out; |
930 | ||
931 | curp->p_hdr->eh_magic = EXT4_EXT_MAGIC; | |
932 | curp->p_hdr->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode)); | |
933 | curp->p_hdr->eh_entries = cpu_to_le16(1); | |
934 | curp->p_idx = EXT_FIRST_INDEX(curp->p_hdr); | |
e9f410b1 DM |
935 | |
936 | if (path[0].p_hdr->eh_depth) | |
937 | curp->p_idx->ei_block = | |
938 | EXT_FIRST_INDEX(path[0].p_hdr)->ei_block; | |
939 | else | |
940 | curp->p_idx->ei_block = | |
941 | EXT_FIRST_EXTENT(path[0].p_hdr)->ee_block; | |
f65e6fba | 942 | ext4_idx_store_pblock(curp->p_idx, newblock); |
a86c6181 AT |
943 | |
944 | neh = ext_inode_hdr(inode); | |
945 | fidx = EXT_FIRST_INDEX(neh); | |
2ae02107 | 946 | ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n", |
a86c6181 | 947 | le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max), |
f65e6fba | 948 | le32_to_cpu(fidx->ei_block), idx_pblock(fidx)); |
a86c6181 AT |
949 | |
950 | neh->eh_depth = cpu_to_le16(path->p_depth + 1); | |
951 | err = ext4_ext_dirty(handle, inode, curp); | |
952 | out: | |
953 | brelse(bh); | |
954 | ||
955 | return err; | |
956 | } | |
957 | ||
958 | /* | |
d0d856e8 RD |
959 | * ext4_ext_create_new_leaf: |
960 | * finds empty index and adds new leaf. | |
961 | * if no free index is found, then it requests in-depth growing. | |
a86c6181 AT |
962 | */ |
963 | static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode, | |
964 | struct ext4_ext_path *path, | |
965 | struct ext4_extent *newext) | |
966 | { | |
967 | struct ext4_ext_path *curp; | |
968 | int depth, i, err = 0; | |
969 | ||
970 | repeat: | |
971 | i = depth = ext_depth(inode); | |
972 | ||
973 | /* walk up to the tree and look for free index entry */ | |
974 | curp = path + depth; | |
975 | while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) { | |
976 | i--; | |
977 | curp--; | |
978 | } | |
979 | ||
d0d856e8 RD |
980 | /* we use already allocated block for index block, |
981 | * so subsequent data blocks should be contiguous */ | |
a86c6181 AT |
982 | if (EXT_HAS_FREE_INDEX(curp)) { |
983 | /* if we found index with free entry, then use that | |
984 | * entry: create all needed subtree and add new leaf */ | |
985 | err = ext4_ext_split(handle, inode, path, newext, i); | |
986 | ||
987 | /* refill path */ | |
988 | ext4_ext_drop_refs(path); | |
989 | path = ext4_ext_find_extent(inode, | |
725d26d3 AK |
990 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
991 | path); | |
a86c6181 AT |
992 | if (IS_ERR(path)) |
993 | err = PTR_ERR(path); | |
994 | } else { | |
995 | /* tree is full, time to grow in depth */ | |
996 | err = ext4_ext_grow_indepth(handle, inode, path, newext); | |
997 | if (err) | |
998 | goto out; | |
999 | ||
1000 | /* refill path */ | |
1001 | ext4_ext_drop_refs(path); | |
1002 | path = ext4_ext_find_extent(inode, | |
725d26d3 AK |
1003 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
1004 | path); | |
a86c6181 AT |
1005 | if (IS_ERR(path)) { |
1006 | err = PTR_ERR(path); | |
1007 | goto out; | |
1008 | } | |
1009 | ||
1010 | /* | |
d0d856e8 RD |
1011 | * only first (depth 0 -> 1) produces free space; |
1012 | * in all other cases we have to split the grown tree | |
a86c6181 AT |
1013 | */ |
1014 | depth = ext_depth(inode); | |
1015 | if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) { | |
d0d856e8 | 1016 | /* now we need to split */ |
a86c6181 AT |
1017 | goto repeat; |
1018 | } | |
1019 | } | |
1020 | ||
1021 | out: | |
1022 | return err; | |
1023 | } | |
1024 | ||
1988b51e AT |
1025 | /* |
1026 | * search the closest allocated block to the left for *logical | |
1027 | * and returns it at @logical + it's physical address at @phys | |
1028 | * if *logical is the smallest allocated block, the function | |
1029 | * returns 0 at @phys | |
1030 | * return value contains 0 (success) or error code | |
1031 | */ | |
1032 | int | |
1033 | ext4_ext_search_left(struct inode *inode, struct ext4_ext_path *path, | |
1034 | ext4_lblk_t *logical, ext4_fsblk_t *phys) | |
1035 | { | |
1036 | struct ext4_extent_idx *ix; | |
1037 | struct ext4_extent *ex; | |
b939e376 | 1038 | int depth, ee_len; |
1988b51e AT |
1039 | |
1040 | BUG_ON(path == NULL); | |
1041 | depth = path->p_depth; | |
1042 | *phys = 0; | |
1043 | ||
1044 | if (depth == 0 && path->p_ext == NULL) | |
1045 | return 0; | |
1046 | ||
1047 | /* usually extent in the path covers blocks smaller | |
1048 | * then *logical, but it can be that extent is the | |
1049 | * first one in the file */ | |
1050 | ||
1051 | ex = path[depth].p_ext; | |
b939e376 | 1052 | ee_len = ext4_ext_get_actual_len(ex); |
1988b51e AT |
1053 | if (*logical < le32_to_cpu(ex->ee_block)) { |
1054 | BUG_ON(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex); | |
1055 | while (--depth >= 0) { | |
1056 | ix = path[depth].p_idx; | |
1057 | BUG_ON(ix != EXT_FIRST_INDEX(path[depth].p_hdr)); | |
1058 | } | |
1059 | return 0; | |
1060 | } | |
1061 | ||
b939e376 | 1062 | BUG_ON(*logical < (le32_to_cpu(ex->ee_block) + ee_len)); |
1988b51e | 1063 | |
b939e376 AK |
1064 | *logical = le32_to_cpu(ex->ee_block) + ee_len - 1; |
1065 | *phys = ext_pblock(ex) + ee_len - 1; | |
1988b51e AT |
1066 | return 0; |
1067 | } | |
1068 | ||
1069 | /* | |
1070 | * search the closest allocated block to the right for *logical | |
1071 | * and returns it at @logical + it's physical address at @phys | |
1072 | * if *logical is the smallest allocated block, the function | |
1073 | * returns 0 at @phys | |
1074 | * return value contains 0 (success) or error code | |
1075 | */ | |
1076 | int | |
1077 | ext4_ext_search_right(struct inode *inode, struct ext4_ext_path *path, | |
1078 | ext4_lblk_t *logical, ext4_fsblk_t *phys) | |
1079 | { | |
1080 | struct buffer_head *bh = NULL; | |
1081 | struct ext4_extent_header *eh; | |
1082 | struct ext4_extent_idx *ix; | |
1083 | struct ext4_extent *ex; | |
1084 | ext4_fsblk_t block; | |
b939e376 | 1085 | int depth, ee_len; |
1988b51e AT |
1086 | |
1087 | BUG_ON(path == NULL); | |
1088 | depth = path->p_depth; | |
1089 | *phys = 0; | |
1090 | ||
1091 | if (depth == 0 && path->p_ext == NULL) | |
1092 | return 0; | |
1093 | ||
1094 | /* usually extent in the path covers blocks smaller | |
1095 | * then *logical, but it can be that extent is the | |
1096 | * first one in the file */ | |
1097 | ||
1098 | ex = path[depth].p_ext; | |
b939e376 | 1099 | ee_len = ext4_ext_get_actual_len(ex); |
1988b51e AT |
1100 | if (*logical < le32_to_cpu(ex->ee_block)) { |
1101 | BUG_ON(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex); | |
1102 | while (--depth >= 0) { | |
1103 | ix = path[depth].p_idx; | |
1104 | BUG_ON(ix != EXT_FIRST_INDEX(path[depth].p_hdr)); | |
1105 | } | |
1106 | *logical = le32_to_cpu(ex->ee_block); | |
1107 | *phys = ext_pblock(ex); | |
1108 | return 0; | |
1109 | } | |
1110 | ||
b939e376 | 1111 | BUG_ON(*logical < (le32_to_cpu(ex->ee_block) + ee_len)); |
1988b51e AT |
1112 | |
1113 | if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) { | |
1114 | /* next allocated block in this leaf */ | |
1115 | ex++; | |
1116 | *logical = le32_to_cpu(ex->ee_block); | |
1117 | *phys = ext_pblock(ex); | |
1118 | return 0; | |
1119 | } | |
1120 | ||
1121 | /* go up and search for index to the right */ | |
1122 | while (--depth >= 0) { | |
1123 | ix = path[depth].p_idx; | |
1124 | if (ix != EXT_LAST_INDEX(path[depth].p_hdr)) | |
1125 | break; | |
1126 | } | |
1127 | ||
1128 | if (depth < 0) { | |
1129 | /* we've gone up to the root and | |
1130 | * found no index to the right */ | |
1131 | return 0; | |
1132 | } | |
1133 | ||
1134 | /* we've found index to the right, let's | |
1135 | * follow it and find the closest allocated | |
1136 | * block to the right */ | |
1137 | ix++; | |
1138 | block = idx_pblock(ix); | |
1139 | while (++depth < path->p_depth) { | |
1140 | bh = sb_bread(inode->i_sb, block); | |
1141 | if (bh == NULL) | |
1142 | return -EIO; | |
1143 | eh = ext_block_hdr(bh); | |
1144 | if (ext4_ext_check_header(inode, eh, depth)) { | |
1145 | put_bh(bh); | |
1146 | return -EIO; | |
1147 | } | |
1148 | ix = EXT_FIRST_INDEX(eh); | |
1149 | block = idx_pblock(ix); | |
1150 | put_bh(bh); | |
1151 | } | |
1152 | ||
1153 | bh = sb_bread(inode->i_sb, block); | |
1154 | if (bh == NULL) | |
1155 | return -EIO; | |
1156 | eh = ext_block_hdr(bh); | |
1157 | if (ext4_ext_check_header(inode, eh, path->p_depth - depth)) { | |
1158 | put_bh(bh); | |
1159 | return -EIO; | |
1160 | } | |
1161 | ex = EXT_FIRST_EXTENT(eh); | |
1162 | *logical = le32_to_cpu(ex->ee_block); | |
1163 | *phys = ext_pblock(ex); | |
1164 | put_bh(bh); | |
1165 | return 0; | |
1166 | ||
1167 | } | |
1168 | ||
a86c6181 | 1169 | /* |
d0d856e8 RD |
1170 | * ext4_ext_next_allocated_block: |
1171 | * returns allocated block in subsequent extent or EXT_MAX_BLOCK. | |
1172 | * NOTE: it considers block number from index entry as | |
1173 | * allocated block. Thus, index entries have to be consistent | |
1174 | * with leaves. | |
a86c6181 | 1175 | */ |
725d26d3 | 1176 | static ext4_lblk_t |
a86c6181 AT |
1177 | ext4_ext_next_allocated_block(struct ext4_ext_path *path) |
1178 | { | |
1179 | int depth; | |
1180 | ||
1181 | BUG_ON(path == NULL); | |
1182 | depth = path->p_depth; | |
1183 | ||
1184 | if (depth == 0 && path->p_ext == NULL) | |
1185 | return EXT_MAX_BLOCK; | |
1186 | ||
1187 | while (depth >= 0) { | |
1188 | if (depth == path->p_depth) { | |
1189 | /* leaf */ | |
1190 | if (path[depth].p_ext != | |
1191 | EXT_LAST_EXTENT(path[depth].p_hdr)) | |
1192 | return le32_to_cpu(path[depth].p_ext[1].ee_block); | |
1193 | } else { | |
1194 | /* index */ | |
1195 | if (path[depth].p_idx != | |
1196 | EXT_LAST_INDEX(path[depth].p_hdr)) | |
1197 | return le32_to_cpu(path[depth].p_idx[1].ei_block); | |
1198 | } | |
1199 | depth--; | |
1200 | } | |
1201 | ||
1202 | return EXT_MAX_BLOCK; | |
1203 | } | |
1204 | ||
1205 | /* | |
d0d856e8 | 1206 | * ext4_ext_next_leaf_block: |
a86c6181 AT |
1207 | * returns first allocated block from next leaf or EXT_MAX_BLOCK |
1208 | */ | |
725d26d3 | 1209 | static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode, |
63f57933 | 1210 | struct ext4_ext_path *path) |
a86c6181 AT |
1211 | { |
1212 | int depth; | |
1213 | ||
1214 | BUG_ON(path == NULL); | |
1215 | depth = path->p_depth; | |
1216 | ||
1217 | /* zero-tree has no leaf blocks at all */ | |
1218 | if (depth == 0) | |
1219 | return EXT_MAX_BLOCK; | |
1220 | ||
1221 | /* go to index block */ | |
1222 | depth--; | |
1223 | ||
1224 | while (depth >= 0) { | |
1225 | if (path[depth].p_idx != | |
1226 | EXT_LAST_INDEX(path[depth].p_hdr)) | |
725d26d3 AK |
1227 | return (ext4_lblk_t) |
1228 | le32_to_cpu(path[depth].p_idx[1].ei_block); | |
a86c6181 AT |
1229 | depth--; |
1230 | } | |
1231 | ||
1232 | return EXT_MAX_BLOCK; | |
1233 | } | |
1234 | ||
1235 | /* | |
d0d856e8 RD |
1236 | * ext4_ext_correct_indexes: |
1237 | * if leaf gets modified and modified extent is first in the leaf, | |
1238 | * then we have to correct all indexes above. | |
a86c6181 AT |
1239 | * TODO: do we need to correct tree in all cases? |
1240 | */ | |
1d03ec98 | 1241 | static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode, |
a86c6181 AT |
1242 | struct ext4_ext_path *path) |
1243 | { | |
1244 | struct ext4_extent_header *eh; | |
1245 | int depth = ext_depth(inode); | |
1246 | struct ext4_extent *ex; | |
1247 | __le32 border; | |
1248 | int k, err = 0; | |
1249 | ||
1250 | eh = path[depth].p_hdr; | |
1251 | ex = path[depth].p_ext; | |
1252 | BUG_ON(ex == NULL); | |
1253 | BUG_ON(eh == NULL); | |
1254 | ||
1255 | if (depth == 0) { | |
1256 | /* there is no tree at all */ | |
1257 | return 0; | |
1258 | } | |
1259 | ||
1260 | if (ex != EXT_FIRST_EXTENT(eh)) { | |
1261 | /* we correct tree if first leaf got modified only */ | |
1262 | return 0; | |
1263 | } | |
1264 | ||
1265 | /* | |
d0d856e8 | 1266 | * TODO: we need correction if border is smaller than current one |
a86c6181 AT |
1267 | */ |
1268 | k = depth - 1; | |
1269 | border = path[depth].p_ext->ee_block; | |
7e028976 AM |
1270 | err = ext4_ext_get_access(handle, inode, path + k); |
1271 | if (err) | |
a86c6181 AT |
1272 | return err; |
1273 | path[k].p_idx->ei_block = border; | |
7e028976 AM |
1274 | err = ext4_ext_dirty(handle, inode, path + k); |
1275 | if (err) | |
a86c6181 AT |
1276 | return err; |
1277 | ||
1278 | while (k--) { | |
1279 | /* change all left-side indexes */ | |
1280 | if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr)) | |
1281 | break; | |
7e028976 AM |
1282 | err = ext4_ext_get_access(handle, inode, path + k); |
1283 | if (err) | |
a86c6181 AT |
1284 | break; |
1285 | path[k].p_idx->ei_block = border; | |
7e028976 AM |
1286 | err = ext4_ext_dirty(handle, inode, path + k); |
1287 | if (err) | |
a86c6181 AT |
1288 | break; |
1289 | } | |
1290 | ||
1291 | return err; | |
1292 | } | |
1293 | ||
09b88252 | 1294 | static int |
a86c6181 AT |
1295 | ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1, |
1296 | struct ext4_extent *ex2) | |
1297 | { | |
749269fa | 1298 | unsigned short ext1_ee_len, ext2_ee_len, max_len; |
a2df2a63 AA |
1299 | |
1300 | /* | |
1301 | * Make sure that either both extents are uninitialized, or | |
1302 | * both are _not_. | |
1303 | */ | |
1304 | if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2)) | |
1305 | return 0; | |
1306 | ||
749269fa AA |
1307 | if (ext4_ext_is_uninitialized(ex1)) |
1308 | max_len = EXT_UNINIT_MAX_LEN; | |
1309 | else | |
1310 | max_len = EXT_INIT_MAX_LEN; | |
1311 | ||
a2df2a63 AA |
1312 | ext1_ee_len = ext4_ext_get_actual_len(ex1); |
1313 | ext2_ee_len = ext4_ext_get_actual_len(ex2); | |
1314 | ||
1315 | if (le32_to_cpu(ex1->ee_block) + ext1_ee_len != | |
63f57933 | 1316 | le32_to_cpu(ex2->ee_block)) |
a86c6181 AT |
1317 | return 0; |
1318 | ||
471d4011 SB |
1319 | /* |
1320 | * To allow future support for preallocated extents to be added | |
1321 | * as an RO_COMPAT feature, refuse to merge to extents if | |
d0d856e8 | 1322 | * this can result in the top bit of ee_len being set. |
471d4011 | 1323 | */ |
749269fa | 1324 | if (ext1_ee_len + ext2_ee_len > max_len) |
471d4011 | 1325 | return 0; |
bbf2f9fb | 1326 | #ifdef AGGRESSIVE_TEST |
b939e376 | 1327 | if (ext1_ee_len >= 4) |
a86c6181 AT |
1328 | return 0; |
1329 | #endif | |
1330 | ||
a2df2a63 | 1331 | if (ext_pblock(ex1) + ext1_ee_len == ext_pblock(ex2)) |
a86c6181 AT |
1332 | return 1; |
1333 | return 0; | |
1334 | } | |
1335 | ||
56055d3a AA |
1336 | /* |
1337 | * This function tries to merge the "ex" extent to the next extent in the tree. | |
1338 | * It always tries to merge towards right. If you want to merge towards | |
1339 | * left, pass "ex - 1" as argument instead of "ex". | |
1340 | * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns | |
1341 | * 1 if they got merged. | |
1342 | */ | |
1343 | int ext4_ext_try_to_merge(struct inode *inode, | |
1344 | struct ext4_ext_path *path, | |
1345 | struct ext4_extent *ex) | |
1346 | { | |
1347 | struct ext4_extent_header *eh; | |
1348 | unsigned int depth, len; | |
1349 | int merge_done = 0; | |
1350 | int uninitialized = 0; | |
1351 | ||
1352 | depth = ext_depth(inode); | |
1353 | BUG_ON(path[depth].p_hdr == NULL); | |
1354 | eh = path[depth].p_hdr; | |
1355 | ||
1356 | while (ex < EXT_LAST_EXTENT(eh)) { | |
1357 | if (!ext4_can_extents_be_merged(inode, ex, ex + 1)) | |
1358 | break; | |
1359 | /* merge with next extent! */ | |
1360 | if (ext4_ext_is_uninitialized(ex)) | |
1361 | uninitialized = 1; | |
1362 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) | |
1363 | + ext4_ext_get_actual_len(ex + 1)); | |
1364 | if (uninitialized) | |
1365 | ext4_ext_mark_uninitialized(ex); | |
1366 | ||
1367 | if (ex + 1 < EXT_LAST_EXTENT(eh)) { | |
1368 | len = (EXT_LAST_EXTENT(eh) - ex - 1) | |
1369 | * sizeof(struct ext4_extent); | |
1370 | memmove(ex + 1, ex + 2, len); | |
1371 | } | |
1372 | eh->eh_entries = cpu_to_le16(le16_to_cpu(eh->eh_entries) - 1); | |
1373 | merge_done = 1; | |
1374 | WARN_ON(eh->eh_entries == 0); | |
1375 | if (!eh->eh_entries) | |
1376 | ext4_error(inode->i_sb, "ext4_ext_try_to_merge", | |
1377 | "inode#%lu, eh->eh_entries = 0!", inode->i_ino); | |
1378 | } | |
1379 | ||
1380 | return merge_done; | |
1381 | } | |
1382 | ||
25d14f98 AA |
1383 | /* |
1384 | * check if a portion of the "newext" extent overlaps with an | |
1385 | * existing extent. | |
1386 | * | |
1387 | * If there is an overlap discovered, it updates the length of the newext | |
1388 | * such that there will be no overlap, and then returns 1. | |
1389 | * If there is no overlap found, it returns 0. | |
1390 | */ | |
1391 | unsigned int ext4_ext_check_overlap(struct inode *inode, | |
1392 | struct ext4_extent *newext, | |
1393 | struct ext4_ext_path *path) | |
1394 | { | |
725d26d3 | 1395 | ext4_lblk_t b1, b2; |
25d14f98 AA |
1396 | unsigned int depth, len1; |
1397 | unsigned int ret = 0; | |
1398 | ||
1399 | b1 = le32_to_cpu(newext->ee_block); | |
a2df2a63 | 1400 | len1 = ext4_ext_get_actual_len(newext); |
25d14f98 AA |
1401 | depth = ext_depth(inode); |
1402 | if (!path[depth].p_ext) | |
1403 | goto out; | |
1404 | b2 = le32_to_cpu(path[depth].p_ext->ee_block); | |
1405 | ||
1406 | /* | |
1407 | * get the next allocated block if the extent in the path | |
1408 | * is before the requested block(s) | |
1409 | */ | |
1410 | if (b2 < b1) { | |
1411 | b2 = ext4_ext_next_allocated_block(path); | |
1412 | if (b2 == EXT_MAX_BLOCK) | |
1413 | goto out; | |
1414 | } | |
1415 | ||
725d26d3 | 1416 | /* check for wrap through zero on extent logical start block*/ |
25d14f98 AA |
1417 | if (b1 + len1 < b1) { |
1418 | len1 = EXT_MAX_BLOCK - b1; | |
1419 | newext->ee_len = cpu_to_le16(len1); | |
1420 | ret = 1; | |
1421 | } | |
1422 | ||
1423 | /* check for overlap */ | |
1424 | if (b1 + len1 > b2) { | |
1425 | newext->ee_len = cpu_to_le16(b2 - b1); | |
1426 | ret = 1; | |
1427 | } | |
1428 | out: | |
1429 | return ret; | |
1430 | } | |
1431 | ||
a86c6181 | 1432 | /* |
d0d856e8 RD |
1433 | * ext4_ext_insert_extent: |
1434 | * tries to merge requsted extent into the existing extent or | |
1435 | * inserts requested extent as new one into the tree, | |
1436 | * creating new leaf in the no-space case. | |
a86c6181 AT |
1437 | */ |
1438 | int ext4_ext_insert_extent(handle_t *handle, struct inode *inode, | |
1439 | struct ext4_ext_path *path, | |
1440 | struct ext4_extent *newext) | |
1441 | { | |
1442 | struct ext4_extent_header * eh; | |
1443 | struct ext4_extent *ex, *fex; | |
1444 | struct ext4_extent *nearex; /* nearest extent */ | |
1445 | struct ext4_ext_path *npath = NULL; | |
725d26d3 AK |
1446 | int depth, len, err; |
1447 | ext4_lblk_t next; | |
a2df2a63 | 1448 | unsigned uninitialized = 0; |
a86c6181 | 1449 | |
a2df2a63 | 1450 | BUG_ON(ext4_ext_get_actual_len(newext) == 0); |
a86c6181 AT |
1451 | depth = ext_depth(inode); |
1452 | ex = path[depth].p_ext; | |
1453 | BUG_ON(path[depth].p_hdr == NULL); | |
1454 | ||
1455 | /* try to insert block into found extent and return */ | |
1456 | if (ex && ext4_can_extents_be_merged(inode, ex, newext)) { | |
2ae02107 | 1457 | ext_debug("append %d block to %d:%d (from %llu)\n", |
a2df2a63 | 1458 | ext4_ext_get_actual_len(newext), |
a86c6181 | 1459 | le32_to_cpu(ex->ee_block), |
a2df2a63 | 1460 | ext4_ext_get_actual_len(ex), ext_pblock(ex)); |
7e028976 AM |
1461 | err = ext4_ext_get_access(handle, inode, path + depth); |
1462 | if (err) | |
a86c6181 | 1463 | return err; |
a2df2a63 AA |
1464 | |
1465 | /* | |
1466 | * ext4_can_extents_be_merged should have checked that either | |
1467 | * both extents are uninitialized, or both aren't. Thus we | |
1468 | * need to check only one of them here. | |
1469 | */ | |
1470 | if (ext4_ext_is_uninitialized(ex)) | |
1471 | uninitialized = 1; | |
1472 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) | |
1473 | + ext4_ext_get_actual_len(newext)); | |
1474 | if (uninitialized) | |
1475 | ext4_ext_mark_uninitialized(ex); | |
a86c6181 AT |
1476 | eh = path[depth].p_hdr; |
1477 | nearex = ex; | |
1478 | goto merge; | |
1479 | } | |
1480 | ||
1481 | repeat: | |
1482 | depth = ext_depth(inode); | |
1483 | eh = path[depth].p_hdr; | |
1484 | if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) | |
1485 | goto has_space; | |
1486 | ||
1487 | /* probably next leaf has space for us? */ | |
1488 | fex = EXT_LAST_EXTENT(eh); | |
1489 | next = ext4_ext_next_leaf_block(inode, path); | |
1490 | if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block) | |
1491 | && next != EXT_MAX_BLOCK) { | |
1492 | ext_debug("next leaf block - %d\n", next); | |
1493 | BUG_ON(npath != NULL); | |
1494 | npath = ext4_ext_find_extent(inode, next, NULL); | |
1495 | if (IS_ERR(npath)) | |
1496 | return PTR_ERR(npath); | |
1497 | BUG_ON(npath->p_depth != path->p_depth); | |
1498 | eh = npath[depth].p_hdr; | |
1499 | if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) { | |
1500 | ext_debug("next leaf isnt full(%d)\n", | |
1501 | le16_to_cpu(eh->eh_entries)); | |
1502 | path = npath; | |
1503 | goto repeat; | |
1504 | } | |
1505 | ext_debug("next leaf has no free space(%d,%d)\n", | |
1506 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max)); | |
1507 | } | |
1508 | ||
1509 | /* | |
d0d856e8 RD |
1510 | * There is no free space in the found leaf. |
1511 | * We're gonna add a new leaf in the tree. | |
a86c6181 AT |
1512 | */ |
1513 | err = ext4_ext_create_new_leaf(handle, inode, path, newext); | |
1514 | if (err) | |
1515 | goto cleanup; | |
1516 | depth = ext_depth(inode); | |
1517 | eh = path[depth].p_hdr; | |
1518 | ||
1519 | has_space: | |
1520 | nearex = path[depth].p_ext; | |
1521 | ||
7e028976 AM |
1522 | err = ext4_ext_get_access(handle, inode, path + depth); |
1523 | if (err) | |
a86c6181 AT |
1524 | goto cleanup; |
1525 | ||
1526 | if (!nearex) { | |
1527 | /* there is no extent in this leaf, create first one */ | |
2ae02107 | 1528 | ext_debug("first extent in the leaf: %d:%llu:%d\n", |
8c55e204 DK |
1529 | le32_to_cpu(newext->ee_block), |
1530 | ext_pblock(newext), | |
a2df2a63 | 1531 | ext4_ext_get_actual_len(newext)); |
a86c6181 AT |
1532 | path[depth].p_ext = EXT_FIRST_EXTENT(eh); |
1533 | } else if (le32_to_cpu(newext->ee_block) | |
8c55e204 | 1534 | > le32_to_cpu(nearex->ee_block)) { |
a86c6181 AT |
1535 | /* BUG_ON(newext->ee_block == nearex->ee_block); */ |
1536 | if (nearex != EXT_LAST_EXTENT(eh)) { | |
1537 | len = EXT_MAX_EXTENT(eh) - nearex; | |
1538 | len = (len - 1) * sizeof(struct ext4_extent); | |
1539 | len = len < 0 ? 0 : len; | |
2ae02107 | 1540 | ext_debug("insert %d:%llu:%d after: nearest 0x%p, " |
a86c6181 | 1541 | "move %d from 0x%p to 0x%p\n", |
8c55e204 DK |
1542 | le32_to_cpu(newext->ee_block), |
1543 | ext_pblock(newext), | |
a2df2a63 | 1544 | ext4_ext_get_actual_len(newext), |
a86c6181 AT |
1545 | nearex, len, nearex + 1, nearex + 2); |
1546 | memmove(nearex + 2, nearex + 1, len); | |
1547 | } | |
1548 | path[depth].p_ext = nearex + 1; | |
1549 | } else { | |
1550 | BUG_ON(newext->ee_block == nearex->ee_block); | |
1551 | len = (EXT_MAX_EXTENT(eh) - nearex) * sizeof(struct ext4_extent); | |
1552 | len = len < 0 ? 0 : len; | |
2ae02107 | 1553 | ext_debug("insert %d:%llu:%d before: nearest 0x%p, " |
a86c6181 AT |
1554 | "move %d from 0x%p to 0x%p\n", |
1555 | le32_to_cpu(newext->ee_block), | |
f65e6fba | 1556 | ext_pblock(newext), |
a2df2a63 | 1557 | ext4_ext_get_actual_len(newext), |
a86c6181 AT |
1558 | nearex, len, nearex + 1, nearex + 2); |
1559 | memmove(nearex + 1, nearex, len); | |
1560 | path[depth].p_ext = nearex; | |
1561 | } | |
1562 | ||
1563 | eh->eh_entries = cpu_to_le16(le16_to_cpu(eh->eh_entries)+1); | |
1564 | nearex = path[depth].p_ext; | |
1565 | nearex->ee_block = newext->ee_block; | |
b377611d | 1566 | ext4_ext_store_pblock(nearex, ext_pblock(newext)); |
a86c6181 | 1567 | nearex->ee_len = newext->ee_len; |
a86c6181 AT |
1568 | |
1569 | merge: | |
1570 | /* try to merge extents to the right */ | |
56055d3a | 1571 | ext4_ext_try_to_merge(inode, path, nearex); |
a86c6181 AT |
1572 | |
1573 | /* try to merge extents to the left */ | |
1574 | ||
1575 | /* time to correct all indexes above */ | |
1576 | err = ext4_ext_correct_indexes(handle, inode, path); | |
1577 | if (err) | |
1578 | goto cleanup; | |
1579 | ||
1580 | err = ext4_ext_dirty(handle, inode, path + depth); | |
1581 | ||
1582 | cleanup: | |
1583 | if (npath) { | |
1584 | ext4_ext_drop_refs(npath); | |
1585 | kfree(npath); | |
1586 | } | |
1587 | ext4_ext_tree_changed(inode); | |
1588 | ext4_ext_invalidate_cache(inode); | |
1589 | return err; | |
1590 | } | |
1591 | ||
09b88252 | 1592 | static void |
725d26d3 | 1593 | ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block, |
dd54567a | 1594 | __u32 len, ext4_fsblk_t start, int type) |
a86c6181 AT |
1595 | { |
1596 | struct ext4_ext_cache *cex; | |
1597 | BUG_ON(len == 0); | |
1598 | cex = &EXT4_I(inode)->i_cached_extent; | |
1599 | cex->ec_type = type; | |
1600 | cex->ec_block = block; | |
1601 | cex->ec_len = len; | |
1602 | cex->ec_start = start; | |
1603 | } | |
1604 | ||
1605 | /* | |
d0d856e8 RD |
1606 | * ext4_ext_put_gap_in_cache: |
1607 | * calculate boundaries of the gap that the requested block fits into | |
a86c6181 AT |
1608 | * and cache this gap |
1609 | */ | |
09b88252 | 1610 | static void |
a86c6181 | 1611 | ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path, |
725d26d3 | 1612 | ext4_lblk_t block) |
a86c6181 AT |
1613 | { |
1614 | int depth = ext_depth(inode); | |
725d26d3 AK |
1615 | unsigned long len; |
1616 | ext4_lblk_t lblock; | |
a86c6181 AT |
1617 | struct ext4_extent *ex; |
1618 | ||
1619 | ex = path[depth].p_ext; | |
1620 | if (ex == NULL) { | |
1621 | /* there is no extent yet, so gap is [0;-] */ | |
1622 | lblock = 0; | |
1623 | len = EXT_MAX_BLOCK; | |
1624 | ext_debug("cache gap(whole file):"); | |
1625 | } else if (block < le32_to_cpu(ex->ee_block)) { | |
1626 | lblock = block; | |
1627 | len = le32_to_cpu(ex->ee_block) - block; | |
bba90743 ES |
1628 | ext_debug("cache gap(before): %u [%u:%u]", |
1629 | block, | |
1630 | le32_to_cpu(ex->ee_block), | |
1631 | ext4_ext_get_actual_len(ex)); | |
a86c6181 | 1632 | } else if (block >= le32_to_cpu(ex->ee_block) |
a2df2a63 | 1633 | + ext4_ext_get_actual_len(ex)) { |
725d26d3 | 1634 | ext4_lblk_t next; |
8c55e204 | 1635 | lblock = le32_to_cpu(ex->ee_block) |
a2df2a63 | 1636 | + ext4_ext_get_actual_len(ex); |
725d26d3 AK |
1637 | |
1638 | next = ext4_ext_next_allocated_block(path); | |
bba90743 ES |
1639 | ext_debug("cache gap(after): [%u:%u] %u", |
1640 | le32_to_cpu(ex->ee_block), | |
1641 | ext4_ext_get_actual_len(ex), | |
1642 | block); | |
725d26d3 AK |
1643 | BUG_ON(next == lblock); |
1644 | len = next - lblock; | |
a86c6181 AT |
1645 | } else { |
1646 | lblock = len = 0; | |
1647 | BUG(); | |
1648 | } | |
1649 | ||
bba90743 | 1650 | ext_debug(" -> %u:%lu\n", lblock, len); |
a86c6181 AT |
1651 | ext4_ext_put_in_cache(inode, lblock, len, 0, EXT4_EXT_CACHE_GAP); |
1652 | } | |
1653 | ||
09b88252 | 1654 | static int |
725d26d3 | 1655 | ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block, |
a86c6181 AT |
1656 | struct ext4_extent *ex) |
1657 | { | |
1658 | struct ext4_ext_cache *cex; | |
1659 | ||
1660 | cex = &EXT4_I(inode)->i_cached_extent; | |
1661 | ||
1662 | /* has cache valid data? */ | |
1663 | if (cex->ec_type == EXT4_EXT_CACHE_NO) | |
1664 | return EXT4_EXT_CACHE_NO; | |
1665 | ||
1666 | BUG_ON(cex->ec_type != EXT4_EXT_CACHE_GAP && | |
1667 | cex->ec_type != EXT4_EXT_CACHE_EXTENT); | |
1668 | if (block >= cex->ec_block && block < cex->ec_block + cex->ec_len) { | |
8c55e204 | 1669 | ex->ee_block = cpu_to_le32(cex->ec_block); |
f65e6fba | 1670 | ext4_ext_store_pblock(ex, cex->ec_start); |
8c55e204 | 1671 | ex->ee_len = cpu_to_le16(cex->ec_len); |
bba90743 ES |
1672 | ext_debug("%u cached by %u:%u:%llu\n", |
1673 | block, | |
1674 | cex->ec_block, cex->ec_len, cex->ec_start); | |
a86c6181 AT |
1675 | return cex->ec_type; |
1676 | } | |
1677 | ||
1678 | /* not in cache */ | |
1679 | return EXT4_EXT_CACHE_NO; | |
1680 | } | |
1681 | ||
1682 | /* | |
d0d856e8 RD |
1683 | * ext4_ext_rm_idx: |
1684 | * removes index from the index block. | |
1685 | * It's used in truncate case only, thus all requests are for | |
1686 | * last index in the block only. | |
a86c6181 | 1687 | */ |
1d03ec98 | 1688 | static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode, |
a86c6181 AT |
1689 | struct ext4_ext_path *path) |
1690 | { | |
1691 | struct buffer_head *bh; | |
1692 | int err; | |
f65e6fba | 1693 | ext4_fsblk_t leaf; |
a86c6181 AT |
1694 | |
1695 | /* free index block */ | |
1696 | path--; | |
f65e6fba | 1697 | leaf = idx_pblock(path->p_idx); |
a86c6181 | 1698 | BUG_ON(path->p_hdr->eh_entries == 0); |
7e028976 AM |
1699 | err = ext4_ext_get_access(handle, inode, path); |
1700 | if (err) | |
a86c6181 AT |
1701 | return err; |
1702 | path->p_hdr->eh_entries = cpu_to_le16(le16_to_cpu(path->p_hdr->eh_entries)-1); | |
7e028976 AM |
1703 | err = ext4_ext_dirty(handle, inode, path); |
1704 | if (err) | |
a86c6181 | 1705 | return err; |
2ae02107 | 1706 | ext_debug("index is empty, remove it, free block %llu\n", leaf); |
a86c6181 AT |
1707 | bh = sb_find_get_block(inode->i_sb, leaf); |
1708 | ext4_forget(handle, 1, inode, bh, leaf); | |
c9de560d | 1709 | ext4_free_blocks(handle, inode, leaf, 1, 1); |
a86c6181 AT |
1710 | return err; |
1711 | } | |
1712 | ||
1713 | /* | |
d0d856e8 RD |
1714 | * ext4_ext_calc_credits_for_insert: |
1715 | * This routine returns max. credits that the extent tree can consume. | |
a86c6181 | 1716 | * It should be OK for low-performance paths like ->writepage() |
d0d856e8 | 1717 | * To allow many writing processes to fit into a single transaction, |
0e855ac8 | 1718 | * the caller should calculate credits under i_data_sem and |
d0d856e8 | 1719 | * pass the actual path. |
a86c6181 | 1720 | */ |
09b88252 | 1721 | int ext4_ext_calc_credits_for_insert(struct inode *inode, |
a86c6181 AT |
1722 | struct ext4_ext_path *path) |
1723 | { | |
1724 | int depth, needed; | |
1725 | ||
1726 | if (path) { | |
1727 | /* probably there is space in leaf? */ | |
1728 | depth = ext_depth(inode); | |
1729 | if (le16_to_cpu(path[depth].p_hdr->eh_entries) | |
1730 | < le16_to_cpu(path[depth].p_hdr->eh_max)) | |
1731 | return 1; | |
1732 | } | |
1733 | ||
1734 | /* | |
d0d856e8 | 1735 | * given 32-bit logical block (4294967296 blocks), max. tree |
a86c6181 | 1736 | * can be 4 levels in depth -- 4 * 340^4 == 53453440000. |
d0d856e8 | 1737 | * Let's also add one more level for imbalance. |
a86c6181 AT |
1738 | */ |
1739 | depth = 5; | |
1740 | ||
1741 | /* allocation of new data block(s) */ | |
1742 | needed = 2; | |
1743 | ||
1744 | /* | |
d0d856e8 | 1745 | * tree can be full, so it would need to grow in depth: |
feb18927 JL |
1746 | * we need one credit to modify old root, credits for |
1747 | * new root will be added in split accounting | |
a86c6181 | 1748 | */ |
feb18927 | 1749 | needed += 1; |
a86c6181 AT |
1750 | |
1751 | /* | |
d0d856e8 | 1752 | * Index split can happen, we would need: |
a86c6181 AT |
1753 | * allocate intermediate indexes (bitmap + group) |
1754 | * + change two blocks at each level, but root (already included) | |
1755 | */ | |
feb18927 | 1756 | needed += (depth * 2) + (depth * 2); |
a86c6181 AT |
1757 | |
1758 | /* any allocation modifies superblock */ | |
1759 | needed += 1; | |
1760 | ||
1761 | return needed; | |
1762 | } | |
1763 | ||
1764 | static int ext4_remove_blocks(handle_t *handle, struct inode *inode, | |
1765 | struct ext4_extent *ex, | |
725d26d3 | 1766 | ext4_lblk_t from, ext4_lblk_t to) |
a86c6181 AT |
1767 | { |
1768 | struct buffer_head *bh; | |
a2df2a63 | 1769 | unsigned short ee_len = ext4_ext_get_actual_len(ex); |
c9de560d | 1770 | int i, metadata = 0; |
a86c6181 | 1771 | |
c9de560d AT |
1772 | if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) |
1773 | metadata = 1; | |
a86c6181 AT |
1774 | #ifdef EXTENTS_STATS |
1775 | { | |
1776 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); | |
a86c6181 AT |
1777 | spin_lock(&sbi->s_ext_stats_lock); |
1778 | sbi->s_ext_blocks += ee_len; | |
1779 | sbi->s_ext_extents++; | |
1780 | if (ee_len < sbi->s_ext_min) | |
1781 | sbi->s_ext_min = ee_len; | |
1782 | if (ee_len > sbi->s_ext_max) | |
1783 | sbi->s_ext_max = ee_len; | |
1784 | if (ext_depth(inode) > sbi->s_depth_max) | |
1785 | sbi->s_depth_max = ext_depth(inode); | |
1786 | spin_unlock(&sbi->s_ext_stats_lock); | |
1787 | } | |
1788 | #endif | |
1789 | if (from >= le32_to_cpu(ex->ee_block) | |
a2df2a63 | 1790 | && to == le32_to_cpu(ex->ee_block) + ee_len - 1) { |
a86c6181 | 1791 | /* tail removal */ |
725d26d3 | 1792 | ext4_lblk_t num; |
f65e6fba | 1793 | ext4_fsblk_t start; |
725d26d3 | 1794 | |
a2df2a63 AA |
1795 | num = le32_to_cpu(ex->ee_block) + ee_len - from; |
1796 | start = ext_pblock(ex) + ee_len - num; | |
725d26d3 | 1797 | ext_debug("free last %u blocks starting %llu\n", num, start); |
a86c6181 AT |
1798 | for (i = 0; i < num; i++) { |
1799 | bh = sb_find_get_block(inode->i_sb, start + i); | |
1800 | ext4_forget(handle, 0, inode, bh, start + i); | |
1801 | } | |
c9de560d | 1802 | ext4_free_blocks(handle, inode, start, num, metadata); |
a86c6181 | 1803 | } else if (from == le32_to_cpu(ex->ee_block) |
a2df2a63 | 1804 | && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) { |
725d26d3 | 1805 | printk(KERN_INFO "strange request: removal %u-%u from %u:%u\n", |
a2df2a63 | 1806 | from, to, le32_to_cpu(ex->ee_block), ee_len); |
a86c6181 | 1807 | } else { |
725d26d3 AK |
1808 | printk(KERN_INFO "strange request: removal(2) " |
1809 | "%u-%u from %u:%u\n", | |
1810 | from, to, le32_to_cpu(ex->ee_block), ee_len); | |
a86c6181 AT |
1811 | } |
1812 | return 0; | |
1813 | } | |
1814 | ||
1815 | static int | |
1816 | ext4_ext_rm_leaf(handle_t *handle, struct inode *inode, | |
725d26d3 | 1817 | struct ext4_ext_path *path, ext4_lblk_t start) |
a86c6181 AT |
1818 | { |
1819 | int err = 0, correct_index = 0; | |
1820 | int depth = ext_depth(inode), credits; | |
1821 | struct ext4_extent_header *eh; | |
725d26d3 AK |
1822 | ext4_lblk_t a, b, block; |
1823 | unsigned num; | |
1824 | ext4_lblk_t ex_ee_block; | |
a86c6181 | 1825 | unsigned short ex_ee_len; |
a2df2a63 | 1826 | unsigned uninitialized = 0; |
a86c6181 AT |
1827 | struct ext4_extent *ex; |
1828 | ||
c29c0ae7 | 1829 | /* the header must be checked already in ext4_ext_remove_space() */ |
725d26d3 | 1830 | ext_debug("truncate since %u in leaf\n", start); |
a86c6181 AT |
1831 | if (!path[depth].p_hdr) |
1832 | path[depth].p_hdr = ext_block_hdr(path[depth].p_bh); | |
1833 | eh = path[depth].p_hdr; | |
1834 | BUG_ON(eh == NULL); | |
a86c6181 AT |
1835 | |
1836 | /* find where to start removing */ | |
1837 | ex = EXT_LAST_EXTENT(eh); | |
1838 | ||
1839 | ex_ee_block = le32_to_cpu(ex->ee_block); | |
a2df2a63 AA |
1840 | if (ext4_ext_is_uninitialized(ex)) |
1841 | uninitialized = 1; | |
1842 | ex_ee_len = ext4_ext_get_actual_len(ex); | |
a86c6181 AT |
1843 | |
1844 | while (ex >= EXT_FIRST_EXTENT(eh) && | |
1845 | ex_ee_block + ex_ee_len > start) { | |
1846 | ext_debug("remove ext %lu:%u\n", ex_ee_block, ex_ee_len); | |
1847 | path[depth].p_ext = ex; | |
1848 | ||
1849 | a = ex_ee_block > start ? ex_ee_block : start; | |
1850 | b = ex_ee_block + ex_ee_len - 1 < EXT_MAX_BLOCK ? | |
1851 | ex_ee_block + ex_ee_len - 1 : EXT_MAX_BLOCK; | |
1852 | ||
1853 | ext_debug(" border %u:%u\n", a, b); | |
1854 | ||
1855 | if (a != ex_ee_block && b != ex_ee_block + ex_ee_len - 1) { | |
1856 | block = 0; | |
1857 | num = 0; | |
1858 | BUG(); | |
1859 | } else if (a != ex_ee_block) { | |
1860 | /* remove tail of the extent */ | |
1861 | block = ex_ee_block; | |
1862 | num = a - block; | |
1863 | } else if (b != ex_ee_block + ex_ee_len - 1) { | |
1864 | /* remove head of the extent */ | |
1865 | block = a; | |
1866 | num = b - a; | |
1867 | /* there is no "make a hole" API yet */ | |
1868 | BUG(); | |
1869 | } else { | |
1870 | /* remove whole extent: excellent! */ | |
1871 | block = ex_ee_block; | |
1872 | num = 0; | |
1873 | BUG_ON(a != ex_ee_block); | |
1874 | BUG_ON(b != ex_ee_block + ex_ee_len - 1); | |
1875 | } | |
1876 | ||
d0d856e8 | 1877 | /* at present, extent can't cross block group: */ |
a86c6181 AT |
1878 | /* leaf + bitmap + group desc + sb + inode */ |
1879 | credits = 5; | |
1880 | if (ex == EXT_FIRST_EXTENT(eh)) { | |
1881 | correct_index = 1; | |
1882 | credits += (ext_depth(inode)) + 1; | |
1883 | } | |
1884 | #ifdef CONFIG_QUOTA | |
1885 | credits += 2 * EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb); | |
1886 | #endif | |
1887 | ||
1888 | handle = ext4_ext_journal_restart(handle, credits); | |
1889 | if (IS_ERR(handle)) { | |
1890 | err = PTR_ERR(handle); | |
1891 | goto out; | |
1892 | } | |
1893 | ||
1894 | err = ext4_ext_get_access(handle, inode, path + depth); | |
1895 | if (err) | |
1896 | goto out; | |
1897 | ||
1898 | err = ext4_remove_blocks(handle, inode, ex, a, b); | |
1899 | if (err) | |
1900 | goto out; | |
1901 | ||
1902 | if (num == 0) { | |
d0d856e8 | 1903 | /* this extent is removed; mark slot entirely unused */ |
f65e6fba | 1904 | ext4_ext_store_pblock(ex, 0); |
a86c6181 AT |
1905 | eh->eh_entries = cpu_to_le16(le16_to_cpu(eh->eh_entries)-1); |
1906 | } | |
1907 | ||
1908 | ex->ee_block = cpu_to_le32(block); | |
1909 | ex->ee_len = cpu_to_le16(num); | |
749269fa AA |
1910 | /* |
1911 | * Do not mark uninitialized if all the blocks in the | |
1912 | * extent have been removed. | |
1913 | */ | |
1914 | if (uninitialized && num) | |
a2df2a63 | 1915 | ext4_ext_mark_uninitialized(ex); |
a86c6181 AT |
1916 | |
1917 | err = ext4_ext_dirty(handle, inode, path + depth); | |
1918 | if (err) | |
1919 | goto out; | |
1920 | ||
2ae02107 | 1921 | ext_debug("new extent: %u:%u:%llu\n", block, num, |
f65e6fba | 1922 | ext_pblock(ex)); |
a86c6181 AT |
1923 | ex--; |
1924 | ex_ee_block = le32_to_cpu(ex->ee_block); | |
a2df2a63 | 1925 | ex_ee_len = ext4_ext_get_actual_len(ex); |
a86c6181 AT |
1926 | } |
1927 | ||
1928 | if (correct_index && eh->eh_entries) | |
1929 | err = ext4_ext_correct_indexes(handle, inode, path); | |
1930 | ||
1931 | /* if this leaf is free, then we should | |
1932 | * remove it from index block above */ | |
1933 | if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL) | |
1934 | err = ext4_ext_rm_idx(handle, inode, path + depth); | |
1935 | ||
1936 | out: | |
1937 | return err; | |
1938 | } | |
1939 | ||
1940 | /* | |
d0d856e8 RD |
1941 | * ext4_ext_more_to_rm: |
1942 | * returns 1 if current index has to be freed (even partial) | |
a86c6181 | 1943 | */ |
09b88252 | 1944 | static int |
a86c6181 AT |
1945 | ext4_ext_more_to_rm(struct ext4_ext_path *path) |
1946 | { | |
1947 | BUG_ON(path->p_idx == NULL); | |
1948 | ||
1949 | if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr)) | |
1950 | return 0; | |
1951 | ||
1952 | /* | |
d0d856e8 | 1953 | * if truncate on deeper level happened, it wasn't partial, |
a86c6181 AT |
1954 | * so we have to consider current index for truncation |
1955 | */ | |
1956 | if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block) | |
1957 | return 0; | |
1958 | return 1; | |
1959 | } | |
1960 | ||
1d03ec98 | 1961 | static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start) |
a86c6181 AT |
1962 | { |
1963 | struct super_block *sb = inode->i_sb; | |
1964 | int depth = ext_depth(inode); | |
1965 | struct ext4_ext_path *path; | |
1966 | handle_t *handle; | |
1967 | int i = 0, err = 0; | |
1968 | ||
725d26d3 | 1969 | ext_debug("truncate since %u\n", start); |
a86c6181 AT |
1970 | |
1971 | /* probably first extent we're gonna free will be last in block */ | |
1972 | handle = ext4_journal_start(inode, depth + 1); | |
1973 | if (IS_ERR(handle)) | |
1974 | return PTR_ERR(handle); | |
1975 | ||
1976 | ext4_ext_invalidate_cache(inode); | |
1977 | ||
1978 | /* | |
d0d856e8 RD |
1979 | * We start scanning from right side, freeing all the blocks |
1980 | * after i_size and walking into the tree depth-wise. | |
a86c6181 | 1981 | */ |
5d4958f9 | 1982 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), GFP_KERNEL); |
a86c6181 AT |
1983 | if (path == NULL) { |
1984 | ext4_journal_stop(handle); | |
1985 | return -ENOMEM; | |
1986 | } | |
a86c6181 | 1987 | path[0].p_hdr = ext_inode_hdr(inode); |
c29c0ae7 | 1988 | if (ext4_ext_check_header(inode, path[0].p_hdr, depth)) { |
a86c6181 AT |
1989 | err = -EIO; |
1990 | goto out; | |
1991 | } | |
1992 | path[0].p_depth = depth; | |
1993 | ||
1994 | while (i >= 0 && err == 0) { | |
1995 | if (i == depth) { | |
1996 | /* this is leaf block */ | |
1997 | err = ext4_ext_rm_leaf(handle, inode, path, start); | |
d0d856e8 | 1998 | /* root level has p_bh == NULL, brelse() eats this */ |
a86c6181 AT |
1999 | brelse(path[i].p_bh); |
2000 | path[i].p_bh = NULL; | |
2001 | i--; | |
2002 | continue; | |
2003 | } | |
2004 | ||
2005 | /* this is index block */ | |
2006 | if (!path[i].p_hdr) { | |
2007 | ext_debug("initialize header\n"); | |
2008 | path[i].p_hdr = ext_block_hdr(path[i].p_bh); | |
a86c6181 AT |
2009 | } |
2010 | ||
a86c6181 | 2011 | if (!path[i].p_idx) { |
d0d856e8 | 2012 | /* this level hasn't been touched yet */ |
a86c6181 AT |
2013 | path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr); |
2014 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1; | |
2015 | ext_debug("init index ptr: hdr 0x%p, num %d\n", | |
2016 | path[i].p_hdr, | |
2017 | le16_to_cpu(path[i].p_hdr->eh_entries)); | |
2018 | } else { | |
d0d856e8 | 2019 | /* we were already here, see at next index */ |
a86c6181 AT |
2020 | path[i].p_idx--; |
2021 | } | |
2022 | ||
2023 | ext_debug("level %d - index, first 0x%p, cur 0x%p\n", | |
2024 | i, EXT_FIRST_INDEX(path[i].p_hdr), | |
2025 | path[i].p_idx); | |
2026 | if (ext4_ext_more_to_rm(path + i)) { | |
c29c0ae7 | 2027 | struct buffer_head *bh; |
a86c6181 | 2028 | /* go to the next level */ |
2ae02107 | 2029 | ext_debug("move to level %d (block %llu)\n", |
f65e6fba | 2030 | i + 1, idx_pblock(path[i].p_idx)); |
a86c6181 | 2031 | memset(path + i + 1, 0, sizeof(*path)); |
c29c0ae7 AT |
2032 | bh = sb_bread(sb, idx_pblock(path[i].p_idx)); |
2033 | if (!bh) { | |
a86c6181 AT |
2034 | /* should we reset i_size? */ |
2035 | err = -EIO; | |
2036 | break; | |
2037 | } | |
c29c0ae7 AT |
2038 | if (WARN_ON(i + 1 > depth)) { |
2039 | err = -EIO; | |
2040 | break; | |
2041 | } | |
2042 | if (ext4_ext_check_header(inode, ext_block_hdr(bh), | |
2043 | depth - i - 1)) { | |
2044 | err = -EIO; | |
2045 | break; | |
2046 | } | |
2047 | path[i + 1].p_bh = bh; | |
a86c6181 | 2048 | |
d0d856e8 RD |
2049 | /* save actual number of indexes since this |
2050 | * number is changed at the next iteration */ | |
a86c6181 AT |
2051 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries); |
2052 | i++; | |
2053 | } else { | |
d0d856e8 | 2054 | /* we finished processing this index, go up */ |
a86c6181 | 2055 | if (path[i].p_hdr->eh_entries == 0 && i > 0) { |
d0d856e8 | 2056 | /* index is empty, remove it; |
a86c6181 AT |
2057 | * handle must be already prepared by the |
2058 | * truncatei_leaf() */ | |
2059 | err = ext4_ext_rm_idx(handle, inode, path + i); | |
2060 | } | |
d0d856e8 | 2061 | /* root level has p_bh == NULL, brelse() eats this */ |
a86c6181 AT |
2062 | brelse(path[i].p_bh); |
2063 | path[i].p_bh = NULL; | |
2064 | i--; | |
2065 | ext_debug("return to level %d\n", i); | |
2066 | } | |
2067 | } | |
2068 | ||
2069 | /* TODO: flexible tree reduction should be here */ | |
2070 | if (path->p_hdr->eh_entries == 0) { | |
2071 | /* | |
d0d856e8 RD |
2072 | * truncate to zero freed all the tree, |
2073 | * so we need to correct eh_depth | |
a86c6181 AT |
2074 | */ |
2075 | err = ext4_ext_get_access(handle, inode, path); | |
2076 | if (err == 0) { | |
2077 | ext_inode_hdr(inode)->eh_depth = 0; | |
2078 | ext_inode_hdr(inode)->eh_max = | |
2079 | cpu_to_le16(ext4_ext_space_root(inode)); | |
2080 | err = ext4_ext_dirty(handle, inode, path); | |
2081 | } | |
2082 | } | |
2083 | out: | |
2084 | ext4_ext_tree_changed(inode); | |
2085 | ext4_ext_drop_refs(path); | |
2086 | kfree(path); | |
2087 | ext4_journal_stop(handle); | |
2088 | ||
2089 | return err; | |
2090 | } | |
2091 | ||
2092 | /* | |
2093 | * called at mount time | |
2094 | */ | |
2095 | void ext4_ext_init(struct super_block *sb) | |
2096 | { | |
2097 | /* | |
2098 | * possible initialization would be here | |
2099 | */ | |
2100 | ||
2101 | if (test_opt(sb, EXTENTS)) { | |
2102 | printk("EXT4-fs: file extents enabled"); | |
bbf2f9fb RD |
2103 | #ifdef AGGRESSIVE_TEST |
2104 | printk(", aggressive tests"); | |
a86c6181 AT |
2105 | #endif |
2106 | #ifdef CHECK_BINSEARCH | |
2107 | printk(", check binsearch"); | |
2108 | #endif | |
2109 | #ifdef EXTENTS_STATS | |
2110 | printk(", stats"); | |
2111 | #endif | |
2112 | printk("\n"); | |
2113 | #ifdef EXTENTS_STATS | |
2114 | spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock); | |
2115 | EXT4_SB(sb)->s_ext_min = 1 << 30; | |
2116 | EXT4_SB(sb)->s_ext_max = 0; | |
2117 | #endif | |
2118 | } | |
2119 | } | |
2120 | ||
2121 | /* | |
2122 | * called at umount time | |
2123 | */ | |
2124 | void ext4_ext_release(struct super_block *sb) | |
2125 | { | |
2126 | if (!test_opt(sb, EXTENTS)) | |
2127 | return; | |
2128 | ||
2129 | #ifdef EXTENTS_STATS | |
2130 | if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) { | |
2131 | struct ext4_sb_info *sbi = EXT4_SB(sb); | |
2132 | printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n", | |
2133 | sbi->s_ext_blocks, sbi->s_ext_extents, | |
2134 | sbi->s_ext_blocks / sbi->s_ext_extents); | |
2135 | printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n", | |
2136 | sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max); | |
2137 | } | |
2138 | #endif | |
2139 | } | |
2140 | ||
093a088b AK |
2141 | static void bi_complete(struct bio *bio, int error) |
2142 | { | |
2143 | complete((struct completion *)bio->bi_private); | |
2144 | } | |
2145 | ||
2146 | /* FIXME!! we need to try to merge to left or right after zero-out */ | |
2147 | static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex) | |
2148 | { | |
2149 | int ret = -EIO; | |
2150 | struct bio *bio; | |
2151 | int blkbits, blocksize; | |
2152 | sector_t ee_pblock; | |
2153 | struct completion event; | |
2154 | unsigned int ee_len, len, done, offset; | |
2155 | ||
2156 | ||
2157 | blkbits = inode->i_blkbits; | |
2158 | blocksize = inode->i_sb->s_blocksize; | |
2159 | ee_len = ext4_ext_get_actual_len(ex); | |
2160 | ee_pblock = ext_pblock(ex); | |
2161 | ||
2162 | /* convert ee_pblock to 512 byte sectors */ | |
2163 | ee_pblock = ee_pblock << (blkbits - 9); | |
2164 | ||
2165 | while (ee_len > 0) { | |
2166 | ||
2167 | if (ee_len > BIO_MAX_PAGES) | |
2168 | len = BIO_MAX_PAGES; | |
2169 | else | |
2170 | len = ee_len; | |
2171 | ||
2172 | bio = bio_alloc(GFP_NOIO, len); | |
2173 | if (!bio) | |
2174 | return -ENOMEM; | |
2175 | bio->bi_sector = ee_pblock; | |
2176 | bio->bi_bdev = inode->i_sb->s_bdev; | |
2177 | ||
2178 | done = 0; | |
2179 | offset = 0; | |
2180 | while (done < len) { | |
2181 | ret = bio_add_page(bio, ZERO_PAGE(0), | |
2182 | blocksize, offset); | |
2183 | if (ret != blocksize) { | |
2184 | /* | |
2185 | * We can't add any more pages because of | |
2186 | * hardware limitations. Start a new bio. | |
2187 | */ | |
2188 | break; | |
2189 | } | |
2190 | done++; | |
2191 | offset += blocksize; | |
2192 | if (offset >= PAGE_CACHE_SIZE) | |
2193 | offset = 0; | |
2194 | } | |
2195 | ||
2196 | init_completion(&event); | |
2197 | bio->bi_private = &event; | |
2198 | bio->bi_end_io = bi_complete; | |
2199 | submit_bio(WRITE, bio); | |
2200 | wait_for_completion(&event); | |
2201 | ||
2202 | if (test_bit(BIO_UPTODATE, &bio->bi_flags)) | |
2203 | ret = 0; | |
2204 | else { | |
2205 | ret = -EIO; | |
2206 | break; | |
2207 | } | |
2208 | bio_put(bio); | |
2209 | ee_len -= done; | |
2210 | ee_pblock += done << (blkbits - 9); | |
2211 | } | |
2212 | return ret; | |
2213 | } | |
2214 | ||
3977c965 AK |
2215 | #define EXT4_EXT_ZERO_LEN 7 |
2216 | ||
56055d3a AA |
2217 | /* |
2218 | * This function is called by ext4_ext_get_blocks() if someone tries to write | |
2219 | * to an uninitialized extent. It may result in splitting the uninitialized | |
2220 | * extent into multiple extents (upto three - one initialized and two | |
2221 | * uninitialized). | |
2222 | * There are three possibilities: | |
2223 | * a> There is no split required: Entire extent should be initialized | |
2224 | * b> Splits in two extents: Write is happening at either end of the extent | |
2225 | * c> Splits in three extents: Somone is writing in middle of the extent | |
2226 | */ | |
725d26d3 AK |
2227 | static int ext4_ext_convert_to_initialized(handle_t *handle, |
2228 | struct inode *inode, | |
2229 | struct ext4_ext_path *path, | |
2230 | ext4_lblk_t iblock, | |
2231 | unsigned long max_blocks) | |
56055d3a | 2232 | { |
95c3889c | 2233 | struct ext4_extent *ex, newex, orig_ex; |
56055d3a AA |
2234 | struct ext4_extent *ex1 = NULL; |
2235 | struct ext4_extent *ex2 = NULL; | |
2236 | struct ext4_extent *ex3 = NULL; | |
2237 | struct ext4_extent_header *eh; | |
725d26d3 AK |
2238 | ext4_lblk_t ee_block; |
2239 | unsigned int allocated, ee_len, depth; | |
56055d3a AA |
2240 | ext4_fsblk_t newblock; |
2241 | int err = 0; | |
2242 | int ret = 0; | |
2243 | ||
2244 | depth = ext_depth(inode); | |
2245 | eh = path[depth].p_hdr; | |
2246 | ex = path[depth].p_ext; | |
2247 | ee_block = le32_to_cpu(ex->ee_block); | |
2248 | ee_len = ext4_ext_get_actual_len(ex); | |
2249 | allocated = ee_len - (iblock - ee_block); | |
2250 | newblock = iblock - ee_block + ext_pblock(ex); | |
2251 | ex2 = ex; | |
95c3889c AK |
2252 | orig_ex.ee_block = ex->ee_block; |
2253 | orig_ex.ee_len = cpu_to_le16(ee_len); | |
2254 | ext4_ext_store_pblock(&orig_ex, ext_pblock(ex)); | |
56055d3a | 2255 | |
9df5643a AK |
2256 | err = ext4_ext_get_access(handle, inode, path + depth); |
2257 | if (err) | |
2258 | goto out; | |
3977c965 AK |
2259 | /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */ |
2260 | if (ee_len <= 2*EXT4_EXT_ZERO_LEN) { | |
2261 | err = ext4_ext_zeroout(inode, &orig_ex); | |
2262 | if (err) | |
2263 | goto fix_extent_len; | |
2264 | /* update the extent length and mark as initialized */ | |
2265 | ex->ee_block = orig_ex.ee_block; | |
2266 | ex->ee_len = orig_ex.ee_len; | |
2267 | ext4_ext_store_pblock(ex, ext_pblock(&orig_ex)); | |
2268 | ext4_ext_dirty(handle, inode, path + depth); | |
2269 | return le16_to_cpu(ex->ee_len); | |
2270 | } | |
9df5643a | 2271 | |
56055d3a AA |
2272 | /* ex1: ee_block to iblock - 1 : uninitialized */ |
2273 | if (iblock > ee_block) { | |
2274 | ex1 = ex; | |
2275 | ex1->ee_len = cpu_to_le16(iblock - ee_block); | |
2276 | ext4_ext_mark_uninitialized(ex1); | |
2277 | ex2 = &newex; | |
2278 | } | |
2279 | /* | |
2280 | * for sanity, update the length of the ex2 extent before | |
2281 | * we insert ex3, if ex1 is NULL. This is to avoid temporary | |
2282 | * overlap of blocks. | |
2283 | */ | |
2284 | if (!ex1 && allocated > max_blocks) | |
2285 | ex2->ee_len = cpu_to_le16(max_blocks); | |
2286 | /* ex3: to ee_block + ee_len : uninitialised */ | |
2287 | if (allocated > max_blocks) { | |
2288 | unsigned int newdepth; | |
3977c965 AK |
2289 | /* If extent has less than EXT4_EXT_ZERO_LEN zerout directly */ |
2290 | if (allocated <= EXT4_EXT_ZERO_LEN) { | |
2291 | /* Mark first half uninitialized. | |
2292 | * Mark second half initialized and zero out the | |
2293 | * initialized extent | |
2294 | */ | |
2295 | ex->ee_block = orig_ex.ee_block; | |
2296 | ex->ee_len = cpu_to_le16(ee_len - allocated); | |
2297 | ext4_ext_mark_uninitialized(ex); | |
2298 | ext4_ext_store_pblock(ex, ext_pblock(&orig_ex)); | |
2299 | ext4_ext_dirty(handle, inode, path + depth); | |
2300 | ||
2301 | ex3 = &newex; | |
2302 | ex3->ee_block = cpu_to_le32(iblock); | |
2303 | ext4_ext_store_pblock(ex3, newblock); | |
2304 | ex3->ee_len = cpu_to_le16(allocated); | |
2305 | err = ext4_ext_insert_extent(handle, inode, path, ex3); | |
2306 | if (err == -ENOSPC) { | |
2307 | err = ext4_ext_zeroout(inode, &orig_ex); | |
2308 | if (err) | |
2309 | goto fix_extent_len; | |
2310 | ex->ee_block = orig_ex.ee_block; | |
2311 | ex->ee_len = orig_ex.ee_len; | |
2312 | ext4_ext_store_pblock(ex, ext_pblock(&orig_ex)); | |
2313 | ext4_ext_dirty(handle, inode, path + depth); | |
2314 | return le16_to_cpu(ex->ee_len); | |
2315 | ||
2316 | } else if (err) | |
2317 | goto fix_extent_len; | |
2318 | ||
2319 | return allocated; | |
2320 | } | |
56055d3a AA |
2321 | ex3 = &newex; |
2322 | ex3->ee_block = cpu_to_le32(iblock + max_blocks); | |
2323 | ext4_ext_store_pblock(ex3, newblock + max_blocks); | |
2324 | ex3->ee_len = cpu_to_le16(allocated - max_blocks); | |
2325 | ext4_ext_mark_uninitialized(ex3); | |
2326 | err = ext4_ext_insert_extent(handle, inode, path, ex3); | |
093a088b AK |
2327 | if (err == -ENOSPC) { |
2328 | err = ext4_ext_zeroout(inode, &orig_ex); | |
2329 | if (err) | |
2330 | goto fix_extent_len; | |
2331 | /* update the extent length and mark as initialized */ | |
95c3889c AK |
2332 | ex->ee_block = orig_ex.ee_block; |
2333 | ex->ee_len = orig_ex.ee_len; | |
2334 | ext4_ext_store_pblock(ex, ext_pblock(&orig_ex)); | |
95c3889c | 2335 | ext4_ext_dirty(handle, inode, path + depth); |
093a088b AK |
2336 | return le16_to_cpu(ex->ee_len); |
2337 | ||
2338 | } else if (err) | |
2339 | goto fix_extent_len; | |
56055d3a AA |
2340 | /* |
2341 | * The depth, and hence eh & ex might change | |
2342 | * as part of the insert above. | |
2343 | */ | |
2344 | newdepth = ext_depth(inode); | |
95c3889c AK |
2345 | /* |
2346 | * update the extent length after successfull insert of the | |
2347 | * split extent | |
2348 | */ | |
2349 | orig_ex.ee_len = cpu_to_le16(ee_len - | |
2350 | ext4_ext_get_actual_len(ex3)); | |
56055d3a AA |
2351 | if (newdepth != depth) { |
2352 | depth = newdepth; | |
b35905c1 AK |
2353 | ext4_ext_drop_refs(path); |
2354 | path = ext4_ext_find_extent(inode, iblock, path); | |
56055d3a AA |
2355 | if (IS_ERR(path)) { |
2356 | err = PTR_ERR(path); | |
56055d3a AA |
2357 | goto out; |
2358 | } | |
2359 | eh = path[depth].p_hdr; | |
2360 | ex = path[depth].p_ext; | |
2361 | if (ex2 != &newex) | |
2362 | ex2 = ex; | |
9df5643a AK |
2363 | |
2364 | err = ext4_ext_get_access(handle, inode, path + depth); | |
2365 | if (err) | |
2366 | goto out; | |
56055d3a AA |
2367 | } |
2368 | allocated = max_blocks; | |
3977c965 AK |
2369 | |
2370 | /* If extent has less than EXT4_EXT_ZERO_LEN and we are trying | |
2371 | * to insert a extent in the middle zerout directly | |
2372 | * otherwise give the extent a chance to merge to left | |
2373 | */ | |
2374 | if (le16_to_cpu(orig_ex.ee_len) <= EXT4_EXT_ZERO_LEN && | |
2375 | iblock != ee_block) { | |
2376 | err = ext4_ext_zeroout(inode, &orig_ex); | |
2377 | if (err) | |
2378 | goto fix_extent_len; | |
2379 | /* update the extent length and mark as initialized */ | |
2380 | ex->ee_block = orig_ex.ee_block; | |
2381 | ex->ee_len = orig_ex.ee_len; | |
2382 | ext4_ext_store_pblock(ex, ext_pblock(&orig_ex)); | |
2383 | ext4_ext_dirty(handle, inode, path + depth); | |
2384 | return le16_to_cpu(ex->ee_len); | |
2385 | } | |
56055d3a AA |
2386 | } |
2387 | /* | |
2388 | * If there was a change of depth as part of the | |
2389 | * insertion of ex3 above, we need to update the length | |
2390 | * of the ex1 extent again here | |
2391 | */ | |
2392 | if (ex1 && ex1 != ex) { | |
2393 | ex1 = ex; | |
2394 | ex1->ee_len = cpu_to_le16(iblock - ee_block); | |
2395 | ext4_ext_mark_uninitialized(ex1); | |
2396 | ex2 = &newex; | |
2397 | } | |
2398 | /* ex2: iblock to iblock + maxblocks-1 : initialised */ | |
2399 | ex2->ee_block = cpu_to_le32(iblock); | |
56055d3a AA |
2400 | ext4_ext_store_pblock(ex2, newblock); |
2401 | ex2->ee_len = cpu_to_le16(allocated); | |
2402 | if (ex2 != ex) | |
2403 | goto insert; | |
56055d3a AA |
2404 | /* |
2405 | * New (initialized) extent starts from the first block | |
2406 | * in the current extent. i.e., ex2 == ex | |
2407 | * We have to see if it can be merged with the extent | |
2408 | * on the left. | |
2409 | */ | |
2410 | if (ex2 > EXT_FIRST_EXTENT(eh)) { | |
2411 | /* | |
2412 | * To merge left, pass "ex2 - 1" to try_to_merge(), | |
2413 | * since it merges towards right _only_. | |
2414 | */ | |
2415 | ret = ext4_ext_try_to_merge(inode, path, ex2 - 1); | |
2416 | if (ret) { | |
2417 | err = ext4_ext_correct_indexes(handle, inode, path); | |
2418 | if (err) | |
2419 | goto out; | |
2420 | depth = ext_depth(inode); | |
2421 | ex2--; | |
2422 | } | |
2423 | } | |
2424 | /* | |
2425 | * Try to Merge towards right. This might be required | |
2426 | * only when the whole extent is being written to. | |
2427 | * i.e. ex2 == ex and ex3 == NULL. | |
2428 | */ | |
2429 | if (!ex3) { | |
2430 | ret = ext4_ext_try_to_merge(inode, path, ex2); | |
2431 | if (ret) { | |
2432 | err = ext4_ext_correct_indexes(handle, inode, path); | |
2433 | if (err) | |
2434 | goto out; | |
2435 | } | |
2436 | } | |
2437 | /* Mark modified extent as dirty */ | |
2438 | err = ext4_ext_dirty(handle, inode, path + depth); | |
2439 | goto out; | |
2440 | insert: | |
2441 | err = ext4_ext_insert_extent(handle, inode, path, &newex); | |
093a088b AK |
2442 | if (err == -ENOSPC) { |
2443 | err = ext4_ext_zeroout(inode, &orig_ex); | |
2444 | if (err) | |
2445 | goto fix_extent_len; | |
2446 | /* update the extent length and mark as initialized */ | |
95c3889c AK |
2447 | ex->ee_block = orig_ex.ee_block; |
2448 | ex->ee_len = orig_ex.ee_len; | |
2449 | ext4_ext_store_pblock(ex, ext_pblock(&orig_ex)); | |
95c3889c | 2450 | ext4_ext_dirty(handle, inode, path + depth); |
093a088b AK |
2451 | return le16_to_cpu(ex->ee_len); |
2452 | } else if (err) | |
2453 | goto fix_extent_len; | |
56055d3a AA |
2454 | out: |
2455 | return err ? err : allocated; | |
093a088b AK |
2456 | |
2457 | fix_extent_len: | |
2458 | ex->ee_block = orig_ex.ee_block; | |
2459 | ex->ee_len = orig_ex.ee_len; | |
2460 | ext4_ext_store_pblock(ex, ext_pblock(&orig_ex)); | |
2461 | ext4_ext_mark_uninitialized(ex); | |
2462 | ext4_ext_dirty(handle, inode, path + depth); | |
2463 | return err; | |
56055d3a AA |
2464 | } |
2465 | ||
c278bfec | 2466 | /* |
f5ab0d1f MC |
2467 | * Block allocation/map/preallocation routine for extents based files |
2468 | * | |
2469 | * | |
c278bfec | 2470 | * Need to be called with |
0e855ac8 AK |
2471 | * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block |
2472 | * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem) | |
f5ab0d1f MC |
2473 | * |
2474 | * return > 0, number of of blocks already mapped/allocated | |
2475 | * if create == 0 and these are pre-allocated blocks | |
2476 | * buffer head is unmapped | |
2477 | * otherwise blocks are mapped | |
2478 | * | |
2479 | * return = 0, if plain look up failed (blocks have not been allocated) | |
2480 | * buffer head is unmapped | |
2481 | * | |
2482 | * return < 0, error case. | |
c278bfec | 2483 | */ |
f65e6fba | 2484 | int ext4_ext_get_blocks(handle_t *handle, struct inode *inode, |
725d26d3 | 2485 | ext4_lblk_t iblock, |
a86c6181 AT |
2486 | unsigned long max_blocks, struct buffer_head *bh_result, |
2487 | int create, int extend_disksize) | |
2488 | { | |
2489 | struct ext4_ext_path *path = NULL; | |
56055d3a | 2490 | struct ext4_extent_header *eh; |
a86c6181 | 2491 | struct ext4_extent newex, *ex; |
f65e6fba | 2492 | ext4_fsblk_t goal, newblock; |
56055d3a | 2493 | int err = 0, depth, ret; |
a86c6181 | 2494 | unsigned long allocated = 0; |
c9de560d | 2495 | struct ext4_allocation_request ar; |
a86c6181 AT |
2496 | |
2497 | __clear_bit(BH_New, &bh_result->b_state); | |
bba90743 ES |
2498 | ext_debug("blocks %u/%lu requested for inode %u\n", |
2499 | iblock, max_blocks, inode->i_ino); | |
a86c6181 AT |
2500 | |
2501 | /* check in cache */ | |
7e028976 AM |
2502 | goal = ext4_ext_in_cache(inode, iblock, &newex); |
2503 | if (goal) { | |
a86c6181 AT |
2504 | if (goal == EXT4_EXT_CACHE_GAP) { |
2505 | if (!create) { | |
56055d3a AA |
2506 | /* |
2507 | * block isn't allocated yet and | |
2508 | * user doesn't want to allocate it | |
2509 | */ | |
a86c6181 AT |
2510 | goto out2; |
2511 | } | |
2512 | /* we should allocate requested block */ | |
2513 | } else if (goal == EXT4_EXT_CACHE_EXTENT) { | |
2514 | /* block is already allocated */ | |
8c55e204 DK |
2515 | newblock = iblock |
2516 | - le32_to_cpu(newex.ee_block) | |
2517 | + ext_pblock(&newex); | |
d0d856e8 | 2518 | /* number of remaining blocks in the extent */ |
b939e376 | 2519 | allocated = ext4_ext_get_actual_len(&newex) - |
a86c6181 AT |
2520 | (iblock - le32_to_cpu(newex.ee_block)); |
2521 | goto out; | |
2522 | } else { | |
2523 | BUG(); | |
2524 | } | |
2525 | } | |
2526 | ||
2527 | /* find extent for this block */ | |
2528 | path = ext4_ext_find_extent(inode, iblock, NULL); | |
2529 | if (IS_ERR(path)) { | |
2530 | err = PTR_ERR(path); | |
2531 | path = NULL; | |
2532 | goto out2; | |
2533 | } | |
2534 | ||
2535 | depth = ext_depth(inode); | |
2536 | ||
2537 | /* | |
d0d856e8 RD |
2538 | * consistent leaf must not be empty; |
2539 | * this situation is possible, though, _during_ tree modification; | |
a86c6181 AT |
2540 | * this is why assert can't be put in ext4_ext_find_extent() |
2541 | */ | |
2542 | BUG_ON(path[depth].p_ext == NULL && depth != 0); | |
56055d3a | 2543 | eh = path[depth].p_hdr; |
a86c6181 | 2544 | |
7e028976 AM |
2545 | ex = path[depth].p_ext; |
2546 | if (ex) { | |
725d26d3 | 2547 | ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block); |
f65e6fba | 2548 | ext4_fsblk_t ee_start = ext_pblock(ex); |
a2df2a63 | 2549 | unsigned short ee_len; |
471d4011 SB |
2550 | |
2551 | /* | |
471d4011 | 2552 | * Uninitialized extents are treated as holes, except that |
56055d3a | 2553 | * we split out initialized portions during a write. |
471d4011 | 2554 | */ |
a2df2a63 | 2555 | ee_len = ext4_ext_get_actual_len(ex); |
d0d856e8 | 2556 | /* if found extent covers block, simply return it */ |
8c55e204 | 2557 | if (iblock >= ee_block && iblock < ee_block + ee_len) { |
a86c6181 | 2558 | newblock = iblock - ee_block + ee_start; |
d0d856e8 | 2559 | /* number of remaining blocks in the extent */ |
a86c6181 | 2560 | allocated = ee_len - (iblock - ee_block); |
bba90743 | 2561 | ext_debug("%u fit into %lu:%d -> %llu\n", iblock, |
a86c6181 | 2562 | ee_block, ee_len, newblock); |
56055d3a | 2563 | |
a2df2a63 | 2564 | /* Do not put uninitialized extent in the cache */ |
56055d3a | 2565 | if (!ext4_ext_is_uninitialized(ex)) { |
a2df2a63 AA |
2566 | ext4_ext_put_in_cache(inode, ee_block, |
2567 | ee_len, ee_start, | |
2568 | EXT4_EXT_CACHE_EXTENT); | |
56055d3a AA |
2569 | goto out; |
2570 | } | |
2571 | if (create == EXT4_CREATE_UNINITIALIZED_EXT) | |
2572 | goto out; | |
2573 | if (!create) | |
2574 | goto out2; | |
2575 | ||
2576 | ret = ext4_ext_convert_to_initialized(handle, inode, | |
2577 | path, iblock, | |
2578 | max_blocks); | |
dbf9d7da DM |
2579 | if (ret <= 0) { |
2580 | err = ret; | |
56055d3a | 2581 | goto out2; |
dbf9d7da | 2582 | } else |
56055d3a AA |
2583 | allocated = ret; |
2584 | goto outnew; | |
a86c6181 AT |
2585 | } |
2586 | } | |
2587 | ||
2588 | /* | |
d0d856e8 | 2589 | * requested block isn't allocated yet; |
a86c6181 AT |
2590 | * we couldn't try to create block if create flag is zero |
2591 | */ | |
2592 | if (!create) { | |
56055d3a AA |
2593 | /* |
2594 | * put just found gap into cache to speed up | |
2595 | * subsequent requests | |
2596 | */ | |
a86c6181 AT |
2597 | ext4_ext_put_gap_in_cache(inode, path, iblock); |
2598 | goto out2; | |
2599 | } | |
2600 | /* | |
63f57933 AM |
2601 | * Okay, we need to do block allocation. Lazily initialize the block |
2602 | * allocation info here if necessary. | |
2603 | */ | |
a86c6181 AT |
2604 | if (S_ISREG(inode->i_mode) && (!EXT4_I(inode)->i_block_alloc_info)) |
2605 | ext4_init_block_alloc_info(inode); | |
2606 | ||
c9de560d AT |
2607 | /* find neighbour allocated blocks */ |
2608 | ar.lleft = iblock; | |
2609 | err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft); | |
2610 | if (err) | |
2611 | goto out2; | |
2612 | ar.lright = iblock; | |
2613 | err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright); | |
2614 | if (err) | |
2615 | goto out2; | |
25d14f98 | 2616 | |
749269fa AA |
2617 | /* |
2618 | * See if request is beyond maximum number of blocks we can have in | |
2619 | * a single extent. For an initialized extent this limit is | |
2620 | * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is | |
2621 | * EXT_UNINIT_MAX_LEN. | |
2622 | */ | |
2623 | if (max_blocks > EXT_INIT_MAX_LEN && | |
2624 | create != EXT4_CREATE_UNINITIALIZED_EXT) | |
2625 | max_blocks = EXT_INIT_MAX_LEN; | |
2626 | else if (max_blocks > EXT_UNINIT_MAX_LEN && | |
2627 | create == EXT4_CREATE_UNINITIALIZED_EXT) | |
2628 | max_blocks = EXT_UNINIT_MAX_LEN; | |
2629 | ||
25d14f98 AA |
2630 | /* Check if we can really insert (iblock)::(iblock+max_blocks) extent */ |
2631 | newex.ee_block = cpu_to_le32(iblock); | |
2632 | newex.ee_len = cpu_to_le16(max_blocks); | |
2633 | err = ext4_ext_check_overlap(inode, &newex, path); | |
2634 | if (err) | |
b939e376 | 2635 | allocated = ext4_ext_get_actual_len(&newex); |
25d14f98 AA |
2636 | else |
2637 | allocated = max_blocks; | |
c9de560d AT |
2638 | |
2639 | /* allocate new block */ | |
2640 | ar.inode = inode; | |
2641 | ar.goal = ext4_ext_find_goal(inode, path, iblock); | |
2642 | ar.logical = iblock; | |
2643 | ar.len = allocated; | |
2644 | if (S_ISREG(inode->i_mode)) | |
2645 | ar.flags = EXT4_MB_HINT_DATA; | |
2646 | else | |
2647 | /* disable in-core preallocation for non-regular files */ | |
2648 | ar.flags = 0; | |
2649 | newblock = ext4_mb_new_blocks(handle, &ar, &err); | |
a86c6181 AT |
2650 | if (!newblock) |
2651 | goto out2; | |
2ae02107 | 2652 | ext_debug("allocate new block: goal %llu, found %llu/%lu\n", |
a86c6181 AT |
2653 | goal, newblock, allocated); |
2654 | ||
2655 | /* try to insert new extent into found leaf and return */ | |
f65e6fba | 2656 | ext4_ext_store_pblock(&newex, newblock); |
c9de560d | 2657 | newex.ee_len = cpu_to_le16(ar.len); |
a2df2a63 AA |
2658 | if (create == EXT4_CREATE_UNINITIALIZED_EXT) /* Mark uninitialized */ |
2659 | ext4_ext_mark_uninitialized(&newex); | |
a86c6181 | 2660 | err = ext4_ext_insert_extent(handle, inode, path, &newex); |
315054f0 AT |
2661 | if (err) { |
2662 | /* free data blocks we just allocated */ | |
c9de560d AT |
2663 | /* not a good idea to call discard here directly, |
2664 | * but otherwise we'd need to call it every free() */ | |
2665 | ext4_mb_discard_inode_preallocations(inode); | |
315054f0 | 2666 | ext4_free_blocks(handle, inode, ext_pblock(&newex), |
b939e376 | 2667 | ext4_ext_get_actual_len(&newex), 0); |
a86c6181 | 2668 | goto out2; |
315054f0 | 2669 | } |
a86c6181 AT |
2670 | |
2671 | if (extend_disksize && inode->i_size > EXT4_I(inode)->i_disksize) | |
2672 | EXT4_I(inode)->i_disksize = inode->i_size; | |
2673 | ||
2674 | /* previous routine could use block we allocated */ | |
f65e6fba | 2675 | newblock = ext_pblock(&newex); |
b939e376 | 2676 | allocated = ext4_ext_get_actual_len(&newex); |
56055d3a | 2677 | outnew: |
a86c6181 AT |
2678 | __set_bit(BH_New, &bh_result->b_state); |
2679 | ||
a2df2a63 AA |
2680 | /* Cache only when it is _not_ an uninitialized extent */ |
2681 | if (create != EXT4_CREATE_UNINITIALIZED_EXT) | |
2682 | ext4_ext_put_in_cache(inode, iblock, allocated, newblock, | |
2683 | EXT4_EXT_CACHE_EXTENT); | |
a86c6181 AT |
2684 | out: |
2685 | if (allocated > max_blocks) | |
2686 | allocated = max_blocks; | |
2687 | ext4_ext_show_leaf(inode, path); | |
2688 | __set_bit(BH_Mapped, &bh_result->b_state); | |
2689 | bh_result->b_bdev = inode->i_sb->s_bdev; | |
2690 | bh_result->b_blocknr = newblock; | |
2691 | out2: | |
2692 | if (path) { | |
2693 | ext4_ext_drop_refs(path); | |
2694 | kfree(path); | |
2695 | } | |
a86c6181 AT |
2696 | return err ? err : allocated; |
2697 | } | |
2698 | ||
2699 | void ext4_ext_truncate(struct inode * inode, struct page *page) | |
2700 | { | |
2701 | struct address_space *mapping = inode->i_mapping; | |
2702 | struct super_block *sb = inode->i_sb; | |
725d26d3 | 2703 | ext4_lblk_t last_block; |
a86c6181 AT |
2704 | handle_t *handle; |
2705 | int err = 0; | |
2706 | ||
2707 | /* | |
2708 | * probably first extent we're gonna free will be last in block | |
2709 | */ | |
2710 | err = ext4_writepage_trans_blocks(inode) + 3; | |
2711 | handle = ext4_journal_start(inode, err); | |
2712 | if (IS_ERR(handle)) { | |
2713 | if (page) { | |
2714 | clear_highpage(page); | |
2715 | flush_dcache_page(page); | |
2716 | unlock_page(page); | |
2717 | page_cache_release(page); | |
2718 | } | |
2719 | return; | |
2720 | } | |
2721 | ||
2722 | if (page) | |
2723 | ext4_block_truncate_page(handle, page, mapping, inode->i_size); | |
2724 | ||
0e855ac8 | 2725 | down_write(&EXT4_I(inode)->i_data_sem); |
a86c6181 AT |
2726 | ext4_ext_invalidate_cache(inode); |
2727 | ||
c9de560d AT |
2728 | ext4_mb_discard_inode_preallocations(inode); |
2729 | ||
a86c6181 | 2730 | /* |
d0d856e8 RD |
2731 | * TODO: optimization is possible here. |
2732 | * Probably we need not scan at all, | |
2733 | * because page truncation is enough. | |
a86c6181 AT |
2734 | */ |
2735 | if (ext4_orphan_add(handle, inode)) | |
2736 | goto out_stop; | |
2737 | ||
2738 | /* we have to know where to truncate from in crash case */ | |
2739 | EXT4_I(inode)->i_disksize = inode->i_size; | |
2740 | ext4_mark_inode_dirty(handle, inode); | |
2741 | ||
2742 | last_block = (inode->i_size + sb->s_blocksize - 1) | |
2743 | >> EXT4_BLOCK_SIZE_BITS(sb); | |
2744 | err = ext4_ext_remove_space(inode, last_block); | |
2745 | ||
2746 | /* In a multi-transaction truncate, we only make the final | |
56055d3a AA |
2747 | * transaction synchronous. |
2748 | */ | |
a86c6181 AT |
2749 | if (IS_SYNC(inode)) |
2750 | handle->h_sync = 1; | |
2751 | ||
2752 | out_stop: | |
2753 | /* | |
d0d856e8 | 2754 | * If this was a simple ftruncate() and the file will remain alive, |
a86c6181 AT |
2755 | * then we need to clear up the orphan record which we created above. |
2756 | * However, if this was a real unlink then we were called by | |
2757 | * ext4_delete_inode(), and we allow that function to clean up the | |
2758 | * orphan info for us. | |
2759 | */ | |
2760 | if (inode->i_nlink) | |
2761 | ext4_orphan_del(handle, inode); | |
2762 | ||
0e855ac8 | 2763 | up_write(&EXT4_I(inode)->i_data_sem); |
a86c6181 AT |
2764 | ext4_journal_stop(handle); |
2765 | } | |
2766 | ||
2767 | /* | |
d0d856e8 RD |
2768 | * ext4_ext_writepage_trans_blocks: |
2769 | * calculate max number of blocks we could modify | |
a86c6181 AT |
2770 | * in order to allocate new block for an inode |
2771 | */ | |
2772 | int ext4_ext_writepage_trans_blocks(struct inode *inode, int num) | |
2773 | { | |
2774 | int needed; | |
2775 | ||
2776 | needed = ext4_ext_calc_credits_for_insert(inode, NULL); | |
2777 | ||
d0d856e8 | 2778 | /* caller wants to allocate num blocks, but note it includes sb */ |
a86c6181 AT |
2779 | needed = needed * num - (num - 1); |
2780 | ||
2781 | #ifdef CONFIG_QUOTA | |
2782 | needed += 2 * EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb); | |
2783 | #endif | |
2784 | ||
2785 | return needed; | |
2786 | } | |
a2df2a63 AA |
2787 | |
2788 | /* | |
2789 | * preallocate space for a file. This implements ext4's fallocate inode | |
2790 | * operation, which gets called from sys_fallocate system call. | |
2791 | * For block-mapped files, posix_fallocate should fall back to the method | |
2792 | * of writing zeroes to the required new blocks (the same behavior which is | |
2793 | * expected for file systems which do not support fallocate() system call). | |
2794 | */ | |
2795 | long ext4_fallocate(struct inode *inode, int mode, loff_t offset, loff_t len) | |
2796 | { | |
2797 | handle_t *handle; | |
725d26d3 AK |
2798 | ext4_lblk_t block; |
2799 | unsigned long max_blocks; | |
a2df2a63 AA |
2800 | ext4_fsblk_t nblocks = 0; |
2801 | int ret = 0; | |
2802 | int ret2 = 0; | |
2803 | int retries = 0; | |
2804 | struct buffer_head map_bh; | |
2805 | unsigned int credits, blkbits = inode->i_blkbits; | |
2806 | ||
2807 | /* | |
2808 | * currently supporting (pre)allocate mode for extent-based | |
2809 | * files _only_ | |
2810 | */ | |
2811 | if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) | |
2812 | return -EOPNOTSUPP; | |
2813 | ||
2814 | /* preallocation to directories is currently not supported */ | |
2815 | if (S_ISDIR(inode->i_mode)) | |
2816 | return -ENODEV; | |
2817 | ||
2818 | block = offset >> blkbits; | |
2819 | max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) | |
2820 | - block; | |
2821 | ||
2822 | /* | |
2823 | * credits to insert 1 extent into extent tree + buffers to be able to | |
2824 | * modify 1 super block, 1 block bitmap and 1 group descriptor. | |
2825 | */ | |
2826 | credits = EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + 3; | |
55bd725a | 2827 | mutex_lock(&inode->i_mutex); |
a2df2a63 AA |
2828 | retry: |
2829 | while (ret >= 0 && ret < max_blocks) { | |
2830 | block = block + ret; | |
2831 | max_blocks = max_blocks - ret; | |
2832 | handle = ext4_journal_start(inode, credits); | |
2833 | if (IS_ERR(handle)) { | |
2834 | ret = PTR_ERR(handle); | |
2835 | break; | |
2836 | } | |
2837 | ||
55bd725a | 2838 | ret = ext4_get_blocks_wrap(handle, inode, block, |
a2df2a63 AA |
2839 | max_blocks, &map_bh, |
2840 | EXT4_CREATE_UNINITIALIZED_EXT, 0); | |
221879c9 | 2841 | if (ret <= 0) { |
2c98615d AK |
2842 | #ifdef EXT4FS_DEBUG |
2843 | WARN_ON(ret <= 0); | |
2844 | printk(KERN_ERR "%s: ext4_ext_get_blocks " | |
2845 | "returned error inode#%lu, block=%u, " | |
2846 | "max_blocks=%lu", __func__, | |
221879c9 | 2847 | inode->i_ino, block, max_blocks); |
2c98615d | 2848 | #endif |
a2df2a63 AA |
2849 | ext4_mark_inode_dirty(handle, inode); |
2850 | ret2 = ext4_journal_stop(handle); | |
2851 | break; | |
2852 | } | |
2853 | if (ret > 0) { | |
2854 | /* check wrap through sign-bit/zero here */ | |
2855 | if ((block + ret) < 0 || (block + ret) < block) { | |
2856 | ret = -EIO; | |
2857 | ext4_mark_inode_dirty(handle, inode); | |
2858 | ret2 = ext4_journal_stop(handle); | |
2859 | break; | |
2860 | } | |
2861 | if (buffer_new(&map_bh) && ((block + ret) > | |
2862 | (EXT4_BLOCK_ALIGN(i_size_read(inode), blkbits) | |
2863 | >> blkbits))) | |
2864 | nblocks = nblocks + ret; | |
2865 | } | |
2866 | ||
2867 | /* Update ctime if new blocks get allocated */ | |
2868 | if (nblocks) { | |
2869 | struct timespec now; | |
2870 | ||
2871 | now = current_fs_time(inode->i_sb); | |
2872 | if (!timespec_equal(&inode->i_ctime, &now)) | |
2873 | inode->i_ctime = now; | |
2874 | } | |
2875 | ||
2876 | ext4_mark_inode_dirty(handle, inode); | |
2877 | ret2 = ext4_journal_stop(handle); | |
2878 | if (ret2) | |
2879 | break; | |
2880 | } | |
2881 | ||
2882 | if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) | |
2883 | goto retry; | |
2884 | ||
2885 | /* | |
2886 | * Time to update the file size. | |
2887 | * Update only when preallocation was requested beyond the file size. | |
2888 | */ | |
2889 | if (!(mode & FALLOC_FL_KEEP_SIZE) && | |
2890 | (offset + len) > i_size_read(inode)) { | |
2891 | if (ret > 0) { | |
2892 | /* | |
2893 | * if no error, we assume preallocation succeeded | |
2894 | * completely | |
2895 | */ | |
a2df2a63 AA |
2896 | i_size_write(inode, offset + len); |
2897 | EXT4_I(inode)->i_disksize = i_size_read(inode); | |
a2df2a63 AA |
2898 | } else if (ret < 0 && nblocks) { |
2899 | /* Handle partial allocation scenario */ | |
2900 | loff_t newsize; | |
2901 | ||
a2df2a63 AA |
2902 | newsize = (nblocks << blkbits) + i_size_read(inode); |
2903 | i_size_write(inode, EXT4_BLOCK_ALIGN(newsize, blkbits)); | |
2904 | EXT4_I(inode)->i_disksize = i_size_read(inode); | |
a2df2a63 AA |
2905 | } |
2906 | } | |
2907 | ||
55bd725a | 2908 | mutex_unlock(&inode->i_mutex); |
a2df2a63 AA |
2909 | return ret > 0 ? ret2 : ret; |
2910 | } |