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