blob: a40be59ddce6e637d3f384b333814fb8b97a6942 [file] [log] [blame]
Alex Tomasa86c6182006-10-11 01:21:03 -07001/*
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
Alex Tomasa86c6182006-10-11 01:21:03 -070032#include <linux/fs.h>
33#include <linux/time.h>
Mingming Caocd02ff02007-10-16 18:38:25 -040034#include <linux/jbd2.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070035#include <linux/highuid.h>
36#include <linux/pagemap.h>
37#include <linux/quotaops.h>
38#include <linux/string.h>
39#include <linux/slab.h>
Amit Aroraa2df2a62007-07-17 21:42:41 -040040#include <linux/falloc.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070041#include <asm/uaccess.h>
Eric Sandeen6873fa02008-10-07 00:46:36 -040042#include <linux/fiemap.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040043#include "ext4_jbd2.h"
Theodore Ts'o4a092d72012-11-28 13:03:30 -050044#include "ext4_extents.h"
Tao Maf19d5872012-12-10 14:05:51 -050045#include "xattr.h"
Alex Tomasa86c6182006-10-11 01:21:03 -070046
Jiaying Zhang0562e0b2011-03-21 21:38:05 -040047#include <trace/events/ext4.h>
48
Lukas Czerner5f95d212012-03-19 23:03:19 -040049/*
50 * used by extent splitting.
51 */
52#define EXT4_EXT_MAY_ZEROOUT 0x1 /* safe to zeroout if split fails \
53 due to ENOSPC */
54#define EXT4_EXT_MARK_UNINIT1 0x2 /* mark first half uninitialized */
55#define EXT4_EXT_MARK_UNINIT2 0x4 /* mark second half uninitialized */
56
Dmitry Monakhovdee1f972012-10-10 01:04:58 -040057#define EXT4_EXT_DATA_VALID1 0x8 /* first half contains valid data */
58#define EXT4_EXT_DATA_VALID2 0x10 /* second half contains valid data */
59
Darrick J. Wong7ac59902012-04-29 18:37:10 -040060static __le32 ext4_extent_block_csum(struct inode *inode,
61 struct ext4_extent_header *eh)
62{
63 struct ext4_inode_info *ei = EXT4_I(inode);
64 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
65 __u32 csum;
66
67 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)eh,
68 EXT4_EXTENT_TAIL_OFFSET(eh));
69 return cpu_to_le32(csum);
70}
71
72static int ext4_extent_block_csum_verify(struct inode *inode,
73 struct ext4_extent_header *eh)
74{
75 struct ext4_extent_tail *et;
76
77 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
78 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
79 return 1;
80
81 et = find_ext4_extent_tail(eh);
82 if (et->et_checksum != ext4_extent_block_csum(inode, eh))
83 return 0;
84 return 1;
85}
86
87static void ext4_extent_block_csum_set(struct inode *inode,
88 struct ext4_extent_header *eh)
89{
90 struct ext4_extent_tail *et;
91
92 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
93 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
94 return;
95
96 et = find_ext4_extent_tail(eh);
97 et->et_checksum = ext4_extent_block_csum(inode, eh);
98}
99
Allison Hendersond583fb82011-05-25 07:41:43 -0400100static int ext4_split_extent(handle_t *handle,
101 struct inode *inode,
102 struct ext4_ext_path *path,
103 struct ext4_map_blocks *map,
104 int split_flag,
105 int flags);
106
Lukas Czerner5f95d212012-03-19 23:03:19 -0400107static int ext4_split_extent_at(handle_t *handle,
108 struct inode *inode,
109 struct ext4_ext_path *path,
110 ext4_lblk_t split,
111 int split_flag,
112 int flags);
113
Lukas Czerner91dd8c12012-11-28 12:32:26 -0500114static int ext4_find_delayed_extent(struct inode *inode,
Zheng Liu69eb33d2013-02-18 00:31:07 -0500115 struct extent_status *newes);
Lukas Czerner91dd8c12012-11-28 12:32:26 -0500116
Jan Kara487caee2009-08-17 22:17:20 -0400117static int ext4_ext_truncate_extend_restart(handle_t *handle,
118 struct inode *inode,
119 int needed)
Alex Tomasa86c6182006-10-11 01:21:03 -0700120{
121 int err;
122
Frank Mayhar03901312009-01-07 00:06:22 -0500123 if (!ext4_handle_valid(handle))
124 return 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700125 if (handle->h_buffer_credits > needed)
Shen Feng9102e4f2008-07-11 19:27:31 -0400126 return 0;
127 err = ext4_journal_extend(handle, needed);
Theodore Ts'o0123c932008-08-01 20:57:54 -0400128 if (err <= 0)
Shen Feng9102e4f2008-07-11 19:27:31 -0400129 return err;
Jan Kara487caee2009-08-17 22:17:20 -0400130 err = ext4_truncate_restart_trans(handle, inode, needed);
Dmitry Monakhov0617b832010-05-17 01:00:00 -0400131 if (err == 0)
132 err = -EAGAIN;
Jan Kara487caee2009-08-17 22:17:20 -0400133
134 return err;
Alex Tomasa86c6182006-10-11 01:21:03 -0700135}
136
137/*
138 * could return:
139 * - EROFS
140 * - ENOMEM
141 */
142static int ext4_ext_get_access(handle_t *handle, struct inode *inode,
143 struct ext4_ext_path *path)
144{
145 if (path->p_bh) {
146 /* path points to block */
147 return ext4_journal_get_write_access(handle, path->p_bh);
148 }
149 /* path points to leaf/index in inode body */
150 /* we use in-core data, no need to protect them */
151 return 0;
152}
153
154/*
155 * could return:
156 * - EROFS
157 * - ENOMEM
158 * - EIO
159 */
Darrick J. Wong26564972013-04-19 14:04:12 -0400160int __ext4_ext_dirty(const char *where, unsigned int line, handle_t *handle,
161 struct inode *inode, struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700162{
163 int err;
164 if (path->p_bh) {
Darrick J. Wong7ac59902012-04-29 18:37:10 -0400165 ext4_extent_block_csum_set(inode, ext_block_hdr(path->p_bh));
Alex Tomasa86c6182006-10-11 01:21:03 -0700166 /* path points to block */
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -0400167 err = __ext4_handle_dirty_metadata(where, line, handle,
168 inode, path->p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700169 } else {
170 /* path points to leaf/index in inode body */
171 err = ext4_mark_inode_dirty(handle, inode);
172 }
173 return err;
174}
175
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700176static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700177 struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500178 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700179{
Alex Tomasa86c6182006-10-11 01:21:03 -0700180 if (path) {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400181 int depth = path->p_depth;
Alex Tomasa86c6182006-10-11 01:21:03 -0700182 struct ext4_extent *ex;
Alex Tomasa86c6182006-10-11 01:21:03 -0700183
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500184 /*
185 * Try to predict block placement assuming that we are
186 * filling in a file which will eventually be
187 * non-sparse --- i.e., in the case of libbfd writing
188 * an ELF object sections out-of-order but in a way
189 * the eventually results in a contiguous object or
190 * executable file, or some database extending a table
191 * space file. However, this is actually somewhat
192 * non-ideal if we are writing a sparse file such as
193 * qemu or KVM writing a raw image file that is going
194 * to stay fairly sparse, since it will end up
195 * fragmenting the file system's free space. Maybe we
196 * should have some hueristics or some way to allow
197 * userspace to pass a hint to file system,
Tao Mab8d65682011-01-21 23:21:31 +0800198 * especially if the latter case turns out to be
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500199 * common.
200 */
Avantika Mathur7e028972006-12-06 20:41:33 -0800201 ex = path[depth].p_ext;
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500202 if (ex) {
203 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex);
204 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block);
205
206 if (block > ext_block)
207 return ext_pblk + (block - ext_block);
208 else
209 return ext_pblk - (ext_block - block);
210 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700211
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700212 /* it looks like index is empty;
213 * try to find starting block from index itself */
Alex Tomasa86c6182006-10-11 01:21:03 -0700214 if (path[depth].p_bh)
215 return path[depth].p_bh->b_blocknr;
216 }
217
218 /* OK. use inode's group */
Eric Sandeenf86186b2011-06-28 10:01:31 -0400219 return ext4_inode_to_goal_block(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -0700220}
221
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400222/*
223 * Allocation for a meta data block
224 */
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700225static ext4_fsblk_t
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400226ext4_ext_new_meta_block(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700227 struct ext4_ext_path *path,
Allison Henderson55f020d2011-05-25 07:41:26 -0400228 struct ext4_extent *ex, int *err, unsigned int flags)
Alex Tomasa86c6182006-10-11 01:21:03 -0700229{
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700230 ext4_fsblk_t goal, newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700231
232 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block));
Allison Henderson55f020d2011-05-25 07:41:26 -0400233 newblock = ext4_new_meta_blocks(handle, inode, goal, flags,
234 NULL, err);
Alex Tomasa86c6182006-10-11 01:21:03 -0700235 return newblock;
236}
237
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400238static inline int ext4_ext_space_block(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700239{
240 int size;
241
242 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
243 / sizeof(struct ext4_extent);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100244#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400245 if (!check && size > 6)
246 size = 6;
Alex Tomasa86c6182006-10-11 01:21:03 -0700247#endif
248 return size;
249}
250
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400251static inline int ext4_ext_space_block_idx(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700252{
253 int size;
254
255 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
256 / sizeof(struct ext4_extent_idx);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100257#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400258 if (!check && size > 5)
259 size = 5;
Alex Tomasa86c6182006-10-11 01:21:03 -0700260#endif
261 return size;
262}
263
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400264static inline int ext4_ext_space_root(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700265{
266 int size;
267
268 size = sizeof(EXT4_I(inode)->i_data);
269 size -= sizeof(struct ext4_extent_header);
270 size /= sizeof(struct ext4_extent);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100271#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400272 if (!check && size > 3)
273 size = 3;
Alex Tomasa86c6182006-10-11 01:21:03 -0700274#endif
275 return size;
276}
277
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400278static inline int ext4_ext_space_root_idx(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700279{
280 int size;
281
282 size = sizeof(EXT4_I(inode)->i_data);
283 size -= sizeof(struct ext4_extent_header);
284 size /= sizeof(struct ext4_extent_idx);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100285#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400286 if (!check && size > 4)
287 size = 4;
Alex Tomasa86c6182006-10-11 01:21:03 -0700288#endif
289 return size;
290}
291
Mingming Caod2a17632008-07-14 17:52:37 -0400292/*
293 * Calculate the number of metadata blocks needed
294 * to allocate @blocks
295 * Worse case is one block per extent
296 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -0500297int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -0400298{
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500299 struct ext4_inode_info *ei = EXT4_I(inode);
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400300 int idxs;
Mingming Caod2a17632008-07-14 17:52:37 -0400301
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500302 idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
303 / sizeof(struct ext4_extent_idx));
Mingming Caod2a17632008-07-14 17:52:37 -0400304
305 /*
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500306 * If the new delayed allocation block is contiguous with the
307 * previous da block, it can share index blocks with the
308 * previous block, so we only need to allocate a new index
309 * block every idxs leaf blocks. At ldxs**2 blocks, we need
310 * an additional index block, and at ldxs**3 blocks, yet
311 * another index blocks.
Mingming Caod2a17632008-07-14 17:52:37 -0400312 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500313 if (ei->i_da_metadata_calc_len &&
314 ei->i_da_metadata_calc_last_lblock+1 == lblock) {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400315 int num = 0;
316
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500317 if ((ei->i_da_metadata_calc_len % idxs) == 0)
318 num++;
319 if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0)
320 num++;
321 if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) {
322 num++;
323 ei->i_da_metadata_calc_len = 0;
324 } else
325 ei->i_da_metadata_calc_len++;
326 ei->i_da_metadata_calc_last_lblock++;
327 return num;
328 }
Mingming Caod2a17632008-07-14 17:52:37 -0400329
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500330 /*
331 * In the worst case we need a new set of index blocks at
332 * every level of the inode's extent tree.
333 */
334 ei->i_da_metadata_calc_len = 1;
335 ei->i_da_metadata_calc_last_lblock = lblock;
336 return ext_depth(inode) + 1;
Mingming Caod2a17632008-07-14 17:52:37 -0400337}
338
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400339static int
340ext4_ext_max_entries(struct inode *inode, int depth)
341{
342 int max;
343
344 if (depth == ext_depth(inode)) {
345 if (depth == 0)
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400346 max = ext4_ext_space_root(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400347 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400348 max = ext4_ext_space_root_idx(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400349 } else {
350 if (depth == 0)
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400351 max = ext4_ext_space_block(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400352 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400353 max = ext4_ext_space_block_idx(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400354 }
355
356 return max;
357}
358
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400359static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext)
360{
Theodore Ts'obf89d162010-10-27 21:30:14 -0400361 ext4_fsblk_t block = ext4_ext_pblock(ext);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400362 int len = ext4_ext_get_actual_len(ext);
Theodore Ts'oe84a26c2009-04-22 20:52:25 -0400363
Theodore Ts'o31d4f3a2012-03-11 23:30:16 -0400364 if (len == 0)
365 return 0;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400366 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400367}
368
369static int ext4_valid_extent_idx(struct inode *inode,
370 struct ext4_extent_idx *ext_idx)
371{
Theodore Ts'obf89d162010-10-27 21:30:14 -0400372 ext4_fsblk_t block = ext4_idx_pblock(ext_idx);
Theodore Ts'oe84a26c2009-04-22 20:52:25 -0400373
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400374 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400375}
376
377static int ext4_valid_extent_entries(struct inode *inode,
378 struct ext4_extent_header *eh,
379 int depth)
380{
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400381 unsigned short entries;
382 if (eh->eh_entries == 0)
383 return 1;
384
385 entries = le16_to_cpu(eh->eh_entries);
386
387 if (depth == 0) {
388 /* leaf entries */
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400389 struct ext4_extent *ext = EXT_FIRST_EXTENT(eh);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400390 while (entries) {
391 if (!ext4_valid_extent(inode, ext))
392 return 0;
393 ext++;
394 entries--;
395 }
396 } else {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400397 struct ext4_extent_idx *ext_idx = EXT_FIRST_INDEX(eh);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400398 while (entries) {
399 if (!ext4_valid_extent_idx(inode, ext_idx))
400 return 0;
401 ext_idx++;
402 entries--;
403 }
404 }
405 return 1;
406}
407
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400408static int __ext4_ext_check(const char *function, unsigned int line,
409 struct inode *inode, struct ext4_extent_header *eh,
410 int depth)
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400411{
412 const char *error_msg;
413 int max = 0;
414
415 if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) {
416 error_msg = "invalid magic";
417 goto corrupted;
418 }
419 if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) {
420 error_msg = "unexpected eh_depth";
421 goto corrupted;
422 }
423 if (unlikely(eh->eh_max == 0)) {
424 error_msg = "invalid eh_max";
425 goto corrupted;
426 }
427 max = ext4_ext_max_entries(inode, depth);
428 if (unlikely(le16_to_cpu(eh->eh_max) > max)) {
429 error_msg = "too large eh_max";
430 goto corrupted;
431 }
432 if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
433 error_msg = "invalid eh_entries";
434 goto corrupted;
435 }
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400436 if (!ext4_valid_extent_entries(inode, eh, depth)) {
437 error_msg = "invalid extent entries";
438 goto corrupted;
439 }
Darrick J. Wong7ac59902012-04-29 18:37:10 -0400440 /* Verify checksum on non-root extent tree nodes */
441 if (ext_depth(inode) != depth &&
442 !ext4_extent_block_csum_verify(inode, eh)) {
443 error_msg = "extent tree corrupted";
444 goto corrupted;
445 }
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400446 return 0;
447
448corrupted:
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400449 ext4_error_inode(inode, function, line, 0,
Theodore Ts'o24676da2010-05-16 21:00:00 -0400450 "bad header/extent: %s - magic %x, "
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400451 "entries %u, max %u(%u), depth %u(%u)",
Theodore Ts'o24676da2010-05-16 21:00:00 -0400452 error_msg, le16_to_cpu(eh->eh_magic),
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400453 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
454 max, le16_to_cpu(eh->eh_depth), depth);
455
456 return -EIO;
457}
458
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400459#define ext4_ext_check(inode, eh, depth) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400460 __ext4_ext_check(__func__, __LINE__, inode, eh, depth)
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400461
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400462int ext4_ext_check_inode(struct inode *inode)
463{
464 return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode));
465}
466
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400467static struct buffer_head *
468__read_extent_tree_block(const char *function, unsigned int line,
469 struct inode *inode, ext4_fsblk_t pblk, int depth)
Darrick J. Wongf8489122012-04-29 18:21:10 -0400470{
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400471 struct buffer_head *bh;
472 int err;
Darrick J. Wongf8489122012-04-29 18:21:10 -0400473
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400474 bh = sb_getblk(inode->i_sb, pblk);
475 if (unlikely(!bh))
476 return ERR_PTR(-ENOMEM);
477
478 if (!bh_uptodate_or_lock(bh)) {
479 trace_ext4_ext_load_extent(inode, pblk, _RET_IP_);
480 err = bh_submit_read(bh);
481 if (err < 0)
482 goto errout;
483 }
Darrick J. Wongf8489122012-04-29 18:21:10 -0400484 if (buffer_verified(bh))
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400485 return bh;
486 err = __ext4_ext_check(function, line, inode,
487 ext_block_hdr(bh), depth);
488 if (err)
489 goto errout;
Darrick J. Wongf8489122012-04-29 18:21:10 -0400490 set_buffer_verified(bh);
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400491 return bh;
492errout:
493 put_bh(bh);
494 return ERR_PTR(err);
495
Darrick J. Wongf8489122012-04-29 18:21:10 -0400496}
497
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400498#define read_extent_tree_block(inode, pblk, depth) \
499 __read_extent_tree_block(__func__, __LINE__, (inode), (pblk), (depth))
Darrick J. Wongf8489122012-04-29 18:21:10 -0400500
Alex Tomasa86c6182006-10-11 01:21:03 -0700501#ifdef EXT_DEBUG
502static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path)
503{
504 int k, l = path->p_depth;
505
506 ext_debug("path:");
507 for (k = 0; k <= l; k++, path++) {
508 if (path->p_idx) {
Mingming Cao2ae02102006-10-11 01:21:11 -0700509 ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400510 ext4_idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700511 } else if (path->p_ext) {
Mingming553f9002009-09-18 13:34:55 -0400512 ext_debug(" %d:[%d]%d:%llu ",
Alex Tomasa86c6182006-10-11 01:21:03 -0700513 le32_to_cpu(path->p_ext->ee_block),
Mingming553f9002009-09-18 13:34:55 -0400514 ext4_ext_is_uninitialized(path->p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400515 ext4_ext_get_actual_len(path->p_ext),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400516 ext4_ext_pblock(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700517 } else
518 ext_debug(" []");
519 }
520 ext_debug("\n");
521}
522
523static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path)
524{
525 int depth = ext_depth(inode);
526 struct ext4_extent_header *eh;
527 struct ext4_extent *ex;
528 int i;
529
530 if (!path)
531 return;
532
533 eh = path[depth].p_hdr;
534 ex = EXT_FIRST_EXTENT(eh);
535
Mingming553f9002009-09-18 13:34:55 -0400536 ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino);
537
Alex Tomasa86c6182006-10-11 01:21:03 -0700538 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) {
Mingming553f9002009-09-18 13:34:55 -0400539 ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block),
540 ext4_ext_is_uninitialized(ex),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400541 ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -0700542 }
543 ext_debug("\n");
544}
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400545
546static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path,
547 ext4_fsblk_t newblock, int level)
548{
549 int depth = ext_depth(inode);
550 struct ext4_extent *ex;
551
552 if (depth != level) {
553 struct ext4_extent_idx *idx;
554 idx = path[level].p_idx;
555 while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) {
556 ext_debug("%d: move %d:%llu in new index %llu\n", level,
557 le32_to_cpu(idx->ei_block),
558 ext4_idx_pblock(idx),
559 newblock);
560 idx++;
561 }
562
563 return;
564 }
565
566 ex = path[depth].p_ext;
567 while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) {
568 ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n",
569 le32_to_cpu(ex->ee_block),
570 ext4_ext_pblock(ex),
571 ext4_ext_is_uninitialized(ex),
572 ext4_ext_get_actual_len(ex),
573 newblock);
574 ex++;
575 }
576}
577
Alex Tomasa86c6182006-10-11 01:21:03 -0700578#else
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400579#define ext4_ext_show_path(inode, path)
580#define ext4_ext_show_leaf(inode, path)
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400581#define ext4_ext_show_move(inode, path, newblock, level)
Alex Tomasa86c6182006-10-11 01:21:03 -0700582#endif
583
Aneesh Kumar K.Vb35905c2008-02-25 16:54:37 -0500584void ext4_ext_drop_refs(struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700585{
586 int depth = path->p_depth;
587 int i;
588
589 for (i = 0; i <= depth; i++, path++)
590 if (path->p_bh) {
591 brelse(path->p_bh);
592 path->p_bh = NULL;
593 }
594}
595
596/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700597 * ext4_ext_binsearch_idx:
598 * binary search for the closest index of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400599 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700600 */
601static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500602ext4_ext_binsearch_idx(struct inode *inode,
603 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700604{
605 struct ext4_extent_header *eh = path->p_hdr;
606 struct ext4_extent_idx *r, *l, *m;
607
Alex Tomasa86c6182006-10-11 01:21:03 -0700608
Eric Sandeenbba90742008-01-28 23:58:27 -0500609 ext_debug("binsearch for %u(idx): ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700610
611 l = EXT_FIRST_INDEX(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400612 r = EXT_LAST_INDEX(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700613 while (l <= r) {
614 m = l + (r - l) / 2;
615 if (block < le32_to_cpu(m->ei_block))
616 r = m - 1;
617 else
618 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400619 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block),
620 m, le32_to_cpu(m->ei_block),
621 r, le32_to_cpu(r->ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700622 }
623
624 path->p_idx = l - 1;
Zheng Liu4a3c3a52012-05-28 17:55:16 -0400625 ext_debug(" -> %u->%lld ", le32_to_cpu(path->p_idx->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400626 ext4_idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700627
628#ifdef CHECK_BINSEARCH
629 {
630 struct ext4_extent_idx *chix, *ix;
631 int k;
632
633 chix = ix = EXT_FIRST_INDEX(eh);
634 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) {
635 if (k != 0 &&
636 le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) {
Theodore Ts'o47760042008-09-08 23:00:52 -0400637 printk(KERN_DEBUG "k=%d, ix=0x%p, "
638 "first=0x%p\n", k,
639 ix, EXT_FIRST_INDEX(eh));
640 printk(KERN_DEBUG "%u <= %u\n",
Alex Tomasa86c6182006-10-11 01:21:03 -0700641 le32_to_cpu(ix->ei_block),
642 le32_to_cpu(ix[-1].ei_block));
643 }
644 BUG_ON(k && le32_to_cpu(ix->ei_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400645 <= le32_to_cpu(ix[-1].ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700646 if (block < le32_to_cpu(ix->ei_block))
647 break;
648 chix = ix;
649 }
650 BUG_ON(chix != path->p_idx);
651 }
652#endif
653
654}
655
656/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700657 * ext4_ext_binsearch:
658 * binary search for closest extent of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400659 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700660 */
661static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500662ext4_ext_binsearch(struct inode *inode,
663 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700664{
665 struct ext4_extent_header *eh = path->p_hdr;
666 struct ext4_extent *r, *l, *m;
667
Alex Tomasa86c6182006-10-11 01:21:03 -0700668 if (eh->eh_entries == 0) {
669 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700670 * this leaf is empty:
671 * we get such a leaf in split/add case
Alex Tomasa86c6182006-10-11 01:21:03 -0700672 */
673 return;
674 }
675
Eric Sandeenbba90742008-01-28 23:58:27 -0500676 ext_debug("binsearch for %u: ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700677
678 l = EXT_FIRST_EXTENT(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400679 r = EXT_LAST_EXTENT(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700680
681 while (l <= r) {
682 m = l + (r - l) / 2;
683 if (block < le32_to_cpu(m->ee_block))
684 r = m - 1;
685 else
686 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400687 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block),
688 m, le32_to_cpu(m->ee_block),
689 r, le32_to_cpu(r->ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700690 }
691
692 path->p_ext = l - 1;
Mingming553f9002009-09-18 13:34:55 -0400693 ext_debug(" -> %d:%llu:[%d]%d ",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400694 le32_to_cpu(path->p_ext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400695 ext4_ext_pblock(path->p_ext),
Mingming553f9002009-09-18 13:34:55 -0400696 ext4_ext_is_uninitialized(path->p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400697 ext4_ext_get_actual_len(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700698
699#ifdef CHECK_BINSEARCH
700 {
701 struct ext4_extent *chex, *ex;
702 int k;
703
704 chex = ex = EXT_FIRST_EXTENT(eh);
705 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) {
706 BUG_ON(k && le32_to_cpu(ex->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400707 <= le32_to_cpu(ex[-1].ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700708 if (block < le32_to_cpu(ex->ee_block))
709 break;
710 chex = ex;
711 }
712 BUG_ON(chex != path->p_ext);
713 }
714#endif
715
716}
717
718int ext4_ext_tree_init(handle_t *handle, struct inode *inode)
719{
720 struct ext4_extent_header *eh;
721
722 eh = ext_inode_hdr(inode);
723 eh->eh_depth = 0;
724 eh->eh_entries = 0;
725 eh->eh_magic = EXT4_EXT_MAGIC;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400726 eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -0700727 ext4_mark_inode_dirty(handle, inode);
Alex Tomasa86c6182006-10-11 01:21:03 -0700728 return 0;
729}
730
731struct ext4_ext_path *
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500732ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block,
733 struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700734{
735 struct ext4_extent_header *eh;
736 struct buffer_head *bh;
737 short int depth, i, ppos = 0, alloc = 0;
Theodore Ts'o860d21e2013-01-12 16:19:36 -0500738 int ret;
Alex Tomasa86c6182006-10-11 01:21:03 -0700739
740 eh = ext_inode_hdr(inode);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400741 depth = ext_depth(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -0700742
743 /* account possible depth increase */
744 if (!path) {
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800745 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2),
Alex Tomasa86c6182006-10-11 01:21:03 -0700746 GFP_NOFS);
747 if (!path)
748 return ERR_PTR(-ENOMEM);
749 alloc = 1;
750 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700751 path[0].p_hdr = eh;
Shen Feng1973adc2008-07-11 19:27:31 -0400752 path[0].p_bh = NULL;
Alex Tomasa86c6182006-10-11 01:21:03 -0700753
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400754 i = depth;
Alex Tomasa86c6182006-10-11 01:21:03 -0700755 /* walk through the tree */
756 while (i) {
757 ext_debug("depth %d: num %d, max %d\n",
758 ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400759
Alex Tomasa86c6182006-10-11 01:21:03 -0700760 ext4_ext_binsearch_idx(inode, path + ppos, block);
Theodore Ts'obf89d162010-10-27 21:30:14 -0400761 path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx);
Alex Tomasa86c6182006-10-11 01:21:03 -0700762 path[ppos].p_depth = i;
763 path[ppos].p_ext = NULL;
764
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400765 bh = read_extent_tree_block(inode, path[ppos].p_block, --i);
766 if (IS_ERR(bh)) {
767 ret = PTR_ERR(bh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700768 goto err;
Theodore Ts'o860d21e2013-01-12 16:19:36 -0500769 }
Theodore Ts'o7d7ea892013-08-16 21:20:41 -0400770
Alex Tomasa86c6182006-10-11 01:21:03 -0700771 eh = ext_block_hdr(bh);
772 ppos++;
Frank Mayhar273df552010-03-02 11:46:09 -0500773 if (unlikely(ppos > depth)) {
774 put_bh(bh);
775 EXT4_ERROR_INODE(inode,
776 "ppos %d > depth %d", ppos, depth);
Theodore Ts'o860d21e2013-01-12 16:19:36 -0500777 ret = -EIO;
Frank Mayhar273df552010-03-02 11:46:09 -0500778 goto err;
779 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700780 path[ppos].p_bh = bh;
781 path[ppos].p_hdr = eh;
Alex Tomasa86c6182006-10-11 01:21:03 -0700782 }
783
784 path[ppos].p_depth = i;
Alex Tomasa86c6182006-10-11 01:21:03 -0700785 path[ppos].p_ext = NULL;
786 path[ppos].p_idx = NULL;
787
Alex Tomasa86c6182006-10-11 01:21:03 -0700788 /* find extent */
789 ext4_ext_binsearch(inode, path + ppos, block);
Shen Feng1973adc2008-07-11 19:27:31 -0400790 /* if not an empty leaf */
791 if (path[ppos].p_ext)
Theodore Ts'obf89d162010-10-27 21:30:14 -0400792 path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext);
Alex Tomasa86c6182006-10-11 01:21:03 -0700793
794 ext4_ext_show_path(inode, path);
795
796 return path;
797
798err:
799 ext4_ext_drop_refs(path);
800 if (alloc)
801 kfree(path);
Theodore Ts'o860d21e2013-01-12 16:19:36 -0500802 return ERR_PTR(ret);
Alex Tomasa86c6182006-10-11 01:21:03 -0700803}
804
805/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700806 * ext4_ext_insert_index:
807 * insert new index [@logical;@ptr] into the block at @curp;
808 * check where to insert: before @curp or after @curp
Alex Tomasa86c6182006-10-11 01:21:03 -0700809 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400810static int ext4_ext_insert_index(handle_t *handle, struct inode *inode,
811 struct ext4_ext_path *curp,
812 int logical, ext4_fsblk_t ptr)
Alex Tomasa86c6182006-10-11 01:21:03 -0700813{
814 struct ext4_extent_idx *ix;
815 int len, err;
816
Avantika Mathur7e028972006-12-06 20:41:33 -0800817 err = ext4_ext_get_access(handle, inode, curp);
818 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700819 return err;
820
Frank Mayhar273df552010-03-02 11:46:09 -0500821 if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) {
822 EXT4_ERROR_INODE(inode,
823 "logical %d == ei_block %d!",
824 logical, le32_to_cpu(curp->p_idx->ei_block));
825 return -EIO;
826 }
Robin Dongd4620312011-07-17 23:43:42 -0400827
828 if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries)
829 >= le16_to_cpu(curp->p_hdr->eh_max))) {
830 EXT4_ERROR_INODE(inode,
831 "eh_entries %d >= eh_max %d!",
832 le16_to_cpu(curp->p_hdr->eh_entries),
833 le16_to_cpu(curp->p_hdr->eh_max));
834 return -EIO;
835 }
836
Alex Tomasa86c6182006-10-11 01:21:03 -0700837 if (logical > le32_to_cpu(curp->p_idx->ei_block)) {
838 /* insert after */
Eric Gouriou80e675f2011-10-27 11:52:18 -0400839 ext_debug("insert new index %d after: %llu\n", logical, ptr);
Alex Tomasa86c6182006-10-11 01:21:03 -0700840 ix = curp->p_idx + 1;
841 } else {
842 /* insert before */
Eric Gouriou80e675f2011-10-27 11:52:18 -0400843 ext_debug("insert new index %d before: %llu\n", logical, ptr);
Alex Tomasa86c6182006-10-11 01:21:03 -0700844 ix = curp->p_idx;
845 }
846
Eric Gouriou80e675f2011-10-27 11:52:18 -0400847 len = EXT_LAST_INDEX(curp->p_hdr) - ix + 1;
848 BUG_ON(len < 0);
849 if (len > 0) {
850 ext_debug("insert new index %d: "
851 "move %d indices from 0x%p to 0x%p\n",
852 logical, len, ix, ix + 1);
853 memmove(ix + 1, ix, len * sizeof(struct ext4_extent_idx));
854 }
855
Tao Maf472e022011-10-17 10:13:46 -0400856 if (unlikely(ix > EXT_MAX_INDEX(curp->p_hdr))) {
857 EXT4_ERROR_INODE(inode, "ix > EXT_MAX_INDEX!");
858 return -EIO;
859 }
860
Alex Tomasa86c6182006-10-11 01:21:03 -0700861 ix->ei_block = cpu_to_le32(logical);
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700862 ext4_idx_store_pblock(ix, ptr);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400863 le16_add_cpu(&curp->p_hdr->eh_entries, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -0700864
Frank Mayhar273df552010-03-02 11:46:09 -0500865 if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) {
866 EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!");
867 return -EIO;
868 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700869
870 err = ext4_ext_dirty(handle, inode, curp);
871 ext4_std_error(inode->i_sb, err);
872
873 return err;
874}
875
876/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700877 * ext4_ext_split:
878 * inserts new subtree into the path, using free index entry
879 * at depth @at:
880 * - allocates all needed blocks (new leaf and all intermediate index blocks)
881 * - makes decision where to split
882 * - moves remaining extents and index entries (right to the split point)
883 * into the newly allocated blocks
884 * - initializes subtree
Alex Tomasa86c6182006-10-11 01:21:03 -0700885 */
886static int ext4_ext_split(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -0400887 unsigned int flags,
888 struct ext4_ext_path *path,
889 struct ext4_extent *newext, int at)
Alex Tomasa86c6182006-10-11 01:21:03 -0700890{
891 struct buffer_head *bh = NULL;
892 int depth = ext_depth(inode);
893 struct ext4_extent_header *neh;
894 struct ext4_extent_idx *fidx;
Alex Tomasa86c6182006-10-11 01:21:03 -0700895 int i = at, k, m, a;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700896 ext4_fsblk_t newblock, oldblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700897 __le32 border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700898 ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */
Alex Tomasa86c6182006-10-11 01:21:03 -0700899 int err = 0;
900
901 /* make decision: where to split? */
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700902 /* FIXME: now decision is simplest: at current extent */
Alex Tomasa86c6182006-10-11 01:21:03 -0700903
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700904 /* if current leaf will be split, then we should use
Alex Tomasa86c6182006-10-11 01:21:03 -0700905 * border from split point */
Frank Mayhar273df552010-03-02 11:46:09 -0500906 if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) {
907 EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!");
908 return -EIO;
909 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700910 if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) {
911 border = path[depth].p_ext[1].ee_block;
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700912 ext_debug("leaf will be split."
Alex Tomasa86c6182006-10-11 01:21:03 -0700913 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400914 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700915 } else {
916 border = newext->ee_block;
917 ext_debug("leaf will be added."
918 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400919 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700920 }
921
922 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700923 * If error occurs, then we break processing
924 * and mark filesystem read-only. index won't
Alex Tomasa86c6182006-10-11 01:21:03 -0700925 * be inserted and tree will be in consistent
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700926 * state. Next mount will repair buffers too.
Alex Tomasa86c6182006-10-11 01:21:03 -0700927 */
928
929 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700930 * Get array to track all allocated blocks.
931 * We need this to handle errors and free blocks
932 * upon them.
Alex Tomasa86c6182006-10-11 01:21:03 -0700933 */
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800934 ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS);
Alex Tomasa86c6182006-10-11 01:21:03 -0700935 if (!ablocks)
936 return -ENOMEM;
Alex Tomasa86c6182006-10-11 01:21:03 -0700937
938 /* allocate all needed blocks */
939 ext_debug("allocate %d blocks for indexes/leaf\n", depth - at);
940 for (a = 0; a < depth - at; a++) {
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400941 newblock = ext4_ext_new_meta_block(handle, inode, path,
Allison Henderson55f020d2011-05-25 07:41:26 -0400942 newext, &err, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -0700943 if (newblock == 0)
944 goto cleanup;
945 ablocks[a] = newblock;
946 }
947
948 /* initialize new leaf */
949 newblock = ablocks[--a];
Frank Mayhar273df552010-03-02 11:46:09 -0500950 if (unlikely(newblock == 0)) {
951 EXT4_ERROR_INODE(inode, "newblock == 0!");
952 err = -EIO;
953 goto cleanup;
954 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700955 bh = sb_getblk(inode->i_sb, newblock);
Wang Shilongaebf0242013-01-12 16:28:47 -0500956 if (unlikely(!bh)) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -0500957 err = -ENOMEM;
Alex Tomasa86c6182006-10-11 01:21:03 -0700958 goto cleanup;
959 }
960 lock_buffer(bh);
961
Avantika Mathur7e028972006-12-06 20:41:33 -0800962 err = ext4_journal_get_create_access(handle, bh);
963 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700964 goto cleanup;
965
966 neh = ext_block_hdr(bh);
967 neh->eh_entries = 0;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400968 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -0700969 neh->eh_magic = EXT4_EXT_MAGIC;
970 neh->eh_depth = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700971
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700972 /* move remainder of path[depth] to the new leaf */
Frank Mayhar273df552010-03-02 11:46:09 -0500973 if (unlikely(path[depth].p_hdr->eh_entries !=
974 path[depth].p_hdr->eh_max)) {
975 EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!",
976 path[depth].p_hdr->eh_entries,
977 path[depth].p_hdr->eh_max);
978 err = -EIO;
979 goto cleanup;
980 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700981 /* start copy from next extent */
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400982 m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++;
983 ext4_ext_show_move(inode, path, newblock, depth);
Alex Tomasa86c6182006-10-11 01:21:03 -0700984 if (m) {
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400985 struct ext4_extent *ex;
986 ex = EXT_FIRST_EXTENT(neh);
987 memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400988 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -0700989 }
990
Darrick J. Wong7ac59902012-04-29 18:37:10 -0400991 ext4_extent_block_csum_set(inode, neh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700992 set_buffer_uptodate(bh);
993 unlock_buffer(bh);
994
Frank Mayhar03901312009-01-07 00:06:22 -0500995 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -0800996 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700997 goto cleanup;
998 brelse(bh);
999 bh = NULL;
1000
1001 /* correct old leaf */
1002 if (m) {
Avantika Mathur7e028972006-12-06 20:41:33 -08001003 err = ext4_ext_get_access(handle, inode, path + depth);
1004 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001005 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -04001006 le16_add_cpu(&path[depth].p_hdr->eh_entries, -m);
Avantika Mathur7e028972006-12-06 20:41:33 -08001007 err = ext4_ext_dirty(handle, inode, path + depth);
1008 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001009 goto cleanup;
1010
1011 }
1012
1013 /* create intermediate indexes */
1014 k = depth - at - 1;
Frank Mayhar273df552010-03-02 11:46:09 -05001015 if (unlikely(k < 0)) {
1016 EXT4_ERROR_INODE(inode, "k %d < 0!", k);
1017 err = -EIO;
1018 goto cleanup;
1019 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001020 if (k)
1021 ext_debug("create %d intermediate indices\n", k);
1022 /* insert new index into current index block */
1023 /* current depth stored in i var */
1024 i = depth - 1;
1025 while (k--) {
1026 oldblock = newblock;
1027 newblock = ablocks[--a];
Eric Sandeenbba90742008-01-28 23:58:27 -05001028 bh = sb_getblk(inode->i_sb, newblock);
Wang Shilongaebf0242013-01-12 16:28:47 -05001029 if (unlikely(!bh)) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -05001030 err = -ENOMEM;
Alex Tomasa86c6182006-10-11 01:21:03 -07001031 goto cleanup;
1032 }
1033 lock_buffer(bh);
1034
Avantika Mathur7e028972006-12-06 20:41:33 -08001035 err = ext4_journal_get_create_access(handle, bh);
1036 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001037 goto cleanup;
1038
1039 neh = ext_block_hdr(bh);
1040 neh->eh_entries = cpu_to_le16(1);
1041 neh->eh_magic = EXT4_EXT_MAGIC;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001042 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001043 neh->eh_depth = cpu_to_le16(depth - i);
1044 fidx = EXT_FIRST_INDEX(neh);
1045 fidx->ei_block = border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001046 ext4_idx_store_pblock(fidx, oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001047
Eric Sandeenbba90742008-01-28 23:58:27 -05001048 ext_debug("int.index at %d (block %llu): %u -> %llu\n",
1049 i, newblock, le32_to_cpu(border), oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001050
Yongqiang Yang1b16da72011-05-25 17:41:48 -04001051 /* move remainder of path[i] to the new index block */
Frank Mayhar273df552010-03-02 11:46:09 -05001052 if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) !=
1053 EXT_LAST_INDEX(path[i].p_hdr))) {
1054 EXT4_ERROR_INODE(inode,
1055 "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!",
1056 le32_to_cpu(path[i].p_ext->ee_block));
1057 err = -EIO;
1058 goto cleanup;
1059 }
Yongqiang Yang1b16da72011-05-25 17:41:48 -04001060 /* start copy indexes */
1061 m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++;
1062 ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx,
1063 EXT_MAX_INDEX(path[i].p_hdr));
1064 ext4_ext_show_move(inode, path, newblock, i);
Alex Tomasa86c6182006-10-11 01:21:03 -07001065 if (m) {
Yongqiang Yang1b16da72011-05-25 17:41:48 -04001066 memmove(++fidx, path[i].p_idx,
Alex Tomasa86c6182006-10-11 01:21:03 -07001067 sizeof(struct ext4_extent_idx) * m);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001068 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -07001069 }
Darrick J. Wong7ac59902012-04-29 18:37:10 -04001070 ext4_extent_block_csum_set(inode, neh);
Alex Tomasa86c6182006-10-11 01:21:03 -07001071 set_buffer_uptodate(bh);
1072 unlock_buffer(bh);
1073
Frank Mayhar03901312009-01-07 00:06:22 -05001074 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -08001075 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001076 goto cleanup;
1077 brelse(bh);
1078 bh = NULL;
1079
1080 /* correct old index */
1081 if (m) {
1082 err = ext4_ext_get_access(handle, inode, path + i);
1083 if (err)
1084 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -04001085 le16_add_cpu(&path[i].p_hdr->eh_entries, -m);
Alex Tomasa86c6182006-10-11 01:21:03 -07001086 err = ext4_ext_dirty(handle, inode, path + i);
1087 if (err)
1088 goto cleanup;
1089 }
1090
1091 i--;
1092 }
1093
1094 /* insert new index */
Alex Tomasa86c6182006-10-11 01:21:03 -07001095 err = ext4_ext_insert_index(handle, inode, path + at,
1096 le32_to_cpu(border), newblock);
1097
1098cleanup:
1099 if (bh) {
1100 if (buffer_locked(bh))
1101 unlock_buffer(bh);
1102 brelse(bh);
1103 }
1104
1105 if (err) {
1106 /* free all allocated blocks in error case */
1107 for (i = 0; i < depth; i++) {
1108 if (!ablocks[i])
1109 continue;
Peter Huewe7dc57612011-02-21 21:01:42 -05001110 ext4_free_blocks(handle, inode, NULL, ablocks[i], 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -05001111 EXT4_FREE_BLOCKS_METADATA);
Alex Tomasa86c6182006-10-11 01:21:03 -07001112 }
1113 }
1114 kfree(ablocks);
1115
1116 return err;
1117}
1118
1119/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001120 * ext4_ext_grow_indepth:
1121 * implements tree growing procedure:
1122 * - allocates new block
1123 * - moves top-level data (index block or leaf) into the new block
1124 * - initializes new top-level, creating index that points to the
1125 * just created block
Alex Tomasa86c6182006-10-11 01:21:03 -07001126 */
1127static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -04001128 unsigned int flags,
Allison Henderson55f020d2011-05-25 07:41:26 -04001129 struct ext4_extent *newext)
Alex Tomasa86c6182006-10-11 01:21:03 -07001130{
Alex Tomasa86c6182006-10-11 01:21:03 -07001131 struct ext4_extent_header *neh;
Alex Tomasa86c6182006-10-11 01:21:03 -07001132 struct buffer_head *bh;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001133 ext4_fsblk_t newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07001134 int err = 0;
1135
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001136 newblock = ext4_ext_new_meta_block(handle, inode, NULL,
Allison Henderson55f020d2011-05-25 07:41:26 -04001137 newext, &err, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07001138 if (newblock == 0)
1139 return err;
1140
1141 bh = sb_getblk(inode->i_sb, newblock);
Wang Shilongaebf0242013-01-12 16:28:47 -05001142 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05001143 return -ENOMEM;
Alex Tomasa86c6182006-10-11 01:21:03 -07001144 lock_buffer(bh);
1145
Avantika Mathur7e028972006-12-06 20:41:33 -08001146 err = ext4_journal_get_create_access(handle, bh);
1147 if (err) {
Alex Tomasa86c6182006-10-11 01:21:03 -07001148 unlock_buffer(bh);
1149 goto out;
1150 }
1151
1152 /* move top-level index/leaf into new block */
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001153 memmove(bh->b_data, EXT4_I(inode)->i_data,
1154 sizeof(EXT4_I(inode)->i_data));
Alex Tomasa86c6182006-10-11 01:21:03 -07001155
1156 /* set size of new block */
1157 neh = ext_block_hdr(bh);
1158 /* old root could have indexes or leaves
1159 * so calculate e_max right way */
1160 if (ext_depth(inode))
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001161 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001162 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001163 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001164 neh->eh_magic = EXT4_EXT_MAGIC;
Darrick J. Wong7ac59902012-04-29 18:37:10 -04001165 ext4_extent_block_csum_set(inode, neh);
Alex Tomasa86c6182006-10-11 01:21:03 -07001166 set_buffer_uptodate(bh);
1167 unlock_buffer(bh);
1168
Frank Mayhar03901312009-01-07 00:06:22 -05001169 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -08001170 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001171 goto out;
1172
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001173 /* Update top-level index: num,max,pointer */
Alex Tomasa86c6182006-10-11 01:21:03 -07001174 neh = ext_inode_hdr(inode);
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001175 neh->eh_entries = cpu_to_le16(1);
1176 ext4_idx_store_pblock(EXT_FIRST_INDEX(neh), newblock);
1177 if (neh->eh_depth == 0) {
1178 /* Root extent block becomes index block */
1179 neh->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0));
1180 EXT_FIRST_INDEX(neh)->ei_block =
1181 EXT_FIRST_EXTENT(neh)->ee_block;
1182 }
Mingming Cao2ae02102006-10-11 01:21:11 -07001183 ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
Alex Tomasa86c6182006-10-11 01:21:03 -07001184 le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max),
Andi Kleen5a0790c2010-06-14 13:28:03 -04001185 le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001186 ext4_idx_pblock(EXT_FIRST_INDEX(neh)));
Alex Tomasa86c6182006-10-11 01:21:03 -07001187
Wei Yongjunba39ebb2012-09-27 09:37:53 -04001188 le16_add_cpu(&neh->eh_depth, 1);
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001189 ext4_mark_inode_dirty(handle, inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07001190out:
1191 brelse(bh);
1192
1193 return err;
1194}
1195
1196/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001197 * ext4_ext_create_new_leaf:
1198 * finds empty index and adds new leaf.
1199 * if no free index is found, then it requests in-depth growing.
Alex Tomasa86c6182006-10-11 01:21:03 -07001200 */
1201static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -04001202 unsigned int flags,
1203 struct ext4_ext_path *path,
1204 struct ext4_extent *newext)
Alex Tomasa86c6182006-10-11 01:21:03 -07001205{
1206 struct ext4_ext_path *curp;
1207 int depth, i, err = 0;
1208
1209repeat:
1210 i = depth = ext_depth(inode);
1211
1212 /* walk up to the tree and look for free index entry */
1213 curp = path + depth;
1214 while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) {
1215 i--;
1216 curp--;
1217 }
1218
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001219 /* we use already allocated block for index block,
1220 * so subsequent data blocks should be contiguous */
Alex Tomasa86c6182006-10-11 01:21:03 -07001221 if (EXT_HAS_FREE_INDEX(curp)) {
1222 /* if we found index with free entry, then use that
1223 * entry: create all needed subtree and add new leaf */
Allison Henderson55f020d2011-05-25 07:41:26 -04001224 err = ext4_ext_split(handle, inode, flags, path, newext, i);
Shen Feng787e0982008-07-11 19:27:31 -04001225 if (err)
1226 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07001227
1228 /* refill path */
1229 ext4_ext_drop_refs(path);
1230 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001231 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1232 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001233 if (IS_ERR(path))
1234 err = PTR_ERR(path);
1235 } else {
1236 /* tree is full, time to grow in depth */
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001237 err = ext4_ext_grow_indepth(handle, inode, flags, newext);
Alex Tomasa86c6182006-10-11 01:21:03 -07001238 if (err)
1239 goto out;
1240
1241 /* refill path */
1242 ext4_ext_drop_refs(path);
1243 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001244 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1245 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001246 if (IS_ERR(path)) {
1247 err = PTR_ERR(path);
1248 goto out;
1249 }
1250
1251 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001252 * only first (depth 0 -> 1) produces free space;
1253 * in all other cases we have to split the grown tree
Alex Tomasa86c6182006-10-11 01:21:03 -07001254 */
1255 depth = ext_depth(inode);
1256 if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001257 /* now we need to split */
Alex Tomasa86c6182006-10-11 01:21:03 -07001258 goto repeat;
1259 }
1260 }
1261
1262out:
1263 return err;
1264}
1265
1266/*
Alex Tomas1988b512008-01-28 23:58:27 -05001267 * search the closest allocated block to the left for *logical
1268 * and returns it at @logical + it's physical address at @phys
1269 * if *logical is the smallest allocated block, the function
1270 * returns 0 at @phys
1271 * return value contains 0 (success) or error code
1272 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001273static int ext4_ext_search_left(struct inode *inode,
1274 struct ext4_ext_path *path,
1275 ext4_lblk_t *logical, ext4_fsblk_t *phys)
Alex Tomas1988b512008-01-28 23:58:27 -05001276{
1277 struct ext4_extent_idx *ix;
1278 struct ext4_extent *ex;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001279 int depth, ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001280
Frank Mayhar273df552010-03-02 11:46:09 -05001281 if (unlikely(path == NULL)) {
1282 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1283 return -EIO;
1284 }
Alex Tomas1988b512008-01-28 23:58:27 -05001285 depth = path->p_depth;
1286 *phys = 0;
1287
1288 if (depth == 0 && path->p_ext == NULL)
1289 return 0;
1290
1291 /* usually extent in the path covers blocks smaller
1292 * then *logical, but it can be that extent is the
1293 * first one in the file */
1294
1295 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001296 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001297 if (*logical < le32_to_cpu(ex->ee_block)) {
Frank Mayhar273df552010-03-02 11:46:09 -05001298 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1299 EXT4_ERROR_INODE(inode,
1300 "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!",
1301 *logical, le32_to_cpu(ex->ee_block));
1302 return -EIO;
1303 }
Alex Tomas1988b512008-01-28 23:58:27 -05001304 while (--depth >= 0) {
1305 ix = path[depth].p_idx;
Frank Mayhar273df552010-03-02 11:46:09 -05001306 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1307 EXT4_ERROR_INODE(inode,
1308 "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!",
Tao Ma6ee3b212011-10-08 16:08:34 -04001309 ix != NULL ? le32_to_cpu(ix->ei_block) : 0,
Frank Mayhar273df552010-03-02 11:46:09 -05001310 EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ?
Tao Ma6ee3b212011-10-08 16:08:34 -04001311 le32_to_cpu(EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block) : 0,
Frank Mayhar273df552010-03-02 11:46:09 -05001312 depth);
1313 return -EIO;
1314 }
Alex Tomas1988b512008-01-28 23:58:27 -05001315 }
1316 return 0;
1317 }
1318
Frank Mayhar273df552010-03-02 11:46:09 -05001319 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1320 EXT4_ERROR_INODE(inode,
1321 "logical %d < ee_block %d + ee_len %d!",
1322 *logical, le32_to_cpu(ex->ee_block), ee_len);
1323 return -EIO;
1324 }
Alex Tomas1988b512008-01-28 23:58:27 -05001325
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001326 *logical = le32_to_cpu(ex->ee_block) + ee_len - 1;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001327 *phys = ext4_ext_pblock(ex) + ee_len - 1;
Alex Tomas1988b512008-01-28 23:58:27 -05001328 return 0;
1329}
1330
1331/*
1332 * search the closest allocated block to the right for *logical
1333 * and returns it at @logical + it's physical address at @phys
Tao Madf3ab172011-10-08 15:53:49 -04001334 * if *logical is the largest allocated block, the function
Alex Tomas1988b512008-01-28 23:58:27 -05001335 * returns 0 at @phys
1336 * return value contains 0 (success) or error code
1337 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001338static int ext4_ext_search_right(struct inode *inode,
1339 struct ext4_ext_path *path,
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001340 ext4_lblk_t *logical, ext4_fsblk_t *phys,
1341 struct ext4_extent **ret_ex)
Alex Tomas1988b512008-01-28 23:58:27 -05001342{
1343 struct buffer_head *bh = NULL;
1344 struct ext4_extent_header *eh;
1345 struct ext4_extent_idx *ix;
1346 struct ext4_extent *ex;
1347 ext4_fsblk_t block;
Eric Sandeen395a87b2009-03-10 18:18:47 -04001348 int depth; /* Note, NOT eh_depth; depth from top of tree */
1349 int ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001350
Frank Mayhar273df552010-03-02 11:46:09 -05001351 if (unlikely(path == NULL)) {
1352 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1353 return -EIO;
1354 }
Alex Tomas1988b512008-01-28 23:58:27 -05001355 depth = path->p_depth;
1356 *phys = 0;
1357
1358 if (depth == 0 && path->p_ext == NULL)
1359 return 0;
1360
1361 /* usually extent in the path covers blocks smaller
1362 * then *logical, but it can be that extent is the
1363 * first one in the file */
1364
1365 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001366 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001367 if (*logical < le32_to_cpu(ex->ee_block)) {
Frank Mayhar273df552010-03-02 11:46:09 -05001368 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1369 EXT4_ERROR_INODE(inode,
1370 "first_extent(path[%d].p_hdr) != ex",
1371 depth);
1372 return -EIO;
1373 }
Alex Tomas1988b512008-01-28 23:58:27 -05001374 while (--depth >= 0) {
1375 ix = path[depth].p_idx;
Frank Mayhar273df552010-03-02 11:46:09 -05001376 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1377 EXT4_ERROR_INODE(inode,
1378 "ix != EXT_FIRST_INDEX *logical %d!",
1379 *logical);
1380 return -EIO;
1381 }
Alex Tomas1988b512008-01-28 23:58:27 -05001382 }
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001383 goto found_extent;
Alex Tomas1988b512008-01-28 23:58:27 -05001384 }
1385
Frank Mayhar273df552010-03-02 11:46:09 -05001386 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1387 EXT4_ERROR_INODE(inode,
1388 "logical %d < ee_block %d + ee_len %d!",
1389 *logical, le32_to_cpu(ex->ee_block), ee_len);
1390 return -EIO;
1391 }
Alex Tomas1988b512008-01-28 23:58:27 -05001392
1393 if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) {
1394 /* next allocated block in this leaf */
1395 ex++;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001396 goto found_extent;
Alex Tomas1988b512008-01-28 23:58:27 -05001397 }
1398
1399 /* go up and search for index to the right */
1400 while (--depth >= 0) {
1401 ix = path[depth].p_idx;
1402 if (ix != EXT_LAST_INDEX(path[depth].p_hdr))
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001403 goto got_index;
Alex Tomas1988b512008-01-28 23:58:27 -05001404 }
1405
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001406 /* we've gone up to the root and found no index to the right */
1407 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001408
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001409got_index:
Alex Tomas1988b512008-01-28 23:58:27 -05001410 /* we've found index to the right, let's
1411 * follow it and find the closest allocated
1412 * block to the right */
1413 ix++;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001414 block = ext4_idx_pblock(ix);
Alex Tomas1988b512008-01-28 23:58:27 -05001415 while (++depth < path->p_depth) {
Eric Sandeen395a87b2009-03-10 18:18:47 -04001416 /* subtract from p_depth to get proper eh_depth */
Theodore Ts'o7d7ea892013-08-16 21:20:41 -04001417 bh = read_extent_tree_block(inode, block,
1418 path->p_depth - depth);
1419 if (IS_ERR(bh))
1420 return PTR_ERR(bh);
1421 eh = ext_block_hdr(bh);
Alex Tomas1988b512008-01-28 23:58:27 -05001422 ix = EXT_FIRST_INDEX(eh);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001423 block = ext4_idx_pblock(ix);
Alex Tomas1988b512008-01-28 23:58:27 -05001424 put_bh(bh);
1425 }
1426
Theodore Ts'o7d7ea892013-08-16 21:20:41 -04001427 bh = read_extent_tree_block(inode, block, path->p_depth - depth);
1428 if (IS_ERR(bh))
1429 return PTR_ERR(bh);
Alex Tomas1988b512008-01-28 23:58:27 -05001430 eh = ext_block_hdr(bh);
Alex Tomas1988b512008-01-28 23:58:27 -05001431 ex = EXT_FIRST_EXTENT(eh);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001432found_extent:
Alex Tomas1988b512008-01-28 23:58:27 -05001433 *logical = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001434 *phys = ext4_ext_pblock(ex);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001435 *ret_ex = ex;
1436 if (bh)
1437 put_bh(bh);
Alex Tomas1988b512008-01-28 23:58:27 -05001438 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001439}
1440
1441/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001442 * ext4_ext_next_allocated_block:
Lukas Czernerf17722f2011-06-06 00:05:17 -04001443 * returns allocated block in subsequent extent or EXT_MAX_BLOCKS.
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001444 * NOTE: it considers block number from index entry as
1445 * allocated block. Thus, index entries have to be consistent
1446 * with leaves.
Alex Tomasa86c6182006-10-11 01:21:03 -07001447 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001448static ext4_lblk_t
Alex Tomasa86c6182006-10-11 01:21:03 -07001449ext4_ext_next_allocated_block(struct ext4_ext_path *path)
1450{
1451 int depth;
1452
1453 BUG_ON(path == NULL);
1454 depth = path->p_depth;
1455
1456 if (depth == 0 && path->p_ext == NULL)
Lukas Czernerf17722f2011-06-06 00:05:17 -04001457 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001458
1459 while (depth >= 0) {
1460 if (depth == path->p_depth) {
1461 /* leaf */
Curt Wohlgemuth6f8ff532011-10-26 04:38:59 -04001462 if (path[depth].p_ext &&
1463 path[depth].p_ext !=
Alex Tomasa86c6182006-10-11 01:21:03 -07001464 EXT_LAST_EXTENT(path[depth].p_hdr))
1465 return le32_to_cpu(path[depth].p_ext[1].ee_block);
1466 } else {
1467 /* index */
1468 if (path[depth].p_idx !=
1469 EXT_LAST_INDEX(path[depth].p_hdr))
1470 return le32_to_cpu(path[depth].p_idx[1].ei_block);
1471 }
1472 depth--;
1473 }
1474
Lukas Czernerf17722f2011-06-06 00:05:17 -04001475 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001476}
1477
1478/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001479 * ext4_ext_next_leaf_block:
Lukas Czernerf17722f2011-06-06 00:05:17 -04001480 * returns first allocated block from next leaf or EXT_MAX_BLOCKS
Alex Tomasa86c6182006-10-11 01:21:03 -07001481 */
Robin Dong57187892011-07-23 21:49:07 -04001482static ext4_lblk_t ext4_ext_next_leaf_block(struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -07001483{
1484 int depth;
1485
1486 BUG_ON(path == NULL);
1487 depth = path->p_depth;
1488
1489 /* zero-tree has no leaf blocks at all */
1490 if (depth == 0)
Lukas Czernerf17722f2011-06-06 00:05:17 -04001491 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001492
1493 /* go to index block */
1494 depth--;
1495
1496 while (depth >= 0) {
1497 if (path[depth].p_idx !=
1498 EXT_LAST_INDEX(path[depth].p_hdr))
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001499 return (ext4_lblk_t)
1500 le32_to_cpu(path[depth].p_idx[1].ei_block);
Alex Tomasa86c6182006-10-11 01:21:03 -07001501 depth--;
1502 }
1503
Lukas Czernerf17722f2011-06-06 00:05:17 -04001504 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001505}
1506
1507/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001508 * ext4_ext_correct_indexes:
1509 * if leaf gets modified and modified extent is first in the leaf,
1510 * then we have to correct all indexes above.
Alex Tomasa86c6182006-10-11 01:21:03 -07001511 * TODO: do we need to correct tree in all cases?
1512 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001513static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -07001514 struct ext4_ext_path *path)
1515{
1516 struct ext4_extent_header *eh;
1517 int depth = ext_depth(inode);
1518 struct ext4_extent *ex;
1519 __le32 border;
1520 int k, err = 0;
1521
1522 eh = path[depth].p_hdr;
1523 ex = path[depth].p_ext;
Frank Mayhar273df552010-03-02 11:46:09 -05001524
1525 if (unlikely(ex == NULL || eh == NULL)) {
1526 EXT4_ERROR_INODE(inode,
1527 "ex %p == NULL or eh %p == NULL", ex, eh);
1528 return -EIO;
1529 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001530
1531 if (depth == 0) {
1532 /* there is no tree at all */
1533 return 0;
1534 }
1535
1536 if (ex != EXT_FIRST_EXTENT(eh)) {
1537 /* we correct tree if first leaf got modified only */
1538 return 0;
1539 }
1540
1541 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001542 * TODO: we need correction if border is smaller than current one
Alex Tomasa86c6182006-10-11 01:21:03 -07001543 */
1544 k = depth - 1;
1545 border = path[depth].p_ext->ee_block;
Avantika Mathur7e028972006-12-06 20:41:33 -08001546 err = ext4_ext_get_access(handle, inode, path + k);
1547 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001548 return err;
1549 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001550 err = ext4_ext_dirty(handle, inode, path + k);
1551 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001552 return err;
1553
1554 while (k--) {
1555 /* change all left-side indexes */
1556 if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr))
1557 break;
Avantika Mathur7e028972006-12-06 20:41:33 -08001558 err = ext4_ext_get_access(handle, inode, path + k);
1559 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001560 break;
1561 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001562 err = ext4_ext_dirty(handle, inode, path + k);
1563 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001564 break;
1565 }
1566
1567 return err;
1568}
1569
Akira Fujita748de672009-06-17 19:24:03 -04001570int
Alex Tomasa86c6182006-10-11 01:21:03 -07001571ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1,
1572 struct ext4_extent *ex2)
1573{
Amit Arora749269f2007-07-18 09:02:56 -04001574 unsigned short ext1_ee_len, ext2_ee_len, max_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001575
1576 /*
Dmitry Monakhovec22ba82013-03-04 00:36:06 -05001577 * Make sure that both extents are initialized. We don't merge
1578 * uninitialized extents so that we can be sure that end_io code has
1579 * the extent that was written properly split out and conversion to
1580 * initialized is trivial.
Amit Aroraa2df2a62007-07-17 21:42:41 -04001581 */
Dmitry Monakhovec22ba82013-03-04 00:36:06 -05001582 if (ext4_ext_is_uninitialized(ex1) || ext4_ext_is_uninitialized(ex2))
Amit Aroraa2df2a62007-07-17 21:42:41 -04001583 return 0;
1584
Amit Arora749269f2007-07-18 09:02:56 -04001585 if (ext4_ext_is_uninitialized(ex1))
1586 max_len = EXT_UNINIT_MAX_LEN;
1587 else
1588 max_len = EXT_INIT_MAX_LEN;
1589
Amit Aroraa2df2a62007-07-17 21:42:41 -04001590 ext1_ee_len = ext4_ext_get_actual_len(ex1);
1591 ext2_ee_len = ext4_ext_get_actual_len(ex2);
1592
1593 if (le32_to_cpu(ex1->ee_block) + ext1_ee_len !=
Andrew Morton63f57932006-10-11 01:21:24 -07001594 le32_to_cpu(ex2->ee_block))
Alex Tomasa86c6182006-10-11 01:21:03 -07001595 return 0;
1596
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001597 /*
1598 * To allow future support for preallocated extents to be added
1599 * as an RO_COMPAT feature, refuse to merge to extents if
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001600 * this can result in the top bit of ee_len being set.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001601 */
Amit Arora749269f2007-07-18 09:02:56 -04001602 if (ext1_ee_len + ext2_ee_len > max_len)
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001603 return 0;
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01001604#ifdef AGGRESSIVE_TEST
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001605 if (ext1_ee_len >= 4)
Alex Tomasa86c6182006-10-11 01:21:03 -07001606 return 0;
1607#endif
1608
Theodore Ts'obf89d162010-10-27 21:30:14 -04001609 if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2))
Alex Tomasa86c6182006-10-11 01:21:03 -07001610 return 1;
1611 return 0;
1612}
1613
1614/*
Amit Arora56055d32007-07-17 21:42:38 -04001615 * This function tries to merge the "ex" extent to the next extent in the tree.
1616 * It always tries to merge towards right. If you want to merge towards
1617 * left, pass "ex - 1" as argument instead of "ex".
1618 * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
1619 * 1 if they got merged.
1620 */
Yongqiang Yang197217a2011-05-03 11:45:29 -04001621static int ext4_ext_try_to_merge_right(struct inode *inode,
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001622 struct ext4_ext_path *path,
1623 struct ext4_extent *ex)
Amit Arora56055d32007-07-17 21:42:38 -04001624{
1625 struct ext4_extent_header *eh;
1626 unsigned int depth, len;
1627 int merge_done = 0;
1628 int uninitialized = 0;
1629
1630 depth = ext_depth(inode);
1631 BUG_ON(path[depth].p_hdr == NULL);
1632 eh = path[depth].p_hdr;
1633
1634 while (ex < EXT_LAST_EXTENT(eh)) {
1635 if (!ext4_can_extents_be_merged(inode, ex, ex + 1))
1636 break;
1637 /* merge with next extent! */
1638 if (ext4_ext_is_uninitialized(ex))
1639 uninitialized = 1;
1640 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1641 + ext4_ext_get_actual_len(ex + 1));
1642 if (uninitialized)
1643 ext4_ext_mark_uninitialized(ex);
1644
1645 if (ex + 1 < EXT_LAST_EXTENT(eh)) {
1646 len = (EXT_LAST_EXTENT(eh) - ex - 1)
1647 * sizeof(struct ext4_extent);
1648 memmove(ex + 1, ex + 2, len);
1649 }
Marcin Slusarze8546d02008-04-17 10:38:59 -04001650 le16_add_cpu(&eh->eh_entries, -1);
Amit Arora56055d32007-07-17 21:42:38 -04001651 merge_done = 1;
1652 WARN_ON(eh->eh_entries == 0);
1653 if (!eh->eh_entries)
Theodore Ts'o24676da2010-05-16 21:00:00 -04001654 EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!");
Amit Arora56055d32007-07-17 21:42:38 -04001655 }
1656
1657 return merge_done;
1658}
1659
1660/*
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001661 * This function does a very simple check to see if we can collapse
1662 * an extent tree with a single extent tree leaf block into the inode.
1663 */
1664static void ext4_ext_try_to_merge_up(handle_t *handle,
1665 struct inode *inode,
1666 struct ext4_ext_path *path)
1667{
1668 size_t s;
1669 unsigned max_root = ext4_ext_space_root(inode, 0);
1670 ext4_fsblk_t blk;
1671
1672 if ((path[0].p_depth != 1) ||
1673 (le16_to_cpu(path[0].p_hdr->eh_entries) != 1) ||
1674 (le16_to_cpu(path[1].p_hdr->eh_entries) > max_root))
1675 return;
1676
1677 /*
1678 * We need to modify the block allocation bitmap and the block
1679 * group descriptor to release the extent tree block. If we
1680 * can't get the journal credits, give up.
1681 */
1682 if (ext4_journal_extend(handle, 2))
1683 return;
1684
1685 /*
1686 * Copy the extent data up to the inode
1687 */
1688 blk = ext4_idx_pblock(path[0].p_idx);
1689 s = le16_to_cpu(path[1].p_hdr->eh_entries) *
1690 sizeof(struct ext4_extent_idx);
1691 s += sizeof(struct ext4_extent_header);
1692
1693 memcpy(path[0].p_hdr, path[1].p_hdr, s);
1694 path[0].p_depth = 0;
1695 path[0].p_ext = EXT_FIRST_EXTENT(path[0].p_hdr) +
1696 (path[1].p_ext - EXT_FIRST_EXTENT(path[1].p_hdr));
1697 path[0].p_hdr->eh_max = cpu_to_le16(max_root);
1698
1699 brelse(path[1].p_bh);
1700 ext4_free_blocks(handle, inode, NULL, blk, 1,
1701 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
1702}
1703
1704/*
Yongqiang Yang197217a2011-05-03 11:45:29 -04001705 * This function tries to merge the @ex extent to neighbours in the tree.
1706 * return 1 if merge left else 0.
1707 */
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001708static void ext4_ext_try_to_merge(handle_t *handle,
1709 struct inode *inode,
Yongqiang Yang197217a2011-05-03 11:45:29 -04001710 struct ext4_ext_path *path,
1711 struct ext4_extent *ex) {
1712 struct ext4_extent_header *eh;
1713 unsigned int depth;
1714 int merge_done = 0;
Yongqiang Yang197217a2011-05-03 11:45:29 -04001715
1716 depth = ext_depth(inode);
1717 BUG_ON(path[depth].p_hdr == NULL);
1718 eh = path[depth].p_hdr;
1719
1720 if (ex > EXT_FIRST_EXTENT(eh))
1721 merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1);
1722
1723 if (!merge_done)
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001724 (void) ext4_ext_try_to_merge_right(inode, path, ex);
Yongqiang Yang197217a2011-05-03 11:45:29 -04001725
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001726 ext4_ext_try_to_merge_up(handle, inode, path);
Yongqiang Yang197217a2011-05-03 11:45:29 -04001727}
1728
1729/*
Amit Arora25d14f92007-05-24 13:04:13 -04001730 * check if a portion of the "newext" extent overlaps with an
1731 * existing extent.
1732 *
1733 * If there is an overlap discovered, it updates the length of the newext
1734 * such that there will be no overlap, and then returns 1.
1735 * If there is no overlap found, it returns 0.
1736 */
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001737static unsigned int ext4_ext_check_overlap(struct ext4_sb_info *sbi,
1738 struct inode *inode,
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001739 struct ext4_extent *newext,
1740 struct ext4_ext_path *path)
Amit Arora25d14f92007-05-24 13:04:13 -04001741{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001742 ext4_lblk_t b1, b2;
Amit Arora25d14f92007-05-24 13:04:13 -04001743 unsigned int depth, len1;
1744 unsigned int ret = 0;
1745
1746 b1 = le32_to_cpu(newext->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04001747 len1 = ext4_ext_get_actual_len(newext);
Amit Arora25d14f92007-05-24 13:04:13 -04001748 depth = ext_depth(inode);
1749 if (!path[depth].p_ext)
1750 goto out;
1751 b2 = le32_to_cpu(path[depth].p_ext->ee_block);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001752 b2 &= ~(sbi->s_cluster_ratio - 1);
Amit Arora25d14f92007-05-24 13:04:13 -04001753
1754 /*
1755 * get the next allocated block if the extent in the path
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001756 * is before the requested block(s)
Amit Arora25d14f92007-05-24 13:04:13 -04001757 */
1758 if (b2 < b1) {
1759 b2 = ext4_ext_next_allocated_block(path);
Lukas Czernerf17722f2011-06-06 00:05:17 -04001760 if (b2 == EXT_MAX_BLOCKS)
Amit Arora25d14f92007-05-24 13:04:13 -04001761 goto out;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001762 b2 &= ~(sbi->s_cluster_ratio - 1);
Amit Arora25d14f92007-05-24 13:04:13 -04001763 }
1764
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001765 /* check for wrap through zero on extent logical start block*/
Amit Arora25d14f92007-05-24 13:04:13 -04001766 if (b1 + len1 < b1) {
Lukas Czernerf17722f2011-06-06 00:05:17 -04001767 len1 = EXT_MAX_BLOCKS - b1;
Amit Arora25d14f92007-05-24 13:04:13 -04001768 newext->ee_len = cpu_to_le16(len1);
1769 ret = 1;
1770 }
1771
1772 /* check for overlap */
1773 if (b1 + len1 > b2) {
1774 newext->ee_len = cpu_to_le16(b2 - b1);
1775 ret = 1;
1776 }
1777out:
1778 return ret;
1779}
1780
1781/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001782 * ext4_ext_insert_extent:
1783 * tries to merge requsted extent into the existing extent or
1784 * inserts requested extent as new one into the tree,
1785 * creating new leaf in the no-space case.
Alex Tomasa86c6182006-10-11 01:21:03 -07001786 */
1787int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
1788 struct ext4_ext_path *path,
Mingming Cao00314622009-09-28 15:49:08 -04001789 struct ext4_extent *newext, int flag)
Alex Tomasa86c6182006-10-11 01:21:03 -07001790{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001791 struct ext4_extent_header *eh;
Alex Tomasa86c6182006-10-11 01:21:03 -07001792 struct ext4_extent *ex, *fex;
1793 struct ext4_extent *nearex; /* nearest extent */
1794 struct ext4_ext_path *npath = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001795 int depth, len, err;
1796 ext4_lblk_t next;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001797 unsigned uninitialized = 0;
Allison Henderson55f020d2011-05-25 07:41:26 -04001798 int flags = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07001799
Frank Mayhar273df552010-03-02 11:46:09 -05001800 if (unlikely(ext4_ext_get_actual_len(newext) == 0)) {
1801 EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0");
1802 return -EIO;
1803 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001804 depth = ext_depth(inode);
1805 ex = path[depth].p_ext;
Lukas Czernerbe8981b2013-04-03 23:33:28 -04001806 eh = path[depth].p_hdr;
Frank Mayhar273df552010-03-02 11:46:09 -05001807 if (unlikely(path[depth].p_hdr == NULL)) {
1808 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1809 return -EIO;
1810 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001811
1812 /* try to insert block into found extent and return */
Lukas Czernerbe8981b2013-04-03 23:33:28 -04001813 if (ex && !(flag & EXT4_GET_BLOCKS_PRE_IO)) {
Amit Aroraa2df2a62007-07-17 21:42:41 -04001814
1815 /*
Lukas Czernerbe8981b2013-04-03 23:33:28 -04001816 * Try to see whether we should rather test the extent on
1817 * right from ex, or from the left of ex. This is because
1818 * ext4_ext_find_extent() can return either extent on the
1819 * left, or on the right from the searched position. This
1820 * will make merging more effective.
Amit Aroraa2df2a62007-07-17 21:42:41 -04001821 */
Lukas Czernerbe8981b2013-04-03 23:33:28 -04001822 if (ex < EXT_LAST_EXTENT(eh) &&
1823 (le32_to_cpu(ex->ee_block) +
1824 ext4_ext_get_actual_len(ex) <
1825 le32_to_cpu(newext->ee_block))) {
1826 ex += 1;
1827 goto prepend;
1828 } else if ((ex > EXT_FIRST_EXTENT(eh)) &&
1829 (le32_to_cpu(newext->ee_block) +
1830 ext4_ext_get_actual_len(newext) <
1831 le32_to_cpu(ex->ee_block)))
1832 ex -= 1;
1833
1834 /* Try to append newex to the ex */
1835 if (ext4_can_extents_be_merged(inode, ex, newext)) {
1836 ext_debug("append [%d]%d block to %u:[%d]%d"
1837 "(from %llu)\n",
1838 ext4_ext_is_uninitialized(newext),
1839 ext4_ext_get_actual_len(newext),
1840 le32_to_cpu(ex->ee_block),
1841 ext4_ext_is_uninitialized(ex),
1842 ext4_ext_get_actual_len(ex),
1843 ext4_ext_pblock(ex));
1844 err = ext4_ext_get_access(handle, inode,
1845 path + depth);
1846 if (err)
1847 return err;
1848
1849 /*
1850 * ext4_can_extents_be_merged should have checked
1851 * that either both extents are uninitialized, or
1852 * both aren't. Thus we need to check only one of
1853 * them here.
1854 */
1855 if (ext4_ext_is_uninitialized(ex))
1856 uninitialized = 1;
1857 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
Amit Aroraa2df2a62007-07-17 21:42:41 -04001858 + ext4_ext_get_actual_len(newext));
Lukas Czernerbe8981b2013-04-03 23:33:28 -04001859 if (uninitialized)
1860 ext4_ext_mark_uninitialized(ex);
1861 eh = path[depth].p_hdr;
1862 nearex = ex;
1863 goto merge;
1864 }
1865
1866prepend:
1867 /* Try to prepend newex to the ex */
1868 if (ext4_can_extents_be_merged(inode, newext, ex)) {
1869 ext_debug("prepend %u[%d]%d block to %u:[%d]%d"
1870 "(from %llu)\n",
1871 le32_to_cpu(newext->ee_block),
1872 ext4_ext_is_uninitialized(newext),
1873 ext4_ext_get_actual_len(newext),
1874 le32_to_cpu(ex->ee_block),
1875 ext4_ext_is_uninitialized(ex),
1876 ext4_ext_get_actual_len(ex),
1877 ext4_ext_pblock(ex));
1878 err = ext4_ext_get_access(handle, inode,
1879 path + depth);
1880 if (err)
1881 return err;
1882
1883 /*
1884 * ext4_can_extents_be_merged should have checked
1885 * that either both extents are uninitialized, or
1886 * both aren't. Thus we need to check only one of
1887 * them here.
1888 */
1889 if (ext4_ext_is_uninitialized(ex))
1890 uninitialized = 1;
1891 ex->ee_block = newext->ee_block;
1892 ext4_ext_store_pblock(ex, ext4_ext_pblock(newext));
1893 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1894 + ext4_ext_get_actual_len(newext));
1895 if (uninitialized)
1896 ext4_ext_mark_uninitialized(ex);
1897 eh = path[depth].p_hdr;
1898 nearex = ex;
1899 goto merge;
1900 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001901 }
1902
Alex Tomasa86c6182006-10-11 01:21:03 -07001903 depth = ext_depth(inode);
1904 eh = path[depth].p_hdr;
1905 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max))
1906 goto has_space;
1907
1908 /* probably next leaf has space for us? */
1909 fex = EXT_LAST_EXTENT(eh);
Robin Dong598dbdf2011-07-11 18:24:01 -04001910 next = EXT_MAX_BLOCKS;
1911 if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block))
Robin Dong57187892011-07-23 21:49:07 -04001912 next = ext4_ext_next_leaf_block(path);
Robin Dong598dbdf2011-07-11 18:24:01 -04001913 if (next != EXT_MAX_BLOCKS) {
Yongqiang Yang32de6752011-11-01 18:56:41 -04001914 ext_debug("next leaf block - %u\n", next);
Alex Tomasa86c6182006-10-11 01:21:03 -07001915 BUG_ON(npath != NULL);
1916 npath = ext4_ext_find_extent(inode, next, NULL);
1917 if (IS_ERR(npath))
1918 return PTR_ERR(npath);
1919 BUG_ON(npath->p_depth != path->p_depth);
1920 eh = npath[depth].p_hdr;
1921 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001922 ext_debug("next leaf isn't full(%d)\n",
Alex Tomasa86c6182006-10-11 01:21:03 -07001923 le16_to_cpu(eh->eh_entries));
1924 path = npath;
Robin Dongffb505f2011-07-11 11:43:59 -04001925 goto has_space;
Alex Tomasa86c6182006-10-11 01:21:03 -07001926 }
1927 ext_debug("next leaf has no free space(%d,%d)\n",
1928 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
1929 }
1930
1931 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001932 * There is no free space in the found leaf.
1933 * We're gonna add a new leaf in the tree.
Alex Tomasa86c6182006-10-11 01:21:03 -07001934 */
Lukas Czerner27dd4382013-04-09 22:11:22 -04001935 if (flag & EXT4_GET_BLOCKS_METADATA_NOFAIL)
1936 flags = EXT4_MB_USE_RESERVED;
Allison Henderson55f020d2011-05-25 07:41:26 -04001937 err = ext4_ext_create_new_leaf(handle, inode, flags, path, newext);
Alex Tomasa86c6182006-10-11 01:21:03 -07001938 if (err)
1939 goto cleanup;
1940 depth = ext_depth(inode);
1941 eh = path[depth].p_hdr;
1942
1943has_space:
1944 nearex = path[depth].p_ext;
1945
Avantika Mathur7e028972006-12-06 20:41:33 -08001946 err = ext4_ext_get_access(handle, inode, path + depth);
1947 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001948 goto cleanup;
1949
1950 if (!nearex) {
1951 /* there is no extent in this leaf, create first one */
Yongqiang Yang32de6752011-11-01 18:56:41 -04001952 ext_debug("first extent in the leaf: %u:%llu:[%d]%d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001953 le32_to_cpu(newext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001954 ext4_ext_pblock(newext),
Mingming553f9002009-09-18 13:34:55 -04001955 ext4_ext_is_uninitialized(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001956 ext4_ext_get_actual_len(newext));
Eric Gouriou80e675f2011-10-27 11:52:18 -04001957 nearex = EXT_FIRST_EXTENT(eh);
1958 } else {
1959 if (le32_to_cpu(newext->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001960 > le32_to_cpu(nearex->ee_block)) {
Eric Gouriou80e675f2011-10-27 11:52:18 -04001961 /* Insert after */
Yongqiang Yang32de6752011-11-01 18:56:41 -04001962 ext_debug("insert %u:%llu:[%d]%d before: "
1963 "nearest %p\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001964 le32_to_cpu(newext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001965 ext4_ext_pblock(newext),
Mingming553f9002009-09-18 13:34:55 -04001966 ext4_ext_is_uninitialized(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001967 ext4_ext_get_actual_len(newext),
Eric Gouriou80e675f2011-10-27 11:52:18 -04001968 nearex);
1969 nearex++;
1970 } else {
1971 /* Insert before */
1972 BUG_ON(newext->ee_block == nearex->ee_block);
Yongqiang Yang32de6752011-11-01 18:56:41 -04001973 ext_debug("insert %u:%llu:[%d]%d after: "
1974 "nearest %p\n",
Eric Gouriou80e675f2011-10-27 11:52:18 -04001975 le32_to_cpu(newext->ee_block),
1976 ext4_ext_pblock(newext),
1977 ext4_ext_is_uninitialized(newext),
1978 ext4_ext_get_actual_len(newext),
1979 nearex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001980 }
Eric Gouriou80e675f2011-10-27 11:52:18 -04001981 len = EXT_LAST_EXTENT(eh) - nearex + 1;
1982 if (len > 0) {
Yongqiang Yang32de6752011-11-01 18:56:41 -04001983 ext_debug("insert %u:%llu:[%d]%d: "
Eric Gouriou80e675f2011-10-27 11:52:18 -04001984 "move %d extents from 0x%p to 0x%p\n",
1985 le32_to_cpu(newext->ee_block),
1986 ext4_ext_pblock(newext),
1987 ext4_ext_is_uninitialized(newext),
1988 ext4_ext_get_actual_len(newext),
1989 len, nearex, nearex + 1);
1990 memmove(nearex + 1, nearex,
1991 len * sizeof(struct ext4_extent));
1992 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001993 }
1994
Marcin Slusarze8546d02008-04-17 10:38:59 -04001995 le16_add_cpu(&eh->eh_entries, 1);
Eric Gouriou80e675f2011-10-27 11:52:18 -04001996 path[depth].p_ext = nearex;
Alex Tomasa86c6182006-10-11 01:21:03 -07001997 nearex->ee_block = newext->ee_block;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001998 ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext));
Alex Tomasa86c6182006-10-11 01:21:03 -07001999 nearex->ee_len = newext->ee_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07002000
2001merge:
HaiboLiue7bcf822012-07-09 16:29:28 -04002002 /* try to merge extents */
Jiaying Zhang744692d2010-03-04 16:14:02 -05002003 if (!(flag & EXT4_GET_BLOCKS_PRE_IO))
Theodore Ts'oecb94f52012-08-17 09:44:17 -04002004 ext4_ext_try_to_merge(handle, inode, path, nearex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002005
Alex Tomasa86c6182006-10-11 01:21:03 -07002006
2007 /* time to correct all indexes above */
2008 err = ext4_ext_correct_indexes(handle, inode, path);
2009 if (err)
2010 goto cleanup;
2011
Theodore Ts'oecb94f52012-08-17 09:44:17 -04002012 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Alex Tomasa86c6182006-10-11 01:21:03 -07002013
2014cleanup:
2015 if (npath) {
2016 ext4_ext_drop_refs(npath);
2017 kfree(npath);
2018 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002019 return err;
2020}
2021
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002022static int ext4_fill_fiemap_extents(struct inode *inode,
2023 ext4_lblk_t block, ext4_lblk_t num,
2024 struct fiemap_extent_info *fieinfo)
Eric Sandeen6873fa02008-10-07 00:46:36 -04002025{
2026 struct ext4_ext_path *path = NULL;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002027 struct ext4_extent *ex;
Zheng Liu69eb33d2013-02-18 00:31:07 -05002028 struct extent_status es;
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002029 ext4_lblk_t next, next_del, start = 0, end = 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002030 ext4_lblk_t last = block + num;
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002031 int exists, depth = 0, err = 0;
2032 unsigned int flags = 0;
2033 unsigned char blksize_bits = inode->i_sb->s_blocksize_bits;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002034
Lukas Czernerf17722f2011-06-06 00:05:17 -04002035 while (block < last && block != EXT_MAX_BLOCKS) {
Eric Sandeen6873fa02008-10-07 00:46:36 -04002036 num = last - block;
2037 /* find extent for this block */
Theodore Ts'ofab3a542009-12-09 21:30:02 -05002038 down_read(&EXT4_I(inode)->i_data_sem);
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002039
2040 if (path && ext_depth(inode) != depth) {
2041 /* depth was changed. we have to realloc path */
2042 kfree(path);
2043 path = NULL;
2044 }
2045
Eric Sandeen6873fa02008-10-07 00:46:36 -04002046 path = ext4_ext_find_extent(inode, block, path);
2047 if (IS_ERR(path)) {
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002048 up_read(&EXT4_I(inode)->i_data_sem);
Eric Sandeen6873fa02008-10-07 00:46:36 -04002049 err = PTR_ERR(path);
2050 path = NULL;
2051 break;
2052 }
2053
2054 depth = ext_depth(inode);
Frank Mayhar273df552010-03-02 11:46:09 -05002055 if (unlikely(path[depth].p_hdr == NULL)) {
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002056 up_read(&EXT4_I(inode)->i_data_sem);
Frank Mayhar273df552010-03-02 11:46:09 -05002057 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
2058 err = -EIO;
2059 break;
2060 }
Eric Sandeen6873fa02008-10-07 00:46:36 -04002061 ex = path[depth].p_ext;
2062 next = ext4_ext_next_allocated_block(path);
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002063 ext4_ext_drop_refs(path);
Eric Sandeen6873fa02008-10-07 00:46:36 -04002064
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002065 flags = 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002066 exists = 0;
2067 if (!ex) {
2068 /* there is no extent yet, so try to allocate
2069 * all requested space */
2070 start = block;
2071 end = block + num;
2072 } else if (le32_to_cpu(ex->ee_block) > block) {
2073 /* need to allocate space before found extent */
2074 start = block;
2075 end = le32_to_cpu(ex->ee_block);
2076 if (block + num < end)
2077 end = block + num;
2078 } else if (block >= le32_to_cpu(ex->ee_block)
2079 + ext4_ext_get_actual_len(ex)) {
2080 /* need to allocate space after found extent */
2081 start = block;
2082 end = block + num;
2083 if (end >= next)
2084 end = next;
2085 } else if (block >= le32_to_cpu(ex->ee_block)) {
2086 /*
2087 * some part of requested space is covered
2088 * by found extent
2089 */
2090 start = block;
2091 end = le32_to_cpu(ex->ee_block)
2092 + ext4_ext_get_actual_len(ex);
2093 if (block + num < end)
2094 end = block + num;
2095 exists = 1;
2096 } else {
2097 BUG();
2098 }
2099 BUG_ON(end <= start);
2100
2101 if (!exists) {
Zheng Liu69eb33d2013-02-18 00:31:07 -05002102 es.es_lblk = start;
2103 es.es_len = end - start;
2104 es.es_pblk = 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002105 } else {
Zheng Liu69eb33d2013-02-18 00:31:07 -05002106 es.es_lblk = le32_to_cpu(ex->ee_block);
2107 es.es_len = ext4_ext_get_actual_len(ex);
2108 es.es_pblk = ext4_ext_pblock(ex);
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002109 if (ext4_ext_is_uninitialized(ex))
2110 flags |= FIEMAP_EXTENT_UNWRITTEN;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002111 }
2112
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002113 /*
Zheng Liu69eb33d2013-02-18 00:31:07 -05002114 * Find delayed extent and update es accordingly. We call
2115 * it even in !exists case to find out whether es is the
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002116 * last existing extent or not.
2117 */
Zheng Liu69eb33d2013-02-18 00:31:07 -05002118 next_del = ext4_find_delayed_extent(inode, &es);
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002119 if (!exists && next_del) {
2120 exists = 1;
Jie Liu72dac952013-06-12 23:13:59 -04002121 flags |= (FIEMAP_EXTENT_DELALLOC |
2122 FIEMAP_EXTENT_UNKNOWN);
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002123 }
2124 up_read(&EXT4_I(inode)->i_data_sem);
2125
Zheng Liu69eb33d2013-02-18 00:31:07 -05002126 if (unlikely(es.es_len == 0)) {
2127 EXT4_ERROR_INODE(inode, "es.es_len == 0");
Frank Mayhar273df552010-03-02 11:46:09 -05002128 err = -EIO;
2129 break;
2130 }
Eric Sandeen6873fa02008-10-07 00:46:36 -04002131
Zheng Liuf7fec032013-02-18 00:28:47 -05002132 /*
2133 * This is possible iff next == next_del == EXT_MAX_BLOCKS.
2134 * we need to check next == EXT_MAX_BLOCKS because it is
2135 * possible that an extent is with unwritten and delayed
2136 * status due to when an extent is delayed allocated and
2137 * is allocated by fallocate status tree will track both of
2138 * them in a extent.
2139 *
2140 * So we could return a unwritten and delayed extent, and
2141 * its block is equal to 'next'.
2142 */
2143 if (next == next_del && next == EXT_MAX_BLOCKS) {
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002144 flags |= FIEMAP_EXTENT_LAST;
2145 if (unlikely(next_del != EXT_MAX_BLOCKS ||
2146 next != EXT_MAX_BLOCKS)) {
2147 EXT4_ERROR_INODE(inode,
2148 "next extent == %u, next "
2149 "delalloc extent = %u",
2150 next, next_del);
2151 err = -EIO;
2152 break;
2153 }
Eric Sandeen6873fa02008-10-07 00:46:36 -04002154 }
2155
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002156 if (exists) {
2157 err = fiemap_fill_next_extent(fieinfo,
Zheng Liu69eb33d2013-02-18 00:31:07 -05002158 (__u64)es.es_lblk << blksize_bits,
2159 (__u64)es.es_pblk << blksize_bits,
2160 (__u64)es.es_len << blksize_bits,
Lukas Czerner91dd8c12012-11-28 12:32:26 -05002161 flags);
2162 if (err < 0)
2163 break;
2164 if (err == 1) {
2165 err = 0;
2166 break;
2167 }
Eric Sandeen6873fa02008-10-07 00:46:36 -04002168 }
2169
Zheng Liu69eb33d2013-02-18 00:31:07 -05002170 block = es.es_lblk + es.es_len;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002171 }
2172
2173 if (path) {
2174 ext4_ext_drop_refs(path);
2175 kfree(path);
2176 }
2177
2178 return err;
2179}
2180
Alex Tomasa86c6182006-10-11 01:21:03 -07002181/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002182 * ext4_ext_put_gap_in_cache:
2183 * calculate boundaries of the gap that the requested block fits into
Alex Tomasa86c6182006-10-11 01:21:03 -07002184 * and cache this gap
2185 */
Avantika Mathur09b88252006-12-06 20:41:36 -08002186static void
Alex Tomasa86c6182006-10-11 01:21:03 -07002187ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002188 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -07002189{
2190 int depth = ext_depth(inode);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002191 unsigned long len;
2192 ext4_lblk_t lblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07002193 struct ext4_extent *ex;
2194
2195 ex = path[depth].p_ext;
2196 if (ex == NULL) {
Zheng Liu69eb33d2013-02-18 00:31:07 -05002197 /*
2198 * there is no extent yet, so gap is [0;-] and we
2199 * don't cache it
2200 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002201 ext_debug("cache gap(whole file):");
2202 } else if (block < le32_to_cpu(ex->ee_block)) {
2203 lblock = block;
2204 len = le32_to_cpu(ex->ee_block) - block;
Eric Sandeenbba90742008-01-28 23:58:27 -05002205 ext_debug("cache gap(before): %u [%u:%u]",
2206 block,
2207 le32_to_cpu(ex->ee_block),
2208 ext4_ext_get_actual_len(ex));
Zheng Liud100eef2013-02-18 00:29:59 -05002209 if (!ext4_find_delalloc_range(inode, lblock, lblock + len - 1))
2210 ext4_es_insert_extent(inode, lblock, len, ~0,
2211 EXTENT_STATUS_HOLE);
Alex Tomasa86c6182006-10-11 01:21:03 -07002212 } else if (block >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002213 + ext4_ext_get_actual_len(ex)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002214 ext4_lblk_t next;
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002215 lblock = le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002216 + ext4_ext_get_actual_len(ex);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002217
2218 next = ext4_ext_next_allocated_block(path);
Eric Sandeenbba90742008-01-28 23:58:27 -05002219 ext_debug("cache gap(after): [%u:%u] %u",
2220 le32_to_cpu(ex->ee_block),
2221 ext4_ext_get_actual_len(ex),
2222 block);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002223 BUG_ON(next == lblock);
2224 len = next - lblock;
Zheng Liud100eef2013-02-18 00:29:59 -05002225 if (!ext4_find_delalloc_range(inode, lblock, lblock + len - 1))
2226 ext4_es_insert_extent(inode, lblock, len, ~0,
2227 EXTENT_STATUS_HOLE);
Alex Tomasa86c6182006-10-11 01:21:03 -07002228 } else {
2229 lblock = len = 0;
2230 BUG();
2231 }
2232
Eric Sandeenbba90742008-01-28 23:58:27 -05002233 ext_debug(" -> %u:%lu\n", lblock, len);
Alex Tomasa86c6182006-10-11 01:21:03 -07002234}
2235
2236/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002237 * ext4_ext_rm_idx:
2238 * removes index from the index block.
Alex Tomasa86c6182006-10-11 01:21:03 -07002239 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002240static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode,
Forrest Liuc36575e2012-12-17 09:55:39 -05002241 struct ext4_ext_path *path, int depth)
Alex Tomasa86c6182006-10-11 01:21:03 -07002242{
Alex Tomasa86c6182006-10-11 01:21:03 -07002243 int err;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002244 ext4_fsblk_t leaf;
Alex Tomasa86c6182006-10-11 01:21:03 -07002245
2246 /* free index block */
Forrest Liuc36575e2012-12-17 09:55:39 -05002247 depth--;
2248 path = path + depth;
Theodore Ts'obf89d162010-10-27 21:30:14 -04002249 leaf = ext4_idx_pblock(path->p_idx);
Frank Mayhar273df552010-03-02 11:46:09 -05002250 if (unlikely(path->p_hdr->eh_entries == 0)) {
2251 EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0");
2252 return -EIO;
2253 }
Avantika Mathur7e028972006-12-06 20:41:33 -08002254 err = ext4_ext_get_access(handle, inode, path);
2255 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002256 return err;
Robin Dong0e1147b2011-07-27 21:29:33 -04002257
2258 if (path->p_idx != EXT_LAST_INDEX(path->p_hdr)) {
2259 int len = EXT_LAST_INDEX(path->p_hdr) - path->p_idx;
2260 len *= sizeof(struct ext4_extent_idx);
2261 memmove(path->p_idx, path->p_idx + 1, len);
2262 }
2263
Marcin Slusarze8546d02008-04-17 10:38:59 -04002264 le16_add_cpu(&path->p_hdr->eh_entries, -1);
Avantika Mathur7e028972006-12-06 20:41:33 -08002265 err = ext4_ext_dirty(handle, inode, path);
2266 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002267 return err;
Mingming Cao2ae02102006-10-11 01:21:11 -07002268 ext_debug("index is empty, remove it, free block %llu\n", leaf);
Aditya Kalid8990242011-09-09 19:18:51 -04002269 trace_ext4_ext_rm_idx(inode, leaf);
2270
Peter Huewe7dc57612011-02-21 21:01:42 -05002271 ext4_free_blocks(handle, inode, NULL, leaf, 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -05002272 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
Forrest Liuc36575e2012-12-17 09:55:39 -05002273
2274 while (--depth >= 0) {
2275 if (path->p_idx != EXT_FIRST_INDEX(path->p_hdr))
2276 break;
2277 path--;
2278 err = ext4_ext_get_access(handle, inode, path);
2279 if (err)
2280 break;
2281 path->p_idx->ei_block = (path+1)->p_idx->ei_block;
2282 err = ext4_ext_dirty(handle, inode, path);
2283 if (err)
2284 break;
2285 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002286 return err;
2287}
2288
2289/*
Mingming Caoee12b632008-08-19 22:16:05 -04002290 * ext4_ext_calc_credits_for_single_extent:
2291 * This routine returns max. credits that needed to insert an extent
2292 * to the extent tree.
2293 * When pass the actual path, the caller should calculate credits
2294 * under i_data_sem.
Alex Tomasa86c6182006-10-11 01:21:03 -07002295 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002296int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks,
Alex Tomasa86c6182006-10-11 01:21:03 -07002297 struct ext4_ext_path *path)
2298{
Alex Tomasa86c6182006-10-11 01:21:03 -07002299 if (path) {
Mingming Caoee12b632008-08-19 22:16:05 -04002300 int depth = ext_depth(inode);
Mingming Caof3bd1f32008-08-19 22:16:03 -04002301 int ret = 0;
Mingming Caoee12b632008-08-19 22:16:05 -04002302
Alex Tomasa86c6182006-10-11 01:21:03 -07002303 /* probably there is space in leaf? */
Alex Tomasa86c6182006-10-11 01:21:03 -07002304 if (le16_to_cpu(path[depth].p_hdr->eh_entries)
Mingming Caoee12b632008-08-19 22:16:05 -04002305 < le16_to_cpu(path[depth].p_hdr->eh_max)) {
2306
2307 /*
2308 * There are some space in the leaf tree, no
2309 * need to account for leaf block credit
2310 *
2311 * bitmaps and block group descriptor blocks
Tao Madf3ab172011-10-08 15:53:49 -04002312 * and other metadata blocks still need to be
Mingming Caoee12b632008-08-19 22:16:05 -04002313 * accounted.
2314 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002315 /* 1 bitmap, 1 block group descriptor */
Mingming Caoee12b632008-08-19 22:16:05 -04002316 ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb);
Aneesh Kumar K.V5887e982009-07-05 23:12:04 -04002317 return ret;
Mingming Caoee12b632008-08-19 22:16:05 -04002318 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002319 }
2320
Mingming Cao525f4ed2008-08-19 22:15:58 -04002321 return ext4_chunk_trans_blocks(inode, nrblocks);
Mingming Caoee12b632008-08-19 22:16:05 -04002322}
Alex Tomasa86c6182006-10-11 01:21:03 -07002323
Mingming Caoee12b632008-08-19 22:16:05 -04002324/*
Jan Karafffb2732013-06-04 13:01:11 -04002325 * How many index/leaf blocks need to change/allocate to add @extents extents?
Mingming Caoee12b632008-08-19 22:16:05 -04002326 *
Jan Karafffb2732013-06-04 13:01:11 -04002327 * If we add a single extent, then in the worse case, each tree level
2328 * index/leaf need to be changed in case of the tree split.
Mingming Caoee12b632008-08-19 22:16:05 -04002329 *
Jan Karafffb2732013-06-04 13:01:11 -04002330 * If more extents are inserted, they could cause the whole tree split more
2331 * than once, but this is really rare.
Mingming Caoee12b632008-08-19 22:16:05 -04002332 */
Jan Karafffb2732013-06-04 13:01:11 -04002333int ext4_ext_index_trans_blocks(struct inode *inode, int extents)
Mingming Caoee12b632008-08-19 22:16:05 -04002334{
2335 int index;
Tao Maf19d5872012-12-10 14:05:51 -05002336 int depth;
2337
2338 /* If we are converting the inline data, only one is needed here. */
2339 if (ext4_has_inline_data(inode))
2340 return 1;
2341
2342 depth = ext_depth(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07002343
Jan Karafffb2732013-06-04 13:01:11 -04002344 if (extents <= 1)
Mingming Caoee12b632008-08-19 22:16:05 -04002345 index = depth * 2;
2346 else
2347 index = depth * 3;
Alex Tomasa86c6182006-10-11 01:21:03 -07002348
Mingming Caoee12b632008-08-19 22:16:05 -04002349 return index;
Alex Tomasa86c6182006-10-11 01:21:03 -07002350}
2351
Theodore Ts'o981250c2013-06-12 11:48:29 -04002352static inline int get_default_free_blocks_flags(struct inode *inode)
2353{
2354 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
2355 return EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET;
2356 else if (ext4_should_journal_data(inode))
2357 return EXT4_FREE_BLOCKS_FORGET;
2358 return 0;
2359}
2360
Alex Tomasa86c6182006-10-11 01:21:03 -07002361static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002362 struct ext4_extent *ex,
Lukas Czernerd23142c2013-05-27 23:33:35 -04002363 long long *partial_cluster,
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002364 ext4_lblk_t from, ext4_lblk_t to)
Alex Tomasa86c6182006-10-11 01:21:03 -07002365{
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002366 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002367 unsigned short ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002368 ext4_fsblk_t pblk;
Theodore Ts'o981250c2013-06-12 11:48:29 -04002369 int flags = get_default_free_blocks_flags(inode);
Andrey Sidorov18888cf2012-09-19 14:14:53 -04002370
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002371 /*
2372 * For bigalloc file systems, we never free a partial cluster
2373 * at the beginning of the extent. Instead, we make a note
2374 * that we tried freeing the cluster, and check to see if we
2375 * need to free it on a subsequent call to ext4_remove_blocks,
2376 * or at the end of the ext4_truncate() operation.
2377 */
2378 flags |= EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER;
2379
Aditya Kalid8990242011-09-09 19:18:51 -04002380 trace_ext4_remove_blocks(inode, ex, from, to, *partial_cluster);
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002381 /*
2382 * If we have a partial cluster, and it's different from the
2383 * cluster of the last block, we need to explicitly free the
2384 * partial cluster here.
2385 */
2386 pblk = ext4_ext_pblock(ex) + ee_len - 1;
Lukas Czernerd23142c2013-05-27 23:33:35 -04002387 if ((*partial_cluster > 0) &&
2388 (EXT4_B2C(sbi, pblk) != *partial_cluster)) {
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002389 ext4_free_blocks(handle, inode, NULL,
2390 EXT4_C2B(sbi, *partial_cluster),
2391 sbi->s_cluster_ratio, flags);
2392 *partial_cluster = 0;
2393 }
2394
Alex Tomasa86c6182006-10-11 01:21:03 -07002395#ifdef EXTENTS_STATS
2396 {
2397 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002398 spin_lock(&sbi->s_ext_stats_lock);
2399 sbi->s_ext_blocks += ee_len;
2400 sbi->s_ext_extents++;
2401 if (ee_len < sbi->s_ext_min)
2402 sbi->s_ext_min = ee_len;
2403 if (ee_len > sbi->s_ext_max)
2404 sbi->s_ext_max = ee_len;
2405 if (ext_depth(inode) > sbi->s_depth_max)
2406 sbi->s_depth_max = ext_depth(inode);
2407 spin_unlock(&sbi->s_ext_stats_lock);
2408 }
2409#endif
2410 if (from >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002411 && to == le32_to_cpu(ex->ee_block) + ee_len - 1) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002412 /* tail removal */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002413 ext4_lblk_t num;
Lukas Czernerd23142c2013-05-27 23:33:35 -04002414 unsigned int unaligned;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002415
Amit Aroraa2df2a62007-07-17 21:42:41 -04002416 num = le32_to_cpu(ex->ee_block) + ee_len - from;
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002417 pblk = ext4_ext_pblock(ex) + ee_len - num;
Lukas Czernerd23142c2013-05-27 23:33:35 -04002418 /*
2419 * Usually we want to free partial cluster at the end of the
2420 * extent, except for the situation when the cluster is still
2421 * used by any other extent (partial_cluster is negative).
2422 */
2423 if (*partial_cluster < 0 &&
2424 -(*partial_cluster) == EXT4_B2C(sbi, pblk + num - 1))
2425 flags |= EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER;
2426
2427 ext_debug("free last %u blocks starting %llu partial %lld\n",
2428 num, pblk, *partial_cluster);
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002429 ext4_free_blocks(handle, inode, NULL, pblk, num, flags);
2430 /*
2431 * If the block range to be freed didn't start at the
2432 * beginning of a cluster, and we removed the entire
Lukas Czernerd23142c2013-05-27 23:33:35 -04002433 * extent and the cluster is not used by any other extent,
2434 * save the partial cluster here, since we might need to
2435 * delete if we determine that the truncate operation has
2436 * removed all of the blocks in the cluster.
2437 *
2438 * On the other hand, if we did not manage to free the whole
2439 * extent, we have to mark the cluster as used (store negative
2440 * cluster number in partial_cluster).
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002441 */
Lukas Czernerd23142c2013-05-27 23:33:35 -04002442 unaligned = pblk & (sbi->s_cluster_ratio - 1);
2443 if (unaligned && (ee_len == num) &&
2444 (*partial_cluster != -((long long)EXT4_B2C(sbi, pblk))))
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002445 *partial_cluster = EXT4_B2C(sbi, pblk);
Lukas Czernerd23142c2013-05-27 23:33:35 -04002446 else if (unaligned)
2447 *partial_cluster = -((long long)EXT4_B2C(sbi, pblk));
2448 else if (*partial_cluster > 0)
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002449 *partial_cluster = 0;
Lukas Czerner78fb9cd2013-05-27 23:32:35 -04002450 } else
2451 ext4_error(sbi->s_sb, "strange request: removal(2) "
2452 "%u-%u from %u:%u\n",
2453 from, to, le32_to_cpu(ex->ee_block), ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07002454 return 0;
2455}
2456
Allison Hendersond583fb82011-05-25 07:41:43 -04002457
2458/*
2459 * ext4_ext_rm_leaf() Removes the extents associated with the
2460 * blocks appearing between "start" and "end", and splits the extents
2461 * if "start" and "end" appear in the same extent
2462 *
2463 * @handle: The journal handle
2464 * @inode: The files inode
2465 * @path: The path to the leaf
Lukas Czernerd23142c2013-05-27 23:33:35 -04002466 * @partial_cluster: The cluster which we'll have to free if all extents
2467 * has been released from it. It gets negative in case
2468 * that the cluster is still used.
Allison Hendersond583fb82011-05-25 07:41:43 -04002469 * @start: The first block to remove
2470 * @end: The last block to remove
2471 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002472static int
2473ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
Lukas Czernerd23142c2013-05-27 23:33:35 -04002474 struct ext4_ext_path *path,
2475 long long *partial_cluster,
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002476 ext4_lblk_t start, ext4_lblk_t end)
Alex Tomasa86c6182006-10-11 01:21:03 -07002477{
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002478 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002479 int err = 0, correct_index = 0;
2480 int depth = ext_depth(inode), credits;
2481 struct ext4_extent_header *eh;
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002482 ext4_lblk_t a, b;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002483 unsigned num;
2484 ext4_lblk_t ex_ee_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07002485 unsigned short ex_ee_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04002486 unsigned uninitialized = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002487 struct ext4_extent *ex;
Lukas Czernerd23142c2013-05-27 23:33:35 -04002488 ext4_fsblk_t pblk;
Alex Tomasa86c6182006-10-11 01:21:03 -07002489
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002490 /* the header must be checked already in ext4_ext_remove_space() */
Lukas Czerner5f95d212012-03-19 23:03:19 -04002491 ext_debug("truncate since %u in leaf to %u\n", start, end);
Alex Tomasa86c6182006-10-11 01:21:03 -07002492 if (!path[depth].p_hdr)
2493 path[depth].p_hdr = ext_block_hdr(path[depth].p_bh);
2494 eh = path[depth].p_hdr;
Frank Mayhar273df552010-03-02 11:46:09 -05002495 if (unlikely(path[depth].p_hdr == NULL)) {
2496 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
2497 return -EIO;
2498 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002499 /* find where to start removing */
Ashish Sangwan6ae06ff2013-07-01 08:12:41 -04002500 ex = path[depth].p_ext;
2501 if (!ex)
2502 ex = EXT_LAST_EXTENT(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -07002503
2504 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002505 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002506
Aditya Kalid8990242011-09-09 19:18:51 -04002507 trace_ext4_ext_rm_leaf(inode, start, ex, *partial_cluster);
2508
Alex Tomasa86c6182006-10-11 01:21:03 -07002509 while (ex >= EXT_FIRST_EXTENT(eh) &&
2510 ex_ee_block + ex_ee_len > start) {
Aneesh Kumar K.Va41f2072009-06-10 14:22:55 -04002511
2512 if (ext4_ext_is_uninitialized(ex))
2513 uninitialized = 1;
2514 else
2515 uninitialized = 0;
2516
Mingming553f9002009-09-18 13:34:55 -04002517 ext_debug("remove ext %u:[%d]%d\n", ex_ee_block,
2518 uninitialized, ex_ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07002519 path[depth].p_ext = ex;
2520
2521 a = ex_ee_block > start ? ex_ee_block : start;
Allison Hendersond583fb82011-05-25 07:41:43 -04002522 b = ex_ee_block+ex_ee_len - 1 < end ?
2523 ex_ee_block+ex_ee_len - 1 : end;
Alex Tomasa86c6182006-10-11 01:21:03 -07002524
2525 ext_debug(" border %u:%u\n", a, b);
2526
Allison Hendersond583fb82011-05-25 07:41:43 -04002527 /* If this extent is beyond the end of the hole, skip it */
Lukas Czerner5f95d212012-03-19 23:03:19 -04002528 if (end < ex_ee_block) {
Lukas Czernerd23142c2013-05-27 23:33:35 -04002529 /*
2530 * We're going to skip this extent and move to another,
2531 * so if this extent is not cluster aligned we have
2532 * to mark the current cluster as used to avoid
2533 * accidentally freeing it later on
2534 */
2535 pblk = ext4_ext_pblock(ex);
2536 if (pblk & (sbi->s_cluster_ratio - 1))
2537 *partial_cluster =
2538 -((long long)EXT4_B2C(sbi, pblk));
Allison Hendersond583fb82011-05-25 07:41:43 -04002539 ex--;
2540 ex_ee_block = le32_to_cpu(ex->ee_block);
2541 ex_ee_len = ext4_ext_get_actual_len(ex);
2542 continue;
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002543 } else if (b != ex_ee_block + ex_ee_len - 1) {
Lukas Czernerdc1841d2012-03-19 23:07:43 -04002544 EXT4_ERROR_INODE(inode,
2545 "can not handle truncate %u:%u "
2546 "on extent %u:%u",
2547 start, end, ex_ee_block,
2548 ex_ee_block + ex_ee_len - 1);
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002549 err = -EIO;
2550 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07002551 } else if (a != ex_ee_block) {
2552 /* remove tail of the extent */
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002553 num = a - ex_ee_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07002554 } else {
2555 /* remove whole extent: excellent! */
Alex Tomasa86c6182006-10-11 01:21:03 -07002556 num = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002557 }
Theodore Ts'o34071da2008-08-01 21:59:19 -04002558 /*
2559 * 3 for leaf, sb, and inode plus 2 (bmap and group
2560 * descriptor) for each block group; assume two block
2561 * groups plus ex_ee_len/blocks_per_block_group for
2562 * the worst case
2563 */
2564 credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb));
Alex Tomasa86c6182006-10-11 01:21:03 -07002565 if (ex == EXT_FIRST_EXTENT(eh)) {
2566 correct_index = 1;
2567 credits += (ext_depth(inode)) + 1;
2568 }
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -05002569 credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002570
Jan Kara487caee2009-08-17 22:17:20 -04002571 err = ext4_ext_truncate_extend_restart(handle, inode, credits);
Shen Feng9102e4f2008-07-11 19:27:31 -04002572 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002573 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07002574
2575 err = ext4_ext_get_access(handle, inode, path + depth);
2576 if (err)
2577 goto out;
2578
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002579 err = ext4_remove_blocks(handle, inode, ex, partial_cluster,
2580 a, b);
Alex Tomasa86c6182006-10-11 01:21:03 -07002581 if (err)
2582 goto out;
2583
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002584 if (num == 0)
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002585 /* this extent is removed; mark slot entirely unused */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002586 ext4_ext_store_pblock(ex, 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07002587
Alex Tomasa86c6182006-10-11 01:21:03 -07002588 ex->ee_len = cpu_to_le16(num);
Amit Arora749269f2007-07-18 09:02:56 -04002589 /*
2590 * Do not mark uninitialized if all the blocks in the
2591 * extent have been removed.
2592 */
2593 if (uninitialized && num)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002594 ext4_ext_mark_uninitialized(ex);
Allison Hendersond583fb82011-05-25 07:41:43 -04002595 /*
2596 * If the extent was completely released,
2597 * we need to remove it from the leaf
2598 */
2599 if (num == 0) {
Lukas Czernerf17722f2011-06-06 00:05:17 -04002600 if (end != EXT_MAX_BLOCKS - 1) {
Allison Hendersond583fb82011-05-25 07:41:43 -04002601 /*
2602 * For hole punching, we need to scoot all the
2603 * extents up when an extent is removed so that
2604 * we dont have blank extents in the middle
2605 */
2606 memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) *
2607 sizeof(struct ext4_extent));
2608
2609 /* Now get rid of the one at the end */
2610 memset(EXT_LAST_EXTENT(eh), 0,
2611 sizeof(struct ext4_extent));
2612 }
2613 le16_add_cpu(&eh->eh_entries, -1);
Lukas Czernerd23142c2013-05-27 23:33:35 -04002614 } else if (*partial_cluster > 0)
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002615 *partial_cluster = 0;
Allison Hendersond583fb82011-05-25 07:41:43 -04002616
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002617 err = ext4_ext_dirty(handle, inode, path + depth);
2618 if (err)
2619 goto out;
2620
Yongqiang Yangbf52c6f2011-11-01 18:59:26 -04002621 ext_debug("new extent: %u:%u:%llu\n", ex_ee_block, num,
Theodore Ts'obf89d162010-10-27 21:30:14 -04002622 ext4_ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -07002623 ex--;
2624 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002625 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002626 }
2627
2628 if (correct_index && eh->eh_entries)
2629 err = ext4_ext_correct_indexes(handle, inode, path);
2630
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002631 /*
Lukas Czernerd23142c2013-05-27 23:33:35 -04002632 * Free the partial cluster only if the current extent does not
2633 * reference it. Otherwise we might free used cluster.
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002634 */
Lukas Czernerd23142c2013-05-27 23:33:35 -04002635 if (*partial_cluster > 0 &&
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002636 (EXT4_B2C(sbi, ext4_ext_pblock(ex) + ex_ee_len - 1) !=
2637 *partial_cluster)) {
Theodore Ts'o981250c2013-06-12 11:48:29 -04002638 int flags = get_default_free_blocks_flags(inode);
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002639
2640 ext4_free_blocks(handle, inode, NULL,
2641 EXT4_C2B(sbi, *partial_cluster),
2642 sbi->s_cluster_ratio, flags);
2643 *partial_cluster = 0;
2644 }
2645
Alex Tomasa86c6182006-10-11 01:21:03 -07002646 /* if this leaf is free, then we should
2647 * remove it from index block above */
2648 if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL)
Forrest Liuc36575e2012-12-17 09:55:39 -05002649 err = ext4_ext_rm_idx(handle, inode, path, depth);
Alex Tomasa86c6182006-10-11 01:21:03 -07002650
2651out:
2652 return err;
2653}
2654
2655/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002656 * ext4_ext_more_to_rm:
2657 * returns 1 if current index has to be freed (even partial)
Alex Tomasa86c6182006-10-11 01:21:03 -07002658 */
Avantika Mathur09b88252006-12-06 20:41:36 -08002659static int
Alex Tomasa86c6182006-10-11 01:21:03 -07002660ext4_ext_more_to_rm(struct ext4_ext_path *path)
2661{
2662 BUG_ON(path->p_idx == NULL);
2663
2664 if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr))
2665 return 0;
2666
2667 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002668 * if truncate on deeper level happened, it wasn't partial,
Alex Tomasa86c6182006-10-11 01:21:03 -07002669 * so we have to consider current index for truncation
2670 */
2671 if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block)
2672 return 0;
2673 return 1;
2674}
2675
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04002676int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
2677 ext4_lblk_t end)
Alex Tomasa86c6182006-10-11 01:21:03 -07002678{
2679 struct super_block *sb = inode->i_sb;
2680 int depth = ext_depth(inode);
Ashish Sangwan968dee72012-07-22 22:49:08 -04002681 struct ext4_ext_path *path = NULL;
Lukas Czernerd23142c2013-05-27 23:33:35 -04002682 long long partial_cluster = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002683 handle_t *handle;
Dmitry Monakhov6f2080e2012-09-30 23:03:50 -04002684 int i = 0, err = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002685
Lukas Czerner5f95d212012-03-19 23:03:19 -04002686 ext_debug("truncate since %u to %u\n", start, end);
Alex Tomasa86c6182006-10-11 01:21:03 -07002687
2688 /* probably first extent we're gonna free will be last in block */
Theodore Ts'o9924a922013-02-08 21:59:22 -05002689 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, depth + 1);
Alex Tomasa86c6182006-10-11 01:21:03 -07002690 if (IS_ERR(handle))
2691 return PTR_ERR(handle);
2692
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002693again:
Lukas Czerner61801322013-05-27 23:32:35 -04002694 trace_ext4_ext_remove_space(inode, start, end, depth);
Aditya Kalid8990242011-09-09 19:18:51 -04002695
Alex Tomasa86c6182006-10-11 01:21:03 -07002696 /*
Lukas Czerner5f95d212012-03-19 23:03:19 -04002697 * Check if we are removing extents inside the extent tree. If that
2698 * is the case, we are going to punch a hole inside the extent tree
2699 * so we have to check whether we need to split the extent covering
2700 * the last block to remove so we can easily remove the part of it
2701 * in ext4_ext_rm_leaf().
2702 */
2703 if (end < EXT_MAX_BLOCKS - 1) {
2704 struct ext4_extent *ex;
2705 ext4_lblk_t ee_block;
2706
2707 /* find extent for this block */
2708 path = ext4_ext_find_extent(inode, end, NULL);
2709 if (IS_ERR(path)) {
2710 ext4_journal_stop(handle);
2711 return PTR_ERR(path);
2712 }
2713 depth = ext_depth(inode);
Dmitry Monakhov6f2080e2012-09-30 23:03:50 -04002714 /* Leaf not may not exist only if inode has no blocks at all */
Lukas Czerner5f95d212012-03-19 23:03:19 -04002715 ex = path[depth].p_ext;
Ashish Sangwan968dee72012-07-22 22:49:08 -04002716 if (!ex) {
Dmitry Monakhov6f2080e2012-09-30 23:03:50 -04002717 if (depth) {
2718 EXT4_ERROR_INODE(inode,
2719 "path[%d].p_hdr == NULL",
2720 depth);
2721 err = -EIO;
2722 }
2723 goto out;
Ashish Sangwan968dee72012-07-22 22:49:08 -04002724 }
Lukas Czerner5f95d212012-03-19 23:03:19 -04002725
2726 ee_block = le32_to_cpu(ex->ee_block);
2727
2728 /*
2729 * See if the last block is inside the extent, if so split
2730 * the extent at 'end' block so we can easily remove the
2731 * tail of the first part of the split extent in
2732 * ext4_ext_rm_leaf().
2733 */
2734 if (end >= ee_block &&
2735 end < ee_block + ext4_ext_get_actual_len(ex) - 1) {
2736 int split_flag = 0;
2737
2738 if (ext4_ext_is_uninitialized(ex))
2739 split_flag = EXT4_EXT_MARK_UNINIT1 |
2740 EXT4_EXT_MARK_UNINIT2;
2741
2742 /*
2743 * Split the extent in two so that 'end' is the last
Lukas Czerner27dd4382013-04-09 22:11:22 -04002744 * block in the first new extent. Also we should not
2745 * fail removing space due to ENOSPC so try to use
2746 * reserved block if that happens.
Lukas Czerner5f95d212012-03-19 23:03:19 -04002747 */
2748 err = ext4_split_extent_at(handle, inode, path,
Lukas Czerner27dd4382013-04-09 22:11:22 -04002749 end + 1, split_flag,
2750 EXT4_GET_BLOCKS_PRE_IO |
2751 EXT4_GET_BLOCKS_METADATA_NOFAIL);
Lukas Czerner5f95d212012-03-19 23:03:19 -04002752
2753 if (err < 0)
2754 goto out;
2755 }
Lukas Czerner5f95d212012-03-19 23:03:19 -04002756 }
Lukas Czerner5f95d212012-03-19 23:03:19 -04002757 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002758 * We start scanning from right side, freeing all the blocks
2759 * after i_size and walking into the tree depth-wise.
Alex Tomasa86c6182006-10-11 01:21:03 -07002760 */
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002761 depth = ext_depth(inode);
Ashish Sangwan968dee72012-07-22 22:49:08 -04002762 if (path) {
2763 int k = i = depth;
2764 while (--k > 0)
2765 path[k].p_block =
2766 le16_to_cpu(path[k].p_hdr->eh_entries)+1;
2767 } else {
2768 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1),
2769 GFP_NOFS);
2770 if (path == NULL) {
2771 ext4_journal_stop(handle);
2772 return -ENOMEM;
2773 }
2774 path[0].p_depth = depth;
2775 path[0].p_hdr = ext_inode_hdr(inode);
Theodore Ts'o89a4e482012-08-17 08:54:52 -04002776 i = 0;
Lukas Czerner5f95d212012-03-19 23:03:19 -04002777
Ashish Sangwan968dee72012-07-22 22:49:08 -04002778 if (ext4_ext_check(inode, path[0].p_hdr, depth)) {
2779 err = -EIO;
2780 goto out;
2781 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002782 }
Ashish Sangwan968dee72012-07-22 22:49:08 -04002783 err = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002784
2785 while (i >= 0 && err == 0) {
2786 if (i == depth) {
2787 /* this is leaf block */
Allison Hendersond583fb82011-05-25 07:41:43 -04002788 err = ext4_ext_rm_leaf(handle, inode, path,
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002789 &partial_cluster, start,
Lukas Czerner5f95d212012-03-19 23:03:19 -04002790 end);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002791 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002792 brelse(path[i].p_bh);
2793 path[i].p_bh = NULL;
2794 i--;
2795 continue;
2796 }
2797
2798 /* this is index block */
2799 if (!path[i].p_hdr) {
2800 ext_debug("initialize header\n");
2801 path[i].p_hdr = ext_block_hdr(path[i].p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -07002802 }
2803
Alex Tomasa86c6182006-10-11 01:21:03 -07002804 if (!path[i].p_idx) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002805 /* this level hasn't been touched yet */
Alex Tomasa86c6182006-10-11 01:21:03 -07002806 path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr);
2807 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1;
2808 ext_debug("init index ptr: hdr 0x%p, num %d\n",
2809 path[i].p_hdr,
2810 le16_to_cpu(path[i].p_hdr->eh_entries));
2811 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002812 /* we were already here, see at next index */
Alex Tomasa86c6182006-10-11 01:21:03 -07002813 path[i].p_idx--;
2814 }
2815
2816 ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
2817 i, EXT_FIRST_INDEX(path[i].p_hdr),
2818 path[i].p_idx);
2819 if (ext4_ext_more_to_rm(path + i)) {
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002820 struct buffer_head *bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002821 /* go to the next level */
Mingming Cao2ae02102006-10-11 01:21:11 -07002822 ext_debug("move to level %d (block %llu)\n",
Theodore Ts'obf89d162010-10-27 21:30:14 -04002823 i + 1, ext4_idx_pblock(path[i].p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -07002824 memset(path + i + 1, 0, sizeof(*path));
Theodore Ts'o7d7ea892013-08-16 21:20:41 -04002825 bh = read_extent_tree_block(inode,
2826 ext4_idx_pblock(path[i].p_idx), depth - i - 1);
2827 if (IS_ERR(bh)) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002828 /* should we reset i_size? */
Theodore Ts'o7d7ea892013-08-16 21:20:41 -04002829 err = PTR_ERR(bh);
Alex Tomasa86c6182006-10-11 01:21:03 -07002830 break;
2831 }
Theodore Ts'o76828c82013-07-15 12:27:47 -04002832 /* Yield here to deal with large extent trees.
2833 * Should be a no-op if we did IO above. */
2834 cond_resched();
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002835 if (WARN_ON(i + 1 > depth)) {
2836 err = -EIO;
2837 break;
2838 }
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002839 path[i + 1].p_bh = bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002840
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002841 /* save actual number of indexes since this
2842 * number is changed at the next iteration */
Alex Tomasa86c6182006-10-11 01:21:03 -07002843 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries);
2844 i++;
2845 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002846 /* we finished processing this index, go up */
Alex Tomasa86c6182006-10-11 01:21:03 -07002847 if (path[i].p_hdr->eh_entries == 0 && i > 0) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002848 /* index is empty, remove it;
Alex Tomasa86c6182006-10-11 01:21:03 -07002849 * handle must be already prepared by the
2850 * truncatei_leaf() */
Forrest Liuc36575e2012-12-17 09:55:39 -05002851 err = ext4_ext_rm_idx(handle, inode, path, i);
Alex Tomasa86c6182006-10-11 01:21:03 -07002852 }
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002853 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002854 brelse(path[i].p_bh);
2855 path[i].p_bh = NULL;
2856 i--;
2857 ext_debug("return to level %d\n", i);
2858 }
2859 }
2860
Lukas Czerner61801322013-05-27 23:32:35 -04002861 trace_ext4_ext_remove_space_done(inode, start, end, depth,
2862 partial_cluster, path->p_hdr->eh_entries);
Aditya Kalid8990242011-09-09 19:18:51 -04002863
Aditya Kali7b415bf2011-09-09 19:04:51 -04002864 /* If we still have something in the partial cluster and we have removed
2865 * even the first extent, then we should free the blocks in the partial
2866 * cluster as well. */
Lukas Czernerd23142c2013-05-27 23:33:35 -04002867 if (partial_cluster > 0 && path->p_hdr->eh_entries == 0) {
Theodore Ts'o981250c2013-06-12 11:48:29 -04002868 int flags = get_default_free_blocks_flags(inode);
Aditya Kali7b415bf2011-09-09 19:04:51 -04002869
2870 ext4_free_blocks(handle, inode, NULL,
2871 EXT4_C2B(EXT4_SB(sb), partial_cluster),
2872 EXT4_SB(sb)->s_cluster_ratio, flags);
2873 partial_cluster = 0;
2874 }
2875
Alex Tomasa86c6182006-10-11 01:21:03 -07002876 /* TODO: flexible tree reduction should be here */
2877 if (path->p_hdr->eh_entries == 0) {
2878 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002879 * truncate to zero freed all the tree,
2880 * so we need to correct eh_depth
Alex Tomasa86c6182006-10-11 01:21:03 -07002881 */
2882 err = ext4_ext_get_access(handle, inode, path);
2883 if (err == 0) {
2884 ext_inode_hdr(inode)->eh_depth = 0;
2885 ext_inode_hdr(inode)->eh_max =
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04002886 cpu_to_le16(ext4_ext_space_root(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07002887 err = ext4_ext_dirty(handle, inode, path);
2888 }
2889 }
2890out:
Alex Tomasa86c6182006-10-11 01:21:03 -07002891 ext4_ext_drop_refs(path);
2892 kfree(path);
Ashish Sangwan968dee72012-07-22 22:49:08 -04002893 if (err == -EAGAIN) {
2894 path = NULL;
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002895 goto again;
Ashish Sangwan968dee72012-07-22 22:49:08 -04002896 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002897 ext4_journal_stop(handle);
2898
2899 return err;
2900}
2901
2902/*
2903 * called at mount time
2904 */
2905void ext4_ext_init(struct super_block *sb)
2906{
2907 /*
2908 * possible initialization would be here
2909 */
2910
Theodore Ts'o83982b62009-01-06 14:53:16 -05002911 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Theodore Ts'o90576c02009-09-29 15:51:30 -04002912#if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS)
Theodore Ts'o92b97812012-03-19 23:41:49 -04002913 printk(KERN_INFO "EXT4-fs: file extents enabled"
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01002914#ifdef AGGRESSIVE_TEST
Theodore Ts'o92b97812012-03-19 23:41:49 -04002915 ", aggressive tests"
Alex Tomasa86c6182006-10-11 01:21:03 -07002916#endif
2917#ifdef CHECK_BINSEARCH
Theodore Ts'o92b97812012-03-19 23:41:49 -04002918 ", check binsearch"
Alex Tomasa86c6182006-10-11 01:21:03 -07002919#endif
2920#ifdef EXTENTS_STATS
Theodore Ts'o92b97812012-03-19 23:41:49 -04002921 ", stats"
Alex Tomasa86c6182006-10-11 01:21:03 -07002922#endif
Theodore Ts'o92b97812012-03-19 23:41:49 -04002923 "\n");
Theodore Ts'o90576c02009-09-29 15:51:30 -04002924#endif
Alex Tomasa86c6182006-10-11 01:21:03 -07002925#ifdef EXTENTS_STATS
2926 spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock);
2927 EXT4_SB(sb)->s_ext_min = 1 << 30;
2928 EXT4_SB(sb)->s_ext_max = 0;
2929#endif
2930 }
2931}
2932
2933/*
2934 * called at umount time
2935 */
2936void ext4_ext_release(struct super_block *sb)
2937{
Theodore Ts'o83982b62009-01-06 14:53:16 -05002938 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
Alex Tomasa86c6182006-10-11 01:21:03 -07002939 return;
2940
2941#ifdef EXTENTS_STATS
2942 if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) {
2943 struct ext4_sb_info *sbi = EXT4_SB(sb);
2944 printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
2945 sbi->s_ext_blocks, sbi->s_ext_extents,
2946 sbi->s_ext_blocks / sbi->s_ext_extents);
2947 printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
2948 sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max);
2949 }
2950#endif
2951}
2952
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002953/* FIXME!! we need to try to merge to left or right after zero-out */
2954static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
2955{
Lukas Czerner24075182010-10-27 21:30:06 -04002956 ext4_fsblk_t ee_pblock;
2957 unsigned int ee_len;
Jing Zhangb7203032010-05-12 00:00:00 -04002958 int ret;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002959
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002960 ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'obf89d162010-10-27 21:30:14 -04002961 ee_pblock = ext4_ext_pblock(ex);
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002962
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04002963 ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS);
Lukas Czerner24075182010-10-27 21:30:06 -04002964 if (ret > 0)
2965 ret = 0;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002966
Lukas Czerner24075182010-10-27 21:30:06 -04002967 return ret;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002968}
2969
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002970/*
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002971 * ext4_split_extent_at() splits an extent at given block.
2972 *
2973 * @handle: the journal handle
2974 * @inode: the file inode
2975 * @path: the path to the extent
2976 * @split: the logical block where the extent is splitted.
2977 * @split_flags: indicates if the extent could be zeroout if split fails, and
2978 * the states(init or uninit) of new extents.
2979 * @flags: flags used to insert new extent to extent tree.
2980 *
2981 *
2982 * Splits extent [a, b] into two extents [a, @split) and [@split, b], states
2983 * of which are deterimined by split_flag.
2984 *
2985 * There are two cases:
2986 * a> the extent are splitted into two extent.
2987 * b> split is not needed, and just mark the extent.
2988 *
2989 * return 0 on success.
2990 */
2991static int ext4_split_extent_at(handle_t *handle,
2992 struct inode *inode,
2993 struct ext4_ext_path *path,
2994 ext4_lblk_t split,
2995 int split_flag,
2996 int flags)
2997{
2998 ext4_fsblk_t newblock;
2999 ext4_lblk_t ee_block;
Zheng Liuadb23552013-03-10 21:13:05 -04003000 struct ext4_extent *ex, newex, orig_ex, zero_ex;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003001 struct ext4_extent *ex2 = NULL;
3002 unsigned int ee_len, depth;
3003 int err = 0;
3004
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003005 BUG_ON((split_flag & (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2)) ==
3006 (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2));
3007
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003008 ext_debug("ext4_split_extents_at: inode %lu, logical"
3009 "block %llu\n", inode->i_ino, (unsigned long long)split);
3010
3011 ext4_ext_show_leaf(inode, path);
3012
3013 depth = ext_depth(inode);
3014 ex = path[depth].p_ext;
3015 ee_block = le32_to_cpu(ex->ee_block);
3016 ee_len = ext4_ext_get_actual_len(ex);
3017 newblock = split - ee_block + ext4_ext_pblock(ex);
3018
3019 BUG_ON(split < ee_block || split >= (ee_block + ee_len));
Dmitry Monakhov357b66f2013-03-04 00:34:34 -05003020 BUG_ON(!ext4_ext_is_uninitialized(ex) &&
3021 split_flag & (EXT4_EXT_MAY_ZEROOUT |
3022 EXT4_EXT_MARK_UNINIT1 |
3023 EXT4_EXT_MARK_UNINIT2));
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003024
3025 err = ext4_ext_get_access(handle, inode, path + depth);
3026 if (err)
3027 goto out;
3028
3029 if (split == ee_block) {
3030 /*
3031 * case b: block @split is the block that the extent begins with
3032 * then we just change the state of the extent, and splitting
3033 * is not needed.
3034 */
3035 if (split_flag & EXT4_EXT_MARK_UNINIT2)
3036 ext4_ext_mark_uninitialized(ex);
3037 else
3038 ext4_ext_mark_initialized(ex);
3039
3040 if (!(flags & EXT4_GET_BLOCKS_PRE_IO))
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003041 ext4_ext_try_to_merge(handle, inode, path, ex);
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003042
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003043 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003044 goto out;
3045 }
3046
3047 /* case a */
3048 memcpy(&orig_ex, ex, sizeof(orig_ex));
3049 ex->ee_len = cpu_to_le16(split - ee_block);
3050 if (split_flag & EXT4_EXT_MARK_UNINIT1)
3051 ext4_ext_mark_uninitialized(ex);
3052
3053 /*
3054 * path may lead to new leaf, not to original leaf any more
3055 * after ext4_ext_insert_extent() returns,
3056 */
3057 err = ext4_ext_dirty(handle, inode, path + depth);
3058 if (err)
3059 goto fix_extent_len;
3060
3061 ex2 = &newex;
3062 ex2->ee_block = cpu_to_le32(split);
3063 ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block));
3064 ext4_ext_store_pblock(ex2, newblock);
3065 if (split_flag & EXT4_EXT_MARK_UNINIT2)
3066 ext4_ext_mark_uninitialized(ex2);
3067
3068 err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
3069 if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003070 if (split_flag & (EXT4_EXT_DATA_VALID1|EXT4_EXT_DATA_VALID2)) {
Zheng Liuadb23552013-03-10 21:13:05 -04003071 if (split_flag & EXT4_EXT_DATA_VALID1) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003072 err = ext4_ext_zeroout(inode, ex2);
Zheng Liuadb23552013-03-10 21:13:05 -04003073 zero_ex.ee_block = ex2->ee_block;
Zheng Liu8cde7ad2013-04-03 12:27:18 -04003074 zero_ex.ee_len = cpu_to_le16(
3075 ext4_ext_get_actual_len(ex2));
Zheng Liuadb23552013-03-10 21:13:05 -04003076 ext4_ext_store_pblock(&zero_ex,
3077 ext4_ext_pblock(ex2));
3078 } else {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003079 err = ext4_ext_zeroout(inode, ex);
Zheng Liuadb23552013-03-10 21:13:05 -04003080 zero_ex.ee_block = ex->ee_block;
Zheng Liu8cde7ad2013-04-03 12:27:18 -04003081 zero_ex.ee_len = cpu_to_le16(
3082 ext4_ext_get_actual_len(ex));
Zheng Liuadb23552013-03-10 21:13:05 -04003083 ext4_ext_store_pblock(&zero_ex,
3084 ext4_ext_pblock(ex));
3085 }
3086 } else {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003087 err = ext4_ext_zeroout(inode, &orig_ex);
Zheng Liuadb23552013-03-10 21:13:05 -04003088 zero_ex.ee_block = orig_ex.ee_block;
Zheng Liu8cde7ad2013-04-03 12:27:18 -04003089 zero_ex.ee_len = cpu_to_le16(
3090 ext4_ext_get_actual_len(&orig_ex));
Zheng Liuadb23552013-03-10 21:13:05 -04003091 ext4_ext_store_pblock(&zero_ex,
3092 ext4_ext_pblock(&orig_ex));
3093 }
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003094
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003095 if (err)
3096 goto fix_extent_len;
3097 /* update the extent length and mark as initialized */
Al Viroaf1584f2012-04-12 20:32:25 -04003098 ex->ee_len = cpu_to_le16(ee_len);
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003099 ext4_ext_try_to_merge(handle, inode, path, ex);
3100 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Zheng Liuadb23552013-03-10 21:13:05 -04003101 if (err)
3102 goto fix_extent_len;
3103
3104 /* update extent status tree */
3105 err = ext4_es_zeroout(inode, &zero_ex);
3106
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003107 goto out;
3108 } else if (err)
3109 goto fix_extent_len;
3110
3111out:
3112 ext4_ext_show_leaf(inode, path);
3113 return err;
3114
3115fix_extent_len:
3116 ex->ee_len = orig_ex.ee_len;
3117 ext4_ext_dirty(handle, inode, path + depth);
3118 return err;
3119}
3120
3121/*
3122 * ext4_split_extents() splits an extent and mark extent which is covered
3123 * by @map as split_flags indicates
3124 *
3125 * It may result in splitting the extent into multiple extents (upto three)
3126 * There are three possibilities:
3127 * a> There is no split required
3128 * b> Splits in two extents: Split is happening at either end of the extent
3129 * c> Splits in three extents: Somone is splitting in middle of the extent
3130 *
3131 */
3132static int ext4_split_extent(handle_t *handle,
3133 struct inode *inode,
3134 struct ext4_ext_path *path,
3135 struct ext4_map_blocks *map,
3136 int split_flag,
3137 int flags)
3138{
3139 ext4_lblk_t ee_block;
3140 struct ext4_extent *ex;
3141 unsigned int ee_len, depth;
3142 int err = 0;
3143 int uninitialized;
3144 int split_flag1, flags1;
Zheng Liu3a225672013-03-10 21:20:23 -04003145 int allocated = map->m_len;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003146
3147 depth = ext_depth(inode);
3148 ex = path[depth].p_ext;
3149 ee_block = le32_to_cpu(ex->ee_block);
3150 ee_len = ext4_ext_get_actual_len(ex);
3151 uninitialized = ext4_ext_is_uninitialized(ex);
3152
3153 if (map->m_lblk + map->m_len < ee_block + ee_len) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003154 split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003155 flags1 = flags | EXT4_GET_BLOCKS_PRE_IO;
3156 if (uninitialized)
3157 split_flag1 |= EXT4_EXT_MARK_UNINIT1 |
3158 EXT4_EXT_MARK_UNINIT2;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003159 if (split_flag & EXT4_EXT_DATA_VALID2)
3160 split_flag1 |= EXT4_EXT_DATA_VALID1;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003161 err = ext4_split_extent_at(handle, inode, path,
3162 map->m_lblk + map->m_len, split_flag1, flags1);
Yongqiang Yang93917412011-05-22 20:49:12 -04003163 if (err)
3164 goto out;
Zheng Liu3a225672013-03-10 21:20:23 -04003165 } else {
3166 allocated = ee_len - (map->m_lblk - ee_block);
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003167 }
Dmitry Monakhov357b66f2013-03-04 00:34:34 -05003168 /*
3169 * Update path is required because previous ext4_split_extent_at() may
3170 * result in split of original leaf or extent zeroout.
3171 */
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003172 ext4_ext_drop_refs(path);
3173 path = ext4_ext_find_extent(inode, map->m_lblk, path);
3174 if (IS_ERR(path))
3175 return PTR_ERR(path);
Dmitry Monakhov357b66f2013-03-04 00:34:34 -05003176 depth = ext_depth(inode);
3177 ex = path[depth].p_ext;
3178 uninitialized = ext4_ext_is_uninitialized(ex);
3179 split_flag1 = 0;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003180
3181 if (map->m_lblk >= ee_block) {
Dmitry Monakhov357b66f2013-03-04 00:34:34 -05003182 split_flag1 = split_flag & EXT4_EXT_DATA_VALID2;
3183 if (uninitialized) {
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003184 split_flag1 |= EXT4_EXT_MARK_UNINIT1;
Dmitry Monakhov357b66f2013-03-04 00:34:34 -05003185 split_flag1 |= split_flag & (EXT4_EXT_MAY_ZEROOUT |
3186 EXT4_EXT_MARK_UNINIT2);
3187 }
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003188 err = ext4_split_extent_at(handle, inode, path,
3189 map->m_lblk, split_flag1, flags);
3190 if (err)
3191 goto out;
3192 }
3193
3194 ext4_ext_show_leaf(inode, path);
3195out:
Zheng Liu3a225672013-03-10 21:20:23 -04003196 return err ? err : allocated;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003197}
3198
Amit Arora56055d32007-07-17 21:42:38 -04003199/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003200 * This function is called by ext4_ext_map_blocks() if someone tries to write
Amit Arora56055d32007-07-17 21:42:38 -04003201 * to an uninitialized extent. It may result in splitting the uninitialized
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003202 * extent into multiple extents (up to three - one initialized and two
Amit Arora56055d32007-07-17 21:42:38 -04003203 * uninitialized).
3204 * There are three possibilities:
3205 * a> There is no split required: Entire extent should be initialized
3206 * b> Splits in two extents: Write is happening at either end of the extent
3207 * c> Splits in three extents: Somone is writing in middle of the extent
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003208 *
3209 * Pre-conditions:
3210 * - The extent pointed to by 'path' is uninitialized.
3211 * - The extent pointed to by 'path' contains a superset
3212 * of the logical span [map->m_lblk, map->m_lblk + map->m_len).
3213 *
3214 * Post-conditions on success:
3215 * - the returned value is the number of blocks beyond map->l_lblk
3216 * that are allocated and initialized.
3217 * It is guaranteed to be >= map->m_len.
Amit Arora56055d32007-07-17 21:42:38 -04003218 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003219static int ext4_ext_convert_to_initialized(handle_t *handle,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003220 struct inode *inode,
3221 struct ext4_map_blocks *map,
Lukas Czerner27dd4382013-04-09 22:11:22 -04003222 struct ext4_ext_path *path,
3223 int flags)
Amit Arora56055d32007-07-17 21:42:38 -04003224{
Zheng Liu67a5da52012-08-17 09:54:17 -04003225 struct ext4_sb_info *sbi;
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003226 struct ext4_extent_header *eh;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003227 struct ext4_map_blocks split_map;
3228 struct ext4_extent zero_ex;
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003229 struct ext4_extent *ex, *abut_ex;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003230 ext4_lblk_t ee_block, eof_block;
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003231 unsigned int ee_len, depth, map_len = map->m_len;
3232 int allocated = 0, max_zeroout = 0;
Amit Arora56055d32007-07-17 21:42:38 -04003233 int err = 0;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003234 int split_flag = 0;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003235
3236 ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical"
3237 "block %llu, max_blocks %u\n", inode->i_ino,
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003238 (unsigned long long)map->m_lblk, map_len);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003239
Zheng Liu67a5da52012-08-17 09:54:17 -04003240 sbi = EXT4_SB(inode->i_sb);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003241 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
3242 inode->i_sb->s_blocksize_bits;
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003243 if (eof_block < map->m_lblk + map_len)
3244 eof_block = map->m_lblk + map_len;
Amit Arora56055d32007-07-17 21:42:38 -04003245
3246 depth = ext_depth(inode);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003247 eh = path[depth].p_hdr;
Amit Arora56055d32007-07-17 21:42:38 -04003248 ex = path[depth].p_ext;
3249 ee_block = le32_to_cpu(ex->ee_block);
3250 ee_len = ext4_ext_get_actual_len(ex);
Zheng Liuadb23552013-03-10 21:13:05 -04003251 zero_ex.ee_len = 0;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003252
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003253 trace_ext4_ext_convert_to_initialized_enter(inode, map, ex);
3254
3255 /* Pre-conditions */
3256 BUG_ON(!ext4_ext_is_uninitialized(ex));
3257 BUG_ON(!in_range(map->m_lblk, ee_block, ee_len));
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003258
3259 /*
3260 * Attempt to transfer newly initialized blocks from the currently
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003261 * uninitialized extent to its neighbor. This is much cheaper
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003262 * than an insertion followed by a merge as those involve costly
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003263 * memmove() calls. Transferring to the left is the common case in
3264 * steady state for workloads doing fallocate(FALLOC_FL_KEEP_SIZE)
3265 * followed by append writes.
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003266 *
3267 * Limitations of the current logic:
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003268 * - L1: we do not deal with writes covering the whole extent.
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003269 * This would require removing the extent if the transfer
3270 * is possible.
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003271 * - L2: we only attempt to merge with an extent stored in the
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003272 * same extent tree node.
3273 */
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003274 if ((map->m_lblk == ee_block) &&
3275 /* See if we can merge left */
3276 (map_len < ee_len) && /*L1*/
3277 (ex > EXT_FIRST_EXTENT(eh))) { /*L2*/
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003278 ext4_lblk_t prev_lblk;
3279 ext4_fsblk_t prev_pblk, ee_pblk;
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003280 unsigned int prev_len;
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003281
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003282 abut_ex = ex - 1;
3283 prev_lblk = le32_to_cpu(abut_ex->ee_block);
3284 prev_len = ext4_ext_get_actual_len(abut_ex);
3285 prev_pblk = ext4_ext_pblock(abut_ex);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003286 ee_pblk = ext4_ext_pblock(ex);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003287
3288 /*
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003289 * A transfer of blocks from 'ex' to 'abut_ex' is allowed
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003290 * upon those conditions:
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003291 * - C1: abut_ex is initialized,
3292 * - C2: abut_ex is logically abutting ex,
3293 * - C3: abut_ex is physically abutting ex,
3294 * - C4: abut_ex can receive the additional blocks without
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003295 * overflowing the (initialized) length limit.
3296 */
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003297 if ((!ext4_ext_is_uninitialized(abut_ex)) && /*C1*/
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003298 ((prev_lblk + prev_len) == ee_block) && /*C2*/
3299 ((prev_pblk + prev_len) == ee_pblk) && /*C3*/
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003300 (prev_len < (EXT_INIT_MAX_LEN - map_len))) { /*C4*/
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003301 err = ext4_ext_get_access(handle, inode, path + depth);
3302 if (err)
3303 goto out;
3304
3305 trace_ext4_ext_convert_to_initialized_fastpath(inode,
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003306 map, ex, abut_ex);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003307
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003308 /* Shift the start of ex by 'map_len' blocks */
3309 ex->ee_block = cpu_to_le32(ee_block + map_len);
3310 ext4_ext_store_pblock(ex, ee_pblk + map_len);
3311 ex->ee_len = cpu_to_le16(ee_len - map_len);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003312 ext4_ext_mark_uninitialized(ex); /* Restore the flag */
3313
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003314 /* Extend abut_ex by 'map_len' blocks */
3315 abut_ex->ee_len = cpu_to_le16(prev_len + map_len);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003316
3317 /* Result: number of initialized blocks past m_lblk */
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003318 allocated = map_len;
3319 }
3320 } else if (((map->m_lblk + map_len) == (ee_block + ee_len)) &&
3321 (map_len < ee_len) && /*L1*/
3322 ex < EXT_LAST_EXTENT(eh)) { /*L2*/
3323 /* See if we can merge right */
3324 ext4_lblk_t next_lblk;
3325 ext4_fsblk_t next_pblk, ee_pblk;
3326 unsigned int next_len;
3327
3328 abut_ex = ex + 1;
3329 next_lblk = le32_to_cpu(abut_ex->ee_block);
3330 next_len = ext4_ext_get_actual_len(abut_ex);
3331 next_pblk = ext4_ext_pblock(abut_ex);
3332 ee_pblk = ext4_ext_pblock(ex);
3333
3334 /*
3335 * A transfer of blocks from 'ex' to 'abut_ex' is allowed
3336 * upon those conditions:
3337 * - C1: abut_ex is initialized,
3338 * - C2: abut_ex is logically abutting ex,
3339 * - C3: abut_ex is physically abutting ex,
3340 * - C4: abut_ex can receive the additional blocks without
3341 * overflowing the (initialized) length limit.
3342 */
3343 if ((!ext4_ext_is_uninitialized(abut_ex)) && /*C1*/
3344 ((map->m_lblk + map_len) == next_lblk) && /*C2*/
3345 ((ee_pblk + ee_len) == next_pblk) && /*C3*/
3346 (next_len < (EXT_INIT_MAX_LEN - map_len))) { /*C4*/
3347 err = ext4_ext_get_access(handle, inode, path + depth);
3348 if (err)
3349 goto out;
3350
3351 trace_ext4_ext_convert_to_initialized_fastpath(inode,
3352 map, ex, abut_ex);
3353
3354 /* Shift the start of abut_ex by 'map_len' blocks */
3355 abut_ex->ee_block = cpu_to_le32(next_lblk - map_len);
3356 ext4_ext_store_pblock(abut_ex, next_pblk - map_len);
3357 ex->ee_len = cpu_to_le16(ee_len - map_len);
3358 ext4_ext_mark_uninitialized(ex); /* Restore the flag */
3359
3360 /* Extend abut_ex by 'map_len' blocks */
3361 abut_ex->ee_len = cpu_to_le16(next_len + map_len);
3362
3363 /* Result: number of initialized blocks past m_lblk */
3364 allocated = map_len;
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003365 }
3366 }
Lukas Czernerbc2d9db2013-04-03 23:33:27 -04003367 if (allocated) {
3368 /* Mark the block containing both extents as dirty */
3369 ext4_ext_dirty(handle, inode, path + depth);
3370
3371 /* Update path to point to the right extent */
3372 path[depth].p_ext = abut_ex;
3373 goto out;
3374 } else
3375 allocated = ee_len - (map->m_lblk - ee_block);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003376
Yongqiang Yang667eff32011-05-03 12:25:07 -04003377 WARN_ON(map->m_lblk < ee_block);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003378 /*
3379 * It is safe to convert extent to initialized via explicit
3380 * zeroout only if extent is fully insde i_size or new_size.
3381 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04003382 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003383
Zheng Liu67a5da52012-08-17 09:54:17 -04003384 if (EXT4_EXT_MAY_ZEROOUT & split_flag)
3385 max_zeroout = sbi->s_extent_max_zeroout_kb >>
Lukas Czerner4f42f802013-03-12 12:40:04 -04003386 (inode->i_sb->s_blocksize_bits - 10);
Zheng Liu67a5da52012-08-17 09:54:17 -04003387
3388 /* If extent is less than s_max_zeroout_kb, zeroout directly */
3389 if (max_zeroout && (ee_len <= max_zeroout)) {
Yongqiang Yang667eff32011-05-03 12:25:07 -04003390 err = ext4_ext_zeroout(inode, ex);
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04003391 if (err)
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04003392 goto out;
Zheng Liuadb23552013-03-10 21:13:05 -04003393 zero_ex.ee_block = ex->ee_block;
Zheng Liu8cde7ad2013-04-03 12:27:18 -04003394 zero_ex.ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex));
Zheng Liuadb23552013-03-10 21:13:05 -04003395 ext4_ext_store_pblock(&zero_ex, ext4_ext_pblock(ex));
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04003396
3397 err = ext4_ext_get_access(handle, inode, path + depth);
3398 if (err)
3399 goto out;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003400 ext4_ext_mark_initialized(ex);
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003401 ext4_ext_try_to_merge(handle, inode, path, ex);
3402 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Yongqiang Yang667eff32011-05-03 12:25:07 -04003403 goto out;
Amit Arora56055d32007-07-17 21:42:38 -04003404 }
Yongqiang Yang667eff32011-05-03 12:25:07 -04003405
Amit Arora56055d32007-07-17 21:42:38 -04003406 /*
Yongqiang Yang667eff32011-05-03 12:25:07 -04003407 * four cases:
3408 * 1. split the extent into three extents.
3409 * 2. split the extent into two extents, zeroout the first half.
3410 * 3. split the extent into two extents, zeroout the second half.
3411 * 4. split the extent into two extents with out zeroout.
Amit Arora56055d32007-07-17 21:42:38 -04003412 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04003413 split_map.m_lblk = map->m_lblk;
3414 split_map.m_len = map->m_len;
3415
Zheng Liu67a5da52012-08-17 09:54:17 -04003416 if (max_zeroout && (allocated > map->m_len)) {
3417 if (allocated <= max_zeroout) {
Yongqiang Yang667eff32011-05-03 12:25:07 -04003418 /* case 3 */
3419 zero_ex.ee_block =
Allison Henderson9b940f82011-05-16 10:11:09 -04003420 cpu_to_le32(map->m_lblk);
3421 zero_ex.ee_len = cpu_to_le16(allocated);
Yongqiang Yang667eff32011-05-03 12:25:07 -04003422 ext4_ext_store_pblock(&zero_ex,
3423 ext4_ext_pblock(ex) + map->m_lblk - ee_block);
3424 err = ext4_ext_zeroout(inode, &zero_ex);
Amit Arora56055d32007-07-17 21:42:38 -04003425 if (err)
3426 goto out;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003427 split_map.m_lblk = map->m_lblk;
3428 split_map.m_len = allocated;
Zheng Liu67a5da52012-08-17 09:54:17 -04003429 } else if (map->m_lblk - ee_block + map->m_len < max_zeroout) {
Yongqiang Yang667eff32011-05-03 12:25:07 -04003430 /* case 2 */
3431 if (map->m_lblk != ee_block) {
3432 zero_ex.ee_block = ex->ee_block;
3433 zero_ex.ee_len = cpu_to_le16(map->m_lblk -
3434 ee_block);
3435 ext4_ext_store_pblock(&zero_ex,
3436 ext4_ext_pblock(ex));
3437 err = ext4_ext_zeroout(inode, &zero_ex);
3438 if (err)
3439 goto out;
3440 }
3441
Yongqiang Yang667eff32011-05-03 12:25:07 -04003442 split_map.m_lblk = ee_block;
Allison Henderson9b940f82011-05-16 10:11:09 -04003443 split_map.m_len = map->m_lblk - ee_block + map->m_len;
3444 allocated = map->m_len;
Amit Arora56055d32007-07-17 21:42:38 -04003445 }
3446 }
Yongqiang Yang667eff32011-05-03 12:25:07 -04003447
3448 allocated = ext4_split_extent(handle, inode, path,
Lukas Czerner27dd4382013-04-09 22:11:22 -04003449 &split_map, split_flag, flags);
Yongqiang Yang667eff32011-05-03 12:25:07 -04003450 if (allocated < 0)
3451 err = allocated;
3452
Amit Arora56055d32007-07-17 21:42:38 -04003453out:
Zheng Liuadb23552013-03-10 21:13:05 -04003454 /* If we have gotten a failure, don't zero out status tree */
3455 if (!err)
3456 err = ext4_es_zeroout(inode, &zero_ex);
Amit Arora56055d32007-07-17 21:42:38 -04003457 return err ? err : allocated;
3458}
3459
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05003460/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003461 * This function is called by ext4_ext_map_blocks() from
Mingming Cao00314622009-09-28 15:49:08 -04003462 * ext4_get_blocks_dio_write() when DIO to write
3463 * to an uninitialized extent.
3464 *
Paul Bollefd018fe2011-02-15 00:05:43 +01003465 * Writing to an uninitialized extent may result in splitting the uninitialized
Wang Sheng-Hui30cb27d2012-08-18 22:38:07 -04003466 * extent into multiple initialized/uninitialized extents (up to three)
Mingming Cao00314622009-09-28 15:49:08 -04003467 * There are three possibilities:
3468 * a> There is no split required: Entire extent should be uninitialized
3469 * b> Splits in two extents: Write is happening at either end of the extent
3470 * c> Splits in three extents: Somone is writing in middle of the extent
3471 *
3472 * One of more index blocks maybe needed if the extent tree grow after
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003473 * the uninitialized extent split. To prevent ENOSPC occur at the IO
Mingming Cao00314622009-09-28 15:49:08 -04003474 * complete, we need to split the uninitialized extent before DIO submit
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02003475 * the IO. The uninitialized extent called at this time will be split
Mingming Cao00314622009-09-28 15:49:08 -04003476 * into three uninitialized extent(at most). After IO complete, the part
3477 * being filled will be convert to initialized by the end_io callback function
3478 * via ext4_convert_unwritten_extents().
Mingmingba230c32009-11-06 04:01:23 -05003479 *
3480 * Returns the size of uninitialized extent to be written on success.
Mingming Cao00314622009-09-28 15:49:08 -04003481 */
3482static int ext4_split_unwritten_extents(handle_t *handle,
3483 struct inode *inode,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003484 struct ext4_map_blocks *map,
Mingming Cao00314622009-09-28 15:49:08 -04003485 struct ext4_ext_path *path,
Mingming Cao00314622009-09-28 15:49:08 -04003486 int flags)
3487{
Yongqiang Yang667eff32011-05-03 12:25:07 -04003488 ext4_lblk_t eof_block;
3489 ext4_lblk_t ee_block;
3490 struct ext4_extent *ex;
3491 unsigned int ee_len;
3492 int split_flag = 0, depth;
Mingming Cao00314622009-09-28 15:49:08 -04003493
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003494 ext_debug("ext4_split_unwritten_extents: inode %lu, logical"
3495 "block %llu, max_blocks %u\n", inode->i_ino,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003496 (unsigned long long)map->m_lblk, map->m_len);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003497
3498 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
3499 inode->i_sb->s_blocksize_bits;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003500 if (eof_block < map->m_lblk + map->m_len)
3501 eof_block = map->m_lblk + map->m_len;
Mingming Cao00314622009-09-28 15:49:08 -04003502 /*
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003503 * It is safe to convert extent to initialized via explicit
3504 * zeroout only if extent is fully insde i_size or new_size.
3505 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04003506 depth = ext_depth(inode);
3507 ex = path[depth].p_ext;
3508 ee_block = le32_to_cpu(ex->ee_block);
3509 ee_len = ext4_ext_get_actual_len(ex);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003510
Yongqiang Yang667eff32011-05-03 12:25:07 -04003511 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
3512 split_flag |= EXT4_EXT_MARK_UNINIT2;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003513 if (flags & EXT4_GET_BLOCKS_CONVERT)
3514 split_flag |= EXT4_EXT_DATA_VALID2;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003515 flags |= EXT4_GET_BLOCKS_PRE_IO;
3516 return ext4_split_extent(handle, inode, path, map, split_flag, flags);
Mingming Cao00314622009-09-28 15:49:08 -04003517}
Yongqiang Yang197217a2011-05-03 11:45:29 -04003518
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003519static int ext4_convert_unwritten_extents_endio(handle_t *handle,
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003520 struct inode *inode,
3521 struct ext4_map_blocks *map,
3522 struct ext4_ext_path *path)
Mingming Cao00314622009-09-28 15:49:08 -04003523{
3524 struct ext4_extent *ex;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003525 ext4_lblk_t ee_block;
3526 unsigned int ee_len;
Mingming Cao00314622009-09-28 15:49:08 -04003527 int depth;
3528 int err = 0;
Mingming Cao00314622009-09-28 15:49:08 -04003529
3530 depth = ext_depth(inode);
Mingming Cao00314622009-09-28 15:49:08 -04003531 ex = path[depth].p_ext;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003532 ee_block = le32_to_cpu(ex->ee_block);
3533 ee_len = ext4_ext_get_actual_len(ex);
Mingming Cao00314622009-09-28 15:49:08 -04003534
Yongqiang Yang197217a2011-05-03 11:45:29 -04003535 ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical"
3536 "block %llu, max_blocks %u\n", inode->i_ino,
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003537 (unsigned long long)ee_block, ee_len);
3538
Dmitry Monakhovff95ec22013-03-04 00:41:05 -05003539 /* If extent is larger than requested it is a clear sign that we still
3540 * have some extent state machine issues left. So extent_split is still
3541 * required.
3542 * TODO: Once all related issues will be fixed this situation should be
3543 * illegal.
3544 */
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003545 if (ee_block != map->m_lblk || ee_len > map->m_len) {
Dmitry Monakhovff95ec22013-03-04 00:41:05 -05003546#ifdef EXT4_DEBUG
3547 ext4_warning("Inode (%ld) finished: extent logical block %llu,"
3548 " len %u; IO logical block %llu, len %u\n",
3549 inode->i_ino, (unsigned long long)ee_block, ee_len,
3550 (unsigned long long)map->m_lblk, map->m_len);
3551#endif
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003552 err = ext4_split_unwritten_extents(handle, inode, map, path,
3553 EXT4_GET_BLOCKS_CONVERT);
3554 if (err < 0)
3555 goto out;
3556 ext4_ext_drop_refs(path);
3557 path = ext4_ext_find_extent(inode, map->m_lblk, path);
3558 if (IS_ERR(path)) {
3559 err = PTR_ERR(path);
3560 goto out;
3561 }
3562 depth = ext_depth(inode);
3563 ex = path[depth].p_ext;
3564 }
Yongqiang Yang197217a2011-05-03 11:45:29 -04003565
Mingming Cao00314622009-09-28 15:49:08 -04003566 err = ext4_ext_get_access(handle, inode, path + depth);
3567 if (err)
3568 goto out;
3569 /* first mark the extent as initialized */
3570 ext4_ext_mark_initialized(ex);
3571
Yongqiang Yang197217a2011-05-03 11:45:29 -04003572 /* note: ext4_ext_correct_indexes() isn't needed here because
3573 * borders are not changed
Mingming Cao00314622009-09-28 15:49:08 -04003574 */
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003575 ext4_ext_try_to_merge(handle, inode, path, ex);
Yongqiang Yang197217a2011-05-03 11:45:29 -04003576
Mingming Cao00314622009-09-28 15:49:08 -04003577 /* Mark modified extent as dirty */
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003578 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Mingming Cao00314622009-09-28 15:49:08 -04003579out:
3580 ext4_ext_show_leaf(inode, path);
3581 return err;
3582}
3583
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003584static void unmap_underlying_metadata_blocks(struct block_device *bdev,
3585 sector_t block, int count)
3586{
3587 int i;
3588 for (i = 0; i < count; i++)
3589 unmap_underlying_metadata(bdev, block + i);
3590}
3591
Theodore Ts'o58590b02010-10-27 21:23:12 -04003592/*
3593 * Handle EOFBLOCKS_FL flag, clearing it if necessary
3594 */
3595static int check_eofblocks_fl(handle_t *handle, struct inode *inode,
Eric Sandeend002ebf2011-01-10 13:03:35 -05003596 ext4_lblk_t lblk,
Theodore Ts'o58590b02010-10-27 21:23:12 -04003597 struct ext4_ext_path *path,
3598 unsigned int len)
3599{
3600 int i, depth;
3601 struct ext4_extent_header *eh;
Sergey Senozhatsky65922cb2011-03-23 14:08:27 -04003602 struct ext4_extent *last_ex;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003603
3604 if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
3605 return 0;
3606
3607 depth = ext_depth(inode);
3608 eh = path[depth].p_hdr;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003609
Lukas Czernerafcff5d2012-03-21 21:47:55 -04003610 /*
3611 * We're going to remove EOFBLOCKS_FL entirely in future so we
3612 * do not care for this case anymore. Simply remove the flag
3613 * if there are no extents.
3614 */
3615 if (unlikely(!eh->eh_entries))
3616 goto out;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003617 last_ex = EXT_LAST_EXTENT(eh);
3618 /*
3619 * We should clear the EOFBLOCKS_FL flag if we are writing the
3620 * last block in the last extent in the file. We test this by
3621 * first checking to see if the caller to
3622 * ext4_ext_get_blocks() was interested in the last block (or
3623 * a block beyond the last block) in the current extent. If
3624 * this turns out to be false, we can bail out from this
3625 * function immediately.
3626 */
Eric Sandeend002ebf2011-01-10 13:03:35 -05003627 if (lblk + len < le32_to_cpu(last_ex->ee_block) +
Theodore Ts'o58590b02010-10-27 21:23:12 -04003628 ext4_ext_get_actual_len(last_ex))
3629 return 0;
3630 /*
3631 * If the caller does appear to be planning to write at or
3632 * beyond the end of the current extent, we then test to see
3633 * if the current extent is the last extent in the file, by
3634 * checking to make sure it was reached via the rightmost node
3635 * at each level of the tree.
3636 */
3637 for (i = depth-1; i >= 0; i--)
3638 if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr))
3639 return 0;
Lukas Czernerafcff5d2012-03-21 21:47:55 -04003640out:
Theodore Ts'o58590b02010-10-27 21:23:12 -04003641 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3642 return ext4_mark_inode_dirty(handle, inode);
3643}
3644
Aditya Kali7b415bf2011-09-09 19:04:51 -04003645/**
3646 * ext4_find_delalloc_range: find delayed allocated block in the given range.
3647 *
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003648 * Return 1 if there is a delalloc block in the range, otherwise 0.
Aditya Kali7b415bf2011-09-09 19:04:51 -04003649 */
Zheng Liuf7fec032013-02-18 00:28:47 -05003650int ext4_find_delalloc_range(struct inode *inode,
3651 ext4_lblk_t lblk_start,
3652 ext4_lblk_t lblk_end)
Aditya Kali7b415bf2011-09-09 19:04:51 -04003653{
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003654 struct extent_status es;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003655
Yan, Zhenge30b5dc2013-05-03 02:15:52 -04003656 ext4_es_find_delayed_extent_range(inode, lblk_start, lblk_end, &es);
Zheng Liu06b0c882013-02-18 00:26:51 -05003657 if (es.es_len == 0)
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003658 return 0; /* there is no delay extent in this tree */
Zheng Liu06b0c882013-02-18 00:26:51 -05003659 else if (es.es_lblk <= lblk_start &&
3660 lblk_start < es.es_lblk + es.es_len)
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003661 return 1;
Zheng Liu06b0c882013-02-18 00:26:51 -05003662 else if (lblk_start <= es.es_lblk && es.es_lblk <= lblk_end)
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003663 return 1;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003664 else
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003665 return 0;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003666}
3667
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003668int ext4_find_delalloc_cluster(struct inode *inode, ext4_lblk_t lblk)
Aditya Kali7b415bf2011-09-09 19:04:51 -04003669{
3670 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3671 ext4_lblk_t lblk_start, lblk_end;
3672 lblk_start = lblk & (~(sbi->s_cluster_ratio - 1));
3673 lblk_end = lblk_start + sbi->s_cluster_ratio - 1;
3674
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003675 return ext4_find_delalloc_range(inode, lblk_start, lblk_end);
Aditya Kali7b415bf2011-09-09 19:04:51 -04003676}
3677
3678/**
3679 * Determines how many complete clusters (out of those specified by the 'map')
3680 * are under delalloc and were reserved quota for.
3681 * This function is called when we are writing out the blocks that were
3682 * originally written with their allocation delayed, but then the space was
3683 * allocated using fallocate() before the delayed allocation could be resolved.
3684 * The cases to look for are:
3685 * ('=' indicated delayed allocated blocks
3686 * '-' indicates non-delayed allocated blocks)
3687 * (a) partial clusters towards beginning and/or end outside of allocated range
3688 * are not delalloc'ed.
3689 * Ex:
3690 * |----c---=|====c====|====c====|===-c----|
3691 * |++++++ allocated ++++++|
3692 * ==> 4 complete clusters in above example
3693 *
3694 * (b) partial cluster (outside of allocated range) towards either end is
3695 * marked for delayed allocation. In this case, we will exclude that
3696 * cluster.
3697 * Ex:
3698 * |----====c========|========c========|
3699 * |++++++ allocated ++++++|
3700 * ==> 1 complete clusters in above example
3701 *
3702 * Ex:
3703 * |================c================|
3704 * |++++++ allocated ++++++|
3705 * ==> 0 complete clusters in above example
3706 *
3707 * The ext4_da_update_reserve_space will be called only if we
3708 * determine here that there were some "entire" clusters that span
3709 * this 'allocated' range.
3710 * In the non-bigalloc case, this function will just end up returning num_blks
3711 * without ever calling ext4_find_delalloc_range.
3712 */
3713static unsigned int
3714get_reserved_cluster_alloc(struct inode *inode, ext4_lblk_t lblk_start,
3715 unsigned int num_blks)
3716{
3717 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3718 ext4_lblk_t alloc_cluster_start, alloc_cluster_end;
3719 ext4_lblk_t lblk_from, lblk_to, c_offset;
3720 unsigned int allocated_clusters = 0;
3721
3722 alloc_cluster_start = EXT4_B2C(sbi, lblk_start);
3723 alloc_cluster_end = EXT4_B2C(sbi, lblk_start + num_blks - 1);
3724
3725 /* max possible clusters for this allocation */
3726 allocated_clusters = alloc_cluster_end - alloc_cluster_start + 1;
3727
Aditya Kalid8990242011-09-09 19:18:51 -04003728 trace_ext4_get_reserved_cluster_alloc(inode, lblk_start, num_blks);
3729
Aditya Kali7b415bf2011-09-09 19:04:51 -04003730 /* Check towards left side */
3731 c_offset = lblk_start & (sbi->s_cluster_ratio - 1);
3732 if (c_offset) {
3733 lblk_from = lblk_start & (~(sbi->s_cluster_ratio - 1));
3734 lblk_to = lblk_from + c_offset - 1;
3735
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003736 if (ext4_find_delalloc_range(inode, lblk_from, lblk_to))
Aditya Kali7b415bf2011-09-09 19:04:51 -04003737 allocated_clusters--;
3738 }
3739
3740 /* Now check towards right. */
3741 c_offset = (lblk_start + num_blks) & (sbi->s_cluster_ratio - 1);
3742 if (allocated_clusters && c_offset) {
3743 lblk_from = lblk_start + num_blks;
3744 lblk_to = lblk_from + (sbi->s_cluster_ratio - c_offset) - 1;
3745
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003746 if (ext4_find_delalloc_range(inode, lblk_from, lblk_to))
Aditya Kali7b415bf2011-09-09 19:04:51 -04003747 allocated_clusters--;
3748 }
3749
3750 return allocated_clusters;
3751}
3752
Mingming Cao00314622009-09-28 15:49:08 -04003753static int
3754ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003755 struct ext4_map_blocks *map,
Mingming Cao00314622009-09-28 15:49:08 -04003756 struct ext4_ext_path *path, int flags,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003757 unsigned int allocated, ext4_fsblk_t newblock)
Mingming Cao00314622009-09-28 15:49:08 -04003758{
3759 int ret = 0;
3760 int err = 0;
Dmitry Monakhovf45ee3a2012-09-28 23:21:09 -04003761 ext4_io_end_t *io = ext4_inode_aio(inode);
Mingming Cao00314622009-09-28 15:49:08 -04003762
Zheng Liu88635ca2011-12-28 19:00:25 -05003763 ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical "
3764 "block %llu, max_blocks %u, flags %x, allocated %u\n",
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003765 inode->i_ino, (unsigned long long)map->m_lblk, map->m_len,
Mingming Cao00314622009-09-28 15:49:08 -04003766 flags, allocated);
3767 ext4_ext_show_leaf(inode, path);
3768
Lukas Czerner27dd4382013-04-09 22:11:22 -04003769 /*
3770 * When writing into uninitialized space, we should not fail to
3771 * allocate metadata blocks for the new extent block if needed.
3772 */
3773 flags |= EXT4_GET_BLOCKS_METADATA_NOFAIL;
3774
Zheng Liub5645532012-11-08 14:33:43 -05003775 trace_ext4_ext_handle_uninitialized_extents(inode, map, flags,
3776 allocated, newblock);
Aditya Kalid8990242011-09-09 19:18:51 -04003777
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003778 /* get_block() before submit the IO, split the extent */
Jiaying Zhang744692d2010-03-04 16:14:02 -05003779 if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003780 ret = ext4_split_unwritten_extents(handle, inode, map,
3781 path, flags);
Dmitry Monakhov82e54222012-09-28 23:36:25 -04003782 if (ret <= 0)
3783 goto out;
Mingming5f5249502009-11-10 10:48:04 -05003784 /*
3785 * Flag the inode(non aio case) or end_io struct (aio case)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003786 * that this IO needs to conversion to written when IO is
Mingming5f5249502009-11-10 10:48:04 -05003787 * completed
3788 */
Tao Ma0edeb712011-10-31 17:30:44 -04003789 if (io)
3790 ext4_set_io_unwritten_flag(inode, io);
3791 else
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003792 ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
Zheng Liua25a4e12013-02-18 00:28:04 -05003793 map->m_flags |= EXT4_MAP_UNWRITTEN;
Jiaying Zhang744692d2010-03-04 16:14:02 -05003794 if (ext4_should_dioread_nolock(inode))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003795 map->m_flags |= EXT4_MAP_UNINIT;
Mingming Cao00314622009-09-28 15:49:08 -04003796 goto out;
3797 }
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003798 /* IO end_io complete, convert the filled extent to written */
Jiaying Zhang744692d2010-03-04 16:14:02 -05003799 if ((flags & EXT4_GET_BLOCKS_CONVERT)) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003800 ret = ext4_convert_unwritten_extents_endio(handle, inode, map,
Mingming Cao00314622009-09-28 15:49:08 -04003801 path);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003802 if (ret >= 0) {
Jan Karab436b9b2009-12-08 23:51:10 -05003803 ext4_update_inode_fsync_trans(handle, inode, 1);
Eric Sandeend002ebf2011-01-10 13:03:35 -05003804 err = check_eofblocks_fl(handle, inode, map->m_lblk,
3805 path, map->m_len);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003806 } else
3807 err = ret;
Zheng Liucdee7842013-03-10 21:08:52 -04003808 map->m_flags |= EXT4_MAP_MAPPED;
3809 if (allocated > map->m_len)
3810 allocated = map->m_len;
3811 map->m_len = allocated;
Mingming Cao00314622009-09-28 15:49:08 -04003812 goto out2;
3813 }
3814 /* buffered IO case */
3815 /*
3816 * repeat fallocate creation request
3817 * we already have an unwritten extent
3818 */
Zheng Liua25a4e12013-02-18 00:28:04 -05003819 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT) {
3820 map->m_flags |= EXT4_MAP_UNWRITTEN;
Mingming Cao00314622009-09-28 15:49:08 -04003821 goto map_out;
Zheng Liua25a4e12013-02-18 00:28:04 -05003822 }
Mingming Cao00314622009-09-28 15:49:08 -04003823
3824 /* buffered READ or buffered write_begin() lookup */
3825 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
3826 /*
3827 * We have blocks reserved already. We
3828 * return allocated blocks so that delalloc
3829 * won't do block reservation for us. But
3830 * the buffer head will be unmapped so that
3831 * a read from the block returns 0s.
3832 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003833 map->m_flags |= EXT4_MAP_UNWRITTEN;
Mingming Cao00314622009-09-28 15:49:08 -04003834 goto out1;
3835 }
3836
3837 /* buffered write, writepage time, convert*/
Lukas Czerner27dd4382013-04-09 22:11:22 -04003838 ret = ext4_ext_convert_to_initialized(handle, inode, map, path, flags);
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04003839 if (ret >= 0)
Jan Karab436b9b2009-12-08 23:51:10 -05003840 ext4_update_inode_fsync_trans(handle, inode, 1);
Mingming Cao00314622009-09-28 15:49:08 -04003841out:
3842 if (ret <= 0) {
3843 err = ret;
3844 goto out2;
3845 } else
3846 allocated = ret;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003847 map->m_flags |= EXT4_MAP_NEW;
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003848 /*
3849 * if we allocated more blocks than requested
3850 * we need to make sure we unmap the extra block
3851 * allocated. The actual needed block will get
3852 * unmapped later when we find the buffer_head marked
3853 * new.
3854 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003855 if (allocated > map->m_len) {
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003856 unmap_underlying_metadata_blocks(inode->i_sb->s_bdev,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003857 newblock + map->m_len,
3858 allocated - map->m_len);
3859 allocated = map->m_len;
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003860 }
Zheng Liu3a225672013-03-10 21:20:23 -04003861 map->m_len = allocated;
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003862
3863 /*
3864 * If we have done fallocate with the offset that is already
3865 * delayed allocated, we would have block reservation
3866 * and quota reservation done in the delayed write path.
3867 * But fallocate would have already updated quota and block
3868 * count for this offset. So cancel these reservation
3869 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04003870 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) {
3871 unsigned int reserved_clusters;
3872 reserved_clusters = get_reserved_cluster_alloc(inode,
3873 map->m_lblk, map->m_len);
3874 if (reserved_clusters)
3875 ext4_da_update_reserve_space(inode,
3876 reserved_clusters,
3877 0);
3878 }
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003879
Mingming Cao00314622009-09-28 15:49:08 -04003880map_out:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003881 map->m_flags |= EXT4_MAP_MAPPED;
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04003882 if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0) {
3883 err = check_eofblocks_fl(handle, inode, map->m_lblk, path,
3884 map->m_len);
3885 if (err < 0)
3886 goto out2;
3887 }
Mingming Cao00314622009-09-28 15:49:08 -04003888out1:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003889 if (allocated > map->m_len)
3890 allocated = map->m_len;
Mingming Cao00314622009-09-28 15:49:08 -04003891 ext4_ext_show_leaf(inode, path);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003892 map->m_pblk = newblock;
3893 map->m_len = allocated;
Mingming Cao00314622009-09-28 15:49:08 -04003894out2:
3895 if (path) {
3896 ext4_ext_drop_refs(path);
3897 kfree(path);
3898 }
3899 return err ? err : allocated;
3900}
Theodore Ts'o58590b02010-10-27 21:23:12 -04003901
Mingming Cao00314622009-09-28 15:49:08 -04003902/*
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003903 * get_implied_cluster_alloc - check to see if the requested
3904 * allocation (in the map structure) overlaps with a cluster already
3905 * allocated in an extent.
Aditya Kalid8990242011-09-09 19:18:51 -04003906 * @sb The filesystem superblock structure
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003907 * @map The requested lblk->pblk mapping
3908 * @ex The extent structure which might contain an implied
3909 * cluster allocation
3910 *
3911 * This function is called by ext4_ext_map_blocks() after we failed to
3912 * find blocks that were already in the inode's extent tree. Hence,
3913 * we know that the beginning of the requested region cannot overlap
3914 * the extent from the inode's extent tree. There are three cases we
3915 * want to catch. The first is this case:
3916 *
3917 * |--- cluster # N--|
3918 * |--- extent ---| |---- requested region ---|
3919 * |==========|
3920 *
3921 * The second case that we need to test for is this one:
3922 *
3923 * |--------- cluster # N ----------------|
3924 * |--- requested region --| |------- extent ----|
3925 * |=======================|
3926 *
3927 * The third case is when the requested region lies between two extents
3928 * within the same cluster:
3929 * |------------- cluster # N-------------|
3930 * |----- ex -----| |---- ex_right ----|
3931 * |------ requested region ------|
3932 * |================|
3933 *
3934 * In each of the above cases, we need to set the map->m_pblk and
3935 * map->m_len so it corresponds to the return the extent labelled as
3936 * "|====|" from cluster #N, since it is already in use for data in
3937 * cluster EXT4_B2C(sbi, map->m_lblk). We will then return 1 to
3938 * signal to ext4_ext_map_blocks() that map->m_pblk should be treated
3939 * as a new "allocated" block region. Otherwise, we will return 0 and
3940 * ext4_ext_map_blocks() will then allocate one or more new clusters
3941 * by calling ext4_mb_new_blocks().
3942 */
Aditya Kalid8990242011-09-09 19:18:51 -04003943static int get_implied_cluster_alloc(struct super_block *sb,
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003944 struct ext4_map_blocks *map,
3945 struct ext4_extent *ex,
3946 struct ext4_ext_path *path)
3947{
Aditya Kalid8990242011-09-09 19:18:51 -04003948 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003949 ext4_lblk_t c_offset = map->m_lblk & (sbi->s_cluster_ratio-1);
3950 ext4_lblk_t ex_cluster_start, ex_cluster_end;
Curt Wohlgemuth14d7f3e2011-12-18 17:39:02 -05003951 ext4_lblk_t rr_cluster_start;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003952 ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
3953 ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
3954 unsigned short ee_len = ext4_ext_get_actual_len(ex);
3955
3956 /* The extent passed in that we are trying to match */
3957 ex_cluster_start = EXT4_B2C(sbi, ee_block);
3958 ex_cluster_end = EXT4_B2C(sbi, ee_block + ee_len - 1);
3959
3960 /* The requested region passed into ext4_map_blocks() */
3961 rr_cluster_start = EXT4_B2C(sbi, map->m_lblk);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003962
3963 if ((rr_cluster_start == ex_cluster_end) ||
3964 (rr_cluster_start == ex_cluster_start)) {
3965 if (rr_cluster_start == ex_cluster_end)
3966 ee_start += ee_len - 1;
3967 map->m_pblk = (ee_start & ~(sbi->s_cluster_ratio - 1)) +
3968 c_offset;
3969 map->m_len = min(map->m_len,
3970 (unsigned) sbi->s_cluster_ratio - c_offset);
3971 /*
3972 * Check for and handle this case:
3973 *
3974 * |--------- cluster # N-------------|
3975 * |------- extent ----|
3976 * |--- requested region ---|
3977 * |===========|
3978 */
3979
3980 if (map->m_lblk < ee_block)
3981 map->m_len = min(map->m_len, ee_block - map->m_lblk);
3982
3983 /*
3984 * Check for the case where there is already another allocated
3985 * block to the right of 'ex' but before the end of the cluster.
3986 *
3987 * |------------- cluster # N-------------|
3988 * |----- ex -----| |---- ex_right ----|
3989 * |------ requested region ------|
3990 * |================|
3991 */
3992 if (map->m_lblk > ee_block) {
3993 ext4_lblk_t next = ext4_ext_next_allocated_block(path);
3994 map->m_len = min(map->m_len, next - map->m_lblk);
3995 }
Aditya Kalid8990242011-09-09 19:18:51 -04003996
3997 trace_ext4_get_implied_cluster_alloc_exit(sb, map, 1);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003998 return 1;
3999 }
Aditya Kalid8990242011-09-09 19:18:51 -04004000
4001 trace_ext4_get_implied_cluster_alloc_exit(sb, map, 0);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004002 return 0;
4003}
4004
4005
4006/*
Mingming Caof5ab0d12008-02-25 15:29:55 -05004007 * Block allocation/map/preallocation routine for extents based files
4008 *
4009 *
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05004010 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05004011 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
4012 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
Mingming Caof5ab0d12008-02-25 15:29:55 -05004013 *
4014 * return > 0, number of of blocks already mapped/allocated
4015 * if create == 0 and these are pre-allocated blocks
4016 * buffer head is unmapped
4017 * otherwise blocks are mapped
4018 *
4019 * return = 0, if plain look up failed (blocks have not been allocated)
4020 * buffer head is unmapped
4021 *
4022 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05004023 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004024int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
4025 struct ext4_map_blocks *map, int flags)
Alex Tomasa86c6182006-10-11 01:21:03 -07004026{
4027 struct ext4_ext_path *path = NULL;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004028 struct ext4_extent newex, *ex, *ex2;
4029 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004030 ext4_fsblk_t newblock = 0;
Zheng Liu37794732012-11-08 14:47:52 -05004031 int free_on_err = 0, err = 0, depth;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004032 unsigned int allocated = 0, offset = 0;
Yongqiang Yang81fdbb42011-10-29 09:23:38 -04004033 unsigned int allocated_clusters = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004034 struct ext4_allocation_request ar;
Dmitry Monakhovf45ee3a2012-09-28 23:21:09 -04004035 ext4_io_end_t *io = ext4_inode_aio(inode);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004036 ext4_lblk_t cluster_offset;
Dmitry Monakhov82e54222012-09-28 23:36:25 -04004037 int set_unwritten = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07004038
Mingming84fe3be2009-09-01 08:44:37 -04004039 ext_debug("blocks %u/%u requested for inode %lu\n",
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004040 map->m_lblk, map->m_len, inode->i_ino);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004041 trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07004042
Alex Tomasa86c6182006-10-11 01:21:03 -07004043 /* find extent for this block */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004044 path = ext4_ext_find_extent(inode, map->m_lblk, NULL);
Alex Tomasa86c6182006-10-11 01:21:03 -07004045 if (IS_ERR(path)) {
4046 err = PTR_ERR(path);
4047 path = NULL;
4048 goto out2;
4049 }
4050
4051 depth = ext_depth(inode);
4052
4053 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07004054 * consistent leaf must not be empty;
4055 * this situation is possible, though, _during_ tree modification;
Alex Tomasa86c6182006-10-11 01:21:03 -07004056 * this is why assert can't be put in ext4_ext_find_extent()
4057 */
Frank Mayhar273df552010-03-02 11:46:09 -05004058 if (unlikely(path[depth].p_ext == NULL && depth != 0)) {
4059 EXT4_ERROR_INODE(inode, "bad extent address "
Theodore Ts'of70f3622010-05-16 23:00:00 -04004060 "lblock: %lu, depth: %d pblock %lld",
4061 (unsigned long) map->m_lblk, depth,
4062 path[depth].p_block);
Surbhi Palande034fb4c2009-12-14 09:53:52 -05004063 err = -EIO;
4064 goto out2;
4065 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004066
Avantika Mathur7e028972006-12-06 20:41:33 -08004067 ex = path[depth].p_ext;
4068 if (ex) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004069 ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04004070 ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004071 unsigned short ee_len;
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07004072
4073 /*
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07004074 * Uninitialized extents are treated as holes, except that
Amit Arora56055d32007-07-17 21:42:38 -04004075 * we split out initialized portions during a write.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07004076 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04004077 ee_len = ext4_ext_get_actual_len(ex);
Aditya Kalid8990242011-09-09 19:18:51 -04004078
4079 trace_ext4_ext_show_extent(inode, ee_block, ee_start, ee_len);
4080
Randy Dunlapd0d856e2006-10-11 01:21:07 -07004081 /* if found extent covers block, simply return it */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004082 if (in_range(map->m_lblk, ee_block, ee_len)) {
4083 newblock = map->m_lblk - ee_block + ee_start;
Randy Dunlapd0d856e2006-10-11 01:21:07 -07004084 /* number of remaining blocks in the extent */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004085 allocated = ee_len - (map->m_lblk - ee_block);
4086 ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk,
4087 ee_block, ee_len, newblock);
Amit Arora56055d32007-07-17 21:42:38 -04004088
Zheng Liu69eb33d2013-02-18 00:31:07 -05004089 if (!ext4_ext_is_uninitialized(ex))
Lukas Czerner78771912012-03-19 23:05:43 -04004090 goto out;
Zheng Liu69eb33d2013-02-18 00:31:07 -05004091
Zheng Liu37794732012-11-08 14:47:52 -05004092 allocated = ext4_ext_handle_uninitialized_extents(
Lukas Czerner78771912012-03-19 23:05:43 -04004093 handle, inode, map, path, flags,
4094 allocated, newblock);
Zheng Liu37794732012-11-08 14:47:52 -05004095 goto out3;
Alex Tomasa86c6182006-10-11 01:21:03 -07004096 }
4097 }
4098
Aditya Kali7b415bf2011-09-09 19:04:51 -04004099 if ((sbi->s_cluster_ratio > 1) &&
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05004100 ext4_find_delalloc_cluster(inode, map->m_lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04004101 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
4102
Alex Tomasa86c6182006-10-11 01:21:03 -07004103 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07004104 * requested block isn't allocated yet;
Alex Tomasa86c6182006-10-11 01:21:03 -07004105 * we couldn't try to create block if create flag is zero
4106 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04004107 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
Amit Arora56055d32007-07-17 21:42:38 -04004108 /*
4109 * put just found gap into cache to speed up
4110 * subsequent requests
4111 */
Zheng Liud100eef2013-02-18 00:29:59 -05004112 if ((flags & EXT4_GET_BLOCKS_NO_PUT_HOLE) == 0)
4113 ext4_ext_put_gap_in_cache(inode, path, map->m_lblk);
Alex Tomasa86c6182006-10-11 01:21:03 -07004114 goto out2;
4115 }
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004116
Alex Tomasa86c6182006-10-11 01:21:03 -07004117 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004118 * Okay, we need to do block allocation.
Andrew Morton63f57932006-10-11 01:21:24 -07004119 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04004120 map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004121 newex.ee_block = cpu_to_le32(map->m_lblk);
4122 cluster_offset = map->m_lblk & (sbi->s_cluster_ratio-1);
4123
4124 /*
4125 * If we are doing bigalloc, check to see if the extent returned
4126 * by ext4_ext_find_extent() implies a cluster we can use.
4127 */
4128 if (cluster_offset && ex &&
Aditya Kalid8990242011-09-09 19:18:51 -04004129 get_implied_cluster_alloc(inode->i_sb, map, ex, path)) {
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004130 ar.len = allocated = map->m_len;
4131 newblock = map->m_pblk;
Aditya Kali7b415bf2011-09-09 19:04:51 -04004132 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004133 goto got_allocated_blocks;
4134 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004135
Alex Tomasc9de5602008-01-29 00:19:52 -05004136 /* find neighbour allocated blocks */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004137 ar.lleft = map->m_lblk;
Alex Tomasc9de5602008-01-29 00:19:52 -05004138 err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
4139 if (err)
4140 goto out2;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004141 ar.lright = map->m_lblk;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004142 ex2 = NULL;
4143 err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright, &ex2);
Alex Tomasc9de5602008-01-29 00:19:52 -05004144 if (err)
4145 goto out2;
Amit Arora25d14f92007-05-24 13:04:13 -04004146
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004147 /* Check if the extent after searching to the right implies a
4148 * cluster we can use. */
4149 if ((sbi->s_cluster_ratio > 1) && ex2 &&
Aditya Kalid8990242011-09-09 19:18:51 -04004150 get_implied_cluster_alloc(inode->i_sb, map, ex2, path)) {
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004151 ar.len = allocated = map->m_len;
4152 newblock = map->m_pblk;
Aditya Kali7b415bf2011-09-09 19:04:51 -04004153 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004154 goto got_allocated_blocks;
4155 }
4156
Amit Arora749269f2007-07-18 09:02:56 -04004157 /*
4158 * See if request is beyond maximum number of blocks we can have in
4159 * a single extent. For an initialized extent this limit is
4160 * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
4161 * EXT_UNINIT_MAX_LEN.
4162 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004163 if (map->m_len > EXT_INIT_MAX_LEN &&
Theodore Ts'oc2177052009-05-14 00:58:52 -04004164 !(flags & EXT4_GET_BLOCKS_UNINIT_EXT))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004165 map->m_len = EXT_INIT_MAX_LEN;
4166 else if (map->m_len > EXT_UNINIT_MAX_LEN &&
Theodore Ts'oc2177052009-05-14 00:58:52 -04004167 (flags & EXT4_GET_BLOCKS_UNINIT_EXT))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004168 map->m_len = EXT_UNINIT_MAX_LEN;
Amit Arora749269f2007-07-18 09:02:56 -04004169
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004170 /* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004171 newex.ee_len = cpu_to_le16(map->m_len);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004172 err = ext4_ext_check_overlap(sbi, inode, &newex, path);
Amit Arora25d14f92007-05-24 13:04:13 -04004173 if (err)
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05004174 allocated = ext4_ext_get_actual_len(&newex);
Amit Arora25d14f92007-05-24 13:04:13 -04004175 else
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004176 allocated = map->m_len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004177
4178 /* allocate new block */
4179 ar.inode = inode;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004180 ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk);
4181 ar.logical = map->m_lblk;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004182 /*
4183 * We calculate the offset from the beginning of the cluster
4184 * for the logical block number, since when we allocate a
4185 * physical cluster, the physical block should start at the
4186 * same offset from the beginning of the cluster. This is
4187 * needed so that future calls to get_implied_cluster_alloc()
4188 * work correctly.
4189 */
4190 offset = map->m_lblk & (sbi->s_cluster_ratio - 1);
4191 ar.len = EXT4_NUM_B2C(sbi, offset+allocated);
4192 ar.goal -= offset;
4193 ar.logical -= offset;
Alex Tomasc9de5602008-01-29 00:19:52 -05004194 if (S_ISREG(inode->i_mode))
4195 ar.flags = EXT4_MB_HINT_DATA;
4196 else
4197 /* disable in-core preallocation for non-regular files */
4198 ar.flags = 0;
Vivek Haldar556b27a2011-05-25 07:41:54 -04004199 if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE)
4200 ar.flags |= EXT4_MB_HINT_NOPREALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05004201 newblock = ext4_mb_new_blocks(handle, &ar, &err);
Alex Tomasa86c6182006-10-11 01:21:03 -07004202 if (!newblock)
4203 goto out2;
Mingming84fe3be2009-09-01 08:44:37 -04004204 ext_debug("allocate new block: goal %llu, found %llu/%u\n",
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004205 ar.goal, newblock, allocated);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004206 free_on_err = 1;
Aditya Kali7b415bf2011-09-09 19:04:51 -04004207 allocated_clusters = ar.len;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004208 ar.len = EXT4_C2B(sbi, ar.len) - offset;
4209 if (ar.len > allocated)
4210 ar.len = allocated;
Alex Tomasa86c6182006-10-11 01:21:03 -07004211
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004212got_allocated_blocks:
Alex Tomasa86c6182006-10-11 01:21:03 -07004213 /* try to insert new extent into found leaf and return */
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004214 ext4_ext_store_pblock(&newex, newblock + offset);
Alex Tomasc9de5602008-01-29 00:19:52 -05004215 newex.ee_len = cpu_to_le16(ar.len);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004216 /* Mark uninitialized */
4217 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT){
Amit Aroraa2df2a62007-07-17 21:42:41 -04004218 ext4_ext_mark_uninitialized(&newex);
Zheng Liua25a4e12013-02-18 00:28:04 -05004219 map->m_flags |= EXT4_MAP_UNWRITTEN;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004220 /*
Jiaying Zhang744692d2010-03-04 16:14:02 -05004221 * io_end structure was created for every IO write to an
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004222 * uninitialized extent. To avoid unnecessary conversion,
Jiaying Zhang744692d2010-03-04 16:14:02 -05004223 * here we flag the IO that really needs the conversion.
Mingming5f5249502009-11-10 10:48:04 -05004224 * For non asycn direct IO case, flag the inode state
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004225 * that we need to perform conversion when IO is done.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004226 */
Dmitry Monakhov82e54222012-09-28 23:36:25 -04004227 if ((flags & EXT4_GET_BLOCKS_PRE_IO))
4228 set_unwritten = 1;
Jiaying Zhang744692d2010-03-04 16:14:02 -05004229 if (ext4_should_dioread_nolock(inode))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004230 map->m_flags |= EXT4_MAP_UNINIT;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004231 }
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004232
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004233 err = 0;
4234 if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0)
4235 err = check_eofblocks_fl(handle, inode, map->m_lblk,
4236 path, ar.len);
Jiaying Zhang575a1d42011-07-10 20:07:25 -04004237 if (!err)
4238 err = ext4_ext_insert_extent(handle, inode, path,
4239 &newex, flags);
Dmitry Monakhov82e54222012-09-28 23:36:25 -04004240
4241 if (!err && set_unwritten) {
4242 if (io)
4243 ext4_set_io_unwritten_flag(inode, io);
4244 else
4245 ext4_set_inode_state(inode,
4246 EXT4_STATE_DIO_UNWRITTEN);
4247 }
4248
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004249 if (err && free_on_err) {
Maxim Patlasov7132de72011-07-10 19:37:48 -04004250 int fb_flags = flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE ?
4251 EXT4_FREE_BLOCKS_NO_QUOT_UPDATE : 0;
Alex Tomas315054f2007-05-24 13:04:25 -04004252 /* free data blocks we just allocated */
Alex Tomasc9de5602008-01-29 00:19:52 -05004253 /* not a good idea to call discard here directly,
4254 * but otherwise we'd need to call it every free() */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004255 ext4_discard_preallocations(inode);
Theodore Ts'oc8e15132013-07-15 00:09:37 -04004256 ext4_free_blocks(handle, inode, NULL, newblock,
4257 EXT4_C2B(sbi, allocated_clusters), fb_flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07004258 goto out2;
Alex Tomas315054f2007-05-24 13:04:25 -04004259 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004260
Alex Tomasa86c6182006-10-11 01:21:03 -07004261 /* previous routine could use block we allocated */
Theodore Ts'obf89d162010-10-27 21:30:14 -04004262 newblock = ext4_ext_pblock(&newex);
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05004263 allocated = ext4_ext_get_actual_len(&newex);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004264 if (allocated > map->m_len)
4265 allocated = map->m_len;
4266 map->m_flags |= EXT4_MAP_NEW;
Alex Tomasa86c6182006-10-11 01:21:03 -07004267
Jan Karab436b9b2009-12-08 23:51:10 -05004268 /*
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05004269 * Update reserved blocks/metadata blocks after successful
4270 * block allocation which had been deferred till now.
4271 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04004272 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -04004273 unsigned int reserved_clusters;
Aditya Kali7b415bf2011-09-09 19:04:51 -04004274 /*
Yongqiang Yang81fdbb42011-10-29 09:23:38 -04004275 * Check how many clusters we had reserved this allocated range
Aditya Kali7b415bf2011-09-09 19:04:51 -04004276 */
4277 reserved_clusters = get_reserved_cluster_alloc(inode,
4278 map->m_lblk, allocated);
4279 if (map->m_flags & EXT4_MAP_FROM_CLUSTER) {
4280 if (reserved_clusters) {
4281 /*
4282 * We have clusters reserved for this range.
4283 * But since we are not doing actual allocation
4284 * and are simply using blocks from previously
4285 * allocated cluster, we should release the
4286 * reservation and not claim quota.
4287 */
4288 ext4_da_update_reserve_space(inode,
4289 reserved_clusters, 0);
4290 }
4291 } else {
4292 BUG_ON(allocated_clusters < reserved_clusters);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004293 if (reserved_clusters < allocated_clusters) {
Aditya Kali5356f262011-09-09 19:20:51 -04004294 struct ext4_inode_info *ei = EXT4_I(inode);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004295 int reservation = allocated_clusters -
4296 reserved_clusters;
4297 /*
4298 * It seems we claimed few clusters outside of
4299 * the range of this allocation. We should give
4300 * it back to the reservation pool. This can
4301 * happen in the following case:
4302 *
4303 * * Suppose s_cluster_ratio is 4 (i.e., each
4304 * cluster has 4 blocks. Thus, the clusters
4305 * are [0-3],[4-7],[8-11]...
4306 * * First comes delayed allocation write for
4307 * logical blocks 10 & 11. Since there were no
4308 * previous delayed allocated blocks in the
4309 * range [8-11], we would reserve 1 cluster
4310 * for this write.
4311 * * Next comes write for logical blocks 3 to 8.
4312 * In this case, we will reserve 2 clusters
4313 * (for [0-3] and [4-7]; and not for [8-11] as
4314 * that range has a delayed allocated blocks.
4315 * Thus total reserved clusters now becomes 3.
4316 * * Now, during the delayed allocation writeout
4317 * time, we will first write blocks [3-8] and
4318 * allocate 3 clusters for writing these
4319 * blocks. Also, we would claim all these
4320 * three clusters above.
4321 * * Now when we come here to writeout the
4322 * blocks [10-11], we would expect to claim
4323 * the reservation of 1 cluster we had made
4324 * (and we would claim it since there are no
4325 * more delayed allocated blocks in the range
4326 * [8-11]. But our reserved cluster count had
4327 * already gone to 0.
4328 *
4329 * Thus, at the step 4 above when we determine
4330 * that there are still some unwritten delayed
4331 * allocated blocks outside of our current
4332 * block range, we should increment the
4333 * reserved clusters count so that when the
4334 * remaining blocks finally gets written, we
4335 * could claim them.
4336 */
Aditya Kali5356f262011-09-09 19:20:51 -04004337 dquot_reserve_block(inode,
4338 EXT4_C2B(sbi, reservation));
4339 spin_lock(&ei->i_block_reservation_lock);
4340 ei->i_reserved_data_blocks += reservation;
4341 spin_unlock(&ei->i_block_reservation_lock);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004342 }
Lukas Czerner232ec872013-03-10 22:46:30 -04004343 /*
4344 * We will claim quota for all newly allocated blocks.
4345 * We're updating the reserved space *after* the
4346 * correction above so we do not accidentally free
4347 * all the metadata reservation because we might
4348 * actually need it later on.
4349 */
4350 ext4_da_update_reserve_space(inode, allocated_clusters,
4351 1);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004352 }
4353 }
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05004354
4355 /*
Jan Karab436b9b2009-12-08 23:51:10 -05004356 * Cache the extent and update transaction to commit on fdatasync only
4357 * when it is _not_ an uninitialized extent.
4358 */
Zheng Liu69eb33d2013-02-18 00:31:07 -05004359 if ((flags & EXT4_GET_BLOCKS_UNINIT_EXT) == 0)
Jan Karab436b9b2009-12-08 23:51:10 -05004360 ext4_update_inode_fsync_trans(handle, inode, 1);
Zheng Liu69eb33d2013-02-18 00:31:07 -05004361 else
Jan Karab436b9b2009-12-08 23:51:10 -05004362 ext4_update_inode_fsync_trans(handle, inode, 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07004363out:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004364 if (allocated > map->m_len)
4365 allocated = map->m_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07004366 ext4_ext_show_leaf(inode, path);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004367 map->m_flags |= EXT4_MAP_MAPPED;
4368 map->m_pblk = newblock;
4369 map->m_len = allocated;
Alex Tomasa86c6182006-10-11 01:21:03 -07004370out2:
4371 if (path) {
4372 ext4_ext_drop_refs(path);
4373 kfree(path);
4374 }
Allison Hendersone8613042011-05-25 07:41:46 -04004375
Zheng Liu37794732012-11-08 14:47:52 -05004376out3:
Theodore Ts'o63b99962013-07-16 10:28:47 -04004377 trace_ext4_ext_map_blocks_exit(inode, flags, map,
4378 err ? err : allocated);
4379 ext4_es_lru_add(inode);
Lukas Czerner78771912012-03-19 23:05:43 -04004380 return err ? err : allocated;
Alex Tomasa86c6182006-10-11 01:21:03 -07004381}
4382
Theodore Ts'o819c4922013-04-03 12:47:17 -04004383void ext4_ext_truncate(handle_t *handle, struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -07004384{
Alex Tomasa86c6182006-10-11 01:21:03 -07004385 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004386 ext4_lblk_t last_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07004387 int err = 0;
4388
4389 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07004390 * TODO: optimization is possible here.
4391 * Probably we need not scan at all,
4392 * because page truncation is enough.
Alex Tomasa86c6182006-10-11 01:21:03 -07004393 */
Alex Tomasa86c6182006-10-11 01:21:03 -07004394
4395 /* we have to know where to truncate from in crash case */
4396 EXT4_I(inode)->i_disksize = inode->i_size;
4397 ext4_mark_inode_dirty(handle, inode);
4398
4399 last_block = (inode->i_size + sb->s_blocksize - 1)
4400 >> EXT4_BLOCK_SIZE_BITS(sb);
Theodore Ts'o8acd5e92013-07-15 00:09:19 -04004401retry:
Zheng Liu51865fd2012-11-08 21:57:32 -05004402 err = ext4_es_remove_extent(inode, last_block,
4403 EXT_MAX_BLOCKS - last_block);
Theodore Ts'o94eec0f2013-07-29 12:12:56 -04004404 if (err == -ENOMEM) {
Theodore Ts'o8acd5e92013-07-15 00:09:19 -04004405 cond_resched();
4406 congestion_wait(BLK_RW_ASYNC, HZ/50);
4407 goto retry;
4408 }
4409 if (err) {
4410 ext4_std_error(inode->i_sb, err);
4411 return;
4412 }
Lukas Czerner5f95d212012-03-19 23:03:19 -04004413 err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCKS - 1);
Theodore Ts'o8acd5e92013-07-15 00:09:19 -04004414 ext4_std_error(inode->i_sb, err);
Alex Tomasa86c6182006-10-11 01:21:03 -07004415}
4416
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004417static void ext4_falloc_update_inode(struct inode *inode,
4418 int mode, loff_t new_size, int update_ctime)
4419{
4420 struct timespec now;
4421
4422 if (update_ctime) {
4423 now = current_fs_time(inode->i_sb);
4424 if (!timespec_equal(&inode->i_ctime, &now))
4425 inode->i_ctime = now;
4426 }
4427 /*
4428 * Update only when preallocation was requested beyond
4429 * the file size.
4430 */
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04004431 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
4432 if (new_size > i_size_read(inode))
4433 i_size_write(inode, new_size);
4434 if (new_size > EXT4_I(inode)->i_disksize)
4435 ext4_update_i_disksize(inode, new_size);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004436 } else {
4437 /*
4438 * Mark that we allocate beyond EOF so the subsequent truncate
4439 * can proceed even if the new size is the same as i_size.
4440 */
4441 if (new_size > i_size_read(inode))
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004442 ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004443 }
4444
4445}
4446
Amit Aroraa2df2a62007-07-17 21:42:41 -04004447/*
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01004448 * preallocate space for a file. This implements ext4's fallocate file
Amit Aroraa2df2a62007-07-17 21:42:41 -04004449 * operation, which gets called from sys_fallocate system call.
4450 * For block-mapped files, posix_fallocate should fall back to the method
4451 * of writing zeroes to the required new blocks (the same behavior which is
4452 * expected for file systems which do not support fallocate() system call).
4453 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01004454long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
Amit Aroraa2df2a62007-07-17 21:42:41 -04004455{
Al Viro496ad9a2013-01-23 17:07:38 -05004456 struct inode *inode = file_inode(file);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004457 handle_t *handle;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004458 loff_t new_size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004459 unsigned int max_blocks;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004460 int ret = 0;
4461 int ret2 = 0;
4462 int retries = 0;
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004463 int flags;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004464 struct ext4_map_blocks map;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004465 unsigned int credits, blkbits = inode->i_blkbits;
4466
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004467 /* Return error if mode is not supported */
4468 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
4469 return -EOPNOTSUPP;
4470
4471 if (mode & FALLOC_FL_PUNCH_HOLE)
Ashish Sangwanaeb28172013-07-01 08:12:38 -04004472 return ext4_punch_hole(inode, offset, len);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004473
Tao Ma0c8d4142012-12-10 14:06:03 -05004474 ret = ext4_convert_inline_data(inode);
4475 if (ret)
4476 return ret;
4477
Zheng Liu8bad6fc2013-01-28 09:21:37 -05004478 /*
4479 * currently supporting (pre)allocate mode for extent-based
4480 * files _only_
4481 */
4482 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
4483 return -EOPNOTSUPP;
4484
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004485 trace_ext4_fallocate_enter(inode, offset, len, mode);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004486 map.m_lblk = offset >> blkbits;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004487 /*
4488 * We can't just convert len to max_blocks because
4489 * If blocksize = 4096 offset = 3072 and len = 2048
4490 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04004491 max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004492 - map.m_lblk;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004493 /*
Mingming Caof3bd1f32008-08-19 22:16:03 -04004494 * credits to insert 1 extent into extent tree
Amit Aroraa2df2a62007-07-17 21:42:41 -04004495 */
Mingming Caof3bd1f32008-08-19 22:16:03 -04004496 credits = ext4_chunk_trans_blocks(inode, max_blocks);
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05004497 mutex_lock(&inode->i_mutex);
Nikanth Karthikesan6d19c422010-05-16 14:00:00 -04004498 ret = inode_newsize_ok(inode, (len + offset));
4499 if (ret) {
4500 mutex_unlock(&inode->i_mutex);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004501 trace_ext4_fallocate_exit(inode, offset, max_blocks, ret);
Nikanth Karthikesan6d19c422010-05-16 14:00:00 -04004502 return ret;
4503 }
Greg Harm3c6fe772011-10-31 18:41:47 -04004504 flags = EXT4_GET_BLOCKS_CREATE_UNINIT_EXT;
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004505 if (mode & FALLOC_FL_KEEP_SIZE)
4506 flags |= EXT4_GET_BLOCKS_KEEP_SIZE;
Greg Harm3c6fe772011-10-31 18:41:47 -04004507 /*
4508 * Don't normalize the request if it can fit in one extent so
4509 * that it doesn't get unnecessarily split into multiple
4510 * extents.
4511 */
4512 if (len <= EXT_UNINIT_MAX_LEN << blkbits)
4513 flags |= EXT4_GET_BLOCKS_NO_NORMALIZE;
Dmitry Monakhov60d46162012-10-05 11:32:02 -04004514
Amit Aroraa2df2a62007-07-17 21:42:41 -04004515retry:
4516 while (ret >= 0 && ret < max_blocks) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004517 map.m_lblk = map.m_lblk + ret;
4518 map.m_len = max_blocks = max_blocks - ret;
Theodore Ts'o9924a922013-02-08 21:59:22 -05004519 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
4520 credits);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004521 if (IS_ERR(handle)) {
4522 ret = PTR_ERR(handle);
4523 break;
4524 }
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004525 ret = ext4_map_blocks(handle, inode, &map, flags);
Aneesh Kumar K.V221879c2008-01-28 23:58:27 -05004526 if (ret <= 0) {
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05004527#ifdef EXT4FS_DEBUG
Lukas Czernerb06acd32013-01-28 21:21:12 -05004528 ext4_warning(inode->i_sb,
4529 "inode #%lu: block %u: len %u: "
4530 "ext4_ext_map_blocks returned %d",
4531 inode->i_ino, map.m_lblk,
4532 map.m_len, ret);
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05004533#endif
Amit Aroraa2df2a62007-07-17 21:42:41 -04004534 ext4_mark_inode_dirty(handle, inode);
4535 ret2 = ext4_journal_stop(handle);
4536 break;
4537 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004538 if ((map.m_lblk + ret) >= (EXT4_BLOCK_ALIGN(offset + len,
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004539 blkbits) >> blkbits))
4540 new_size = offset + len;
4541 else
Utako Kusaka29ae07b2011-07-27 22:11:20 -04004542 new_size = ((loff_t) map.m_lblk + ret) << blkbits;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004543
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004544 ext4_falloc_update_inode(inode, mode, new_size,
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004545 (map.m_flags & EXT4_MAP_NEW));
Amit Aroraa2df2a62007-07-17 21:42:41 -04004546 ext4_mark_inode_dirty(handle, inode);
Zheng Liuf4e95b32012-06-30 19:12:57 -04004547 if ((file->f_flags & O_SYNC) && ret >= max_blocks)
4548 ext4_handle_sync(handle);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004549 ret2 = ext4_journal_stop(handle);
4550 if (ret2)
4551 break;
4552 }
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004553 if (ret == -ENOSPC &&
4554 ext4_should_retry_alloc(inode->i_sb, &retries)) {
4555 ret = 0;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004556 goto retry;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004557 }
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05004558 mutex_unlock(&inode->i_mutex);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004559 trace_ext4_fallocate_exit(inode, offset, max_blocks,
4560 ret > 0 ? ret2 : ret);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004561 return ret > 0 ? ret2 : ret;
4562}
Eric Sandeen6873fa02008-10-07 00:46:36 -04004563
4564/*
Mingming Cao00314622009-09-28 15:49:08 -04004565 * This function convert a range of blocks to written extents
4566 * The caller of this function will pass the start offset and the size.
4567 * all unwritten extents within this range will be converted to
4568 * written extents.
4569 *
4570 * This function is called from the direct IO end io call back
4571 * function, to convert the fallocated extents after IO is completed.
Mingming109f5562009-11-10 10:48:08 -05004572 * Returns 0 on success.
Mingming Cao00314622009-09-28 15:49:08 -04004573 */
Jan Kara6b523df2013-06-04 13:21:11 -04004574int ext4_convert_unwritten_extents(handle_t *handle, struct inode *inode,
4575 loff_t offset, ssize_t len)
Mingming Cao00314622009-09-28 15:49:08 -04004576{
Mingming Cao00314622009-09-28 15:49:08 -04004577 unsigned int max_blocks;
4578 int ret = 0;
4579 int ret2 = 0;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004580 struct ext4_map_blocks map;
Mingming Cao00314622009-09-28 15:49:08 -04004581 unsigned int credits, blkbits = inode->i_blkbits;
4582
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004583 map.m_lblk = offset >> blkbits;
Mingming Cao00314622009-09-28 15:49:08 -04004584 /*
4585 * We can't just convert len to max_blocks because
4586 * If blocksize = 4096 offset = 3072 and len = 2048
4587 */
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004588 max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) -
4589 map.m_lblk);
Mingming Cao00314622009-09-28 15:49:08 -04004590 /*
Jan Kara6b523df2013-06-04 13:21:11 -04004591 * This is somewhat ugly but the idea is clear: When transaction is
4592 * reserved, everything goes into it. Otherwise we rather start several
4593 * smaller transactions for conversion of each extent separately.
Mingming Cao00314622009-09-28 15:49:08 -04004594 */
Jan Kara6b523df2013-06-04 13:21:11 -04004595 if (handle) {
4596 handle = ext4_journal_start_reserved(handle,
4597 EXT4_HT_EXT_CONVERT);
4598 if (IS_ERR(handle))
4599 return PTR_ERR(handle);
4600 credits = 0;
4601 } else {
4602 /*
4603 * credits to insert 1 extent into extent tree
4604 */
4605 credits = ext4_chunk_trans_blocks(inode, max_blocks);
4606 }
Mingming Cao00314622009-09-28 15:49:08 -04004607 while (ret >= 0 && ret < max_blocks) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004608 map.m_lblk += ret;
4609 map.m_len = (max_blocks -= ret);
Jan Kara6b523df2013-06-04 13:21:11 -04004610 if (credits) {
4611 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
4612 credits);
4613 if (IS_ERR(handle)) {
4614 ret = PTR_ERR(handle);
4615 break;
4616 }
Mingming Cao00314622009-09-28 15:49:08 -04004617 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004618 ret = ext4_map_blocks(handle, inode, &map,
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05004619 EXT4_GET_BLOCKS_IO_CONVERT_EXT);
Lukas Czernerb06acd32013-01-28 21:21:12 -05004620 if (ret <= 0)
4621 ext4_warning(inode->i_sb,
4622 "inode #%lu: block %u: len %u: "
4623 "ext4_ext_map_blocks returned %d",
4624 inode->i_ino, map.m_lblk,
4625 map.m_len, ret);
Mingming Cao00314622009-09-28 15:49:08 -04004626 ext4_mark_inode_dirty(handle, inode);
Jan Kara6b523df2013-06-04 13:21:11 -04004627 if (credits)
4628 ret2 = ext4_journal_stop(handle);
4629 if (ret <= 0 || ret2)
Mingming Cao00314622009-09-28 15:49:08 -04004630 break;
4631 }
Jan Kara6b523df2013-06-04 13:21:11 -04004632 if (!credits)
4633 ret2 = ext4_journal_stop(handle);
Mingming Cao00314622009-09-28 15:49:08 -04004634 return ret > 0 ? ret2 : ret;
4635}
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004636
Mingming Cao00314622009-09-28 15:49:08 -04004637/*
Zheng Liu69eb33d2013-02-18 00:31:07 -05004638 * If newes is not existing extent (newes->ec_pblk equals zero) find
4639 * delayed extent at start of newes and update newes accordingly and
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004640 * return start of the next delayed extent.
4641 *
Zheng Liu69eb33d2013-02-18 00:31:07 -05004642 * If newes is existing extent (newes->ec_pblk is not equal zero)
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004643 * return start of next delayed extent or EXT_MAX_BLOCKS if no delayed
Zheng Liu69eb33d2013-02-18 00:31:07 -05004644 * extent found. Leave newes unmodified.
Eric Sandeen6873fa02008-10-07 00:46:36 -04004645 */
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004646static int ext4_find_delayed_extent(struct inode *inode,
Zheng Liu69eb33d2013-02-18 00:31:07 -05004647 struct extent_status *newes)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004648{
Zheng Liub3aff3e2012-11-08 21:57:37 -05004649 struct extent_status es;
Zheng Liube401362013-02-18 00:27:26 -05004650 ext4_lblk_t block, next_del;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004651
Zheng Liu69eb33d2013-02-18 00:31:07 -05004652 if (newes->es_pblk == 0) {
Yan, Zhenge30b5dc2013-05-03 02:15:52 -04004653 ext4_es_find_delayed_extent_range(inode, newes->es_lblk,
4654 newes->es_lblk + newes->es_len - 1, &es);
4655
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004656 /*
Zheng Liu69eb33d2013-02-18 00:31:07 -05004657 * No extent in extent-tree contains block @newes->es_pblk,
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004658 * then the block may stay in 1)a hole or 2)delayed-extent.
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004659 */
Zheng Liu06b0c882013-02-18 00:26:51 -05004660 if (es.es_len == 0)
Zheng Liub3aff3e2012-11-08 21:57:37 -05004661 /* A hole found. */
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004662 return 0;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004663
Zheng Liu69eb33d2013-02-18 00:31:07 -05004664 if (es.es_lblk > newes->es_lblk) {
Zheng Liub3aff3e2012-11-08 21:57:37 -05004665 /* A hole found. */
Zheng Liu69eb33d2013-02-18 00:31:07 -05004666 newes->es_len = min(es.es_lblk - newes->es_lblk,
4667 newes->es_len);
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004668 return 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004669 }
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004670
Zheng Liu69eb33d2013-02-18 00:31:07 -05004671 newes->es_len = es.es_lblk + es.es_len - newes->es_lblk;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004672 }
4673
Zheng Liu69eb33d2013-02-18 00:31:07 -05004674 block = newes->es_lblk + newes->es_len;
Yan, Zhenge30b5dc2013-05-03 02:15:52 -04004675 ext4_es_find_delayed_extent_range(inode, block, EXT_MAX_BLOCKS, &es);
Zheng Liube401362013-02-18 00:27:26 -05004676 if (es.es_len == 0)
4677 next_del = EXT_MAX_BLOCKS;
4678 else
4679 next_del = es.es_lblk;
4680
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004681 return next_del;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004682}
Eric Sandeen6873fa02008-10-07 00:46:36 -04004683/* fiemap flags we can handle specified here */
4684#define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
4685
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004686static int ext4_xattr_fiemap(struct inode *inode,
4687 struct fiemap_extent_info *fieinfo)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004688{
4689 __u64 physical = 0;
4690 __u64 length;
4691 __u32 flags = FIEMAP_EXTENT_LAST;
4692 int blockbits = inode->i_sb->s_blocksize_bits;
4693 int error = 0;
4694
4695 /* in-inode? */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004696 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Eric Sandeen6873fa02008-10-07 00:46:36 -04004697 struct ext4_iloc iloc;
4698 int offset; /* offset of xattr in inode */
4699
4700 error = ext4_get_inode_loc(inode, &iloc);
4701 if (error)
4702 return error;
Jan Karaa60697f2013-05-31 19:38:56 -04004703 physical = (__u64)iloc.bh->b_blocknr << blockbits;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004704 offset = EXT4_GOOD_OLD_INODE_SIZE +
4705 EXT4_I(inode)->i_extra_isize;
4706 physical += offset;
4707 length = EXT4_SB(inode->i_sb)->s_inode_size - offset;
4708 flags |= FIEMAP_EXTENT_DATA_INLINE;
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004709 brelse(iloc.bh);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004710 } else { /* external block */
Jan Karaa60697f2013-05-31 19:38:56 -04004711 physical = (__u64)EXT4_I(inode)->i_file_acl << blockbits;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004712 length = inode->i_sb->s_blocksize;
4713 }
4714
4715 if (physical)
4716 error = fiemap_fill_next_extent(fieinfo, 0, physical,
4717 length, flags);
4718 return (error < 0 ? error : 0);
4719}
4720
4721int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4722 __u64 start, __u64 len)
4723{
4724 ext4_lblk_t start_blk;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004725 int error = 0;
4726
Tao Ma94191982012-12-10 14:06:02 -05004727 if (ext4_has_inline_data(inode)) {
4728 int has_inline = 1;
4729
4730 error = ext4_inline_data_fiemap(inode, fieinfo, &has_inline);
4731
4732 if (has_inline)
4733 return error;
4734 }
4735
Eric Sandeen6873fa02008-10-07 00:46:36 -04004736 /* fallback to generic here if not in extents fmt */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004737 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Eric Sandeen6873fa02008-10-07 00:46:36 -04004738 return generic_block_fiemap(inode, fieinfo, start, len,
4739 ext4_get_block);
4740
4741 if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS))
4742 return -EBADR;
4743
4744 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
4745 error = ext4_xattr_fiemap(inode, fieinfo);
4746 } else {
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004747 ext4_lblk_t len_blks;
4748 __u64 last_blk;
4749
Eric Sandeen6873fa02008-10-07 00:46:36 -04004750 start_blk = start >> inode->i_sb->s_blocksize_bits;
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004751 last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits;
Lukas Czernerf17722f2011-06-06 00:05:17 -04004752 if (last_blk >= EXT_MAX_BLOCKS)
4753 last_blk = EXT_MAX_BLOCKS-1;
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004754 len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004755
4756 /*
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004757 * Walk the extent tree gathering extent information
4758 * and pushing extents back to the user.
Eric Sandeen6873fa02008-10-07 00:46:36 -04004759 */
Lukas Czerner91dd8c12012-11-28 12:32:26 -05004760 error = ext4_fill_fiemap_extents(inode, start_blk,
4761 len_blks, fieinfo);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004762 }
4763
4764 return error;
4765}