ext4: remove redundant goto in ext4_ext_insert_extent()
[linux-2.6-block.git] / fs / ext4 / extents.c
CommitLineData
a86c6181
AT
1/*
2 * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
3 * Written by Alex Tomas <alex@clusterfs.com>
4 *
5 * Architecture independence:
6 * Copyright (c) 2005, Bull S.A.
7 * Written by Pierre Peiffer <pierre.peiffer@bull.net>
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>
cd02ff0b 35#include <linux/jbd2.h>
a86c6181
AT
36#include <linux/highuid.h>
37#include <linux/pagemap.h>
38#include <linux/quotaops.h>
39#include <linux/string.h>
40#include <linux/slab.h>
a2df2a63 41#include <linux/falloc.h>
a86c6181 42#include <asm/uaccess.h>
6873fa0d 43#include <linux/fiemap.h>
3dcf5451
CH
44#include "ext4_jbd2.h"
45#include "ext4_extents.h"
a86c6181 46
0562e0ba
JZ
47#include <trace/events/ext4.h>
48
d583fb87
AH
49static int ext4_split_extent(handle_t *handle,
50 struct inode *inode,
51 struct ext4_ext_path *path,
52 struct ext4_map_blocks *map,
53 int split_flag,
54 int flags);
55
487caeef
JK
56static int ext4_ext_truncate_extend_restart(handle_t *handle,
57 struct inode *inode,
58 int needed)
a86c6181
AT
59{
60 int err;
61
0390131b
FM
62 if (!ext4_handle_valid(handle))
63 return 0;
a86c6181 64 if (handle->h_buffer_credits > needed)
9102e4fa
SF
65 return 0;
66 err = ext4_journal_extend(handle, needed);
0123c939 67 if (err <= 0)
9102e4fa 68 return err;
487caeef 69 err = ext4_truncate_restart_trans(handle, inode, needed);
0617b83f
DM
70 if (err == 0)
71 err = -EAGAIN;
487caeef
JK
72
73 return err;
a86c6181
AT
74}
75
76/*
77 * could return:
78 * - EROFS
79 * - ENOMEM
80 */
81static int ext4_ext_get_access(handle_t *handle, struct inode *inode,
82 struct ext4_ext_path *path)
83{
84 if (path->p_bh) {
85 /* path points to block */
86 return ext4_journal_get_write_access(handle, path->p_bh);
87 }
88 /* path points to leaf/index in inode body */
89 /* we use in-core data, no need to protect them */
90 return 0;
91}
92
93/*
94 * could return:
95 * - EROFS
96 * - ENOMEM
97 * - EIO
98 */
99static int ext4_ext_dirty(handle_t *handle, struct inode *inode,
100 struct ext4_ext_path *path)
101{
102 int err;
103 if (path->p_bh) {
104 /* path points to block */
0390131b 105 err = ext4_handle_dirty_metadata(handle, inode, path->p_bh);
a86c6181
AT
106 } else {
107 /* path points to leaf/index in inode body */
108 err = ext4_mark_inode_dirty(handle, inode);
109 }
110 return err;
111}
112
f65e6fba 113static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode,
a86c6181 114 struct ext4_ext_path *path,
725d26d3 115 ext4_lblk_t block)
a86c6181 116{
a86c6181
AT
117 int depth;
118
119 if (path) {
120 struct ext4_extent *ex;
121 depth = path->p_depth;
122
ad4fb9ca
KM
123 /*
124 * Try to predict block placement assuming that we are
125 * filling in a file which will eventually be
126 * non-sparse --- i.e., in the case of libbfd writing
127 * an ELF object sections out-of-order but in a way
128 * the eventually results in a contiguous object or
129 * executable file, or some database extending a table
130 * space file. However, this is actually somewhat
131 * non-ideal if we are writing a sparse file such as
132 * qemu or KVM writing a raw image file that is going
133 * to stay fairly sparse, since it will end up
134 * fragmenting the file system's free space. Maybe we
135 * should have some hueristics or some way to allow
136 * userspace to pass a hint to file system,
b8d6568a 137 * especially if the latter case turns out to be
ad4fb9ca
KM
138 * common.
139 */
7e028976 140 ex = path[depth].p_ext;
ad4fb9ca
KM
141 if (ex) {
142 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex);
143 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block);
144
145 if (block > ext_block)
146 return ext_pblk + (block - ext_block);
147 else
148 return ext_pblk - (ext_block - block);
149 }
a86c6181 150
d0d856e8
RD
151 /* it looks like index is empty;
152 * try to find starting block from index itself */
a86c6181
AT
153 if (path[depth].p_bh)
154 return path[depth].p_bh->b_blocknr;
155 }
156
157 /* OK. use inode's group */
f86186b4 158 return ext4_inode_to_goal_block(inode);
a86c6181
AT
159}
160
654b4908
AK
161/*
162 * Allocation for a meta data block
163 */
f65e6fba 164static ext4_fsblk_t
654b4908 165ext4_ext_new_meta_block(handle_t *handle, struct inode *inode,
a86c6181 166 struct ext4_ext_path *path,
55f020db 167 struct ext4_extent *ex, int *err, unsigned int flags)
a86c6181 168{
f65e6fba 169 ext4_fsblk_t goal, newblock;
a86c6181
AT
170
171 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block));
55f020db
AH
172 newblock = ext4_new_meta_blocks(handle, inode, goal, flags,
173 NULL, err);
a86c6181
AT
174 return newblock;
175}
176
55ad63bf 177static inline int ext4_ext_space_block(struct inode *inode, int check)
a86c6181
AT
178{
179 int size;
180
181 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
182 / sizeof(struct ext4_extent);
55ad63bf 183 if (!check) {
bbf2f9fb 184#ifdef AGGRESSIVE_TEST
55ad63bf
TT
185 if (size > 6)
186 size = 6;
a86c6181 187#endif
55ad63bf 188 }
a86c6181
AT
189 return size;
190}
191
55ad63bf 192static inline int ext4_ext_space_block_idx(struct inode *inode, int check)
a86c6181
AT
193{
194 int size;
195
196 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
197 / sizeof(struct ext4_extent_idx);
55ad63bf 198 if (!check) {
bbf2f9fb 199#ifdef AGGRESSIVE_TEST
55ad63bf
TT
200 if (size > 5)
201 size = 5;
a86c6181 202#endif
55ad63bf 203 }
a86c6181
AT
204 return size;
205}
206
55ad63bf 207static inline int ext4_ext_space_root(struct inode *inode, int check)
a86c6181
AT
208{
209 int size;
210
211 size = sizeof(EXT4_I(inode)->i_data);
212 size -= sizeof(struct ext4_extent_header);
213 size /= sizeof(struct ext4_extent);
55ad63bf 214 if (!check) {
bbf2f9fb 215#ifdef AGGRESSIVE_TEST
55ad63bf
TT
216 if (size > 3)
217 size = 3;
a86c6181 218#endif
55ad63bf 219 }
a86c6181
AT
220 return size;
221}
222
55ad63bf 223static inline int ext4_ext_space_root_idx(struct inode *inode, int check)
a86c6181
AT
224{
225 int size;
226
227 size = sizeof(EXT4_I(inode)->i_data);
228 size -= sizeof(struct ext4_extent_header);
229 size /= sizeof(struct ext4_extent_idx);
55ad63bf 230 if (!check) {
bbf2f9fb 231#ifdef AGGRESSIVE_TEST
55ad63bf
TT
232 if (size > 4)
233 size = 4;
a86c6181 234#endif
55ad63bf 235 }
a86c6181
AT
236 return size;
237}
238
d2a17637
MC
239/*
240 * Calculate the number of metadata blocks needed
241 * to allocate @blocks
242 * Worse case is one block per extent
243 */
01f49d0b 244int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
d2a17637 245{
9d0be502
TT
246 struct ext4_inode_info *ei = EXT4_I(inode);
247 int idxs, num = 0;
d2a17637 248
9d0be502
TT
249 idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
250 / sizeof(struct ext4_extent_idx));
d2a17637
MC
251
252 /*
9d0be502
TT
253 * If the new delayed allocation block is contiguous with the
254 * previous da block, it can share index blocks with the
255 * previous block, so we only need to allocate a new index
256 * block every idxs leaf blocks. At ldxs**2 blocks, we need
257 * an additional index block, and at ldxs**3 blocks, yet
258 * another index blocks.
d2a17637 259 */
9d0be502
TT
260 if (ei->i_da_metadata_calc_len &&
261 ei->i_da_metadata_calc_last_lblock+1 == lblock) {
262 if ((ei->i_da_metadata_calc_len % idxs) == 0)
263 num++;
264 if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0)
265 num++;
266 if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) {
267 num++;
268 ei->i_da_metadata_calc_len = 0;
269 } else
270 ei->i_da_metadata_calc_len++;
271 ei->i_da_metadata_calc_last_lblock++;
272 return num;
273 }
d2a17637 274
9d0be502
TT
275 /*
276 * In the worst case we need a new set of index blocks at
277 * every level of the inode's extent tree.
278 */
279 ei->i_da_metadata_calc_len = 1;
280 ei->i_da_metadata_calc_last_lblock = lblock;
281 return ext_depth(inode) + 1;
d2a17637
MC
282}
283
c29c0ae7
AT
284static int
285ext4_ext_max_entries(struct inode *inode, int depth)
286{
287 int max;
288
289 if (depth == ext_depth(inode)) {
290 if (depth == 0)
55ad63bf 291 max = ext4_ext_space_root(inode, 1);
c29c0ae7 292 else
55ad63bf 293 max = ext4_ext_space_root_idx(inode, 1);
c29c0ae7
AT
294 } else {
295 if (depth == 0)
55ad63bf 296 max = ext4_ext_space_block(inode, 1);
c29c0ae7 297 else
55ad63bf 298 max = ext4_ext_space_block_idx(inode, 1);
c29c0ae7
AT
299 }
300
301 return max;
302}
303
56b19868
AK
304static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext)
305{
bf89d16f 306 ext4_fsblk_t block = ext4_ext_pblock(ext);
56b19868 307 int len = ext4_ext_get_actual_len(ext);
e84a26ce 308
6fd058f7 309 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len);
56b19868
AK
310}
311
312static int ext4_valid_extent_idx(struct inode *inode,
313 struct ext4_extent_idx *ext_idx)
314{
bf89d16f 315 ext4_fsblk_t block = ext4_idx_pblock(ext_idx);
e84a26ce 316
6fd058f7 317 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1);
56b19868
AK
318}
319
320static int ext4_valid_extent_entries(struct inode *inode,
321 struct ext4_extent_header *eh,
322 int depth)
323{
324 struct ext4_extent *ext;
325 struct ext4_extent_idx *ext_idx;
326 unsigned short entries;
327 if (eh->eh_entries == 0)
328 return 1;
329
330 entries = le16_to_cpu(eh->eh_entries);
331
332 if (depth == 0) {
333 /* leaf entries */
334 ext = EXT_FIRST_EXTENT(eh);
335 while (entries) {
336 if (!ext4_valid_extent(inode, ext))
337 return 0;
338 ext++;
339 entries--;
340 }
341 } else {
342 ext_idx = EXT_FIRST_INDEX(eh);
343 while (entries) {
344 if (!ext4_valid_extent_idx(inode, ext_idx))
345 return 0;
346 ext_idx++;
347 entries--;
348 }
349 }
350 return 1;
351}
352
c398eda0
TT
353static int __ext4_ext_check(const char *function, unsigned int line,
354 struct inode *inode, struct ext4_extent_header *eh,
355 int depth)
c29c0ae7
AT
356{
357 const char *error_msg;
358 int max = 0;
359
360 if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) {
361 error_msg = "invalid magic";
362 goto corrupted;
363 }
364 if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) {
365 error_msg = "unexpected eh_depth";
366 goto corrupted;
367 }
368 if (unlikely(eh->eh_max == 0)) {
369 error_msg = "invalid eh_max";
370 goto corrupted;
371 }
372 max = ext4_ext_max_entries(inode, depth);
373 if (unlikely(le16_to_cpu(eh->eh_max) > max)) {
374 error_msg = "too large eh_max";
375 goto corrupted;
376 }
377 if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
378 error_msg = "invalid eh_entries";
379 goto corrupted;
380 }
56b19868
AK
381 if (!ext4_valid_extent_entries(inode, eh, depth)) {
382 error_msg = "invalid extent entries";
383 goto corrupted;
384 }
c29c0ae7
AT
385 return 0;
386
387corrupted:
c398eda0 388 ext4_error_inode(inode, function, line, 0,
24676da4 389 "bad header/extent: %s - magic %x, "
c29c0ae7 390 "entries %u, max %u(%u), depth %u(%u)",
24676da4 391 error_msg, le16_to_cpu(eh->eh_magic),
c29c0ae7
AT
392 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
393 max, le16_to_cpu(eh->eh_depth), depth);
394
395 return -EIO;
396}
397
56b19868 398#define ext4_ext_check(inode, eh, depth) \
c398eda0 399 __ext4_ext_check(__func__, __LINE__, inode, eh, depth)
c29c0ae7 400
7a262f7c
AK
401int ext4_ext_check_inode(struct inode *inode)
402{
403 return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode));
404}
405
a86c6181
AT
406#ifdef EXT_DEBUG
407static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path)
408{
409 int k, l = path->p_depth;
410
411 ext_debug("path:");
412 for (k = 0; k <= l; k++, path++) {
413 if (path->p_idx) {
2ae02107 414 ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block),
bf89d16f 415 ext4_idx_pblock(path->p_idx));
a86c6181 416 } else if (path->p_ext) {
553f9008 417 ext_debug(" %d:[%d]%d:%llu ",
a86c6181 418 le32_to_cpu(path->p_ext->ee_block),
553f9008 419 ext4_ext_is_uninitialized(path->p_ext),
a2df2a63 420 ext4_ext_get_actual_len(path->p_ext),
bf89d16f 421 ext4_ext_pblock(path->p_ext));
a86c6181
AT
422 } else
423 ext_debug(" []");
424 }
425 ext_debug("\n");
426}
427
428static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path)
429{
430 int depth = ext_depth(inode);
431 struct ext4_extent_header *eh;
432 struct ext4_extent *ex;
433 int i;
434
435 if (!path)
436 return;
437
438 eh = path[depth].p_hdr;
439 ex = EXT_FIRST_EXTENT(eh);
440
553f9008
M
441 ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino);
442
a86c6181 443 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) {
553f9008
M
444 ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block),
445 ext4_ext_is_uninitialized(ex),
bf89d16f 446 ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex));
a86c6181
AT
447 }
448 ext_debug("\n");
449}
1b16da77
YY
450
451static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path,
452 ext4_fsblk_t newblock, int level)
453{
454 int depth = ext_depth(inode);
455 struct ext4_extent *ex;
456
457 if (depth != level) {
458 struct ext4_extent_idx *idx;
459 idx = path[level].p_idx;
460 while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) {
461 ext_debug("%d: move %d:%llu in new index %llu\n", level,
462 le32_to_cpu(idx->ei_block),
463 ext4_idx_pblock(idx),
464 newblock);
465 idx++;
466 }
467
468 return;
469 }
470
471 ex = path[depth].p_ext;
472 while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) {
473 ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n",
474 le32_to_cpu(ex->ee_block),
475 ext4_ext_pblock(ex),
476 ext4_ext_is_uninitialized(ex),
477 ext4_ext_get_actual_len(ex),
478 newblock);
479 ex++;
480 }
481}
482
a86c6181 483#else
af5bc92d
TT
484#define ext4_ext_show_path(inode, path)
485#define ext4_ext_show_leaf(inode, path)
1b16da77 486#define ext4_ext_show_move(inode, path, newblock, level)
a86c6181
AT
487#endif
488
b35905c1 489void ext4_ext_drop_refs(struct ext4_ext_path *path)
a86c6181
AT
490{
491 int depth = path->p_depth;
492 int i;
493
494 for (i = 0; i <= depth; i++, path++)
495 if (path->p_bh) {
496 brelse(path->p_bh);
497 path->p_bh = NULL;
498 }
499}
500
501/*
d0d856e8
RD
502 * ext4_ext_binsearch_idx:
503 * binary search for the closest index of the given block
c29c0ae7 504 * the header must be checked before calling this
a86c6181
AT
505 */
506static void
725d26d3
AK
507ext4_ext_binsearch_idx(struct inode *inode,
508 struct ext4_ext_path *path, ext4_lblk_t block)
a86c6181
AT
509{
510 struct ext4_extent_header *eh = path->p_hdr;
511 struct ext4_extent_idx *r, *l, *m;
512
a86c6181 513
bba90743 514 ext_debug("binsearch for %u(idx): ", block);
a86c6181
AT
515
516 l = EXT_FIRST_INDEX(eh) + 1;
e9f410b1 517 r = EXT_LAST_INDEX(eh);
a86c6181
AT
518 while (l <= r) {
519 m = l + (r - l) / 2;
520 if (block < le32_to_cpu(m->ei_block))
521 r = m - 1;
522 else
523 l = m + 1;
26d535ed
DM
524 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block),
525 m, le32_to_cpu(m->ei_block),
526 r, le32_to_cpu(r->ei_block));
a86c6181
AT
527 }
528
529 path->p_idx = l - 1;
f65e6fba 530 ext_debug(" -> %d->%lld ", le32_to_cpu(path->p_idx->ei_block),
bf89d16f 531 ext4_idx_pblock(path->p_idx));
a86c6181
AT
532
533#ifdef CHECK_BINSEARCH
534 {
535 struct ext4_extent_idx *chix, *ix;
536 int k;
537
538 chix = ix = EXT_FIRST_INDEX(eh);
539 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) {
540 if (k != 0 &&
541 le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) {
4776004f
TT
542 printk(KERN_DEBUG "k=%d, ix=0x%p, "
543 "first=0x%p\n", k,
544 ix, EXT_FIRST_INDEX(eh));
545 printk(KERN_DEBUG "%u <= %u\n",
a86c6181
AT
546 le32_to_cpu(ix->ei_block),
547 le32_to_cpu(ix[-1].ei_block));
548 }
549 BUG_ON(k && le32_to_cpu(ix->ei_block)
8c55e204 550 <= le32_to_cpu(ix[-1].ei_block));
a86c6181
AT
551 if (block < le32_to_cpu(ix->ei_block))
552 break;
553 chix = ix;
554 }
555 BUG_ON(chix != path->p_idx);
556 }
557#endif
558
559}
560
561/*
d0d856e8
RD
562 * ext4_ext_binsearch:
563 * binary search for closest extent of the given block
c29c0ae7 564 * the header must be checked before calling this
a86c6181
AT
565 */
566static void
725d26d3
AK
567ext4_ext_binsearch(struct inode *inode,
568 struct ext4_ext_path *path, ext4_lblk_t block)
a86c6181
AT
569{
570 struct ext4_extent_header *eh = path->p_hdr;
571 struct ext4_extent *r, *l, *m;
572
a86c6181
AT
573 if (eh->eh_entries == 0) {
574 /*
d0d856e8
RD
575 * this leaf is empty:
576 * we get such a leaf in split/add case
a86c6181
AT
577 */
578 return;
579 }
580
bba90743 581 ext_debug("binsearch for %u: ", block);
a86c6181
AT
582
583 l = EXT_FIRST_EXTENT(eh) + 1;
e9f410b1 584 r = EXT_LAST_EXTENT(eh);
a86c6181
AT
585
586 while (l <= r) {
587 m = l + (r - l) / 2;
588 if (block < le32_to_cpu(m->ee_block))
589 r = m - 1;
590 else
591 l = m + 1;
26d535ed
DM
592 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block),
593 m, le32_to_cpu(m->ee_block),
594 r, le32_to_cpu(r->ee_block));
a86c6181
AT
595 }
596
597 path->p_ext = l - 1;
553f9008 598 ext_debug(" -> %d:%llu:[%d]%d ",
8c55e204 599 le32_to_cpu(path->p_ext->ee_block),
bf89d16f 600 ext4_ext_pblock(path->p_ext),
553f9008 601 ext4_ext_is_uninitialized(path->p_ext),
a2df2a63 602 ext4_ext_get_actual_len(path->p_ext));
a86c6181
AT
603
604#ifdef CHECK_BINSEARCH
605 {
606 struct ext4_extent *chex, *ex;
607 int k;
608
609 chex = ex = EXT_FIRST_EXTENT(eh);
610 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) {
611 BUG_ON(k && le32_to_cpu(ex->ee_block)
8c55e204 612 <= le32_to_cpu(ex[-1].ee_block));
a86c6181
AT
613 if (block < le32_to_cpu(ex->ee_block))
614 break;
615 chex = ex;
616 }
617 BUG_ON(chex != path->p_ext);
618 }
619#endif
620
621}
622
623int ext4_ext_tree_init(handle_t *handle, struct inode *inode)
624{
625 struct ext4_extent_header *eh;
626
627 eh = ext_inode_hdr(inode);
628 eh->eh_depth = 0;
629 eh->eh_entries = 0;
630 eh->eh_magic = EXT4_EXT_MAGIC;
55ad63bf 631 eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0));
a86c6181
AT
632 ext4_mark_inode_dirty(handle, inode);
633 ext4_ext_invalidate_cache(inode);
634 return 0;
635}
636
637struct ext4_ext_path *
725d26d3
AK
638ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block,
639 struct ext4_ext_path *path)
a86c6181
AT
640{
641 struct ext4_extent_header *eh;
642 struct buffer_head *bh;
643 short int depth, i, ppos = 0, alloc = 0;
644
645 eh = ext_inode_hdr(inode);
c29c0ae7 646 depth = ext_depth(inode);
a86c6181
AT
647
648 /* account possible depth increase */
649 if (!path) {
5d4958f9 650 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2),
a86c6181
AT
651 GFP_NOFS);
652 if (!path)
653 return ERR_PTR(-ENOMEM);
654 alloc = 1;
655 }
a86c6181 656 path[0].p_hdr = eh;
1973adcb 657 path[0].p_bh = NULL;
a86c6181 658
c29c0ae7 659 i = depth;
a86c6181
AT
660 /* walk through the tree */
661 while (i) {
7a262f7c
AK
662 int need_to_validate = 0;
663
a86c6181
AT
664 ext_debug("depth %d: num %d, max %d\n",
665 ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
c29c0ae7 666
a86c6181 667 ext4_ext_binsearch_idx(inode, path + ppos, block);
bf89d16f 668 path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx);
a86c6181
AT
669 path[ppos].p_depth = i;
670 path[ppos].p_ext = NULL;
671
7a262f7c
AK
672 bh = sb_getblk(inode->i_sb, path[ppos].p_block);
673 if (unlikely(!bh))
a86c6181 674 goto err;
7a262f7c 675 if (!bh_uptodate_or_lock(bh)) {
0562e0ba
JZ
676 trace_ext4_ext_load_extent(inode, block,
677 path[ppos].p_block);
7a262f7c
AK
678 if (bh_submit_read(bh) < 0) {
679 put_bh(bh);
680 goto err;
681 }
682 /* validate the extent entries */
683 need_to_validate = 1;
684 }
a86c6181
AT
685 eh = ext_block_hdr(bh);
686 ppos++;
273df556
FM
687 if (unlikely(ppos > depth)) {
688 put_bh(bh);
689 EXT4_ERROR_INODE(inode,
690 "ppos %d > depth %d", ppos, depth);
691 goto err;
692 }
a86c6181
AT
693 path[ppos].p_bh = bh;
694 path[ppos].p_hdr = eh;
695 i--;
696
7a262f7c 697 if (need_to_validate && ext4_ext_check(inode, eh, i))
a86c6181
AT
698 goto err;
699 }
700
701 path[ppos].p_depth = i;
a86c6181
AT
702 path[ppos].p_ext = NULL;
703 path[ppos].p_idx = NULL;
704
a86c6181
AT
705 /* find extent */
706 ext4_ext_binsearch(inode, path + ppos, block);
1973adcb
SF
707 /* if not an empty leaf */
708 if (path[ppos].p_ext)
bf89d16f 709 path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext);
a86c6181
AT
710
711 ext4_ext_show_path(inode, path);
712
713 return path;
714
715err:
716 ext4_ext_drop_refs(path);
717 if (alloc)
718 kfree(path);
719 return ERR_PTR(-EIO);
720}
721
722/*
d0d856e8
RD
723 * ext4_ext_insert_index:
724 * insert new index [@logical;@ptr] into the block at @curp;
725 * check where to insert: before @curp or after @curp
a86c6181 726 */
1f109d5a
TT
727static int ext4_ext_insert_index(handle_t *handle, struct inode *inode,
728 struct ext4_ext_path *curp,
729 int logical, ext4_fsblk_t ptr)
a86c6181
AT
730{
731 struct ext4_extent_idx *ix;
732 int len, err;
733
7e028976
AM
734 err = ext4_ext_get_access(handle, inode, curp);
735 if (err)
a86c6181
AT
736 return err;
737
273df556
FM
738 if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) {
739 EXT4_ERROR_INODE(inode,
740 "logical %d == ei_block %d!",
741 logical, le32_to_cpu(curp->p_idx->ei_block));
742 return -EIO;
743 }
a86c6181
AT
744 len = EXT_MAX_INDEX(curp->p_hdr) - curp->p_idx;
745 if (logical > le32_to_cpu(curp->p_idx->ei_block)) {
746 /* insert after */
747 if (curp->p_idx != EXT_LAST_INDEX(curp->p_hdr)) {
748 len = (len - 1) * sizeof(struct ext4_extent_idx);
749 len = len < 0 ? 0 : len;
26d535ed 750 ext_debug("insert new index %d after: %llu. "
a86c6181
AT
751 "move %d from 0x%p to 0x%p\n",
752 logical, ptr, len,
753 (curp->p_idx + 1), (curp->p_idx + 2));
754 memmove(curp->p_idx + 2, curp->p_idx + 1, len);
755 }
756 ix = curp->p_idx + 1;
757 } else {
758 /* insert before */
759 len = len * sizeof(struct ext4_extent_idx);
760 len = len < 0 ? 0 : len;
26d535ed 761 ext_debug("insert new index %d before: %llu. "
a86c6181
AT
762 "move %d from 0x%p to 0x%p\n",
763 logical, ptr, len,
764 curp->p_idx, (curp->p_idx + 1));
765 memmove(curp->p_idx + 1, curp->p_idx, len);
766 ix = curp->p_idx;
767 }
768
769 ix->ei_block = cpu_to_le32(logical);
f65e6fba 770 ext4_idx_store_pblock(ix, ptr);
e8546d06 771 le16_add_cpu(&curp->p_hdr->eh_entries, 1);
a86c6181 772
273df556
FM
773 if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries)
774 > le16_to_cpu(curp->p_hdr->eh_max))) {
775 EXT4_ERROR_INODE(inode,
ed7a7e16
RD
776 "eh_entries %d > eh_max %d!",
777 le16_to_cpu(curp->p_hdr->eh_entries),
778 le16_to_cpu(curp->p_hdr->eh_max));
273df556
FM
779 return -EIO;
780 }
781 if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) {
782 EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!");
783 return -EIO;
784 }
a86c6181
AT
785
786 err = ext4_ext_dirty(handle, inode, curp);
787 ext4_std_error(inode->i_sb, err);
788
789 return err;
790}
791
792/*
d0d856e8
RD
793 * ext4_ext_split:
794 * inserts new subtree into the path, using free index entry
795 * at depth @at:
796 * - allocates all needed blocks (new leaf and all intermediate index blocks)
797 * - makes decision where to split
798 * - moves remaining extents and index entries (right to the split point)
799 * into the newly allocated blocks
800 * - initializes subtree
a86c6181
AT
801 */
802static int ext4_ext_split(handle_t *handle, struct inode *inode,
55f020db
AH
803 unsigned int flags,
804 struct ext4_ext_path *path,
805 struct ext4_extent *newext, int at)
a86c6181
AT
806{
807 struct buffer_head *bh = NULL;
808 int depth = ext_depth(inode);
809 struct ext4_extent_header *neh;
810 struct ext4_extent_idx *fidx;
a86c6181 811 int i = at, k, m, a;
f65e6fba 812 ext4_fsblk_t newblock, oldblock;
a86c6181 813 __le32 border;
f65e6fba 814 ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */
a86c6181
AT
815 int err = 0;
816
817 /* make decision: where to split? */
d0d856e8 818 /* FIXME: now decision is simplest: at current extent */
a86c6181 819
d0d856e8 820 /* if current leaf will be split, then we should use
a86c6181 821 * border from split point */
273df556
FM
822 if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) {
823 EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!");
824 return -EIO;
825 }
a86c6181
AT
826 if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) {
827 border = path[depth].p_ext[1].ee_block;
d0d856e8 828 ext_debug("leaf will be split."
a86c6181 829 " next leaf starts at %d\n",
8c55e204 830 le32_to_cpu(border));
a86c6181
AT
831 } else {
832 border = newext->ee_block;
833 ext_debug("leaf will be added."
834 " next leaf starts at %d\n",
8c55e204 835 le32_to_cpu(border));
a86c6181
AT
836 }
837
838 /*
d0d856e8
RD
839 * If error occurs, then we break processing
840 * and mark filesystem read-only. index won't
a86c6181 841 * be inserted and tree will be in consistent
d0d856e8 842 * state. Next mount will repair buffers too.
a86c6181
AT
843 */
844
845 /*
d0d856e8
RD
846 * Get array to track all allocated blocks.
847 * We need this to handle errors and free blocks
848 * upon them.
a86c6181 849 */
5d4958f9 850 ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS);
a86c6181
AT
851 if (!ablocks)
852 return -ENOMEM;
a86c6181
AT
853
854 /* allocate all needed blocks */
855 ext_debug("allocate %d blocks for indexes/leaf\n", depth - at);
856 for (a = 0; a < depth - at; a++) {
654b4908 857 newblock = ext4_ext_new_meta_block(handle, inode, path,
55f020db 858 newext, &err, flags);
a86c6181
AT
859 if (newblock == 0)
860 goto cleanup;
861 ablocks[a] = newblock;
862 }
863
864 /* initialize new leaf */
865 newblock = ablocks[--a];
273df556
FM
866 if (unlikely(newblock == 0)) {
867 EXT4_ERROR_INODE(inode, "newblock == 0!");
868 err = -EIO;
869 goto cleanup;
870 }
a86c6181
AT
871 bh = sb_getblk(inode->i_sb, newblock);
872 if (!bh) {
873 err = -EIO;
874 goto cleanup;
875 }
876 lock_buffer(bh);
877
7e028976
AM
878 err = ext4_journal_get_create_access(handle, bh);
879 if (err)
a86c6181
AT
880 goto cleanup;
881
882 neh = ext_block_hdr(bh);
883 neh->eh_entries = 0;
55ad63bf 884 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
a86c6181
AT
885 neh->eh_magic = EXT4_EXT_MAGIC;
886 neh->eh_depth = 0;
a86c6181 887
d0d856e8 888 /* move remainder of path[depth] to the new leaf */
273df556
FM
889 if (unlikely(path[depth].p_hdr->eh_entries !=
890 path[depth].p_hdr->eh_max)) {
891 EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!",
892 path[depth].p_hdr->eh_entries,
893 path[depth].p_hdr->eh_max);
894 err = -EIO;
895 goto cleanup;
896 }
a86c6181 897 /* start copy from next extent */
1b16da77
YY
898 m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++;
899 ext4_ext_show_move(inode, path, newblock, depth);
a86c6181 900 if (m) {
1b16da77
YY
901 struct ext4_extent *ex;
902 ex = EXT_FIRST_EXTENT(neh);
903 memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m);
e8546d06 904 le16_add_cpu(&neh->eh_entries, m);
a86c6181
AT
905 }
906
907 set_buffer_uptodate(bh);
908 unlock_buffer(bh);
909
0390131b 910 err = ext4_handle_dirty_metadata(handle, inode, bh);
7e028976 911 if (err)
a86c6181
AT
912 goto cleanup;
913 brelse(bh);
914 bh = NULL;
915
916 /* correct old leaf */
917 if (m) {
7e028976
AM
918 err = ext4_ext_get_access(handle, inode, path + depth);
919 if (err)
a86c6181 920 goto cleanup;
e8546d06 921 le16_add_cpu(&path[depth].p_hdr->eh_entries, -m);
7e028976
AM
922 err = ext4_ext_dirty(handle, inode, path + depth);
923 if (err)
a86c6181
AT
924 goto cleanup;
925
926 }
927
928 /* create intermediate indexes */
929 k = depth - at - 1;
273df556
FM
930 if (unlikely(k < 0)) {
931 EXT4_ERROR_INODE(inode, "k %d < 0!", k);
932 err = -EIO;
933 goto cleanup;
934 }
a86c6181
AT
935 if (k)
936 ext_debug("create %d intermediate indices\n", k);
937 /* insert new index into current index block */
938 /* current depth stored in i var */
939 i = depth - 1;
940 while (k--) {
941 oldblock = newblock;
942 newblock = ablocks[--a];
bba90743 943 bh = sb_getblk(inode->i_sb, newblock);
a86c6181
AT
944 if (!bh) {
945 err = -EIO;
946 goto cleanup;
947 }
948 lock_buffer(bh);
949
7e028976
AM
950 err = ext4_journal_get_create_access(handle, bh);
951 if (err)
a86c6181
AT
952 goto cleanup;
953
954 neh = ext_block_hdr(bh);
955 neh->eh_entries = cpu_to_le16(1);
956 neh->eh_magic = EXT4_EXT_MAGIC;
55ad63bf 957 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
a86c6181
AT
958 neh->eh_depth = cpu_to_le16(depth - i);
959 fidx = EXT_FIRST_INDEX(neh);
960 fidx->ei_block = border;
f65e6fba 961 ext4_idx_store_pblock(fidx, oldblock);
a86c6181 962
bba90743
ES
963 ext_debug("int.index at %d (block %llu): %u -> %llu\n",
964 i, newblock, le32_to_cpu(border), oldblock);
a86c6181 965
1b16da77 966 /* move remainder of path[i] to the new index block */
273df556
FM
967 if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) !=
968 EXT_LAST_INDEX(path[i].p_hdr))) {
969 EXT4_ERROR_INODE(inode,
970 "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!",
971 le32_to_cpu(path[i].p_ext->ee_block));
972 err = -EIO;
973 goto cleanup;
974 }
1b16da77
YY
975 /* start copy indexes */
976 m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++;
977 ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx,
978 EXT_MAX_INDEX(path[i].p_hdr));
979 ext4_ext_show_move(inode, path, newblock, i);
a86c6181 980 if (m) {
1b16da77 981 memmove(++fidx, path[i].p_idx,
a86c6181 982 sizeof(struct ext4_extent_idx) * m);
e8546d06 983 le16_add_cpu(&neh->eh_entries, m);
a86c6181
AT
984 }
985 set_buffer_uptodate(bh);
986 unlock_buffer(bh);
987
0390131b 988 err = ext4_handle_dirty_metadata(handle, inode, bh);
7e028976 989 if (err)
a86c6181
AT
990 goto cleanup;
991 brelse(bh);
992 bh = NULL;
993
994 /* correct old index */
995 if (m) {
996 err = ext4_ext_get_access(handle, inode, path + i);
997 if (err)
998 goto cleanup;
e8546d06 999 le16_add_cpu(&path[i].p_hdr->eh_entries, -m);
a86c6181
AT
1000 err = ext4_ext_dirty(handle, inode, path + i);
1001 if (err)
1002 goto cleanup;
1003 }
1004
1005 i--;
1006 }
1007
1008 /* insert new index */
a86c6181
AT
1009 err = ext4_ext_insert_index(handle, inode, path + at,
1010 le32_to_cpu(border), newblock);
1011
1012cleanup:
1013 if (bh) {
1014 if (buffer_locked(bh))
1015 unlock_buffer(bh);
1016 brelse(bh);
1017 }
1018
1019 if (err) {
1020 /* free all allocated blocks in error case */
1021 for (i = 0; i < depth; i++) {
1022 if (!ablocks[i])
1023 continue;
7dc57615 1024 ext4_free_blocks(handle, inode, NULL, ablocks[i], 1,
e6362609 1025 EXT4_FREE_BLOCKS_METADATA);
a86c6181
AT
1026 }
1027 }
1028 kfree(ablocks);
1029
1030 return err;
1031}
1032
1033/*
d0d856e8
RD
1034 * ext4_ext_grow_indepth:
1035 * implements tree growing procedure:
1036 * - allocates new block
1037 * - moves top-level data (index block or leaf) into the new block
1038 * - initializes new top-level, creating index that points to the
1039 * just created block
a86c6181
AT
1040 */
1041static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
55f020db
AH
1042 unsigned int flags,
1043 struct ext4_ext_path *path,
1044 struct ext4_extent *newext)
a86c6181
AT
1045{
1046 struct ext4_ext_path *curp = path;
1047 struct ext4_extent_header *neh;
a86c6181 1048 struct buffer_head *bh;
f65e6fba 1049 ext4_fsblk_t newblock;
a86c6181
AT
1050 int err = 0;
1051
55f020db
AH
1052 newblock = ext4_ext_new_meta_block(handle, inode, path,
1053 newext, &err, flags);
a86c6181
AT
1054 if (newblock == 0)
1055 return err;
1056
1057 bh = sb_getblk(inode->i_sb, newblock);
1058 if (!bh) {
1059 err = -EIO;
1060 ext4_std_error(inode->i_sb, err);
1061 return err;
1062 }
1063 lock_buffer(bh);
1064
7e028976
AM
1065 err = ext4_journal_get_create_access(handle, bh);
1066 if (err) {
a86c6181
AT
1067 unlock_buffer(bh);
1068 goto out;
1069 }
1070
1071 /* move top-level index/leaf into new block */
1072 memmove(bh->b_data, curp->p_hdr, sizeof(EXT4_I(inode)->i_data));
1073
1074 /* set size of new block */
1075 neh = ext_block_hdr(bh);
1076 /* old root could have indexes or leaves
1077 * so calculate e_max right way */
1078 if (ext_depth(inode))
55ad63bf 1079 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
a86c6181 1080 else
55ad63bf 1081 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
a86c6181
AT
1082 neh->eh_magic = EXT4_EXT_MAGIC;
1083 set_buffer_uptodate(bh);
1084 unlock_buffer(bh);
1085
0390131b 1086 err = ext4_handle_dirty_metadata(handle, inode, bh);
7e028976 1087 if (err)
a86c6181
AT
1088 goto out;
1089
1090 /* create index in new top-level index: num,max,pointer */
7e028976
AM
1091 err = ext4_ext_get_access(handle, inode, curp);
1092 if (err)
a86c6181
AT
1093 goto out;
1094
1095 curp->p_hdr->eh_magic = EXT4_EXT_MAGIC;
55ad63bf 1096 curp->p_hdr->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0));
a86c6181
AT
1097 curp->p_hdr->eh_entries = cpu_to_le16(1);
1098 curp->p_idx = EXT_FIRST_INDEX(curp->p_hdr);
e9f410b1
DM
1099
1100 if (path[0].p_hdr->eh_depth)
1101 curp->p_idx->ei_block =
1102 EXT_FIRST_INDEX(path[0].p_hdr)->ei_block;
1103 else
1104 curp->p_idx->ei_block =
1105 EXT_FIRST_EXTENT(path[0].p_hdr)->ee_block;
f65e6fba 1106 ext4_idx_store_pblock(curp->p_idx, newblock);
a86c6181
AT
1107
1108 neh = ext_inode_hdr(inode);
2ae02107 1109 ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
a86c6181 1110 le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max),
5a0790c2 1111 le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block),
bf89d16f 1112 ext4_idx_pblock(EXT_FIRST_INDEX(neh)));
a86c6181
AT
1113
1114 neh->eh_depth = cpu_to_le16(path->p_depth + 1);
1115 err = ext4_ext_dirty(handle, inode, curp);
1116out:
1117 brelse(bh);
1118
1119 return err;
1120}
1121
1122/*
d0d856e8
RD
1123 * ext4_ext_create_new_leaf:
1124 * finds empty index and adds new leaf.
1125 * if no free index is found, then it requests in-depth growing.
a86c6181
AT
1126 */
1127static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode,
55f020db
AH
1128 unsigned int flags,
1129 struct ext4_ext_path *path,
1130 struct ext4_extent *newext)
a86c6181
AT
1131{
1132 struct ext4_ext_path *curp;
1133 int depth, i, err = 0;
1134
1135repeat:
1136 i = depth = ext_depth(inode);
1137
1138 /* walk up to the tree and look for free index entry */
1139 curp = path + depth;
1140 while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) {
1141 i--;
1142 curp--;
1143 }
1144
d0d856e8
RD
1145 /* we use already allocated block for index block,
1146 * so subsequent data blocks should be contiguous */
a86c6181
AT
1147 if (EXT_HAS_FREE_INDEX(curp)) {
1148 /* if we found index with free entry, then use that
1149 * entry: create all needed subtree and add new leaf */
55f020db 1150 err = ext4_ext_split(handle, inode, flags, path, newext, i);
787e0981
SF
1151 if (err)
1152 goto out;
a86c6181
AT
1153
1154 /* refill path */
1155 ext4_ext_drop_refs(path);
1156 path = ext4_ext_find_extent(inode,
725d26d3
AK
1157 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1158 path);
a86c6181
AT
1159 if (IS_ERR(path))
1160 err = PTR_ERR(path);
1161 } else {
1162 /* tree is full, time to grow in depth */
55f020db
AH
1163 err = ext4_ext_grow_indepth(handle, inode, flags,
1164 path, newext);
a86c6181
AT
1165 if (err)
1166 goto out;
1167
1168 /* refill path */
1169 ext4_ext_drop_refs(path);
1170 path = ext4_ext_find_extent(inode,
725d26d3
AK
1171 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1172 path);
a86c6181
AT
1173 if (IS_ERR(path)) {
1174 err = PTR_ERR(path);
1175 goto out;
1176 }
1177
1178 /*
d0d856e8
RD
1179 * only first (depth 0 -> 1) produces free space;
1180 * in all other cases we have to split the grown tree
a86c6181
AT
1181 */
1182 depth = ext_depth(inode);
1183 if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) {
d0d856e8 1184 /* now we need to split */
a86c6181
AT
1185 goto repeat;
1186 }
1187 }
1188
1189out:
1190 return err;
1191}
1192
1988b51e
AT
1193/*
1194 * search the closest allocated block to the left for *logical
1195 * and returns it at @logical + it's physical address at @phys
1196 * if *logical is the smallest allocated block, the function
1197 * returns 0 at @phys
1198 * return value contains 0 (success) or error code
1199 */
1f109d5a
TT
1200static int ext4_ext_search_left(struct inode *inode,
1201 struct ext4_ext_path *path,
1202 ext4_lblk_t *logical, ext4_fsblk_t *phys)
1988b51e
AT
1203{
1204 struct ext4_extent_idx *ix;
1205 struct ext4_extent *ex;
b939e376 1206 int depth, ee_len;
1988b51e 1207
273df556
FM
1208 if (unlikely(path == NULL)) {
1209 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1210 return -EIO;
1211 }
1988b51e
AT
1212 depth = path->p_depth;
1213 *phys = 0;
1214
1215 if (depth == 0 && path->p_ext == NULL)
1216 return 0;
1217
1218 /* usually extent in the path covers blocks smaller
1219 * then *logical, but it can be that extent is the
1220 * first one in the file */
1221
1222 ex = path[depth].p_ext;
b939e376 1223 ee_len = ext4_ext_get_actual_len(ex);
1988b51e 1224 if (*logical < le32_to_cpu(ex->ee_block)) {
273df556
FM
1225 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1226 EXT4_ERROR_INODE(inode,
1227 "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!",
1228 *logical, le32_to_cpu(ex->ee_block));
1229 return -EIO;
1230 }
1988b51e
AT
1231 while (--depth >= 0) {
1232 ix = path[depth].p_idx;
273df556
FM
1233 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1234 EXT4_ERROR_INODE(inode,
1235 "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!",
1236 ix != NULL ? ix->ei_block : 0,
1237 EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ?
1238 EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block : 0,
1239 depth);
1240 return -EIO;
1241 }
1988b51e
AT
1242 }
1243 return 0;
1244 }
1245
273df556
FM
1246 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1247 EXT4_ERROR_INODE(inode,
1248 "logical %d < ee_block %d + ee_len %d!",
1249 *logical, le32_to_cpu(ex->ee_block), ee_len);
1250 return -EIO;
1251 }
1988b51e 1252
b939e376 1253 *logical = le32_to_cpu(ex->ee_block) + ee_len - 1;
bf89d16f 1254 *phys = ext4_ext_pblock(ex) + ee_len - 1;
1988b51e
AT
1255 return 0;
1256}
1257
1258/*
1259 * search the closest allocated block to the right for *logical
1260 * and returns it at @logical + it's physical address at @phys
1261 * if *logical is the smallest allocated block, the function
1262 * returns 0 at @phys
1263 * return value contains 0 (success) or error code
1264 */
1f109d5a
TT
1265static int ext4_ext_search_right(struct inode *inode,
1266 struct ext4_ext_path *path,
1267 ext4_lblk_t *logical, ext4_fsblk_t *phys)
1988b51e
AT
1268{
1269 struct buffer_head *bh = NULL;
1270 struct ext4_extent_header *eh;
1271 struct ext4_extent_idx *ix;
1272 struct ext4_extent *ex;
1273 ext4_fsblk_t block;
395a87bf
ES
1274 int depth; /* Note, NOT eh_depth; depth from top of tree */
1275 int ee_len;
1988b51e 1276
273df556
FM
1277 if (unlikely(path == NULL)) {
1278 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1279 return -EIO;
1280 }
1988b51e
AT
1281 depth = path->p_depth;
1282 *phys = 0;
1283
1284 if (depth == 0 && path->p_ext == NULL)
1285 return 0;
1286
1287 /* usually extent in the path covers blocks smaller
1288 * then *logical, but it can be that extent is the
1289 * first one in the file */
1290
1291 ex = path[depth].p_ext;
b939e376 1292 ee_len = ext4_ext_get_actual_len(ex);
1988b51e 1293 if (*logical < le32_to_cpu(ex->ee_block)) {
273df556
FM
1294 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1295 EXT4_ERROR_INODE(inode,
1296 "first_extent(path[%d].p_hdr) != ex",
1297 depth);
1298 return -EIO;
1299 }
1988b51e
AT
1300 while (--depth >= 0) {
1301 ix = path[depth].p_idx;
273df556
FM
1302 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1303 EXT4_ERROR_INODE(inode,
1304 "ix != EXT_FIRST_INDEX *logical %d!",
1305 *logical);
1306 return -EIO;
1307 }
1988b51e
AT
1308 }
1309 *logical = le32_to_cpu(ex->ee_block);
bf89d16f 1310 *phys = ext4_ext_pblock(ex);
1988b51e
AT
1311 return 0;
1312 }
1313
273df556
FM
1314 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1315 EXT4_ERROR_INODE(inode,
1316 "logical %d < ee_block %d + ee_len %d!",
1317 *logical, le32_to_cpu(ex->ee_block), ee_len);
1318 return -EIO;
1319 }
1988b51e
AT
1320
1321 if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) {
1322 /* next allocated block in this leaf */
1323 ex++;
1324 *logical = le32_to_cpu(ex->ee_block);
bf89d16f 1325 *phys = ext4_ext_pblock(ex);
1988b51e
AT
1326 return 0;
1327 }
1328
1329 /* go up and search for index to the right */
1330 while (--depth >= 0) {
1331 ix = path[depth].p_idx;
1332 if (ix != EXT_LAST_INDEX(path[depth].p_hdr))
25f1ee3a 1333 goto got_index;
1988b51e
AT
1334 }
1335
25f1ee3a
WF
1336 /* we've gone up to the root and found no index to the right */
1337 return 0;
1988b51e 1338
25f1ee3a 1339got_index:
1988b51e
AT
1340 /* we've found index to the right, let's
1341 * follow it and find the closest allocated
1342 * block to the right */
1343 ix++;
bf89d16f 1344 block = ext4_idx_pblock(ix);
1988b51e
AT
1345 while (++depth < path->p_depth) {
1346 bh = sb_bread(inode->i_sb, block);
1347 if (bh == NULL)
1348 return -EIO;
1349 eh = ext_block_hdr(bh);
395a87bf 1350 /* subtract from p_depth to get proper eh_depth */
56b19868 1351 if (ext4_ext_check(inode, eh, path->p_depth - depth)) {
1988b51e
AT
1352 put_bh(bh);
1353 return -EIO;
1354 }
1355 ix = EXT_FIRST_INDEX(eh);
bf89d16f 1356 block = ext4_idx_pblock(ix);
1988b51e
AT
1357 put_bh(bh);
1358 }
1359
1360 bh = sb_bread(inode->i_sb, block);
1361 if (bh == NULL)
1362 return -EIO;
1363 eh = ext_block_hdr(bh);
56b19868 1364 if (ext4_ext_check(inode, eh, path->p_depth - depth)) {
1988b51e
AT
1365 put_bh(bh);
1366 return -EIO;
1367 }
1368 ex = EXT_FIRST_EXTENT(eh);
1369 *logical = le32_to_cpu(ex->ee_block);
bf89d16f 1370 *phys = ext4_ext_pblock(ex);
1988b51e
AT
1371 put_bh(bh);
1372 return 0;
1988b51e
AT
1373}
1374
a86c6181 1375/*
d0d856e8 1376 * ext4_ext_next_allocated_block:
f17722f9 1377 * returns allocated block in subsequent extent or EXT_MAX_BLOCKS.
d0d856e8
RD
1378 * NOTE: it considers block number from index entry as
1379 * allocated block. Thus, index entries have to be consistent
1380 * with leaves.
a86c6181 1381 */
725d26d3 1382static ext4_lblk_t
a86c6181
AT
1383ext4_ext_next_allocated_block(struct ext4_ext_path *path)
1384{
1385 int depth;
1386
1387 BUG_ON(path == NULL);
1388 depth = path->p_depth;
1389
1390 if (depth == 0 && path->p_ext == NULL)
f17722f9 1391 return EXT_MAX_BLOCKS;
a86c6181
AT
1392
1393 while (depth >= 0) {
1394 if (depth == path->p_depth) {
1395 /* leaf */
1396 if (path[depth].p_ext !=
1397 EXT_LAST_EXTENT(path[depth].p_hdr))
1398 return le32_to_cpu(path[depth].p_ext[1].ee_block);
1399 } else {
1400 /* index */
1401 if (path[depth].p_idx !=
1402 EXT_LAST_INDEX(path[depth].p_hdr))
1403 return le32_to_cpu(path[depth].p_idx[1].ei_block);
1404 }
1405 depth--;
1406 }
1407
f17722f9 1408 return EXT_MAX_BLOCKS;
a86c6181
AT
1409}
1410
1411/*
d0d856e8 1412 * ext4_ext_next_leaf_block:
f17722f9 1413 * returns first allocated block from next leaf or EXT_MAX_BLOCKS
a86c6181 1414 */
725d26d3 1415static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode,
63f57933 1416 struct ext4_ext_path *path)
a86c6181
AT
1417{
1418 int depth;
1419
1420 BUG_ON(path == NULL);
1421 depth = path->p_depth;
1422
1423 /* zero-tree has no leaf blocks at all */
1424 if (depth == 0)
f17722f9 1425 return EXT_MAX_BLOCKS;
a86c6181
AT
1426
1427 /* go to index block */
1428 depth--;
1429
1430 while (depth >= 0) {
1431 if (path[depth].p_idx !=
1432 EXT_LAST_INDEX(path[depth].p_hdr))
725d26d3
AK
1433 return (ext4_lblk_t)
1434 le32_to_cpu(path[depth].p_idx[1].ei_block);
a86c6181
AT
1435 depth--;
1436 }
1437
f17722f9 1438 return EXT_MAX_BLOCKS;
a86c6181
AT
1439}
1440
1441/*
d0d856e8
RD
1442 * ext4_ext_correct_indexes:
1443 * if leaf gets modified and modified extent is first in the leaf,
1444 * then we have to correct all indexes above.
a86c6181
AT
1445 * TODO: do we need to correct tree in all cases?
1446 */
1d03ec98 1447static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode,
a86c6181
AT
1448 struct ext4_ext_path *path)
1449{
1450 struct ext4_extent_header *eh;
1451 int depth = ext_depth(inode);
1452 struct ext4_extent *ex;
1453 __le32 border;
1454 int k, err = 0;
1455
1456 eh = path[depth].p_hdr;
1457 ex = path[depth].p_ext;
273df556
FM
1458
1459 if (unlikely(ex == NULL || eh == NULL)) {
1460 EXT4_ERROR_INODE(inode,
1461 "ex %p == NULL or eh %p == NULL", ex, eh);
1462 return -EIO;
1463 }
a86c6181
AT
1464
1465 if (depth == 0) {
1466 /* there is no tree at all */
1467 return 0;
1468 }
1469
1470 if (ex != EXT_FIRST_EXTENT(eh)) {
1471 /* we correct tree if first leaf got modified only */
1472 return 0;
1473 }
1474
1475 /*
d0d856e8 1476 * TODO: we need correction if border is smaller than current one
a86c6181
AT
1477 */
1478 k = depth - 1;
1479 border = path[depth].p_ext->ee_block;
7e028976
AM
1480 err = ext4_ext_get_access(handle, inode, path + k);
1481 if (err)
a86c6181
AT
1482 return err;
1483 path[k].p_idx->ei_block = border;
7e028976
AM
1484 err = ext4_ext_dirty(handle, inode, path + k);
1485 if (err)
a86c6181
AT
1486 return err;
1487
1488 while (k--) {
1489 /* change all left-side indexes */
1490 if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr))
1491 break;
7e028976
AM
1492 err = ext4_ext_get_access(handle, inode, path + k);
1493 if (err)
a86c6181
AT
1494 break;
1495 path[k].p_idx->ei_block = border;
7e028976
AM
1496 err = ext4_ext_dirty(handle, inode, path + k);
1497 if (err)
a86c6181
AT
1498 break;
1499 }
1500
1501 return err;
1502}
1503
748de673 1504int
a86c6181
AT
1505ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1,
1506 struct ext4_extent *ex2)
1507{
749269fa 1508 unsigned short ext1_ee_len, ext2_ee_len, max_len;
a2df2a63
AA
1509
1510 /*
1511 * Make sure that either both extents are uninitialized, or
1512 * both are _not_.
1513 */
1514 if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2))
1515 return 0;
1516
749269fa
AA
1517 if (ext4_ext_is_uninitialized(ex1))
1518 max_len = EXT_UNINIT_MAX_LEN;
1519 else
1520 max_len = EXT_INIT_MAX_LEN;
1521
a2df2a63
AA
1522 ext1_ee_len = ext4_ext_get_actual_len(ex1);
1523 ext2_ee_len = ext4_ext_get_actual_len(ex2);
1524
1525 if (le32_to_cpu(ex1->ee_block) + ext1_ee_len !=
63f57933 1526 le32_to_cpu(ex2->ee_block))
a86c6181
AT
1527 return 0;
1528
471d4011
SB
1529 /*
1530 * To allow future support for preallocated extents to be added
1531 * as an RO_COMPAT feature, refuse to merge to extents if
d0d856e8 1532 * this can result in the top bit of ee_len being set.
471d4011 1533 */
749269fa 1534 if (ext1_ee_len + ext2_ee_len > max_len)
471d4011 1535 return 0;
bbf2f9fb 1536#ifdef AGGRESSIVE_TEST
b939e376 1537 if (ext1_ee_len >= 4)
a86c6181
AT
1538 return 0;
1539#endif
1540
bf89d16f 1541 if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2))
a86c6181
AT
1542 return 1;
1543 return 0;
1544}
1545
56055d3a
AA
1546/*
1547 * This function tries to merge the "ex" extent to the next extent in the tree.
1548 * It always tries to merge towards right. If you want to merge towards
1549 * left, pass "ex - 1" as argument instead of "ex".
1550 * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
1551 * 1 if they got merged.
1552 */
197217a5 1553static int ext4_ext_try_to_merge_right(struct inode *inode,
1f109d5a
TT
1554 struct ext4_ext_path *path,
1555 struct ext4_extent *ex)
56055d3a
AA
1556{
1557 struct ext4_extent_header *eh;
1558 unsigned int depth, len;
1559 int merge_done = 0;
1560 int uninitialized = 0;
1561
1562 depth = ext_depth(inode);
1563 BUG_ON(path[depth].p_hdr == NULL);
1564 eh = path[depth].p_hdr;
1565
1566 while (ex < EXT_LAST_EXTENT(eh)) {
1567 if (!ext4_can_extents_be_merged(inode, ex, ex + 1))
1568 break;
1569 /* merge with next extent! */
1570 if (ext4_ext_is_uninitialized(ex))
1571 uninitialized = 1;
1572 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1573 + ext4_ext_get_actual_len(ex + 1));
1574 if (uninitialized)
1575 ext4_ext_mark_uninitialized(ex);
1576
1577 if (ex + 1 < EXT_LAST_EXTENT(eh)) {
1578 len = (EXT_LAST_EXTENT(eh) - ex - 1)
1579 * sizeof(struct ext4_extent);
1580 memmove(ex + 1, ex + 2, len);
1581 }
e8546d06 1582 le16_add_cpu(&eh->eh_entries, -1);
56055d3a
AA
1583 merge_done = 1;
1584 WARN_ON(eh->eh_entries == 0);
1585 if (!eh->eh_entries)
24676da4 1586 EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!");
56055d3a
AA
1587 }
1588
1589 return merge_done;
1590}
1591
197217a5
YY
1592/*
1593 * This function tries to merge the @ex extent to neighbours in the tree.
1594 * return 1 if merge left else 0.
1595 */
1596static int ext4_ext_try_to_merge(struct inode *inode,
1597 struct ext4_ext_path *path,
1598 struct ext4_extent *ex) {
1599 struct ext4_extent_header *eh;
1600 unsigned int depth;
1601 int merge_done = 0;
1602 int ret = 0;
1603
1604 depth = ext_depth(inode);
1605 BUG_ON(path[depth].p_hdr == NULL);
1606 eh = path[depth].p_hdr;
1607
1608 if (ex > EXT_FIRST_EXTENT(eh))
1609 merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1);
1610
1611 if (!merge_done)
1612 ret = ext4_ext_try_to_merge_right(inode, path, ex);
1613
1614 return ret;
1615}
1616
25d14f98
AA
1617/*
1618 * check if a portion of the "newext" extent overlaps with an
1619 * existing extent.
1620 *
1621 * If there is an overlap discovered, it updates the length of the newext
1622 * such that there will be no overlap, and then returns 1.
1623 * If there is no overlap found, it returns 0.
1624 */
1f109d5a
TT
1625static unsigned int ext4_ext_check_overlap(struct inode *inode,
1626 struct ext4_extent *newext,
1627 struct ext4_ext_path *path)
25d14f98 1628{
725d26d3 1629 ext4_lblk_t b1, b2;
25d14f98
AA
1630 unsigned int depth, len1;
1631 unsigned int ret = 0;
1632
1633 b1 = le32_to_cpu(newext->ee_block);
a2df2a63 1634 len1 = ext4_ext_get_actual_len(newext);
25d14f98
AA
1635 depth = ext_depth(inode);
1636 if (!path[depth].p_ext)
1637 goto out;
1638 b2 = le32_to_cpu(path[depth].p_ext->ee_block);
1639
1640 /*
1641 * get the next allocated block if the extent in the path
2b2d6d01 1642 * is before the requested block(s)
25d14f98
AA
1643 */
1644 if (b2 < b1) {
1645 b2 = ext4_ext_next_allocated_block(path);
f17722f9 1646 if (b2 == EXT_MAX_BLOCKS)
25d14f98
AA
1647 goto out;
1648 }
1649
725d26d3 1650 /* check for wrap through zero on extent logical start block*/
25d14f98 1651 if (b1 + len1 < b1) {
f17722f9 1652 len1 = EXT_MAX_BLOCKS - b1;
25d14f98
AA
1653 newext->ee_len = cpu_to_le16(len1);
1654 ret = 1;
1655 }
1656
1657 /* check for overlap */
1658 if (b1 + len1 > b2) {
1659 newext->ee_len = cpu_to_le16(b2 - b1);
1660 ret = 1;
1661 }
1662out:
1663 return ret;
1664}
1665
a86c6181 1666/*
d0d856e8
RD
1667 * ext4_ext_insert_extent:
1668 * tries to merge requsted extent into the existing extent or
1669 * inserts requested extent as new one into the tree,
1670 * creating new leaf in the no-space case.
a86c6181
AT
1671 */
1672int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
1673 struct ext4_ext_path *path,
0031462b 1674 struct ext4_extent *newext, int flag)
a86c6181 1675{
af5bc92d 1676 struct ext4_extent_header *eh;
a86c6181
AT
1677 struct ext4_extent *ex, *fex;
1678 struct ext4_extent *nearex; /* nearest extent */
1679 struct ext4_ext_path *npath = NULL;
725d26d3
AK
1680 int depth, len, err;
1681 ext4_lblk_t next;
a2df2a63 1682 unsigned uninitialized = 0;
55f020db 1683 int flags = 0;
a86c6181 1684
273df556
FM
1685 if (unlikely(ext4_ext_get_actual_len(newext) == 0)) {
1686 EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0");
1687 return -EIO;
1688 }
a86c6181
AT
1689 depth = ext_depth(inode);
1690 ex = path[depth].p_ext;
273df556
FM
1691 if (unlikely(path[depth].p_hdr == NULL)) {
1692 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1693 return -EIO;
1694 }
a86c6181
AT
1695
1696 /* try to insert block into found extent and return */
744692dc 1697 if (ex && !(flag & EXT4_GET_BLOCKS_PRE_IO)
0031462b 1698 && ext4_can_extents_be_merged(inode, ex, newext)) {
553f9008 1699 ext_debug("append [%d]%d block to %d:[%d]%d (from %llu)\n",
bf89d16f
TT
1700 ext4_ext_is_uninitialized(newext),
1701 ext4_ext_get_actual_len(newext),
1702 le32_to_cpu(ex->ee_block),
1703 ext4_ext_is_uninitialized(ex),
1704 ext4_ext_get_actual_len(ex),
1705 ext4_ext_pblock(ex));
7e028976
AM
1706 err = ext4_ext_get_access(handle, inode, path + depth);
1707 if (err)
a86c6181 1708 return err;
a2df2a63
AA
1709
1710 /*
1711 * ext4_can_extents_be_merged should have checked that either
1712 * both extents are uninitialized, or both aren't. Thus we
1713 * need to check only one of them here.
1714 */
1715 if (ext4_ext_is_uninitialized(ex))
1716 uninitialized = 1;
1717 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1718 + ext4_ext_get_actual_len(newext));
1719 if (uninitialized)
1720 ext4_ext_mark_uninitialized(ex);
a86c6181
AT
1721 eh = path[depth].p_hdr;
1722 nearex = ex;
1723 goto merge;
1724 }
1725
a86c6181
AT
1726 depth = ext_depth(inode);
1727 eh = path[depth].p_hdr;
1728 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max))
1729 goto has_space;
1730
1731 /* probably next leaf has space for us? */
1732 fex = EXT_LAST_EXTENT(eh);
1733 next = ext4_ext_next_leaf_block(inode, path);
1734 if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block)
f17722f9 1735 && next != EXT_MAX_BLOCKS) {
a86c6181
AT
1736 ext_debug("next leaf block - %d\n", next);
1737 BUG_ON(npath != NULL);
1738 npath = ext4_ext_find_extent(inode, next, NULL);
1739 if (IS_ERR(npath))
1740 return PTR_ERR(npath);
1741 BUG_ON(npath->p_depth != path->p_depth);
1742 eh = npath[depth].p_hdr;
1743 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) {
25985edc 1744 ext_debug("next leaf isn't full(%d)\n",
a86c6181
AT
1745 le16_to_cpu(eh->eh_entries));
1746 path = npath;
ffb505ff 1747 goto has_space;
a86c6181
AT
1748 }
1749 ext_debug("next leaf has no free space(%d,%d)\n",
1750 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
1751 }
1752
1753 /*
d0d856e8
RD
1754 * There is no free space in the found leaf.
1755 * We're gonna add a new leaf in the tree.
a86c6181 1756 */
55f020db
AH
1757 if (flag & EXT4_GET_BLOCKS_PUNCH_OUT_EXT)
1758 flags = EXT4_MB_USE_ROOT_BLOCKS;
1759 err = ext4_ext_create_new_leaf(handle, inode, flags, path, newext);
a86c6181
AT
1760 if (err)
1761 goto cleanup;
1762 depth = ext_depth(inode);
1763 eh = path[depth].p_hdr;
1764
1765has_space:
1766 nearex = path[depth].p_ext;
1767
7e028976
AM
1768 err = ext4_ext_get_access(handle, inode, path + depth);
1769 if (err)
a86c6181
AT
1770 goto cleanup;
1771
1772 if (!nearex) {
1773 /* there is no extent in this leaf, create first one */
553f9008 1774 ext_debug("first extent in the leaf: %d:%llu:[%d]%d\n",
8c55e204 1775 le32_to_cpu(newext->ee_block),
bf89d16f 1776 ext4_ext_pblock(newext),
553f9008 1777 ext4_ext_is_uninitialized(newext),
a2df2a63 1778 ext4_ext_get_actual_len(newext));
a86c6181
AT
1779 path[depth].p_ext = EXT_FIRST_EXTENT(eh);
1780 } else if (le32_to_cpu(newext->ee_block)
8c55e204 1781 > le32_to_cpu(nearex->ee_block)) {
a86c6181
AT
1782/* BUG_ON(newext->ee_block == nearex->ee_block); */
1783 if (nearex != EXT_LAST_EXTENT(eh)) {
1784 len = EXT_MAX_EXTENT(eh) - nearex;
1785 len = (len - 1) * sizeof(struct ext4_extent);
1786 len = len < 0 ? 0 : len;
553f9008 1787 ext_debug("insert %d:%llu:[%d]%d after: nearest 0x%p, "
a86c6181 1788 "move %d from 0x%p to 0x%p\n",
8c55e204 1789 le32_to_cpu(newext->ee_block),
bf89d16f 1790 ext4_ext_pblock(newext),
553f9008 1791 ext4_ext_is_uninitialized(newext),
a2df2a63 1792 ext4_ext_get_actual_len(newext),
a86c6181
AT
1793 nearex, len, nearex + 1, nearex + 2);
1794 memmove(nearex + 2, nearex + 1, len);
1795 }
1796 path[depth].p_ext = nearex + 1;
1797 } else {
1798 BUG_ON(newext->ee_block == nearex->ee_block);
1799 len = (EXT_MAX_EXTENT(eh) - nearex) * sizeof(struct ext4_extent);
1800 len = len < 0 ? 0 : len;
553f9008 1801 ext_debug("insert %d:%llu:[%d]%d before: nearest 0x%p, "
a86c6181
AT
1802 "move %d from 0x%p to 0x%p\n",
1803 le32_to_cpu(newext->ee_block),
bf89d16f 1804 ext4_ext_pblock(newext),
553f9008 1805 ext4_ext_is_uninitialized(newext),
a2df2a63 1806 ext4_ext_get_actual_len(newext),
a86c6181
AT
1807 nearex, len, nearex + 1, nearex + 2);
1808 memmove(nearex + 1, nearex, len);
1809 path[depth].p_ext = nearex;
1810 }
1811
e8546d06 1812 le16_add_cpu(&eh->eh_entries, 1);
a86c6181
AT
1813 nearex = path[depth].p_ext;
1814 nearex->ee_block = newext->ee_block;
bf89d16f 1815 ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext));
a86c6181 1816 nearex->ee_len = newext->ee_len;
a86c6181
AT
1817
1818merge:
1819 /* try to merge extents to the right */
744692dc 1820 if (!(flag & EXT4_GET_BLOCKS_PRE_IO))
0031462b 1821 ext4_ext_try_to_merge(inode, path, nearex);
a86c6181
AT
1822
1823 /* try to merge extents to the left */
1824
1825 /* time to correct all indexes above */
1826 err = ext4_ext_correct_indexes(handle, inode, path);
1827 if (err)
1828 goto cleanup;
1829
1830 err = ext4_ext_dirty(handle, inode, path + depth);
1831
1832cleanup:
1833 if (npath) {
1834 ext4_ext_drop_refs(npath);
1835 kfree(npath);
1836 }
a86c6181
AT
1837 ext4_ext_invalidate_cache(inode);
1838 return err;
1839}
1840
1f109d5a
TT
1841static int ext4_ext_walk_space(struct inode *inode, ext4_lblk_t block,
1842 ext4_lblk_t num, ext_prepare_callback func,
1843 void *cbdata)
6873fa0d
ES
1844{
1845 struct ext4_ext_path *path = NULL;
1846 struct ext4_ext_cache cbex;
1847 struct ext4_extent *ex;
1848 ext4_lblk_t next, start = 0, end = 0;
1849 ext4_lblk_t last = block + num;
1850 int depth, exists, err = 0;
1851
1852 BUG_ON(func == NULL);
1853 BUG_ON(inode == NULL);
1854
f17722f9 1855 while (block < last && block != EXT_MAX_BLOCKS) {
6873fa0d
ES
1856 num = last - block;
1857 /* find extent for this block */
fab3a549 1858 down_read(&EXT4_I(inode)->i_data_sem);
6873fa0d 1859 path = ext4_ext_find_extent(inode, block, path);
fab3a549 1860 up_read(&EXT4_I(inode)->i_data_sem);
6873fa0d
ES
1861 if (IS_ERR(path)) {
1862 err = PTR_ERR(path);
1863 path = NULL;
1864 break;
1865 }
1866
1867 depth = ext_depth(inode);
273df556
FM
1868 if (unlikely(path[depth].p_hdr == NULL)) {
1869 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1870 err = -EIO;
1871 break;
1872 }
6873fa0d
ES
1873 ex = path[depth].p_ext;
1874 next = ext4_ext_next_allocated_block(path);
1875
1876 exists = 0;
1877 if (!ex) {
1878 /* there is no extent yet, so try to allocate
1879 * all requested space */
1880 start = block;
1881 end = block + num;
1882 } else if (le32_to_cpu(ex->ee_block) > block) {
1883 /* need to allocate space before found extent */
1884 start = block;
1885 end = le32_to_cpu(ex->ee_block);
1886 if (block + num < end)
1887 end = block + num;
1888 } else if (block >= le32_to_cpu(ex->ee_block)
1889 + ext4_ext_get_actual_len(ex)) {
1890 /* need to allocate space after found extent */
1891 start = block;
1892 end = block + num;
1893 if (end >= next)
1894 end = next;
1895 } else if (block >= le32_to_cpu(ex->ee_block)) {
1896 /*
1897 * some part of requested space is covered
1898 * by found extent
1899 */
1900 start = block;
1901 end = le32_to_cpu(ex->ee_block)
1902 + ext4_ext_get_actual_len(ex);
1903 if (block + num < end)
1904 end = block + num;
1905 exists = 1;
1906 } else {
1907 BUG();
1908 }
1909 BUG_ON(end <= start);
1910
1911 if (!exists) {
1912 cbex.ec_block = start;
1913 cbex.ec_len = end - start;
1914 cbex.ec_start = 0;
6873fa0d
ES
1915 } else {
1916 cbex.ec_block = le32_to_cpu(ex->ee_block);
1917 cbex.ec_len = ext4_ext_get_actual_len(ex);
bf89d16f 1918 cbex.ec_start = ext4_ext_pblock(ex);
6873fa0d
ES
1919 }
1920
273df556
FM
1921 if (unlikely(cbex.ec_len == 0)) {
1922 EXT4_ERROR_INODE(inode, "cbex.ec_len == 0");
1923 err = -EIO;
1924 break;
1925 }
c03f8aa9 1926 err = func(inode, next, &cbex, ex, cbdata);
6873fa0d
ES
1927 ext4_ext_drop_refs(path);
1928
1929 if (err < 0)
1930 break;
1931
1932 if (err == EXT_REPEAT)
1933 continue;
1934 else if (err == EXT_BREAK) {
1935 err = 0;
1936 break;
1937 }
1938
1939 if (ext_depth(inode) != depth) {
1940 /* depth was changed. we have to realloc path */
1941 kfree(path);
1942 path = NULL;
1943 }
1944
1945 block = cbex.ec_block + cbex.ec_len;
1946 }
1947
1948 if (path) {
1949 ext4_ext_drop_refs(path);
1950 kfree(path);
1951 }
1952
1953 return err;
1954}
1955
09b88252 1956static void
725d26d3 1957ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block,
b05e6ae5 1958 __u32 len, ext4_fsblk_t start)
a86c6181
AT
1959{
1960 struct ext4_ext_cache *cex;
1961 BUG_ON(len == 0);
2ec0ae3a 1962 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
a86c6181 1963 cex = &EXT4_I(inode)->i_cached_extent;
a86c6181
AT
1964 cex->ec_block = block;
1965 cex->ec_len = len;
1966 cex->ec_start = start;
2ec0ae3a 1967 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
a86c6181
AT
1968}
1969
1970/*
d0d856e8
RD
1971 * ext4_ext_put_gap_in_cache:
1972 * calculate boundaries of the gap that the requested block fits into
a86c6181
AT
1973 * and cache this gap
1974 */
09b88252 1975static void
a86c6181 1976ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path,
725d26d3 1977 ext4_lblk_t block)
a86c6181
AT
1978{
1979 int depth = ext_depth(inode);
725d26d3
AK
1980 unsigned long len;
1981 ext4_lblk_t lblock;
a86c6181
AT
1982 struct ext4_extent *ex;
1983
1984 ex = path[depth].p_ext;
1985 if (ex == NULL) {
1986 /* there is no extent yet, so gap is [0;-] */
1987 lblock = 0;
f17722f9 1988 len = EXT_MAX_BLOCKS;
a86c6181
AT
1989 ext_debug("cache gap(whole file):");
1990 } else if (block < le32_to_cpu(ex->ee_block)) {
1991 lblock = block;
1992 len = le32_to_cpu(ex->ee_block) - block;
bba90743
ES
1993 ext_debug("cache gap(before): %u [%u:%u]",
1994 block,
1995 le32_to_cpu(ex->ee_block),
1996 ext4_ext_get_actual_len(ex));
a86c6181 1997 } else if (block >= le32_to_cpu(ex->ee_block)
a2df2a63 1998 + ext4_ext_get_actual_len(ex)) {
725d26d3 1999 ext4_lblk_t next;
8c55e204 2000 lblock = le32_to_cpu(ex->ee_block)
a2df2a63 2001 + ext4_ext_get_actual_len(ex);
725d26d3
AK
2002
2003 next = ext4_ext_next_allocated_block(path);
bba90743
ES
2004 ext_debug("cache gap(after): [%u:%u] %u",
2005 le32_to_cpu(ex->ee_block),
2006 ext4_ext_get_actual_len(ex),
2007 block);
725d26d3
AK
2008 BUG_ON(next == lblock);
2009 len = next - lblock;
a86c6181
AT
2010 } else {
2011 lblock = len = 0;
2012 BUG();
2013 }
2014
bba90743 2015 ext_debug(" -> %u:%lu\n", lblock, len);
b05e6ae5 2016 ext4_ext_put_in_cache(inode, lblock, len, 0);
a86c6181
AT
2017}
2018
b05e6ae5 2019/*
a4bb6b64
AH
2020 * ext4_ext_in_cache()
2021 * Checks to see if the given block is in the cache.
2022 * If it is, the cached extent is stored in the given
2023 * cache extent pointer. If the cached extent is a hole,
2024 * this routine should be used instead of
2025 * ext4_ext_in_cache if the calling function needs to
2026 * know the size of the hole.
2027 *
2028 * @inode: The files inode
2029 * @block: The block to look for in the cache
2030 * @ex: Pointer where the cached extent will be stored
2031 * if it contains block
2032 *
b05e6ae5
TT
2033 * Return 0 if cache is invalid; 1 if the cache is valid
2034 */
a4bb6b64
AH
2035static int ext4_ext_check_cache(struct inode *inode, ext4_lblk_t block,
2036 struct ext4_ext_cache *ex){
a86c6181 2037 struct ext4_ext_cache *cex;
77f4135f 2038 struct ext4_sb_info *sbi;
b05e6ae5 2039 int ret = 0;
a86c6181 2040
60e6679e 2041 /*
2ec0ae3a
TT
2042 * We borrow i_block_reservation_lock to protect i_cached_extent
2043 */
2044 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
a86c6181 2045 cex = &EXT4_I(inode)->i_cached_extent;
77f4135f 2046 sbi = EXT4_SB(inode->i_sb);
a86c6181
AT
2047
2048 /* has cache valid data? */
b05e6ae5 2049 if (cex->ec_len == 0)
2ec0ae3a 2050 goto errout;
a86c6181 2051
731eb1a0 2052 if (in_range(block, cex->ec_block, cex->ec_len)) {
a4bb6b64 2053 memcpy(ex, cex, sizeof(struct ext4_ext_cache));
bba90743
ES
2054 ext_debug("%u cached by %u:%u:%llu\n",
2055 block,
2056 cex->ec_block, cex->ec_len, cex->ec_start);
b05e6ae5 2057 ret = 1;
a86c6181 2058 }
2ec0ae3a 2059errout:
77f4135f
VH
2060 if (!ret)
2061 sbi->extent_cache_misses++;
2062 else
2063 sbi->extent_cache_hits++;
2ec0ae3a
TT
2064 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
2065 return ret;
a86c6181
AT
2066}
2067
a4bb6b64
AH
2068/*
2069 * ext4_ext_in_cache()
2070 * Checks to see if the given block is in the cache.
2071 * If it is, the cached extent is stored in the given
2072 * extent pointer.
2073 *
2074 * @inode: The files inode
2075 * @block: The block to look for in the cache
2076 * @ex: Pointer where the cached extent will be stored
2077 * if it contains block
2078 *
2079 * Return 0 if cache is invalid; 1 if the cache is valid
2080 */
2081static int
2082ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block,
2083 struct ext4_extent *ex)
2084{
2085 struct ext4_ext_cache cex;
2086 int ret = 0;
2087
2088 if (ext4_ext_check_cache(inode, block, &cex)) {
2089 ex->ee_block = cpu_to_le32(cex.ec_block);
2090 ext4_ext_store_pblock(ex, cex.ec_start);
2091 ex->ee_len = cpu_to_le16(cex.ec_len);
2092 ret = 1;
2093 }
2094
2095 return ret;
2096}
2097
2098
a86c6181 2099/*
d0d856e8
RD
2100 * ext4_ext_rm_idx:
2101 * removes index from the index block.
2102 * It's used in truncate case only, thus all requests are for
2103 * last index in the block only.
a86c6181 2104 */
1d03ec98 2105static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode,
a86c6181
AT
2106 struct ext4_ext_path *path)
2107{
a86c6181 2108 int err;
f65e6fba 2109 ext4_fsblk_t leaf;
a86c6181
AT
2110
2111 /* free index block */
2112 path--;
bf89d16f 2113 leaf = ext4_idx_pblock(path->p_idx);
273df556
FM
2114 if (unlikely(path->p_hdr->eh_entries == 0)) {
2115 EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0");
2116 return -EIO;
2117 }
7e028976
AM
2118 err = ext4_ext_get_access(handle, inode, path);
2119 if (err)
a86c6181 2120 return err;
e8546d06 2121 le16_add_cpu(&path->p_hdr->eh_entries, -1);
7e028976
AM
2122 err = ext4_ext_dirty(handle, inode, path);
2123 if (err)
a86c6181 2124 return err;
2ae02107 2125 ext_debug("index is empty, remove it, free block %llu\n", leaf);
7dc57615 2126 ext4_free_blocks(handle, inode, NULL, leaf, 1,
e6362609 2127 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
a86c6181
AT
2128 return err;
2129}
2130
2131/*
ee12b630
MC
2132 * ext4_ext_calc_credits_for_single_extent:
2133 * This routine returns max. credits that needed to insert an extent
2134 * to the extent tree.
2135 * When pass the actual path, the caller should calculate credits
2136 * under i_data_sem.
a86c6181 2137 */
525f4ed8 2138int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks,
a86c6181
AT
2139 struct ext4_ext_path *path)
2140{
a86c6181 2141 if (path) {
ee12b630 2142 int depth = ext_depth(inode);
f3bd1f3f 2143 int ret = 0;
ee12b630 2144
a86c6181 2145 /* probably there is space in leaf? */
a86c6181 2146 if (le16_to_cpu(path[depth].p_hdr->eh_entries)
ee12b630 2147 < le16_to_cpu(path[depth].p_hdr->eh_max)) {
a86c6181 2148
ee12b630
MC
2149 /*
2150 * There are some space in the leaf tree, no
2151 * need to account for leaf block credit
2152 *
2153 * bitmaps and block group descriptor blocks
2154 * and other metadat blocks still need to be
2155 * accounted.
2156 */
525f4ed8 2157 /* 1 bitmap, 1 block group descriptor */
ee12b630 2158 ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb);
5887e98b 2159 return ret;
ee12b630
MC
2160 }
2161 }
a86c6181 2162
525f4ed8 2163 return ext4_chunk_trans_blocks(inode, nrblocks);
ee12b630 2164}
a86c6181 2165
ee12b630
MC
2166/*
2167 * How many index/leaf blocks need to change/allocate to modify nrblocks?
2168 *
2169 * if nrblocks are fit in a single extent (chunk flag is 1), then
2170 * in the worse case, each tree level index/leaf need to be changed
2171 * if the tree split due to insert a new extent, then the old tree
2172 * index/leaf need to be updated too
2173 *
2174 * If the nrblocks are discontiguous, they could cause
2175 * the whole tree split more than once, but this is really rare.
2176 */
525f4ed8 2177int ext4_ext_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
ee12b630
MC
2178{
2179 int index;
2180 int depth = ext_depth(inode);
a86c6181 2181
ee12b630
MC
2182 if (chunk)
2183 index = depth * 2;
2184 else
2185 index = depth * 3;
a86c6181 2186
ee12b630 2187 return index;
a86c6181
AT
2188}
2189
2190static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
2191 struct ext4_extent *ex,
725d26d3 2192 ext4_lblk_t from, ext4_lblk_t to)
a86c6181 2193{
a2df2a63 2194 unsigned short ee_len = ext4_ext_get_actual_len(ex);
e6362609 2195 int flags = EXT4_FREE_BLOCKS_FORGET;
a86c6181 2196
c9de560d 2197 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
e6362609 2198 flags |= EXT4_FREE_BLOCKS_METADATA;
a86c6181
AT
2199#ifdef EXTENTS_STATS
2200 {
2201 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
a86c6181
AT
2202 spin_lock(&sbi->s_ext_stats_lock);
2203 sbi->s_ext_blocks += ee_len;
2204 sbi->s_ext_extents++;
2205 if (ee_len < sbi->s_ext_min)
2206 sbi->s_ext_min = ee_len;
2207 if (ee_len > sbi->s_ext_max)
2208 sbi->s_ext_max = ee_len;
2209 if (ext_depth(inode) > sbi->s_depth_max)
2210 sbi->s_depth_max = ext_depth(inode);
2211 spin_unlock(&sbi->s_ext_stats_lock);
2212 }
2213#endif
2214 if (from >= le32_to_cpu(ex->ee_block)
a2df2a63 2215 && to == le32_to_cpu(ex->ee_block) + ee_len - 1) {
a86c6181 2216 /* tail removal */
725d26d3 2217 ext4_lblk_t num;
f65e6fba 2218 ext4_fsblk_t start;
725d26d3 2219
a2df2a63 2220 num = le32_to_cpu(ex->ee_block) + ee_len - from;
bf89d16f 2221 start = ext4_ext_pblock(ex) + ee_len - num;
725d26d3 2222 ext_debug("free last %u blocks starting %llu\n", num, start);
7dc57615 2223 ext4_free_blocks(handle, inode, NULL, start, num, flags);
a86c6181 2224 } else if (from == le32_to_cpu(ex->ee_block)
a2df2a63 2225 && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) {
d583fb87
AH
2226 /* head removal */
2227 ext4_lblk_t num;
2228 ext4_fsblk_t start;
2229
2230 num = to - from;
2231 start = ext4_ext_pblock(ex);
2232
2233 ext_debug("free first %u blocks starting %llu\n", num, start);
2234 ext4_free_blocks(handle, inode, 0, start, num, flags);
2235
a86c6181 2236 } else {
725d26d3
AK
2237 printk(KERN_INFO "strange request: removal(2) "
2238 "%u-%u from %u:%u\n",
2239 from, to, le32_to_cpu(ex->ee_block), ee_len);
a86c6181
AT
2240 }
2241 return 0;
2242}
2243
d583fb87
AH
2244
2245/*
2246 * ext4_ext_rm_leaf() Removes the extents associated with the
2247 * blocks appearing between "start" and "end", and splits the extents
2248 * if "start" and "end" appear in the same extent
2249 *
2250 * @handle: The journal handle
2251 * @inode: The files inode
2252 * @path: The path to the leaf
2253 * @start: The first block to remove
2254 * @end: The last block to remove
2255 */
a86c6181
AT
2256static int
2257ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
d583fb87
AH
2258 struct ext4_ext_path *path, ext4_lblk_t start,
2259 ext4_lblk_t end)
a86c6181
AT
2260{
2261 int err = 0, correct_index = 0;
2262 int depth = ext_depth(inode), credits;
2263 struct ext4_extent_header *eh;
725d26d3
AK
2264 ext4_lblk_t a, b, block;
2265 unsigned num;
2266 ext4_lblk_t ex_ee_block;
a86c6181 2267 unsigned short ex_ee_len;
a2df2a63 2268 unsigned uninitialized = 0;
a86c6181 2269 struct ext4_extent *ex;
d583fb87 2270 struct ext4_map_blocks map;
a86c6181 2271
c29c0ae7 2272 /* the header must be checked already in ext4_ext_remove_space() */
725d26d3 2273 ext_debug("truncate since %u in leaf\n", start);
a86c6181
AT
2274 if (!path[depth].p_hdr)
2275 path[depth].p_hdr = ext_block_hdr(path[depth].p_bh);
2276 eh = path[depth].p_hdr;
273df556
FM
2277 if (unlikely(path[depth].p_hdr == NULL)) {
2278 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
2279 return -EIO;
2280 }
a86c6181
AT
2281 /* find where to start removing */
2282 ex = EXT_LAST_EXTENT(eh);
2283
2284 ex_ee_block = le32_to_cpu(ex->ee_block);
a2df2a63 2285 ex_ee_len = ext4_ext_get_actual_len(ex);
a86c6181
AT
2286
2287 while (ex >= EXT_FIRST_EXTENT(eh) &&
2288 ex_ee_block + ex_ee_len > start) {
a41f2071
AK
2289
2290 if (ext4_ext_is_uninitialized(ex))
2291 uninitialized = 1;
2292 else
2293 uninitialized = 0;
2294
553f9008
M
2295 ext_debug("remove ext %u:[%d]%d\n", ex_ee_block,
2296 uninitialized, ex_ee_len);
a86c6181
AT
2297 path[depth].p_ext = ex;
2298
2299 a = ex_ee_block > start ? ex_ee_block : start;
d583fb87
AH
2300 b = ex_ee_block+ex_ee_len - 1 < end ?
2301 ex_ee_block+ex_ee_len - 1 : end;
a86c6181
AT
2302
2303 ext_debug(" border %u:%u\n", a, b);
2304
d583fb87
AH
2305 /* If this extent is beyond the end of the hole, skip it */
2306 if (end <= ex_ee_block) {
2307 ex--;
2308 ex_ee_block = le32_to_cpu(ex->ee_block);
2309 ex_ee_len = ext4_ext_get_actual_len(ex);
2310 continue;
2311 } else if (a != ex_ee_block &&
2312 b != ex_ee_block + ex_ee_len - 1) {
2313 /*
2314 * If this is a truncate, then this condition should
2315 * never happen because at least one of the end points
2316 * needs to be on the edge of the extent.
2317 */
f17722f9 2318 if (end == EXT_MAX_BLOCKS - 1) {
d583fb87
AH
2319 ext_debug(" bad truncate %u:%u\n",
2320 start, end);
2321 block = 0;
2322 num = 0;
2323 err = -EIO;
2324 goto out;
2325 }
2326 /*
2327 * else this is a hole punch, so the extent needs to
2328 * be split since neither edge of the hole is on the
2329 * extent edge
2330 */
2331 else{
2332 map.m_pblk = ext4_ext_pblock(ex);
2333 map.m_lblk = ex_ee_block;
2334 map.m_len = b - ex_ee_block;
2335
2336 err = ext4_split_extent(handle,
2337 inode, path, &map, 0,
2338 EXT4_GET_BLOCKS_PUNCH_OUT_EXT |
2339 EXT4_GET_BLOCKS_PRE_IO);
2340
2341 if (err < 0)
2342 goto out;
2343
2344 ex_ee_len = ext4_ext_get_actual_len(ex);
2345
2346 b = ex_ee_block+ex_ee_len - 1 < end ?
2347 ex_ee_block+ex_ee_len - 1 : end;
2348
2349 /* Then remove tail of this extent */
2350 block = ex_ee_block;
2351 num = a - block;
2352 }
a86c6181
AT
2353 } else if (a != ex_ee_block) {
2354 /* remove tail of the extent */
2355 block = ex_ee_block;
2356 num = a - block;
2357 } else if (b != ex_ee_block + ex_ee_len - 1) {
2358 /* remove head of the extent */
d583fb87
AH
2359 block = b;
2360 num = ex_ee_block + ex_ee_len - b;
2361
2362 /*
2363 * If this is a truncate, this condition
2364 * should never happen
2365 */
f17722f9 2366 if (end == EXT_MAX_BLOCKS - 1) {
d583fb87
AH
2367 ext_debug(" bad truncate %u:%u\n",
2368 start, end);
2369 err = -EIO;
2370 goto out;
2371 }
a86c6181
AT
2372 } else {
2373 /* remove whole extent: excellent! */
2374 block = ex_ee_block;
2375 num = 0;
d583fb87
AH
2376 if (a != ex_ee_block) {
2377 ext_debug(" bad truncate %u:%u\n",
2378 start, end);
2379 err = -EIO;
2380 goto out;
2381 }
2382
2383 if (b != ex_ee_block + ex_ee_len - 1) {
2384 ext_debug(" bad truncate %u:%u\n",
2385 start, end);
2386 err = -EIO;
2387 goto out;
2388 }
a86c6181
AT
2389 }
2390
34071da7
TT
2391 /*
2392 * 3 for leaf, sb, and inode plus 2 (bmap and group
2393 * descriptor) for each block group; assume two block
2394 * groups plus ex_ee_len/blocks_per_block_group for
2395 * the worst case
2396 */
2397 credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb));
a86c6181
AT
2398 if (ex == EXT_FIRST_EXTENT(eh)) {
2399 correct_index = 1;
2400 credits += (ext_depth(inode)) + 1;
2401 }
5aca07eb 2402 credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
a86c6181 2403
487caeef 2404 err = ext4_ext_truncate_extend_restart(handle, inode, credits);
9102e4fa 2405 if (err)
a86c6181 2406 goto out;
a86c6181
AT
2407
2408 err = ext4_ext_get_access(handle, inode, path + depth);
2409 if (err)
2410 goto out;
2411
2412 err = ext4_remove_blocks(handle, inode, ex, a, b);
2413 if (err)
2414 goto out;
2415
2416 if (num == 0) {
d0d856e8 2417 /* this extent is removed; mark slot entirely unused */
f65e6fba 2418 ext4_ext_store_pblock(ex, 0);
d583fb87
AH
2419 } else if (block != ex_ee_block) {
2420 /*
2421 * If this was a head removal, then we need to update
2422 * the physical block since it is now at a different
2423 * location
2424 */
2425 ext4_ext_store_pblock(ex, ext4_ext_pblock(ex) + (b-a));
a86c6181
AT
2426 }
2427
2428 ex->ee_block = cpu_to_le32(block);
2429 ex->ee_len = cpu_to_le16(num);
749269fa
AA
2430 /*
2431 * Do not mark uninitialized if all the blocks in the
2432 * extent have been removed.
2433 */
2434 if (uninitialized && num)
a2df2a63 2435 ext4_ext_mark_uninitialized(ex);
a86c6181
AT
2436
2437 err = ext4_ext_dirty(handle, inode, path + depth);
2438 if (err)
2439 goto out;
2440
d583fb87
AH
2441 /*
2442 * If the extent was completely released,
2443 * we need to remove it from the leaf
2444 */
2445 if (num == 0) {
f17722f9 2446 if (end != EXT_MAX_BLOCKS - 1) {
d583fb87
AH
2447 /*
2448 * For hole punching, we need to scoot all the
2449 * extents up when an extent is removed so that
2450 * we dont have blank extents in the middle
2451 */
2452 memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) *
2453 sizeof(struct ext4_extent));
2454
2455 /* Now get rid of the one at the end */
2456 memset(EXT_LAST_EXTENT(eh), 0,
2457 sizeof(struct ext4_extent));
2458 }
2459 le16_add_cpu(&eh->eh_entries, -1);
2460 }
2461
2ae02107 2462 ext_debug("new extent: %u:%u:%llu\n", block, num,
bf89d16f 2463 ext4_ext_pblock(ex));
a86c6181
AT
2464 ex--;
2465 ex_ee_block = le32_to_cpu(ex->ee_block);
a2df2a63 2466 ex_ee_len = ext4_ext_get_actual_len(ex);
a86c6181
AT
2467 }
2468
2469 if (correct_index && eh->eh_entries)
2470 err = ext4_ext_correct_indexes(handle, inode, path);
2471
2472 /* if this leaf is free, then we should
2473 * remove it from index block above */
2474 if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL)
2475 err = ext4_ext_rm_idx(handle, inode, path + depth);
2476
2477out:
2478 return err;
2479}
2480
2481/*
d0d856e8
RD
2482 * ext4_ext_more_to_rm:
2483 * returns 1 if current index has to be freed (even partial)
a86c6181 2484 */
09b88252 2485static int
a86c6181
AT
2486ext4_ext_more_to_rm(struct ext4_ext_path *path)
2487{
2488 BUG_ON(path->p_idx == NULL);
2489
2490 if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr))
2491 return 0;
2492
2493 /*
d0d856e8 2494 * if truncate on deeper level happened, it wasn't partial,
a86c6181
AT
2495 * so we have to consider current index for truncation
2496 */
2497 if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block)
2498 return 0;
2499 return 1;
2500}
2501
d583fb87
AH
2502static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
2503 ext4_lblk_t end)
a86c6181
AT
2504{
2505 struct super_block *sb = inode->i_sb;
2506 int depth = ext_depth(inode);
2507 struct ext4_ext_path *path;
2508 handle_t *handle;
0617b83f 2509 int i, err;
a86c6181 2510
725d26d3 2511 ext_debug("truncate since %u\n", start);
a86c6181
AT
2512
2513 /* probably first extent we're gonna free will be last in block */
2514 handle = ext4_journal_start(inode, depth + 1);
2515 if (IS_ERR(handle))
2516 return PTR_ERR(handle);
2517
0617b83f 2518again:
a86c6181
AT
2519 ext4_ext_invalidate_cache(inode);
2520
2521 /*
d0d856e8
RD
2522 * We start scanning from right side, freeing all the blocks
2523 * after i_size and walking into the tree depth-wise.
a86c6181 2524 */
0617b83f 2525 depth = ext_depth(inode);
216553c4 2526 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), GFP_NOFS);
a86c6181
AT
2527 if (path == NULL) {
2528 ext4_journal_stop(handle);
2529 return -ENOMEM;
2530 }
0617b83f 2531 path[0].p_depth = depth;
a86c6181 2532 path[0].p_hdr = ext_inode_hdr(inode);
56b19868 2533 if (ext4_ext_check(inode, path[0].p_hdr, depth)) {
a86c6181
AT
2534 err = -EIO;
2535 goto out;
2536 }
0617b83f 2537 i = err = 0;
a86c6181
AT
2538
2539 while (i >= 0 && err == 0) {
2540 if (i == depth) {
2541 /* this is leaf block */
d583fb87
AH
2542 err = ext4_ext_rm_leaf(handle, inode, path,
2543 start, end);
d0d856e8 2544 /* root level has p_bh == NULL, brelse() eats this */
a86c6181
AT
2545 brelse(path[i].p_bh);
2546 path[i].p_bh = NULL;
2547 i--;
2548 continue;
2549 }
2550
2551 /* this is index block */
2552 if (!path[i].p_hdr) {
2553 ext_debug("initialize header\n");
2554 path[i].p_hdr = ext_block_hdr(path[i].p_bh);
a86c6181
AT
2555 }
2556
a86c6181 2557 if (!path[i].p_idx) {
d0d856e8 2558 /* this level hasn't been touched yet */
a86c6181
AT
2559 path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr);
2560 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1;
2561 ext_debug("init index ptr: hdr 0x%p, num %d\n",
2562 path[i].p_hdr,
2563 le16_to_cpu(path[i].p_hdr->eh_entries));
2564 } else {
d0d856e8 2565 /* we were already here, see at next index */
a86c6181
AT
2566 path[i].p_idx--;
2567 }
2568
2569 ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
2570 i, EXT_FIRST_INDEX(path[i].p_hdr),
2571 path[i].p_idx);
2572 if (ext4_ext_more_to_rm(path + i)) {
c29c0ae7 2573 struct buffer_head *bh;
a86c6181 2574 /* go to the next level */
2ae02107 2575 ext_debug("move to level %d (block %llu)\n",
bf89d16f 2576 i + 1, ext4_idx_pblock(path[i].p_idx));
a86c6181 2577 memset(path + i + 1, 0, sizeof(*path));
bf89d16f 2578 bh = sb_bread(sb, ext4_idx_pblock(path[i].p_idx));
c29c0ae7 2579 if (!bh) {
a86c6181
AT
2580 /* should we reset i_size? */
2581 err = -EIO;
2582 break;
2583 }
c29c0ae7
AT
2584 if (WARN_ON(i + 1 > depth)) {
2585 err = -EIO;
2586 break;
2587 }
56b19868 2588 if (ext4_ext_check(inode, ext_block_hdr(bh),
c29c0ae7
AT
2589 depth - i - 1)) {
2590 err = -EIO;
2591 break;
2592 }
2593 path[i + 1].p_bh = bh;
a86c6181 2594
d0d856e8
RD
2595 /* save actual number of indexes since this
2596 * number is changed at the next iteration */
a86c6181
AT
2597 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries);
2598 i++;
2599 } else {
d0d856e8 2600 /* we finished processing this index, go up */
a86c6181 2601 if (path[i].p_hdr->eh_entries == 0 && i > 0) {
d0d856e8 2602 /* index is empty, remove it;
a86c6181
AT
2603 * handle must be already prepared by the
2604 * truncatei_leaf() */
2605 err = ext4_ext_rm_idx(handle, inode, path + i);
2606 }
d0d856e8 2607 /* root level has p_bh == NULL, brelse() eats this */
a86c6181
AT
2608 brelse(path[i].p_bh);
2609 path[i].p_bh = NULL;
2610 i--;
2611 ext_debug("return to level %d\n", i);
2612 }
2613 }
2614
2615 /* TODO: flexible tree reduction should be here */
2616 if (path->p_hdr->eh_entries == 0) {
2617 /*
d0d856e8
RD
2618 * truncate to zero freed all the tree,
2619 * so we need to correct eh_depth
a86c6181
AT
2620 */
2621 err = ext4_ext_get_access(handle, inode, path);
2622 if (err == 0) {
2623 ext_inode_hdr(inode)->eh_depth = 0;
2624 ext_inode_hdr(inode)->eh_max =
55ad63bf 2625 cpu_to_le16(ext4_ext_space_root(inode, 0));
a86c6181
AT
2626 err = ext4_ext_dirty(handle, inode, path);
2627 }
2628 }
2629out:
a86c6181
AT
2630 ext4_ext_drop_refs(path);
2631 kfree(path);
0617b83f
DM
2632 if (err == -EAGAIN)
2633 goto again;
a86c6181
AT
2634 ext4_journal_stop(handle);
2635
2636 return err;
2637}
2638
2639/*
2640 * called at mount time
2641 */
2642void ext4_ext_init(struct super_block *sb)
2643{
2644 /*
2645 * possible initialization would be here
2646 */
2647
83982b6f 2648 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
90576c0b 2649#if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS)
4776004f 2650 printk(KERN_INFO "EXT4-fs: file extents enabled");
bbf2f9fb
RD
2651#ifdef AGGRESSIVE_TEST
2652 printk(", aggressive tests");
a86c6181
AT
2653#endif
2654#ifdef CHECK_BINSEARCH
2655 printk(", check binsearch");
2656#endif
2657#ifdef EXTENTS_STATS
2658 printk(", stats");
2659#endif
2660 printk("\n");
90576c0b 2661#endif
a86c6181
AT
2662#ifdef EXTENTS_STATS
2663 spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock);
2664 EXT4_SB(sb)->s_ext_min = 1 << 30;
2665 EXT4_SB(sb)->s_ext_max = 0;
2666#endif
2667 }
2668}
2669
2670/*
2671 * called at umount time
2672 */
2673void ext4_ext_release(struct super_block *sb)
2674{
83982b6f 2675 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
a86c6181
AT
2676 return;
2677
2678#ifdef EXTENTS_STATS
2679 if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) {
2680 struct ext4_sb_info *sbi = EXT4_SB(sb);
2681 printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
2682 sbi->s_ext_blocks, sbi->s_ext_extents,
2683 sbi->s_ext_blocks / sbi->s_ext_extents);
2684 printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
2685 sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max);
2686 }
2687#endif
2688}
2689
093a088b
AK
2690/* FIXME!! we need to try to merge to left or right after zero-out */
2691static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
2692{
2407518d
LC
2693 ext4_fsblk_t ee_pblock;
2694 unsigned int ee_len;
b720303d 2695 int ret;
093a088b 2696
093a088b 2697 ee_len = ext4_ext_get_actual_len(ex);
bf89d16f 2698 ee_pblock = ext4_ext_pblock(ex);
b720303d 2699
a107e5a3 2700 ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS);
2407518d
LC
2701 if (ret > 0)
2702 ret = 0;
093a088b 2703
2407518d 2704 return ret;
093a088b
AK
2705}
2706
47ea3bb5
YY
2707/*
2708 * used by extent splitting.
2709 */
2710#define EXT4_EXT_MAY_ZEROOUT 0x1 /* safe to zeroout if split fails \
2711 due to ENOSPC */
2712#define EXT4_EXT_MARK_UNINIT1 0x2 /* mark first half uninitialized */
2713#define EXT4_EXT_MARK_UNINIT2 0x4 /* mark second half uninitialized */
2714
2715/*
2716 * ext4_split_extent_at() splits an extent at given block.
2717 *
2718 * @handle: the journal handle
2719 * @inode: the file inode
2720 * @path: the path to the extent
2721 * @split: the logical block where the extent is splitted.
2722 * @split_flags: indicates if the extent could be zeroout if split fails, and
2723 * the states(init or uninit) of new extents.
2724 * @flags: flags used to insert new extent to extent tree.
2725 *
2726 *
2727 * Splits extent [a, b] into two extents [a, @split) and [@split, b], states
2728 * of which are deterimined by split_flag.
2729 *
2730 * There are two cases:
2731 * a> the extent are splitted into two extent.
2732 * b> split is not needed, and just mark the extent.
2733 *
2734 * return 0 on success.
2735 */
2736static int ext4_split_extent_at(handle_t *handle,
2737 struct inode *inode,
2738 struct ext4_ext_path *path,
2739 ext4_lblk_t split,
2740 int split_flag,
2741 int flags)
2742{
2743 ext4_fsblk_t newblock;
2744 ext4_lblk_t ee_block;
2745 struct ext4_extent *ex, newex, orig_ex;
2746 struct ext4_extent *ex2 = NULL;
2747 unsigned int ee_len, depth;
2748 int err = 0;
2749
2750 ext_debug("ext4_split_extents_at: inode %lu, logical"
2751 "block %llu\n", inode->i_ino, (unsigned long long)split);
2752
2753 ext4_ext_show_leaf(inode, path);
2754
2755 depth = ext_depth(inode);
2756 ex = path[depth].p_ext;
2757 ee_block = le32_to_cpu(ex->ee_block);
2758 ee_len = ext4_ext_get_actual_len(ex);
2759 newblock = split - ee_block + ext4_ext_pblock(ex);
2760
2761 BUG_ON(split < ee_block || split >= (ee_block + ee_len));
2762
2763 err = ext4_ext_get_access(handle, inode, path + depth);
2764 if (err)
2765 goto out;
2766
2767 if (split == ee_block) {
2768 /*
2769 * case b: block @split is the block that the extent begins with
2770 * then we just change the state of the extent, and splitting
2771 * is not needed.
2772 */
2773 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2774 ext4_ext_mark_uninitialized(ex);
2775 else
2776 ext4_ext_mark_initialized(ex);
2777
2778 if (!(flags & EXT4_GET_BLOCKS_PRE_IO))
2779 ext4_ext_try_to_merge(inode, path, ex);
2780
2781 err = ext4_ext_dirty(handle, inode, path + depth);
2782 goto out;
2783 }
2784
2785 /* case a */
2786 memcpy(&orig_ex, ex, sizeof(orig_ex));
2787 ex->ee_len = cpu_to_le16(split - ee_block);
2788 if (split_flag & EXT4_EXT_MARK_UNINIT1)
2789 ext4_ext_mark_uninitialized(ex);
2790
2791 /*
2792 * path may lead to new leaf, not to original leaf any more
2793 * after ext4_ext_insert_extent() returns,
2794 */
2795 err = ext4_ext_dirty(handle, inode, path + depth);
2796 if (err)
2797 goto fix_extent_len;
2798
2799 ex2 = &newex;
2800 ex2->ee_block = cpu_to_le32(split);
2801 ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block));
2802 ext4_ext_store_pblock(ex2, newblock);
2803 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2804 ext4_ext_mark_uninitialized(ex2);
2805
2806 err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
2807 if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2808 err = ext4_ext_zeroout(inode, &orig_ex);
2809 if (err)
2810 goto fix_extent_len;
2811 /* update the extent length and mark as initialized */
2812 ex->ee_len = cpu_to_le32(ee_len);
2813 ext4_ext_try_to_merge(inode, path, ex);
2814 err = ext4_ext_dirty(handle, inode, path + depth);
2815 goto out;
2816 } else if (err)
2817 goto fix_extent_len;
2818
2819out:
2820 ext4_ext_show_leaf(inode, path);
2821 return err;
2822
2823fix_extent_len:
2824 ex->ee_len = orig_ex.ee_len;
2825 ext4_ext_dirty(handle, inode, path + depth);
2826 return err;
2827}
2828
2829/*
2830 * ext4_split_extents() splits an extent and mark extent which is covered
2831 * by @map as split_flags indicates
2832 *
2833 * It may result in splitting the extent into multiple extents (upto three)
2834 * There are three possibilities:
2835 * a> There is no split required
2836 * b> Splits in two extents: Split is happening at either end of the extent
2837 * c> Splits in three extents: Somone is splitting in middle of the extent
2838 *
2839 */
2840static int ext4_split_extent(handle_t *handle,
2841 struct inode *inode,
2842 struct ext4_ext_path *path,
2843 struct ext4_map_blocks *map,
2844 int split_flag,
2845 int flags)
2846{
2847 ext4_lblk_t ee_block;
2848 struct ext4_extent *ex;
2849 unsigned int ee_len, depth;
2850 int err = 0;
2851 int uninitialized;
2852 int split_flag1, flags1;
2853
2854 depth = ext_depth(inode);
2855 ex = path[depth].p_ext;
2856 ee_block = le32_to_cpu(ex->ee_block);
2857 ee_len = ext4_ext_get_actual_len(ex);
2858 uninitialized = ext4_ext_is_uninitialized(ex);
2859
2860 if (map->m_lblk + map->m_len < ee_block + ee_len) {
2861 split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
2862 EXT4_EXT_MAY_ZEROOUT : 0;
2863 flags1 = flags | EXT4_GET_BLOCKS_PRE_IO;
2864 if (uninitialized)
2865 split_flag1 |= EXT4_EXT_MARK_UNINIT1 |
2866 EXT4_EXT_MARK_UNINIT2;
2867 err = ext4_split_extent_at(handle, inode, path,
2868 map->m_lblk + map->m_len, split_flag1, flags1);
93917411
YY
2869 if (err)
2870 goto out;
47ea3bb5
YY
2871 }
2872
2873 ext4_ext_drop_refs(path);
2874 path = ext4_ext_find_extent(inode, map->m_lblk, path);
2875 if (IS_ERR(path))
2876 return PTR_ERR(path);
2877
2878 if (map->m_lblk >= ee_block) {
2879 split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
2880 EXT4_EXT_MAY_ZEROOUT : 0;
2881 if (uninitialized)
2882 split_flag1 |= EXT4_EXT_MARK_UNINIT1;
2883 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2884 split_flag1 |= EXT4_EXT_MARK_UNINIT2;
2885 err = ext4_split_extent_at(handle, inode, path,
2886 map->m_lblk, split_flag1, flags);
2887 if (err)
2888 goto out;
2889 }
2890
2891 ext4_ext_show_leaf(inode, path);
2892out:
2893 return err ? err : map->m_len;
2894}
2895
3977c965 2896#define EXT4_EXT_ZERO_LEN 7
56055d3a 2897/*
e35fd660 2898 * This function is called by ext4_ext_map_blocks() if someone tries to write
56055d3a 2899 * to an uninitialized extent. It may result in splitting the uninitialized
25985edc 2900 * extent into multiple extents (up to three - one initialized and two
56055d3a
AA
2901 * uninitialized).
2902 * There are three possibilities:
2903 * a> There is no split required: Entire extent should be initialized
2904 * b> Splits in two extents: Write is happening at either end of the extent
2905 * c> Splits in three extents: Somone is writing in middle of the extent
2906 */
725d26d3 2907static int ext4_ext_convert_to_initialized(handle_t *handle,
e35fd660
TT
2908 struct inode *inode,
2909 struct ext4_map_blocks *map,
2910 struct ext4_ext_path *path)
56055d3a 2911{
667eff35
YY
2912 struct ext4_map_blocks split_map;
2913 struct ext4_extent zero_ex;
2914 struct ext4_extent *ex;
21ca087a 2915 ext4_lblk_t ee_block, eof_block;
725d26d3 2916 unsigned int allocated, ee_len, depth;
56055d3a 2917 int err = 0;
667eff35 2918 int split_flag = 0;
21ca087a
DM
2919
2920 ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical"
2921 "block %llu, max_blocks %u\n", inode->i_ino,
e35fd660 2922 (unsigned long long)map->m_lblk, map->m_len);
21ca087a
DM
2923
2924 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
2925 inode->i_sb->s_blocksize_bits;
e35fd660
TT
2926 if (eof_block < map->m_lblk + map->m_len)
2927 eof_block = map->m_lblk + map->m_len;
56055d3a
AA
2928
2929 depth = ext_depth(inode);
56055d3a
AA
2930 ex = path[depth].p_ext;
2931 ee_block = le32_to_cpu(ex->ee_block);
2932 ee_len = ext4_ext_get_actual_len(ex);
e35fd660 2933 allocated = ee_len - (map->m_lblk - ee_block);
56055d3a 2934
667eff35 2935 WARN_ON(map->m_lblk < ee_block);
21ca087a
DM
2936 /*
2937 * It is safe to convert extent to initialized via explicit
2938 * zeroout only if extent is fully insde i_size or new_size.
2939 */
667eff35 2940 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
21ca087a 2941
3977c965 2942 /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
667eff35
YY
2943 if (ee_len <= 2*EXT4_EXT_ZERO_LEN &&
2944 (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2945 err = ext4_ext_zeroout(inode, ex);
3977c965 2946 if (err)
d03856bd 2947 goto out;
d03856bd
AK
2948
2949 err = ext4_ext_get_access(handle, inode, path + depth);
2950 if (err)
2951 goto out;
667eff35
YY
2952 ext4_ext_mark_initialized(ex);
2953 ext4_ext_try_to_merge(inode, path, ex);
2954 err = ext4_ext_dirty(handle, inode, path + depth);
2955 goto out;
56055d3a 2956 }
667eff35 2957
56055d3a 2958 /*
667eff35
YY
2959 * four cases:
2960 * 1. split the extent into three extents.
2961 * 2. split the extent into two extents, zeroout the first half.
2962 * 3. split the extent into two extents, zeroout the second half.
2963 * 4. split the extent into two extents with out zeroout.
56055d3a 2964 */
667eff35
YY
2965 split_map.m_lblk = map->m_lblk;
2966 split_map.m_len = map->m_len;
2967
2968 if (allocated > map->m_len) {
2969 if (allocated <= EXT4_EXT_ZERO_LEN &&
2970 (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2971 /* case 3 */
2972 zero_ex.ee_block =
9b940f8e
AH
2973 cpu_to_le32(map->m_lblk);
2974 zero_ex.ee_len = cpu_to_le16(allocated);
667eff35
YY
2975 ext4_ext_store_pblock(&zero_ex,
2976 ext4_ext_pblock(ex) + map->m_lblk - ee_block);
2977 err = ext4_ext_zeroout(inode, &zero_ex);
56055d3a
AA
2978 if (err)
2979 goto out;
667eff35
YY
2980 split_map.m_lblk = map->m_lblk;
2981 split_map.m_len = allocated;
2982 } else if ((map->m_lblk - ee_block + map->m_len <
2983 EXT4_EXT_ZERO_LEN) &&
2984 (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2985 /* case 2 */
2986 if (map->m_lblk != ee_block) {
2987 zero_ex.ee_block = ex->ee_block;
2988 zero_ex.ee_len = cpu_to_le16(map->m_lblk -
2989 ee_block);
2990 ext4_ext_store_pblock(&zero_ex,
2991 ext4_ext_pblock(ex));
2992 err = ext4_ext_zeroout(inode, &zero_ex);
2993 if (err)
2994 goto out;
2995 }
2996
667eff35 2997 split_map.m_lblk = ee_block;
9b940f8e
AH
2998 split_map.m_len = map->m_lblk - ee_block + map->m_len;
2999 allocated = map->m_len;
56055d3a
AA
3000 }
3001 }
667eff35
YY
3002
3003 allocated = ext4_split_extent(handle, inode, path,
3004 &split_map, split_flag, 0);
3005 if (allocated < 0)
3006 err = allocated;
3007
56055d3a
AA
3008out:
3009 return err ? err : allocated;
3010}
3011
0031462b 3012/*
e35fd660 3013 * This function is called by ext4_ext_map_blocks() from
0031462b
MC
3014 * ext4_get_blocks_dio_write() when DIO to write
3015 * to an uninitialized extent.
3016 *
fd018fe8 3017 * Writing to an uninitialized extent may result in splitting the uninitialized
b595076a 3018 * extent into multiple /initialized uninitialized extents (up to three)
0031462b
MC
3019 * There are three possibilities:
3020 * a> There is no split required: Entire extent should be uninitialized
3021 * b> Splits in two extents: Write is happening at either end of the extent
3022 * c> Splits in three extents: Somone is writing in middle of the extent
3023 *
3024 * One of more index blocks maybe needed if the extent tree grow after
b595076a 3025 * the uninitialized extent split. To prevent ENOSPC occur at the IO
0031462b 3026 * complete, we need to split the uninitialized extent before DIO submit
421f91d2 3027 * the IO. The uninitialized extent called at this time will be split
0031462b
MC
3028 * into three uninitialized extent(at most). After IO complete, the part
3029 * being filled will be convert to initialized by the end_io callback function
3030 * via ext4_convert_unwritten_extents().
ba230c3f
M
3031 *
3032 * Returns the size of uninitialized extent to be written on success.
0031462b
MC
3033 */
3034static int ext4_split_unwritten_extents(handle_t *handle,
3035 struct inode *inode,
e35fd660 3036 struct ext4_map_blocks *map,
0031462b 3037 struct ext4_ext_path *path,
0031462b
MC
3038 int flags)
3039{
667eff35
YY
3040 ext4_lblk_t eof_block;
3041 ext4_lblk_t ee_block;
3042 struct ext4_extent *ex;
3043 unsigned int ee_len;
3044 int split_flag = 0, depth;
21ca087a
DM
3045
3046 ext_debug("ext4_split_unwritten_extents: inode %lu, logical"
3047 "block %llu, max_blocks %u\n", inode->i_ino,
e35fd660 3048 (unsigned long long)map->m_lblk, map->m_len);
21ca087a
DM
3049
3050 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
3051 inode->i_sb->s_blocksize_bits;
e35fd660
TT
3052 if (eof_block < map->m_lblk + map->m_len)
3053 eof_block = map->m_lblk + map->m_len;
21ca087a
DM
3054 /*
3055 * It is safe to convert extent to initialized via explicit
3056 * zeroout only if extent is fully insde i_size or new_size.
3057 */
667eff35
YY
3058 depth = ext_depth(inode);
3059 ex = path[depth].p_ext;
3060 ee_block = le32_to_cpu(ex->ee_block);
3061 ee_len = ext4_ext_get_actual_len(ex);
0031462b 3062
667eff35
YY
3063 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
3064 split_flag |= EXT4_EXT_MARK_UNINIT2;
0031462b 3065
667eff35
YY
3066 flags |= EXT4_GET_BLOCKS_PRE_IO;
3067 return ext4_split_extent(handle, inode, path, map, split_flag, flags);
0031462b 3068}
197217a5 3069
c7064ef1 3070static int ext4_convert_unwritten_extents_endio(handle_t *handle,
0031462b
MC
3071 struct inode *inode,
3072 struct ext4_ext_path *path)
3073{
3074 struct ext4_extent *ex;
0031462b
MC
3075 int depth;
3076 int err = 0;
0031462b
MC
3077
3078 depth = ext_depth(inode);
0031462b
MC
3079 ex = path[depth].p_ext;
3080
197217a5
YY
3081 ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical"
3082 "block %llu, max_blocks %u\n", inode->i_ino,
3083 (unsigned long long)le32_to_cpu(ex->ee_block),
3084 ext4_ext_get_actual_len(ex));
3085
0031462b
MC
3086 err = ext4_ext_get_access(handle, inode, path + depth);
3087 if (err)
3088 goto out;
3089 /* first mark the extent as initialized */
3090 ext4_ext_mark_initialized(ex);
3091
197217a5
YY
3092 /* note: ext4_ext_correct_indexes() isn't needed here because
3093 * borders are not changed
0031462b 3094 */
197217a5
YY
3095 ext4_ext_try_to_merge(inode, path, ex);
3096
0031462b
MC
3097 /* Mark modified extent as dirty */
3098 err = ext4_ext_dirty(handle, inode, path + depth);
3099out:
3100 ext4_ext_show_leaf(inode, path);
3101 return err;
3102}
3103
515f41c3
AK
3104static void unmap_underlying_metadata_blocks(struct block_device *bdev,
3105 sector_t block, int count)
3106{
3107 int i;
3108 for (i = 0; i < count; i++)
3109 unmap_underlying_metadata(bdev, block + i);
3110}
3111
58590b06
TT
3112/*
3113 * Handle EOFBLOCKS_FL flag, clearing it if necessary
3114 */
3115static int check_eofblocks_fl(handle_t *handle, struct inode *inode,
d002ebf1 3116 ext4_lblk_t lblk,
58590b06
TT
3117 struct ext4_ext_path *path,
3118 unsigned int len)
3119{
3120 int i, depth;
3121 struct ext4_extent_header *eh;
65922cb5 3122 struct ext4_extent *last_ex;
58590b06
TT
3123
3124 if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
3125 return 0;
3126
3127 depth = ext_depth(inode);
3128 eh = path[depth].p_hdr;
58590b06
TT
3129
3130 if (unlikely(!eh->eh_entries)) {
3131 EXT4_ERROR_INODE(inode, "eh->eh_entries == 0 and "
3132 "EOFBLOCKS_FL set");
3133 return -EIO;
3134 }
3135 last_ex = EXT_LAST_EXTENT(eh);
3136 /*
3137 * We should clear the EOFBLOCKS_FL flag if we are writing the
3138 * last block in the last extent in the file. We test this by
3139 * first checking to see if the caller to
3140 * ext4_ext_get_blocks() was interested in the last block (or
3141 * a block beyond the last block) in the current extent. If
3142 * this turns out to be false, we can bail out from this
3143 * function immediately.
3144 */
d002ebf1 3145 if (lblk + len < le32_to_cpu(last_ex->ee_block) +
58590b06
TT
3146 ext4_ext_get_actual_len(last_ex))
3147 return 0;
3148 /*
3149 * If the caller does appear to be planning to write at or
3150 * beyond the end of the current extent, we then test to see
3151 * if the current extent is the last extent in the file, by
3152 * checking to make sure it was reached via the rightmost node
3153 * at each level of the tree.
3154 */
3155 for (i = depth-1; i >= 0; i--)
3156 if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr))
3157 return 0;
3158 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3159 return ext4_mark_inode_dirty(handle, inode);
3160}
3161
0031462b
MC
3162static int
3163ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,
e35fd660 3164 struct ext4_map_blocks *map,
0031462b 3165 struct ext4_ext_path *path, int flags,
e35fd660 3166 unsigned int allocated, ext4_fsblk_t newblock)
0031462b
MC
3167{
3168 int ret = 0;
3169 int err = 0;
8d5d02e6 3170 ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
0031462b
MC
3171
3172 ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical"
3173 "block %llu, max_blocks %u, flags %d, allocated %u",
e35fd660 3174 inode->i_ino, (unsigned long long)map->m_lblk, map->m_len,
0031462b
MC
3175 flags, allocated);
3176 ext4_ext_show_leaf(inode, path);
3177
c7064ef1 3178 /* get_block() before submit the IO, split the extent */
744692dc 3179 if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
e35fd660
TT
3180 ret = ext4_split_unwritten_extents(handle, inode, map,
3181 path, flags);
5f524950
M
3182 /*
3183 * Flag the inode(non aio case) or end_io struct (aio case)
25985edc 3184 * that this IO needs to conversion to written when IO is
5f524950
M
3185 * completed
3186 */
e9e3bcec 3187 if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) {
bd2d0210 3188 io->flag = EXT4_IO_END_UNWRITTEN;
e9e3bcec
ES
3189 atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten);
3190 } else
19f5fb7a 3191 ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
744692dc 3192 if (ext4_should_dioread_nolock(inode))
e35fd660 3193 map->m_flags |= EXT4_MAP_UNINIT;
0031462b
MC
3194 goto out;
3195 }
c7064ef1 3196 /* IO end_io complete, convert the filled extent to written */
744692dc 3197 if ((flags & EXT4_GET_BLOCKS_CONVERT)) {
c7064ef1 3198 ret = ext4_convert_unwritten_extents_endio(handle, inode,
0031462b 3199 path);
58590b06 3200 if (ret >= 0) {
b436b9be 3201 ext4_update_inode_fsync_trans(handle, inode, 1);
d002ebf1
ES
3202 err = check_eofblocks_fl(handle, inode, map->m_lblk,
3203 path, map->m_len);
58590b06
TT
3204 } else
3205 err = ret;
0031462b
MC
3206 goto out2;
3207 }
3208 /* buffered IO case */
3209 /*
3210 * repeat fallocate creation request
3211 * we already have an unwritten extent
3212 */
3213 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT)
3214 goto map_out;
3215
3216 /* buffered READ or buffered write_begin() lookup */
3217 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
3218 /*
3219 * We have blocks reserved already. We
3220 * return allocated blocks so that delalloc
3221 * won't do block reservation for us. But
3222 * the buffer head will be unmapped so that
3223 * a read from the block returns 0s.
3224 */
e35fd660 3225 map->m_flags |= EXT4_MAP_UNWRITTEN;
0031462b
MC
3226 goto out1;
3227 }
3228
3229 /* buffered write, writepage time, convert*/
e35fd660 3230 ret = ext4_ext_convert_to_initialized(handle, inode, map, path);
58590b06 3231 if (ret >= 0) {
b436b9be 3232 ext4_update_inode_fsync_trans(handle, inode, 1);
d002ebf1
ES
3233 err = check_eofblocks_fl(handle, inode, map->m_lblk, path,
3234 map->m_len);
58590b06
TT
3235 if (err < 0)
3236 goto out2;
3237 }
3238
0031462b
MC
3239out:
3240 if (ret <= 0) {
3241 err = ret;
3242 goto out2;
3243 } else
3244 allocated = ret;
e35fd660 3245 map->m_flags |= EXT4_MAP_NEW;
515f41c3
AK
3246 /*
3247 * if we allocated more blocks than requested
3248 * we need to make sure we unmap the extra block
3249 * allocated. The actual needed block will get
3250 * unmapped later when we find the buffer_head marked
3251 * new.
3252 */
e35fd660 3253 if (allocated > map->m_len) {
515f41c3 3254 unmap_underlying_metadata_blocks(inode->i_sb->s_bdev,
e35fd660
TT
3255 newblock + map->m_len,
3256 allocated - map->m_len);
3257 allocated = map->m_len;
515f41c3 3258 }
5f634d06
AK
3259
3260 /*
3261 * If we have done fallocate with the offset that is already
3262 * delayed allocated, we would have block reservation
3263 * and quota reservation done in the delayed write path.
3264 * But fallocate would have already updated quota and block
3265 * count for this offset. So cancel these reservation
3266 */
1296cc85 3267 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
5f634d06
AK
3268 ext4_da_update_reserve_space(inode, allocated, 0);
3269
0031462b 3270map_out:
e35fd660 3271 map->m_flags |= EXT4_MAP_MAPPED;
0031462b 3272out1:
e35fd660
TT
3273 if (allocated > map->m_len)
3274 allocated = map->m_len;
0031462b 3275 ext4_ext_show_leaf(inode, path);
e35fd660
TT
3276 map->m_pblk = newblock;
3277 map->m_len = allocated;
0031462b
MC
3278out2:
3279 if (path) {
3280 ext4_ext_drop_refs(path);
3281 kfree(path);
3282 }
3283 return err ? err : allocated;
3284}
58590b06 3285
c278bfec 3286/*
f5ab0d1f
MC
3287 * Block allocation/map/preallocation routine for extents based files
3288 *
3289 *
c278bfec 3290 * Need to be called with
0e855ac8
AK
3291 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
3292 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
f5ab0d1f
MC
3293 *
3294 * return > 0, number of of blocks already mapped/allocated
3295 * if create == 0 and these are pre-allocated blocks
3296 * buffer head is unmapped
3297 * otherwise blocks are mapped
3298 *
3299 * return = 0, if plain look up failed (blocks have not been allocated)
3300 * buffer head is unmapped
3301 *
3302 * return < 0, error case.
c278bfec 3303 */
e35fd660
TT
3304int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
3305 struct ext4_map_blocks *map, int flags)
a86c6181
AT
3306{
3307 struct ext4_ext_path *path = NULL;
58590b06 3308 struct ext4_extent newex, *ex;
0562e0ba 3309 ext4_fsblk_t newblock = 0;
b05e6ae5 3310 int err = 0, depth, ret;
498e5f24 3311 unsigned int allocated = 0;
e861304b
AH
3312 unsigned int punched_out = 0;
3313 unsigned int result = 0;
c9de560d 3314 struct ext4_allocation_request ar;
8d5d02e6 3315 ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
e861304b 3316 struct ext4_map_blocks punch_map;
a86c6181 3317
84fe3bef 3318 ext_debug("blocks %u/%u requested for inode %lu\n",
e35fd660 3319 map->m_lblk, map->m_len, inode->i_ino);
0562e0ba 3320 trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags);
a86c6181
AT
3321
3322 /* check in cache */
e861304b
AH
3323 if (ext4_ext_in_cache(inode, map->m_lblk, &newex) &&
3324 ((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0)) {
b05e6ae5 3325 if (!newex.ee_start_lo && !newex.ee_start_hi) {
c2177057 3326 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
56055d3a
AA
3327 /*
3328 * block isn't allocated yet and
3329 * user doesn't want to allocate it
3330 */
a86c6181
AT
3331 goto out2;
3332 }
3333 /* we should allocate requested block */
b05e6ae5 3334 } else {
a86c6181 3335 /* block is already allocated */
e35fd660 3336 newblock = map->m_lblk
8c55e204 3337 - le32_to_cpu(newex.ee_block)
bf89d16f 3338 + ext4_ext_pblock(&newex);
d0d856e8 3339 /* number of remaining blocks in the extent */
b939e376 3340 allocated = ext4_ext_get_actual_len(&newex) -
e35fd660 3341 (map->m_lblk - le32_to_cpu(newex.ee_block));
a86c6181 3342 goto out;
a86c6181
AT
3343 }
3344 }
3345
3346 /* find extent for this block */
e35fd660 3347 path = ext4_ext_find_extent(inode, map->m_lblk, NULL);
a86c6181
AT
3348 if (IS_ERR(path)) {
3349 err = PTR_ERR(path);
3350 path = NULL;
3351 goto out2;
3352 }
3353
3354 depth = ext_depth(inode);
3355
3356 /*
d0d856e8
RD
3357 * consistent leaf must not be empty;
3358 * this situation is possible, though, _during_ tree modification;
a86c6181
AT
3359 * this is why assert can't be put in ext4_ext_find_extent()
3360 */
273df556
FM
3361 if (unlikely(path[depth].p_ext == NULL && depth != 0)) {
3362 EXT4_ERROR_INODE(inode, "bad extent address "
f70f362b
TT
3363 "lblock: %lu, depth: %d pblock %lld",
3364 (unsigned long) map->m_lblk, depth,
3365 path[depth].p_block);
034fb4c9
SP
3366 err = -EIO;
3367 goto out2;
3368 }
a86c6181 3369
7e028976
AM
3370 ex = path[depth].p_ext;
3371 if (ex) {
725d26d3 3372 ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
bf89d16f 3373 ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
a2df2a63 3374 unsigned short ee_len;
471d4011
SB
3375
3376 /*
471d4011 3377 * Uninitialized extents are treated as holes, except that
56055d3a 3378 * we split out initialized portions during a write.
471d4011 3379 */
a2df2a63 3380 ee_len = ext4_ext_get_actual_len(ex);
d0d856e8 3381 /* if found extent covers block, simply return it */
e35fd660
TT
3382 if (in_range(map->m_lblk, ee_block, ee_len)) {
3383 newblock = map->m_lblk - ee_block + ee_start;
d0d856e8 3384 /* number of remaining blocks in the extent */
e35fd660
TT
3385 allocated = ee_len - (map->m_lblk - ee_block);
3386 ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk,
3387 ee_block, ee_len, newblock);
56055d3a 3388
e861304b
AH
3389 if ((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0) {
3390 /*
3391 * Do not put uninitialized extent
3392 * in the cache
3393 */
3394 if (!ext4_ext_is_uninitialized(ex)) {
3395 ext4_ext_put_in_cache(inode, ee_block,
3396 ee_len, ee_start);
3397 goto out;
3398 }
3399 ret = ext4_ext_handle_uninitialized_extents(
3400 handle, inode, map, path, flags,
3401 allocated, newblock);
3402 return ret;
56055d3a 3403 }
e861304b
AH
3404
3405 /*
3406 * Punch out the map length, but only to the
3407 * end of the extent
3408 */
3409 punched_out = allocated < map->m_len ?
3410 allocated : map->m_len;
3411
3412 /*
3413 * Sense extents need to be converted to
3414 * uninitialized, they must fit in an
3415 * uninitialized extent
3416 */
3417 if (punched_out > EXT_UNINIT_MAX_LEN)
3418 punched_out = EXT_UNINIT_MAX_LEN;
3419
3420 punch_map.m_lblk = map->m_lblk;
3421 punch_map.m_pblk = newblock;
3422 punch_map.m_len = punched_out;
3423 punch_map.m_flags = 0;
3424
3425 /* Check to see if the extent needs to be split */
3426 if (punch_map.m_len != ee_len ||
3427 punch_map.m_lblk != ee_block) {
3428
3429 ret = ext4_split_extent(handle, inode,
3430 path, &punch_map, 0,
3431 EXT4_GET_BLOCKS_PUNCH_OUT_EXT |
3432 EXT4_GET_BLOCKS_PRE_IO);
3433
3434 if (ret < 0) {
3435 err = ret;
3436 goto out2;
3437 }
3438 /*
3439 * find extent for the block at
3440 * the start of the hole
3441 */
3442 ext4_ext_drop_refs(path);
3443 kfree(path);
3444
3445 path = ext4_ext_find_extent(inode,
3446 map->m_lblk, NULL);
3447 if (IS_ERR(path)) {
3448 err = PTR_ERR(path);
3449 path = NULL;
3450 goto out2;
3451 }
3452
3453 depth = ext_depth(inode);
3454 ex = path[depth].p_ext;
3455 ee_len = ext4_ext_get_actual_len(ex);
3456 ee_block = le32_to_cpu(ex->ee_block);
3457 ee_start = ext4_ext_pblock(ex);
3458
3459 }
3460
3461 ext4_ext_mark_uninitialized(ex);
3462
3463 err = ext4_ext_remove_space(inode, map->m_lblk,
3464 map->m_lblk + punched_out);
3465
3466 goto out2;
a86c6181
AT
3467 }
3468 }
3469
3470 /*
d0d856e8 3471 * requested block isn't allocated yet;
a86c6181
AT
3472 * we couldn't try to create block if create flag is zero
3473 */
c2177057 3474 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
56055d3a
AA
3475 /*
3476 * put just found gap into cache to speed up
3477 * subsequent requests
3478 */
e35fd660 3479 ext4_ext_put_gap_in_cache(inode, path, map->m_lblk);
a86c6181
AT
3480 goto out2;
3481 }
3482 /*
c2ea3fde 3483 * Okay, we need to do block allocation.
63f57933 3484 */
a86c6181 3485
c9de560d 3486 /* find neighbour allocated blocks */
e35fd660 3487 ar.lleft = map->m_lblk;
c9de560d
AT
3488 err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
3489 if (err)
3490 goto out2;
e35fd660 3491 ar.lright = map->m_lblk;
c9de560d
AT
3492 err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright);
3493 if (err)
3494 goto out2;
25d14f98 3495
749269fa
AA
3496 /*
3497 * See if request is beyond maximum number of blocks we can have in
3498 * a single extent. For an initialized extent this limit is
3499 * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
3500 * EXT_UNINIT_MAX_LEN.
3501 */
e35fd660 3502 if (map->m_len > EXT_INIT_MAX_LEN &&
c2177057 3503 !(flags & EXT4_GET_BLOCKS_UNINIT_EXT))
e35fd660
TT
3504 map->m_len = EXT_INIT_MAX_LEN;
3505 else if (map->m_len > EXT_UNINIT_MAX_LEN &&
c2177057 3506 (flags & EXT4_GET_BLOCKS_UNINIT_EXT))
e35fd660 3507 map->m_len = EXT_UNINIT_MAX_LEN;
749269fa 3508
e35fd660
TT
3509 /* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */
3510 newex.ee_block = cpu_to_le32(map->m_lblk);
3511 newex.ee_len = cpu_to_le16(map->m_len);
25d14f98
AA
3512 err = ext4_ext_check_overlap(inode, &newex, path);
3513 if (err)
b939e376 3514 allocated = ext4_ext_get_actual_len(&newex);
25d14f98 3515 else
e35fd660 3516 allocated = map->m_len;
c9de560d
AT
3517
3518 /* allocate new block */
3519 ar.inode = inode;
e35fd660
TT
3520 ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk);
3521 ar.logical = map->m_lblk;
c9de560d
AT
3522 ar.len = allocated;
3523 if (S_ISREG(inode->i_mode))
3524 ar.flags = EXT4_MB_HINT_DATA;
3525 else
3526 /* disable in-core preallocation for non-regular files */
3527 ar.flags = 0;
556b27ab
VH
3528 if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE)
3529 ar.flags |= EXT4_MB_HINT_NOPREALLOC;
c9de560d 3530 newblock = ext4_mb_new_blocks(handle, &ar, &err);
a86c6181
AT
3531 if (!newblock)
3532 goto out2;
84fe3bef 3533 ext_debug("allocate new block: goal %llu, found %llu/%u\n",
498e5f24 3534 ar.goal, newblock, allocated);
a86c6181
AT
3535
3536 /* try to insert new extent into found leaf and return */
f65e6fba 3537 ext4_ext_store_pblock(&newex, newblock);
c9de560d 3538 newex.ee_len = cpu_to_le16(ar.len);
8d5d02e6
MC
3539 /* Mark uninitialized */
3540 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT){
a2df2a63 3541 ext4_ext_mark_uninitialized(&newex);
8d5d02e6 3542 /*
744692dc 3543 * io_end structure was created for every IO write to an
25985edc 3544 * uninitialized extent. To avoid unnecessary conversion,
744692dc 3545 * here we flag the IO that really needs the conversion.
5f524950 3546 * For non asycn direct IO case, flag the inode state
25985edc 3547 * that we need to perform conversion when IO is done.
8d5d02e6 3548 */
744692dc 3549 if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
e9e3bcec 3550 if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) {
bd2d0210 3551 io->flag = EXT4_IO_END_UNWRITTEN;
e9e3bcec
ES
3552 atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten);
3553 } else
19f5fb7a
TT
3554 ext4_set_inode_state(inode,
3555 EXT4_STATE_DIO_UNWRITTEN);
5f524950 3556 }
744692dc 3557 if (ext4_should_dioread_nolock(inode))
e35fd660 3558 map->m_flags |= EXT4_MAP_UNINIT;
8d5d02e6 3559 }
c8d46e41 3560
d002ebf1 3561 err = check_eofblocks_fl(handle, inode, map->m_lblk, path, ar.len);
575a1d4b
JZ
3562 if (!err)
3563 err = ext4_ext_insert_extent(handle, inode, path,
3564 &newex, flags);
315054f0 3565 if (err) {
7132de74
MP
3566 int fb_flags = flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE ?
3567 EXT4_FREE_BLOCKS_NO_QUOT_UPDATE : 0;
315054f0 3568 /* free data blocks we just allocated */
c9de560d
AT
3569 /* not a good idea to call discard here directly,
3570 * but otherwise we'd need to call it every free() */
c2ea3fde 3571 ext4_discard_preallocations(inode);
7dc57615 3572 ext4_free_blocks(handle, inode, NULL, ext4_ext_pblock(&newex),
7132de74 3573 ext4_ext_get_actual_len(&newex), fb_flags);
a86c6181 3574 goto out2;
315054f0 3575 }
a86c6181 3576
a86c6181 3577 /* previous routine could use block we allocated */
bf89d16f 3578 newblock = ext4_ext_pblock(&newex);
b939e376 3579 allocated = ext4_ext_get_actual_len(&newex);
e35fd660
TT
3580 if (allocated > map->m_len)
3581 allocated = map->m_len;
3582 map->m_flags |= EXT4_MAP_NEW;
a86c6181 3583
5f634d06
AK
3584 /*
3585 * Update reserved blocks/metadata blocks after successful
3586 * block allocation which had been deferred till now.
3587 */
1296cc85 3588 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
5f634d06
AK
3589 ext4_da_update_reserve_space(inode, allocated, 1);
3590
b436b9be
JK
3591 /*
3592 * Cache the extent and update transaction to commit on fdatasync only
3593 * when it is _not_ an uninitialized extent.
3594 */
3595 if ((flags & EXT4_GET_BLOCKS_UNINIT_EXT) == 0) {
b05e6ae5 3596 ext4_ext_put_in_cache(inode, map->m_lblk, allocated, newblock);
b436b9be
JK
3597 ext4_update_inode_fsync_trans(handle, inode, 1);
3598 } else
3599 ext4_update_inode_fsync_trans(handle, inode, 0);
a86c6181 3600out:
e35fd660
TT
3601 if (allocated > map->m_len)
3602 allocated = map->m_len;
a86c6181 3603 ext4_ext_show_leaf(inode, path);
e35fd660
TT
3604 map->m_flags |= EXT4_MAP_MAPPED;
3605 map->m_pblk = newblock;
3606 map->m_len = allocated;
a86c6181
AT
3607out2:
3608 if (path) {
3609 ext4_ext_drop_refs(path);
3610 kfree(path);
3611 }
0562e0ba
JZ
3612 trace_ext4_ext_map_blocks_exit(inode, map->m_lblk,
3613 newblock, map->m_len, err ? err : allocated);
e861304b
AH
3614
3615 result = (flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) ?
3616 punched_out : allocated;
3617
3618 return err ? err : result;
a86c6181
AT
3619}
3620
cf108bca 3621void ext4_ext_truncate(struct inode *inode)
a86c6181
AT
3622{
3623 struct address_space *mapping = inode->i_mapping;
3624 struct super_block *sb = inode->i_sb;
725d26d3 3625 ext4_lblk_t last_block;
a86c6181
AT
3626 handle_t *handle;
3627 int err = 0;
3628
3889fd57
JZ
3629 /*
3630 * finish any pending end_io work so we won't run the risk of
3631 * converting any truncated blocks to initialized later
3632 */
3633 ext4_flush_completed_IO(inode);
3634
a86c6181
AT
3635 /*
3636 * probably first extent we're gonna free will be last in block
3637 */
f3bd1f3f 3638 err = ext4_writepage_trans_blocks(inode);
a86c6181 3639 handle = ext4_journal_start(inode, err);
cf108bca 3640 if (IS_ERR(handle))
a86c6181 3641 return;
a86c6181 3642
cf108bca
JK
3643 if (inode->i_size & (sb->s_blocksize - 1))
3644 ext4_block_truncate_page(handle, mapping, inode->i_size);
a86c6181 3645
9ddfc3dc
JK
3646 if (ext4_orphan_add(handle, inode))
3647 goto out_stop;
3648
0e855ac8 3649 down_write(&EXT4_I(inode)->i_data_sem);
a86c6181
AT
3650 ext4_ext_invalidate_cache(inode);
3651
c2ea3fde 3652 ext4_discard_preallocations(inode);
c9de560d 3653
a86c6181 3654 /*
d0d856e8
RD
3655 * TODO: optimization is possible here.
3656 * Probably we need not scan at all,
3657 * because page truncation is enough.
a86c6181 3658 */
a86c6181
AT
3659
3660 /* we have to know where to truncate from in crash case */
3661 EXT4_I(inode)->i_disksize = inode->i_size;
3662 ext4_mark_inode_dirty(handle, inode);
3663
3664 last_block = (inode->i_size + sb->s_blocksize - 1)
3665 >> EXT4_BLOCK_SIZE_BITS(sb);
f17722f9 3666 err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCKS - 1);
a86c6181
AT
3667
3668 /* In a multi-transaction truncate, we only make the final
56055d3a
AA
3669 * transaction synchronous.
3670 */
a86c6181 3671 if (IS_SYNC(inode))
0390131b 3672 ext4_handle_sync(handle);
a86c6181 3673
9ddfc3dc 3674 up_write(&EXT4_I(inode)->i_data_sem);
f6d2f6b3
EG
3675
3676out_stop:
a86c6181 3677 /*
d0d856e8 3678 * If this was a simple ftruncate() and the file will remain alive,
a86c6181
AT
3679 * then we need to clear up the orphan record which we created above.
3680 * However, if this was a real unlink then we were called by
3681 * ext4_delete_inode(), and we allow that function to clean up the
3682 * orphan info for us.
3683 */
3684 if (inode->i_nlink)
3685 ext4_orphan_del(handle, inode);
3686
ef737728
SR
3687 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3688 ext4_mark_inode_dirty(handle, inode);
a86c6181
AT
3689 ext4_journal_stop(handle);
3690}
3691
fd28784a
AK
3692static void ext4_falloc_update_inode(struct inode *inode,
3693 int mode, loff_t new_size, int update_ctime)
3694{
3695 struct timespec now;
3696
3697 if (update_ctime) {
3698 now = current_fs_time(inode->i_sb);
3699 if (!timespec_equal(&inode->i_ctime, &now))
3700 inode->i_ctime = now;
3701 }
3702 /*
3703 * Update only when preallocation was requested beyond
3704 * the file size.
3705 */
cf17fea6
AK
3706 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3707 if (new_size > i_size_read(inode))
3708 i_size_write(inode, new_size);
3709 if (new_size > EXT4_I(inode)->i_disksize)
3710 ext4_update_i_disksize(inode, new_size);
c8d46e41
JZ
3711 } else {
3712 /*
3713 * Mark that we allocate beyond EOF so the subsequent truncate
3714 * can proceed even if the new size is the same as i_size.
3715 */
3716 if (new_size > i_size_read(inode))
12e9b892 3717 ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
fd28784a
AK
3718 }
3719
3720}
3721
a2df2a63 3722/*
2fe17c10 3723 * preallocate space for a file. This implements ext4's fallocate file
a2df2a63
AA
3724 * operation, which gets called from sys_fallocate system call.
3725 * For block-mapped files, posix_fallocate should fall back to the method
3726 * of writing zeroes to the required new blocks (the same behavior which is
3727 * expected for file systems which do not support fallocate() system call).
3728 */
2fe17c10 3729long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
a2df2a63 3730{
2fe17c10 3731 struct inode *inode = file->f_path.dentry->d_inode;
a2df2a63 3732 handle_t *handle;
fd28784a 3733 loff_t new_size;
498e5f24 3734 unsigned int max_blocks;
a2df2a63
AA
3735 int ret = 0;
3736 int ret2 = 0;
3737 int retries = 0;
2ed88685 3738 struct ext4_map_blocks map;
a2df2a63
AA
3739 unsigned int credits, blkbits = inode->i_blkbits;
3740
3741 /*
3742 * currently supporting (pre)allocate mode for extent-based
3743 * files _only_
3744 */
12e9b892 3745 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
a2df2a63
AA
3746 return -EOPNOTSUPP;
3747
a4bb6b64
AH
3748 /* Return error if mode is not supported */
3749 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
3750 return -EOPNOTSUPP;
3751
3752 if (mode & FALLOC_FL_PUNCH_HOLE)
3753 return ext4_punch_hole(file, offset, len);
3754
0562e0ba 3755 trace_ext4_fallocate_enter(inode, offset, len, mode);
2ed88685 3756 map.m_lblk = offset >> blkbits;
fd28784a
AK
3757 /*
3758 * We can't just convert len to max_blocks because
3759 * If blocksize = 4096 offset = 3072 and len = 2048
3760 */
a2df2a63 3761 max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits)
2ed88685 3762 - map.m_lblk;
a2df2a63 3763 /*
f3bd1f3f 3764 * credits to insert 1 extent into extent tree
a2df2a63 3765 */
f3bd1f3f 3766 credits = ext4_chunk_trans_blocks(inode, max_blocks);
55bd725a 3767 mutex_lock(&inode->i_mutex);
6d19c42b
NK
3768 ret = inode_newsize_ok(inode, (len + offset));
3769 if (ret) {
3770 mutex_unlock(&inode->i_mutex);
0562e0ba 3771 trace_ext4_fallocate_exit(inode, offset, max_blocks, ret);
6d19c42b
NK
3772 return ret;
3773 }
a2df2a63
AA
3774retry:
3775 while (ret >= 0 && ret < max_blocks) {
2ed88685
TT
3776 map.m_lblk = map.m_lblk + ret;
3777 map.m_len = max_blocks = max_blocks - ret;
a2df2a63
AA
3778 handle = ext4_journal_start(inode, credits);
3779 if (IS_ERR(handle)) {
3780 ret = PTR_ERR(handle);
3781 break;
3782 }
2ed88685 3783 ret = ext4_map_blocks(handle, inode, &map,
556b27ab
VH
3784 EXT4_GET_BLOCKS_CREATE_UNINIT_EXT |
3785 EXT4_GET_BLOCKS_NO_NORMALIZE);
221879c9 3786 if (ret <= 0) {
2c98615d
AK
3787#ifdef EXT4FS_DEBUG
3788 WARN_ON(ret <= 0);
e35fd660 3789 printk(KERN_ERR "%s: ext4_ext_map_blocks "
2c98615d 3790 "returned error inode#%lu, block=%u, "
9fd9784c 3791 "max_blocks=%u", __func__,
a6371b63 3792 inode->i_ino, map.m_lblk, max_blocks);
2c98615d 3793#endif
a2df2a63
AA
3794 ext4_mark_inode_dirty(handle, inode);
3795 ret2 = ext4_journal_stop(handle);
3796 break;
3797 }
2ed88685 3798 if ((map.m_lblk + ret) >= (EXT4_BLOCK_ALIGN(offset + len,
fd28784a
AK
3799 blkbits) >> blkbits))
3800 new_size = offset + len;
3801 else
2ed88685 3802 new_size = (map.m_lblk + ret) << blkbits;
a2df2a63 3803
fd28784a 3804 ext4_falloc_update_inode(inode, mode, new_size,
2ed88685 3805 (map.m_flags & EXT4_MAP_NEW));
a2df2a63
AA
3806 ext4_mark_inode_dirty(handle, inode);
3807 ret2 = ext4_journal_stop(handle);
3808 if (ret2)
3809 break;
3810 }
fd28784a
AK
3811 if (ret == -ENOSPC &&
3812 ext4_should_retry_alloc(inode->i_sb, &retries)) {
3813 ret = 0;
a2df2a63 3814 goto retry;
a2df2a63 3815 }
55bd725a 3816 mutex_unlock(&inode->i_mutex);
0562e0ba
JZ
3817 trace_ext4_fallocate_exit(inode, offset, max_blocks,
3818 ret > 0 ? ret2 : ret);
a2df2a63
AA
3819 return ret > 0 ? ret2 : ret;
3820}
6873fa0d 3821
0031462b
MC
3822/*
3823 * This function convert a range of blocks to written extents
3824 * The caller of this function will pass the start offset and the size.
3825 * all unwritten extents within this range will be converted to
3826 * written extents.
3827 *
3828 * This function is called from the direct IO end io call back
3829 * function, to convert the fallocated extents after IO is completed.
109f5565 3830 * Returns 0 on success.
0031462b
MC
3831 */
3832int ext4_convert_unwritten_extents(struct inode *inode, loff_t offset,
a1de02dc 3833 ssize_t len)
0031462b
MC
3834{
3835 handle_t *handle;
0031462b
MC
3836 unsigned int max_blocks;
3837 int ret = 0;
3838 int ret2 = 0;
2ed88685 3839 struct ext4_map_blocks map;
0031462b
MC
3840 unsigned int credits, blkbits = inode->i_blkbits;
3841
2ed88685 3842 map.m_lblk = offset >> blkbits;
0031462b
MC
3843 /*
3844 * We can't just convert len to max_blocks because
3845 * If blocksize = 4096 offset = 3072 and len = 2048
3846 */
2ed88685
TT
3847 max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) -
3848 map.m_lblk);
0031462b
MC
3849 /*
3850 * credits to insert 1 extent into extent tree
3851 */
3852 credits = ext4_chunk_trans_blocks(inode, max_blocks);
3853 while (ret >= 0 && ret < max_blocks) {
2ed88685
TT
3854 map.m_lblk += ret;
3855 map.m_len = (max_blocks -= ret);
0031462b
MC
3856 handle = ext4_journal_start(inode, credits);
3857 if (IS_ERR(handle)) {
3858 ret = PTR_ERR(handle);
3859 break;
3860 }
2ed88685 3861 ret = ext4_map_blocks(handle, inode, &map,
c7064ef1 3862 EXT4_GET_BLOCKS_IO_CONVERT_EXT);
0031462b
MC
3863 if (ret <= 0) {
3864 WARN_ON(ret <= 0);
e35fd660 3865 printk(KERN_ERR "%s: ext4_ext_map_blocks "
0031462b
MC
3866 "returned error inode#%lu, block=%u, "
3867 "max_blocks=%u", __func__,
2ed88685 3868 inode->i_ino, map.m_lblk, map.m_len);
0031462b
MC
3869 }
3870 ext4_mark_inode_dirty(handle, inode);
3871 ret2 = ext4_journal_stop(handle);
3872 if (ret <= 0 || ret2 )
3873 break;
3874 }
3875 return ret > 0 ? ret2 : ret;
3876}
6d9c85eb 3877
6873fa0d
ES
3878/*
3879 * Callback function called for each extent to gather FIEMAP information.
3880 */
c03f8aa9 3881static int ext4_ext_fiemap_cb(struct inode *inode, ext4_lblk_t next,
6873fa0d
ES
3882 struct ext4_ext_cache *newex, struct ext4_extent *ex,
3883 void *data)
3884{
6873fa0d
ES
3885 __u64 logical;
3886 __u64 physical;
3887 __u64 length;
3888 __u32 flags = 0;
6d9c85eb
YY
3889 int ret = 0;
3890 struct fiemap_extent_info *fieinfo = data;
3891 unsigned char blksize_bits;
6873fa0d 3892
6d9c85eb
YY
3893 blksize_bits = inode->i_sb->s_blocksize_bits;
3894 logical = (__u64)newex->ec_block << blksize_bits;
6873fa0d 3895
b05e6ae5 3896 if (newex->ec_start == 0) {
6d9c85eb
YY
3897 /*
3898 * No extent in extent-tree contains block @newex->ec_start,
3899 * then the block may stay in 1)a hole or 2)delayed-extent.
3900 *
3901 * Holes or delayed-extents are processed as follows.
3902 * 1. lookup dirty pages with specified range in pagecache.
3903 * If no page is got, then there is no delayed-extent and
3904 * return with EXT_CONTINUE.
3905 * 2. find the 1st mapped buffer,
3906 * 3. check if the mapped buffer is both in the request range
3907 * and a delayed buffer. If not, there is no delayed-extent,
3908 * then return.
3909 * 4. a delayed-extent is found, the extent will be collected.
3910 */
3911 ext4_lblk_t end = 0;
3912 pgoff_t last_offset;
3913 pgoff_t offset;
3914 pgoff_t index;
b221349f 3915 pgoff_t start_index = 0;
6d9c85eb 3916 struct page **pages = NULL;
6873fa0d 3917 struct buffer_head *bh = NULL;
6d9c85eb
YY
3918 struct buffer_head *head = NULL;
3919 unsigned int nr_pages = PAGE_SIZE / sizeof(struct page *);
3920
3921 pages = kmalloc(PAGE_SIZE, GFP_KERNEL);
3922 if (pages == NULL)
3923 return -ENOMEM;
6873fa0d
ES
3924
3925 offset = logical >> PAGE_SHIFT;
6d9c85eb
YY
3926repeat:
3927 last_offset = offset;
3928 head = NULL;
3929 ret = find_get_pages_tag(inode->i_mapping, &offset,
3930 PAGECACHE_TAG_DIRTY, nr_pages, pages);
3931
3932 if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
3933 /* First time, try to find a mapped buffer. */
3934 if (ret == 0) {
3935out:
3936 for (index = 0; index < ret; index++)
3937 page_cache_release(pages[index]);
3938 /* just a hole. */
3939 kfree(pages);
3940 return EXT_CONTINUE;
3941 }
b221349f 3942 index = 0;
6873fa0d 3943
b221349f 3944next_page:
6d9c85eb 3945 /* Try to find the 1st mapped buffer. */
b221349f 3946 end = ((__u64)pages[index]->index << PAGE_SHIFT) >>
6d9c85eb 3947 blksize_bits;
b221349f 3948 if (!page_has_buffers(pages[index]))
6d9c85eb 3949 goto out;
b221349f 3950 head = page_buffers(pages[index]);
6d9c85eb
YY
3951 if (!head)
3952 goto out;
6873fa0d 3953
b221349f 3954 index++;
6d9c85eb
YY
3955 bh = head;
3956 do {
b221349f
YY
3957 if (end >= newex->ec_block +
3958 newex->ec_len)
3959 /* The buffer is out of
3960 * the request range.
3961 */
3962 goto out;
3963
3964 if (buffer_mapped(bh) &&
3965 end >= newex->ec_block) {
3966 start_index = index - 1;
6d9c85eb 3967 /* get the 1st mapped buffer. */
6d9c85eb
YY
3968 goto found_mapped_buffer;
3969 }
b221349f 3970
6d9c85eb
YY
3971 bh = bh->b_this_page;
3972 end++;
3973 } while (bh != head);
6873fa0d 3974
b221349f
YY
3975 /* No mapped buffer in the range found in this page,
3976 * We need to look up next page.
3977 */
3978 if (index >= ret) {
3979 /* There is no page left, but we need to limit
3980 * newex->ec_len.
3981 */
3982 newex->ec_len = end - newex->ec_block;
3983 goto out;
3984 }
3985 goto next_page;
6873fa0d 3986 } else {
6d9c85eb
YY
3987 /*Find contiguous delayed buffers. */
3988 if (ret > 0 && pages[0]->index == last_offset)
3989 head = page_buffers(pages[0]);
3990 bh = head;
b221349f
YY
3991 index = 1;
3992 start_index = 0;
6873fa0d 3993 }
6d9c85eb
YY
3994
3995found_mapped_buffer:
3996 if (bh != NULL && buffer_delay(bh)) {
3997 /* 1st or contiguous delayed buffer found. */
3998 if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
3999 /*
4000 * 1st delayed buffer found, record
4001 * the start of extent.
4002 */
4003 flags |= FIEMAP_EXTENT_DELALLOC;
4004 newex->ec_block = end;
4005 logical = (__u64)end << blksize_bits;
4006 }
4007 /* Find contiguous delayed buffers. */
4008 do {
4009 if (!buffer_delay(bh))
4010 goto found_delayed_extent;
4011 bh = bh->b_this_page;
4012 end++;
4013 } while (bh != head);
4014
b221349f 4015 for (; index < ret; index++) {
6d9c85eb
YY
4016 if (!page_has_buffers(pages[index])) {
4017 bh = NULL;
4018 break;
4019 }
4020 head = page_buffers(pages[index]);
4021 if (!head) {
4022 bh = NULL;
4023 break;
4024 }
b221349f 4025
6d9c85eb 4026 if (pages[index]->index !=
b221349f
YY
4027 pages[start_index]->index + index
4028 - start_index) {
6d9c85eb
YY
4029 /* Blocks are not contiguous. */
4030 bh = NULL;
4031 break;
4032 }
4033 bh = head;
4034 do {
4035 if (!buffer_delay(bh))
4036 /* Delayed-extent ends. */
4037 goto found_delayed_extent;
4038 bh = bh->b_this_page;
4039 end++;
4040 } while (bh != head);
4041 }
4042 } else if (!(flags & FIEMAP_EXTENT_DELALLOC))
4043 /* a hole found. */
4044 goto out;
4045
4046found_delayed_extent:
4047 newex->ec_len = min(end - newex->ec_block,
4048 (ext4_lblk_t)EXT_INIT_MAX_LEN);
4049 if (ret == nr_pages && bh != NULL &&
4050 newex->ec_len < EXT_INIT_MAX_LEN &&
4051 buffer_delay(bh)) {
4052 /* Have not collected an extent and continue. */
4053 for (index = 0; index < ret; index++)
4054 page_cache_release(pages[index]);
4055 goto repeat;
6873fa0d 4056 }
6d9c85eb
YY
4057
4058 for (index = 0; index < ret; index++)
4059 page_cache_release(pages[index]);
4060 kfree(pages);
6873fa0d
ES
4061 }
4062
4063 physical = (__u64)newex->ec_start << blksize_bits;
4064 length = (__u64)newex->ec_len << blksize_bits;
4065
4066 if (ex && ext4_ext_is_uninitialized(ex))
4067 flags |= FIEMAP_EXTENT_UNWRITTEN;
4068
c03f8aa9 4069 if (next == EXT_MAX_BLOCKS)
6873fa0d
ES
4070 flags |= FIEMAP_EXTENT_LAST;
4071
6d9c85eb 4072 ret = fiemap_fill_next_extent(fieinfo, logical, physical,
6873fa0d 4073 length, flags);
6d9c85eb
YY
4074 if (ret < 0)
4075 return ret;
4076 if (ret == 1)
6873fa0d 4077 return EXT_BREAK;
6873fa0d
ES
4078 return EXT_CONTINUE;
4079}
4080
4081/* fiemap flags we can handle specified here */
4082#define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
4083
3a06d778
AK
4084static int ext4_xattr_fiemap(struct inode *inode,
4085 struct fiemap_extent_info *fieinfo)
6873fa0d
ES
4086{
4087 __u64 physical = 0;
4088 __u64 length;
4089 __u32 flags = FIEMAP_EXTENT_LAST;
4090 int blockbits = inode->i_sb->s_blocksize_bits;
4091 int error = 0;
4092
4093 /* in-inode? */
19f5fb7a 4094 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
6873fa0d
ES
4095 struct ext4_iloc iloc;
4096 int offset; /* offset of xattr in inode */
4097
4098 error = ext4_get_inode_loc(inode, &iloc);
4099 if (error)
4100 return error;
4101 physical = iloc.bh->b_blocknr << blockbits;
4102 offset = EXT4_GOOD_OLD_INODE_SIZE +
4103 EXT4_I(inode)->i_extra_isize;
4104 physical += offset;
4105 length = EXT4_SB(inode->i_sb)->s_inode_size - offset;
4106 flags |= FIEMAP_EXTENT_DATA_INLINE;
fd2dd9fb 4107 brelse(iloc.bh);
6873fa0d
ES
4108 } else { /* external block */
4109 physical = EXT4_I(inode)->i_file_acl << blockbits;
4110 length = inode->i_sb->s_blocksize;
4111 }
4112
4113 if (physical)
4114 error = fiemap_fill_next_extent(fieinfo, 0, physical,
4115 length, flags);
4116 return (error < 0 ? error : 0);
4117}
4118
a4bb6b64
AH
4119/*
4120 * ext4_ext_punch_hole
4121 *
4122 * Punches a hole of "length" bytes in a file starting
4123 * at byte "offset"
4124 *
4125 * @inode: The inode of the file to punch a hole in
4126 * @offset: The starting byte offset of the hole
4127 * @length: The length of the hole
4128 *
4129 * Returns the number of blocks removed or negative on err
4130 */
4131int ext4_ext_punch_hole(struct file *file, loff_t offset, loff_t length)
4132{
4133 struct inode *inode = file->f_path.dentry->d_inode;
4134 struct super_block *sb = inode->i_sb;
4135 struct ext4_ext_cache cache_ex;
4136 ext4_lblk_t first_block, last_block, num_blocks, iblock, max_blocks;
4137 struct address_space *mapping = inode->i_mapping;
4138 struct ext4_map_blocks map;
4139 handle_t *handle;
4140 loff_t first_block_offset, last_block_offset, block_len;
4141 loff_t first_page, last_page, first_page_offset, last_page_offset;
4142 int ret, credits, blocks_released, err = 0;
4143
4144 first_block = (offset + sb->s_blocksize - 1) >>
4145 EXT4_BLOCK_SIZE_BITS(sb);
4146 last_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4147
4148 first_block_offset = first_block << EXT4_BLOCK_SIZE_BITS(sb);
4149 last_block_offset = last_block << EXT4_BLOCK_SIZE_BITS(sb);
4150
4151 first_page = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
4152 last_page = (offset + length) >> PAGE_CACHE_SHIFT;
4153
4154 first_page_offset = first_page << PAGE_CACHE_SHIFT;
4155 last_page_offset = last_page << PAGE_CACHE_SHIFT;
4156
4157 /*
4158 * Write out all dirty pages to avoid race conditions
4159 * Then release them.
4160 */
4161 if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
4162 err = filemap_write_and_wait_range(mapping,
4163 first_page_offset == 0 ? 0 : first_page_offset-1,
4164 last_page_offset);
4165
4166 if (err)
4167 return err;
4168 }
4169
4170 /* Now release the pages */
4171 if (last_page_offset > first_page_offset) {
4172 truncate_inode_pages_range(mapping, first_page_offset,
4173 last_page_offset-1);
4174 }
4175
4176 /* finish any pending end_io work */
4177 ext4_flush_completed_IO(inode);
4178
4179 credits = ext4_writepage_trans_blocks(inode);
4180 handle = ext4_journal_start(inode, credits);
4181 if (IS_ERR(handle))
4182 return PTR_ERR(handle);
4183
4184 err = ext4_orphan_add(handle, inode);
4185 if (err)
4186 goto out;
4187
4188 /*
4189 * Now we need to zero out the un block aligned data.
4190 * If the file is smaller than a block, just
4191 * zero out the middle
4192 */
4193 if (first_block > last_block)
4194 ext4_block_zero_page_range(handle, mapping, offset, length);
4195 else {
4196 /* zero out the head of the hole before the first block */
4197 block_len = first_block_offset - offset;
4198 if (block_len > 0)
4199 ext4_block_zero_page_range(handle, mapping,
4200 offset, block_len);
4201
4202 /* zero out the tail of the hole after the last block */
4203 block_len = offset + length - last_block_offset;
4204 if (block_len > 0) {
4205 ext4_block_zero_page_range(handle, mapping,
4206 last_block_offset, block_len);
4207 }
4208 }
4209
4210 /* If there are no blocks to remove, return now */
4211 if (first_block >= last_block)
4212 goto out;
4213
4214 down_write(&EXT4_I(inode)->i_data_sem);
4215 ext4_ext_invalidate_cache(inode);
4216 ext4_discard_preallocations(inode);
4217
4218 /*
4219 * Loop over all the blocks and identify blocks
4220 * that need to be punched out
4221 */
4222 iblock = first_block;
4223 blocks_released = 0;
4224 while (iblock < last_block) {
4225 max_blocks = last_block - iblock;
4226 num_blocks = 1;
4227 memset(&map, 0, sizeof(map));
4228 map.m_lblk = iblock;
4229 map.m_len = max_blocks;
4230 ret = ext4_ext_map_blocks(handle, inode, &map,
4231 EXT4_GET_BLOCKS_PUNCH_OUT_EXT);
4232
4233 if (ret > 0) {
4234 blocks_released += ret;
4235 num_blocks = ret;
4236 } else if (ret == 0) {
4237 /*
4238 * If map blocks could not find the block,
4239 * then it is in a hole. If the hole was
4240 * not already cached, then map blocks should
4241 * put it in the cache. So we can get the hole
4242 * out of the cache
4243 */
4244 memset(&cache_ex, 0, sizeof(cache_ex));
4245 if ((ext4_ext_check_cache(inode, iblock, &cache_ex)) &&
4246 !cache_ex.ec_start) {
4247
4248 /* The hole is cached */
4249 num_blocks = cache_ex.ec_block +
4250 cache_ex.ec_len - iblock;
4251
4252 } else {
4253 /* The block could not be identified */
4254 err = -EIO;
4255 break;
4256 }
4257 } else {
4258 /* Map blocks error */
4259 err = ret;
4260 break;
4261 }
4262
4263 if (num_blocks == 0) {
4264 /* This condition should never happen */
4265 ext_debug("Block lookup failed");
4266 err = -EIO;
4267 break;
4268 }
4269
4270 iblock += num_blocks;
4271 }
4272
4273 if (blocks_released > 0) {
4274 ext4_ext_invalidate_cache(inode);
4275 ext4_discard_preallocations(inode);
4276 }
4277
4278 if (IS_SYNC(inode))
4279 ext4_handle_sync(handle);
4280
4281 up_write(&EXT4_I(inode)->i_data_sem);
4282
4283out:
4284 ext4_orphan_del(handle, inode);
4285 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4286 ext4_mark_inode_dirty(handle, inode);
4287 ext4_journal_stop(handle);
4288 return err;
4289}
6873fa0d
ES
4290int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4291 __u64 start, __u64 len)
4292{
4293 ext4_lblk_t start_blk;
6873fa0d
ES
4294 int error = 0;
4295
4296 /* fallback to generic here if not in extents fmt */
12e9b892 4297 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
6873fa0d
ES
4298 return generic_block_fiemap(inode, fieinfo, start, len,
4299 ext4_get_block);
4300
4301 if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS))
4302 return -EBADR;
4303
4304 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
4305 error = ext4_xattr_fiemap(inode, fieinfo);
4306 } else {
aca92ff6
LM
4307 ext4_lblk_t len_blks;
4308 __u64 last_blk;
4309
6873fa0d 4310 start_blk = start >> inode->i_sb->s_blocksize_bits;
aca92ff6 4311 last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits;
f17722f9
LC
4312 if (last_blk >= EXT_MAX_BLOCKS)
4313 last_blk = EXT_MAX_BLOCKS-1;
aca92ff6 4314 len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1;
6873fa0d
ES
4315
4316 /*
4317 * Walk the extent tree gathering extent information.
4318 * ext4_ext_fiemap_cb will push extents back to user.
4319 */
6873fa0d
ES
4320 error = ext4_ext_walk_space(inode, start_blk, len_blks,
4321 ext4_ext_fiemap_cb, fieinfo);
6873fa0d
ES
4322 }
4323
4324 return error;
4325}