xref: /openbmc/linux/fs/ext4/extents.c (revision 1b16da77f90328661fc7e556ad591f9ee6b7ef6a)
1a86c6181SAlex Tomas /*
2a86c6181SAlex Tomas  * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
3a86c6181SAlex Tomas  * Written by Alex Tomas <alex@clusterfs.com>
4a86c6181SAlex Tomas  *
5a86c6181SAlex Tomas  * Architecture independence:
6a86c6181SAlex Tomas  *   Copyright (c) 2005, Bull S.A.
7a86c6181SAlex Tomas  *   Written by Pierre Peiffer <pierre.peiffer@bull.net>
8a86c6181SAlex Tomas  *
9a86c6181SAlex Tomas  * This program is free software; you can redistribute it and/or modify
10a86c6181SAlex Tomas  * it under the terms of the GNU General Public License version 2 as
11a86c6181SAlex Tomas  * published by the Free Software Foundation.
12a86c6181SAlex Tomas  *
13a86c6181SAlex Tomas  * This program is distributed in the hope that it will be useful,
14a86c6181SAlex Tomas  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15a86c6181SAlex Tomas  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16a86c6181SAlex Tomas  * GNU General Public License for more details.
17a86c6181SAlex Tomas  *
18a86c6181SAlex Tomas  * You should have received a copy of the GNU General Public Licens
19a86c6181SAlex Tomas  * along with this program; if not, write to the Free Software
20a86c6181SAlex Tomas  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-
21a86c6181SAlex Tomas  */
22a86c6181SAlex Tomas 
23a86c6181SAlex Tomas /*
24a86c6181SAlex Tomas  * Extents support for EXT4
25a86c6181SAlex Tomas  *
26a86c6181SAlex Tomas  * TODO:
27a86c6181SAlex Tomas  *   - ext4*_error() should be used in some situations
28a86c6181SAlex Tomas  *   - analyze all BUG()/BUG_ON(), use -EIO where appropriate
29a86c6181SAlex Tomas  *   - smart tree reduction
30a86c6181SAlex Tomas  */
31a86c6181SAlex Tomas 
32a86c6181SAlex Tomas #include <linux/module.h>
33a86c6181SAlex Tomas #include <linux/fs.h>
34a86c6181SAlex Tomas #include <linux/time.h>
35cd02ff0bSMingming Cao #include <linux/jbd2.h>
36a86c6181SAlex Tomas #include <linux/highuid.h>
37a86c6181SAlex Tomas #include <linux/pagemap.h>
38a86c6181SAlex Tomas #include <linux/quotaops.h>
39a86c6181SAlex Tomas #include <linux/string.h>
40a86c6181SAlex Tomas #include <linux/slab.h>
41a2df2a63SAmit Arora #include <linux/falloc.h>
42a86c6181SAlex Tomas #include <asm/uaccess.h>
436873fa0dSEric Sandeen #include <linux/fiemap.h>
443dcf5451SChristoph Hellwig #include "ext4_jbd2.h"
453dcf5451SChristoph Hellwig #include "ext4_extents.h"
46a86c6181SAlex Tomas 
470562e0baSJiaying Zhang #include <trace/events/ext4.h>
480562e0baSJiaying Zhang 
49d583fb87SAllison Henderson static int ext4_split_extent(handle_t *handle,
50d583fb87SAllison Henderson 				struct inode *inode,
51d583fb87SAllison Henderson 				struct ext4_ext_path *path,
52d583fb87SAllison Henderson 				struct ext4_map_blocks *map,
53d583fb87SAllison Henderson 				int split_flag,
54d583fb87SAllison Henderson 				int flags);
55d583fb87SAllison Henderson 
56487caeefSJan Kara static int ext4_ext_truncate_extend_restart(handle_t *handle,
57487caeefSJan Kara 					    struct inode *inode,
58487caeefSJan Kara 					    int needed)
59a86c6181SAlex Tomas {
60a86c6181SAlex Tomas 	int err;
61a86c6181SAlex Tomas 
620390131bSFrank Mayhar 	if (!ext4_handle_valid(handle))
630390131bSFrank Mayhar 		return 0;
64a86c6181SAlex Tomas 	if (handle->h_buffer_credits > needed)
659102e4faSShen Feng 		return 0;
669102e4faSShen Feng 	err = ext4_journal_extend(handle, needed);
670123c939STheodore Ts'o 	if (err <= 0)
689102e4faSShen Feng 		return err;
69487caeefSJan Kara 	err = ext4_truncate_restart_trans(handle, inode, needed);
700617b83fSDmitry Monakhov 	if (err == 0)
710617b83fSDmitry Monakhov 		err = -EAGAIN;
72487caeefSJan Kara 
73487caeefSJan Kara 	return err;
74a86c6181SAlex Tomas }
75a86c6181SAlex Tomas 
76a86c6181SAlex Tomas /*
77a86c6181SAlex Tomas  * could return:
78a86c6181SAlex Tomas  *  - EROFS
79a86c6181SAlex Tomas  *  - ENOMEM
80a86c6181SAlex Tomas  */
81a86c6181SAlex Tomas static int ext4_ext_get_access(handle_t *handle, struct inode *inode,
82a86c6181SAlex Tomas 				struct ext4_ext_path *path)
83a86c6181SAlex Tomas {
84a86c6181SAlex Tomas 	if (path->p_bh) {
85a86c6181SAlex Tomas 		/* path points to block */
86a86c6181SAlex Tomas 		return ext4_journal_get_write_access(handle, path->p_bh);
87a86c6181SAlex Tomas 	}
88a86c6181SAlex Tomas 	/* path points to leaf/index in inode body */
89a86c6181SAlex Tomas 	/* we use in-core data, no need to protect them */
90a86c6181SAlex Tomas 	return 0;
91a86c6181SAlex Tomas }
92a86c6181SAlex Tomas 
93a86c6181SAlex Tomas /*
94a86c6181SAlex Tomas  * could return:
95a86c6181SAlex Tomas  *  - EROFS
96a86c6181SAlex Tomas  *  - ENOMEM
97a86c6181SAlex Tomas  *  - EIO
98a86c6181SAlex Tomas  */
99a86c6181SAlex Tomas static int ext4_ext_dirty(handle_t *handle, struct inode *inode,
100a86c6181SAlex Tomas 				struct ext4_ext_path *path)
101a86c6181SAlex Tomas {
102a86c6181SAlex Tomas 	int err;
103a86c6181SAlex Tomas 	if (path->p_bh) {
104a86c6181SAlex Tomas 		/* path points to block */
1050390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, path->p_bh);
106a86c6181SAlex Tomas 	} else {
107a86c6181SAlex Tomas 		/* path points to leaf/index in inode body */
108a86c6181SAlex Tomas 		err = ext4_mark_inode_dirty(handle, inode);
109a86c6181SAlex Tomas 	}
110a86c6181SAlex Tomas 	return err;
111a86c6181SAlex Tomas }
112a86c6181SAlex Tomas 
113f65e6fbaSAlex Tomas static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode,
114a86c6181SAlex Tomas 			      struct ext4_ext_path *path,
115725d26d3SAneesh Kumar K.V 			      ext4_lblk_t block)
116a86c6181SAlex Tomas {
117a86c6181SAlex Tomas 	struct ext4_inode_info *ei = EXT4_I(inode);
118f65e6fbaSAlex Tomas 	ext4_fsblk_t bg_start;
11974d3487fSValerie Clement 	ext4_fsblk_t last_block;
120f65e6fbaSAlex Tomas 	ext4_grpblk_t colour;
121a4912123STheodore Ts'o 	ext4_group_t block_group;
122a4912123STheodore Ts'o 	int flex_size = ext4_flex_bg_size(EXT4_SB(inode->i_sb));
123a86c6181SAlex Tomas 	int depth;
124a86c6181SAlex Tomas 
125a86c6181SAlex Tomas 	if (path) {
126a86c6181SAlex Tomas 		struct ext4_extent *ex;
127a86c6181SAlex Tomas 		depth = path->p_depth;
128a86c6181SAlex Tomas 
129ad4fb9caSKazuya Mio 		/*
130ad4fb9caSKazuya Mio 		 * Try to predict block placement assuming that we are
131ad4fb9caSKazuya Mio 		 * filling in a file which will eventually be
132ad4fb9caSKazuya Mio 		 * non-sparse --- i.e., in the case of libbfd writing
133ad4fb9caSKazuya Mio 		 * an ELF object sections out-of-order but in a way
134ad4fb9caSKazuya Mio 		 * the eventually results in a contiguous object or
135ad4fb9caSKazuya Mio 		 * executable file, or some database extending a table
136ad4fb9caSKazuya Mio 		 * space file.  However, this is actually somewhat
137ad4fb9caSKazuya Mio 		 * non-ideal if we are writing a sparse file such as
138ad4fb9caSKazuya Mio 		 * qemu or KVM writing a raw image file that is going
139ad4fb9caSKazuya Mio 		 * to stay fairly sparse, since it will end up
140ad4fb9caSKazuya Mio 		 * fragmenting the file system's free space.  Maybe we
141ad4fb9caSKazuya Mio 		 * should have some hueristics or some way to allow
142ad4fb9caSKazuya Mio 		 * userspace to pass a hint to file system,
143b8d6568aSTao Ma 		 * especially if the latter case turns out to be
144ad4fb9caSKazuya Mio 		 * common.
145ad4fb9caSKazuya Mio 		 */
1467e028976SAvantika Mathur 		ex = path[depth].p_ext;
147ad4fb9caSKazuya Mio 		if (ex) {
148ad4fb9caSKazuya Mio 			ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex);
149ad4fb9caSKazuya Mio 			ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block);
150ad4fb9caSKazuya Mio 
151ad4fb9caSKazuya Mio 			if (block > ext_block)
152ad4fb9caSKazuya Mio 				return ext_pblk + (block - ext_block);
153ad4fb9caSKazuya Mio 			else
154ad4fb9caSKazuya Mio 				return ext_pblk - (ext_block - block);
155ad4fb9caSKazuya Mio 		}
156a86c6181SAlex Tomas 
157d0d856e8SRandy Dunlap 		/* it looks like index is empty;
158d0d856e8SRandy Dunlap 		 * try to find starting block from index itself */
159a86c6181SAlex Tomas 		if (path[depth].p_bh)
160a86c6181SAlex Tomas 			return path[depth].p_bh->b_blocknr;
161a86c6181SAlex Tomas 	}
162a86c6181SAlex Tomas 
163a86c6181SAlex Tomas 	/* OK. use inode's group */
164a4912123STheodore Ts'o 	block_group = ei->i_block_group;
165a4912123STheodore Ts'o 	if (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) {
166a4912123STheodore Ts'o 		/*
167a4912123STheodore Ts'o 		 * If there are at least EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME
168a4912123STheodore Ts'o 		 * block groups per flexgroup, reserve the first block
169a4912123STheodore Ts'o 		 * group for directories and special files.  Regular
170a4912123STheodore Ts'o 		 * files will start at the second block group.  This
171a4912123STheodore Ts'o 		 * tends to speed up directory access and improves
172a4912123STheodore Ts'o 		 * fsck times.
173a4912123STheodore Ts'o 		 */
174a4912123STheodore Ts'o 		block_group &= ~(flex_size-1);
175a4912123STheodore Ts'o 		if (S_ISREG(inode->i_mode))
176a4912123STheodore Ts'o 			block_group++;
177a4912123STheodore Ts'o 	}
1785661bd68SAkinobu Mita 	bg_start = ext4_group_first_block_no(inode->i_sb, block_group);
17974d3487fSValerie Clement 	last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
18074d3487fSValerie Clement 
181a4912123STheodore Ts'o 	/*
182a4912123STheodore Ts'o 	 * If we are doing delayed allocation, we don't need take
183a4912123STheodore Ts'o 	 * colour into account.
184a4912123STheodore Ts'o 	 */
185a4912123STheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
186a4912123STheodore Ts'o 		return bg_start;
187a4912123STheodore Ts'o 
18874d3487fSValerie Clement 	if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
189a86c6181SAlex Tomas 		colour = (current->pid % 16) *
190a86c6181SAlex Tomas 			(EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
19174d3487fSValerie Clement 	else
19274d3487fSValerie Clement 		colour = (current->pid % 16) * ((last_block - bg_start) / 16);
193a86c6181SAlex Tomas 	return bg_start + colour + block;
194a86c6181SAlex Tomas }
195a86c6181SAlex Tomas 
196654b4908SAneesh Kumar K.V /*
197654b4908SAneesh Kumar K.V  * Allocation for a meta data block
198654b4908SAneesh Kumar K.V  */
199f65e6fbaSAlex Tomas static ext4_fsblk_t
200654b4908SAneesh Kumar K.V ext4_ext_new_meta_block(handle_t *handle, struct inode *inode,
201a86c6181SAlex Tomas 			struct ext4_ext_path *path,
20255f020dbSAllison Henderson 			struct ext4_extent *ex, int *err, unsigned int flags)
203a86c6181SAlex Tomas {
204f65e6fbaSAlex Tomas 	ext4_fsblk_t goal, newblock;
205a86c6181SAlex Tomas 
206a86c6181SAlex Tomas 	goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block));
20755f020dbSAllison Henderson 	newblock = ext4_new_meta_blocks(handle, inode, goal, flags,
20855f020dbSAllison Henderson 					NULL, err);
209a86c6181SAlex Tomas 	return newblock;
210a86c6181SAlex Tomas }
211a86c6181SAlex Tomas 
21255ad63bfSTheodore Ts'o static inline int ext4_ext_space_block(struct inode *inode, int check)
213a86c6181SAlex Tomas {
214a86c6181SAlex Tomas 	int size;
215a86c6181SAlex Tomas 
216a86c6181SAlex Tomas 	size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
217a86c6181SAlex Tomas 			/ sizeof(struct ext4_extent);
21855ad63bfSTheodore Ts'o 	if (!check) {
219bbf2f9fbSRobert P. J. Day #ifdef AGGRESSIVE_TEST
220a86c6181SAlex Tomas 		if (size > 6)
221a86c6181SAlex Tomas 			size = 6;
222a86c6181SAlex Tomas #endif
22355ad63bfSTheodore Ts'o 	}
224a86c6181SAlex Tomas 	return size;
225a86c6181SAlex Tomas }
226a86c6181SAlex Tomas 
22755ad63bfSTheodore Ts'o static inline int ext4_ext_space_block_idx(struct inode *inode, int check)
228a86c6181SAlex Tomas {
229a86c6181SAlex Tomas 	int size;
230a86c6181SAlex Tomas 
231a86c6181SAlex Tomas 	size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
232a86c6181SAlex Tomas 			/ sizeof(struct ext4_extent_idx);
23355ad63bfSTheodore Ts'o 	if (!check) {
234bbf2f9fbSRobert P. J. Day #ifdef AGGRESSIVE_TEST
235a86c6181SAlex Tomas 		if (size > 5)
236a86c6181SAlex Tomas 			size = 5;
237a86c6181SAlex Tomas #endif
23855ad63bfSTheodore Ts'o 	}
239a86c6181SAlex Tomas 	return size;
240a86c6181SAlex Tomas }
241a86c6181SAlex Tomas 
24255ad63bfSTheodore Ts'o static inline int ext4_ext_space_root(struct inode *inode, int check)
243a86c6181SAlex Tomas {
244a86c6181SAlex Tomas 	int size;
245a86c6181SAlex Tomas 
246a86c6181SAlex Tomas 	size = sizeof(EXT4_I(inode)->i_data);
247a86c6181SAlex Tomas 	size -= sizeof(struct ext4_extent_header);
248a86c6181SAlex Tomas 	size /= sizeof(struct ext4_extent);
24955ad63bfSTheodore Ts'o 	if (!check) {
250bbf2f9fbSRobert P. J. Day #ifdef AGGRESSIVE_TEST
251a86c6181SAlex Tomas 		if (size > 3)
252a86c6181SAlex Tomas 			size = 3;
253a86c6181SAlex Tomas #endif
25455ad63bfSTheodore Ts'o 	}
255a86c6181SAlex Tomas 	return size;
256a86c6181SAlex Tomas }
257a86c6181SAlex Tomas 
25855ad63bfSTheodore Ts'o static inline int ext4_ext_space_root_idx(struct inode *inode, int check)
259a86c6181SAlex Tomas {
260a86c6181SAlex Tomas 	int size;
261a86c6181SAlex Tomas 
262a86c6181SAlex Tomas 	size = sizeof(EXT4_I(inode)->i_data);
263a86c6181SAlex Tomas 	size -= sizeof(struct ext4_extent_header);
264a86c6181SAlex Tomas 	size /= sizeof(struct ext4_extent_idx);
26555ad63bfSTheodore Ts'o 	if (!check) {
266bbf2f9fbSRobert P. J. Day #ifdef AGGRESSIVE_TEST
267a86c6181SAlex Tomas 		if (size > 4)
268a86c6181SAlex Tomas 			size = 4;
269a86c6181SAlex Tomas #endif
27055ad63bfSTheodore Ts'o 	}
271a86c6181SAlex Tomas 	return size;
272a86c6181SAlex Tomas }
273a86c6181SAlex Tomas 
274d2a17637SMingming Cao /*
275d2a17637SMingming Cao  * Calculate the number of metadata blocks needed
276d2a17637SMingming Cao  * to allocate @blocks
277d2a17637SMingming Cao  * Worse case is one block per extent
278d2a17637SMingming Cao  */
27901f49d0bSTheodore Ts'o int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
280d2a17637SMingming Cao {
2819d0be502STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
2829d0be502STheodore Ts'o 	int idxs, num = 0;
283d2a17637SMingming Cao 
2849d0be502STheodore Ts'o 	idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
2859d0be502STheodore Ts'o 		/ sizeof(struct ext4_extent_idx));
286d2a17637SMingming Cao 
287d2a17637SMingming Cao 	/*
2889d0be502STheodore Ts'o 	 * If the new delayed allocation block is contiguous with the
2899d0be502STheodore Ts'o 	 * previous da block, it can share index blocks with the
2909d0be502STheodore Ts'o 	 * previous block, so we only need to allocate a new index
2919d0be502STheodore Ts'o 	 * block every idxs leaf blocks.  At ldxs**2 blocks, we need
2929d0be502STheodore Ts'o 	 * an additional index block, and at ldxs**3 blocks, yet
2939d0be502STheodore Ts'o 	 * another index blocks.
294d2a17637SMingming Cao 	 */
2959d0be502STheodore Ts'o 	if (ei->i_da_metadata_calc_len &&
2969d0be502STheodore Ts'o 	    ei->i_da_metadata_calc_last_lblock+1 == lblock) {
2979d0be502STheodore Ts'o 		if ((ei->i_da_metadata_calc_len % idxs) == 0)
2989d0be502STheodore Ts'o 			num++;
2999d0be502STheodore Ts'o 		if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0)
3009d0be502STheodore Ts'o 			num++;
3019d0be502STheodore Ts'o 		if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) {
3029d0be502STheodore Ts'o 			num++;
3039d0be502STheodore Ts'o 			ei->i_da_metadata_calc_len = 0;
3049d0be502STheodore Ts'o 		} else
3059d0be502STheodore Ts'o 			ei->i_da_metadata_calc_len++;
3069d0be502STheodore Ts'o 		ei->i_da_metadata_calc_last_lblock++;
307d2a17637SMingming Cao 		return num;
308d2a17637SMingming Cao 	}
309d2a17637SMingming Cao 
3109d0be502STheodore Ts'o 	/*
3119d0be502STheodore Ts'o 	 * In the worst case we need a new set of index blocks at
3129d0be502STheodore Ts'o 	 * every level of the inode's extent tree.
3139d0be502STheodore Ts'o 	 */
3149d0be502STheodore Ts'o 	ei->i_da_metadata_calc_len = 1;
3159d0be502STheodore Ts'o 	ei->i_da_metadata_calc_last_lblock = lblock;
3169d0be502STheodore Ts'o 	return ext_depth(inode) + 1;
3179d0be502STheodore Ts'o }
3189d0be502STheodore Ts'o 
319c29c0ae7SAlex Tomas static int
320c29c0ae7SAlex Tomas ext4_ext_max_entries(struct inode *inode, int depth)
321c29c0ae7SAlex Tomas {
322c29c0ae7SAlex Tomas 	int max;
323c29c0ae7SAlex Tomas 
324c29c0ae7SAlex Tomas 	if (depth == ext_depth(inode)) {
325c29c0ae7SAlex Tomas 		if (depth == 0)
32655ad63bfSTheodore Ts'o 			max = ext4_ext_space_root(inode, 1);
327c29c0ae7SAlex Tomas 		else
32855ad63bfSTheodore Ts'o 			max = ext4_ext_space_root_idx(inode, 1);
329c29c0ae7SAlex Tomas 	} else {
330c29c0ae7SAlex Tomas 		if (depth == 0)
33155ad63bfSTheodore Ts'o 			max = ext4_ext_space_block(inode, 1);
332c29c0ae7SAlex Tomas 		else
33355ad63bfSTheodore Ts'o 			max = ext4_ext_space_block_idx(inode, 1);
334c29c0ae7SAlex Tomas 	}
335c29c0ae7SAlex Tomas 
336c29c0ae7SAlex Tomas 	return max;
337c29c0ae7SAlex Tomas }
338c29c0ae7SAlex Tomas 
33956b19868SAneesh Kumar K.V static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext)
34056b19868SAneesh Kumar K.V {
341bf89d16fSTheodore Ts'o 	ext4_fsblk_t block = ext4_ext_pblock(ext);
34256b19868SAneesh Kumar K.V 	int len = ext4_ext_get_actual_len(ext);
343e84a26ceSTheodore Ts'o 
3446fd058f7STheodore Ts'o 	return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len);
34556b19868SAneesh Kumar K.V }
34656b19868SAneesh Kumar K.V 
34756b19868SAneesh Kumar K.V static int ext4_valid_extent_idx(struct inode *inode,
34856b19868SAneesh Kumar K.V 				struct ext4_extent_idx *ext_idx)
34956b19868SAneesh Kumar K.V {
350bf89d16fSTheodore Ts'o 	ext4_fsblk_t block = ext4_idx_pblock(ext_idx);
351e84a26ceSTheodore Ts'o 
3526fd058f7STheodore Ts'o 	return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1);
35356b19868SAneesh Kumar K.V }
35456b19868SAneesh Kumar K.V 
35556b19868SAneesh Kumar K.V static int ext4_valid_extent_entries(struct inode *inode,
35656b19868SAneesh Kumar K.V 				struct ext4_extent_header *eh,
35756b19868SAneesh Kumar K.V 				int depth)
35856b19868SAneesh Kumar K.V {
35956b19868SAneesh Kumar K.V 	struct ext4_extent *ext;
36056b19868SAneesh Kumar K.V 	struct ext4_extent_idx *ext_idx;
36156b19868SAneesh Kumar K.V 	unsigned short entries;
36256b19868SAneesh Kumar K.V 	if (eh->eh_entries == 0)
36356b19868SAneesh Kumar K.V 		return 1;
36456b19868SAneesh Kumar K.V 
36556b19868SAneesh Kumar K.V 	entries = le16_to_cpu(eh->eh_entries);
36656b19868SAneesh Kumar K.V 
36756b19868SAneesh Kumar K.V 	if (depth == 0) {
36856b19868SAneesh Kumar K.V 		/* leaf entries */
36956b19868SAneesh Kumar K.V 		ext = EXT_FIRST_EXTENT(eh);
37056b19868SAneesh Kumar K.V 		while (entries) {
37156b19868SAneesh Kumar K.V 			if (!ext4_valid_extent(inode, ext))
37256b19868SAneesh Kumar K.V 				return 0;
37356b19868SAneesh Kumar K.V 			ext++;
37456b19868SAneesh Kumar K.V 			entries--;
37556b19868SAneesh Kumar K.V 		}
37656b19868SAneesh Kumar K.V 	} else {
37756b19868SAneesh Kumar K.V 		ext_idx = EXT_FIRST_INDEX(eh);
37856b19868SAneesh Kumar K.V 		while (entries) {
37956b19868SAneesh Kumar K.V 			if (!ext4_valid_extent_idx(inode, ext_idx))
38056b19868SAneesh Kumar K.V 				return 0;
38156b19868SAneesh Kumar K.V 			ext_idx++;
38256b19868SAneesh Kumar K.V 			entries--;
38356b19868SAneesh Kumar K.V 		}
38456b19868SAneesh Kumar K.V 	}
38556b19868SAneesh Kumar K.V 	return 1;
38656b19868SAneesh Kumar K.V }
38756b19868SAneesh Kumar K.V 
388c398eda0STheodore Ts'o static int __ext4_ext_check(const char *function, unsigned int line,
389c398eda0STheodore Ts'o 			    struct inode *inode, struct ext4_extent_header *eh,
390c29c0ae7SAlex Tomas 			    int depth)
391c29c0ae7SAlex Tomas {
392c29c0ae7SAlex Tomas 	const char *error_msg;
393c29c0ae7SAlex Tomas 	int max = 0;
394c29c0ae7SAlex Tomas 
395c29c0ae7SAlex Tomas 	if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) {
396c29c0ae7SAlex Tomas 		error_msg = "invalid magic";
397c29c0ae7SAlex Tomas 		goto corrupted;
398c29c0ae7SAlex Tomas 	}
399c29c0ae7SAlex Tomas 	if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) {
400c29c0ae7SAlex Tomas 		error_msg = "unexpected eh_depth";
401c29c0ae7SAlex Tomas 		goto corrupted;
402c29c0ae7SAlex Tomas 	}
403c29c0ae7SAlex Tomas 	if (unlikely(eh->eh_max == 0)) {
404c29c0ae7SAlex Tomas 		error_msg = "invalid eh_max";
405c29c0ae7SAlex Tomas 		goto corrupted;
406c29c0ae7SAlex Tomas 	}
407c29c0ae7SAlex Tomas 	max = ext4_ext_max_entries(inode, depth);
408c29c0ae7SAlex Tomas 	if (unlikely(le16_to_cpu(eh->eh_max) > max)) {
409c29c0ae7SAlex Tomas 		error_msg = "too large eh_max";
410c29c0ae7SAlex Tomas 		goto corrupted;
411c29c0ae7SAlex Tomas 	}
412c29c0ae7SAlex Tomas 	if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
413c29c0ae7SAlex Tomas 		error_msg = "invalid eh_entries";
414c29c0ae7SAlex Tomas 		goto corrupted;
415c29c0ae7SAlex Tomas 	}
41656b19868SAneesh Kumar K.V 	if (!ext4_valid_extent_entries(inode, eh, depth)) {
41756b19868SAneesh Kumar K.V 		error_msg = "invalid extent entries";
41856b19868SAneesh Kumar K.V 		goto corrupted;
41956b19868SAneesh Kumar K.V 	}
420c29c0ae7SAlex Tomas 	return 0;
421c29c0ae7SAlex Tomas 
422c29c0ae7SAlex Tomas corrupted:
423c398eda0STheodore Ts'o 	ext4_error_inode(inode, function, line, 0,
42424676da4STheodore Ts'o 			"bad header/extent: %s - magic %x, "
425c29c0ae7SAlex Tomas 			"entries %u, max %u(%u), depth %u(%u)",
42624676da4STheodore Ts'o 			error_msg, le16_to_cpu(eh->eh_magic),
427c29c0ae7SAlex Tomas 			le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
428c29c0ae7SAlex Tomas 			max, le16_to_cpu(eh->eh_depth), depth);
429c29c0ae7SAlex Tomas 
430c29c0ae7SAlex Tomas 	return -EIO;
431c29c0ae7SAlex Tomas }
432c29c0ae7SAlex Tomas 
43356b19868SAneesh Kumar K.V #define ext4_ext_check(inode, eh, depth)	\
434c398eda0STheodore Ts'o 	__ext4_ext_check(__func__, __LINE__, inode, eh, depth)
435c29c0ae7SAlex Tomas 
4367a262f7cSAneesh Kumar K.V int ext4_ext_check_inode(struct inode *inode)
4377a262f7cSAneesh Kumar K.V {
4387a262f7cSAneesh Kumar K.V 	return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode));
4397a262f7cSAneesh Kumar K.V }
4407a262f7cSAneesh Kumar K.V 
441a86c6181SAlex Tomas #ifdef EXT_DEBUG
442a86c6181SAlex Tomas static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path)
443a86c6181SAlex Tomas {
444a86c6181SAlex Tomas 	int k, l = path->p_depth;
445a86c6181SAlex Tomas 
446a86c6181SAlex Tomas 	ext_debug("path:");
447a86c6181SAlex Tomas 	for (k = 0; k <= l; k++, path++) {
448a86c6181SAlex Tomas 		if (path->p_idx) {
4492ae02107SMingming Cao 		  ext_debug("  %d->%llu", le32_to_cpu(path->p_idx->ei_block),
450bf89d16fSTheodore Ts'o 			    ext4_idx_pblock(path->p_idx));
451a86c6181SAlex Tomas 		} else if (path->p_ext) {
452553f9008SMingming 			ext_debug("  %d:[%d]%d:%llu ",
453a86c6181SAlex Tomas 				  le32_to_cpu(path->p_ext->ee_block),
454553f9008SMingming 				  ext4_ext_is_uninitialized(path->p_ext),
455a2df2a63SAmit Arora 				  ext4_ext_get_actual_len(path->p_ext),
456bf89d16fSTheodore Ts'o 				  ext4_ext_pblock(path->p_ext));
457a86c6181SAlex Tomas 		} else
458a86c6181SAlex Tomas 			ext_debug("  []");
459a86c6181SAlex Tomas 	}
460a86c6181SAlex Tomas 	ext_debug("\n");
461a86c6181SAlex Tomas }
462a86c6181SAlex Tomas 
463a86c6181SAlex Tomas static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path)
464a86c6181SAlex Tomas {
465a86c6181SAlex Tomas 	int depth = ext_depth(inode);
466a86c6181SAlex Tomas 	struct ext4_extent_header *eh;
467a86c6181SAlex Tomas 	struct ext4_extent *ex;
468a86c6181SAlex Tomas 	int i;
469a86c6181SAlex Tomas 
470a86c6181SAlex Tomas 	if (!path)
471a86c6181SAlex Tomas 		return;
472a86c6181SAlex Tomas 
473a86c6181SAlex Tomas 	eh = path[depth].p_hdr;
474a86c6181SAlex Tomas 	ex = EXT_FIRST_EXTENT(eh);
475a86c6181SAlex Tomas 
476553f9008SMingming 	ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino);
477553f9008SMingming 
478a86c6181SAlex Tomas 	for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) {
479553f9008SMingming 		ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block),
480553f9008SMingming 			  ext4_ext_is_uninitialized(ex),
481bf89d16fSTheodore Ts'o 			  ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex));
482a86c6181SAlex Tomas 	}
483a86c6181SAlex Tomas 	ext_debug("\n");
484a86c6181SAlex Tomas }
485*1b16da77SYongqiang Yang 
486*1b16da77SYongqiang Yang static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path,
487*1b16da77SYongqiang Yang 			ext4_fsblk_t newblock, int level)
488*1b16da77SYongqiang Yang {
489*1b16da77SYongqiang Yang 	int depth = ext_depth(inode);
490*1b16da77SYongqiang Yang 	struct ext4_extent *ex;
491*1b16da77SYongqiang Yang 
492*1b16da77SYongqiang Yang 	if (depth != level) {
493*1b16da77SYongqiang Yang 		struct ext4_extent_idx *idx;
494*1b16da77SYongqiang Yang 		idx = path[level].p_idx;
495*1b16da77SYongqiang Yang 		while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) {
496*1b16da77SYongqiang Yang 			ext_debug("%d: move %d:%llu in new index %llu\n", level,
497*1b16da77SYongqiang Yang 					le32_to_cpu(idx->ei_block),
498*1b16da77SYongqiang Yang 					ext4_idx_pblock(idx),
499*1b16da77SYongqiang Yang 					newblock);
500*1b16da77SYongqiang Yang 			idx++;
501*1b16da77SYongqiang Yang 		}
502*1b16da77SYongqiang Yang 
503*1b16da77SYongqiang Yang 		return;
504*1b16da77SYongqiang Yang 	}
505*1b16da77SYongqiang Yang 
506*1b16da77SYongqiang Yang 	ex = path[depth].p_ext;
507*1b16da77SYongqiang Yang 	while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) {
508*1b16da77SYongqiang Yang 		ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n",
509*1b16da77SYongqiang Yang 				le32_to_cpu(ex->ee_block),
510*1b16da77SYongqiang Yang 				ext4_ext_pblock(ex),
511*1b16da77SYongqiang Yang 				ext4_ext_is_uninitialized(ex),
512*1b16da77SYongqiang Yang 				ext4_ext_get_actual_len(ex),
513*1b16da77SYongqiang Yang 				newblock);
514*1b16da77SYongqiang Yang 		ex++;
515*1b16da77SYongqiang Yang 	}
516*1b16da77SYongqiang Yang }
517*1b16da77SYongqiang Yang 
518a86c6181SAlex Tomas #else
519a86c6181SAlex Tomas #define ext4_ext_show_path(inode, path)
520a86c6181SAlex Tomas #define ext4_ext_show_leaf(inode, path)
521*1b16da77SYongqiang Yang #define ext4_ext_show_move(inode, path, newblock, level)
522a86c6181SAlex Tomas #endif
523a86c6181SAlex Tomas 
524b35905c1SAneesh Kumar K.V void ext4_ext_drop_refs(struct ext4_ext_path *path)
525a86c6181SAlex Tomas {
526a86c6181SAlex Tomas 	int depth = path->p_depth;
527a86c6181SAlex Tomas 	int i;
528a86c6181SAlex Tomas 
529a86c6181SAlex Tomas 	for (i = 0; i <= depth; i++, path++)
530a86c6181SAlex Tomas 		if (path->p_bh) {
531a86c6181SAlex Tomas 			brelse(path->p_bh);
532a86c6181SAlex Tomas 			path->p_bh = NULL;
533a86c6181SAlex Tomas 		}
534a86c6181SAlex Tomas }
535a86c6181SAlex Tomas 
536a86c6181SAlex Tomas /*
537d0d856e8SRandy Dunlap  * ext4_ext_binsearch_idx:
538d0d856e8SRandy Dunlap  * binary search for the closest index of the given block
539c29c0ae7SAlex Tomas  * the header must be checked before calling this
540a86c6181SAlex Tomas  */
541a86c6181SAlex Tomas static void
542725d26d3SAneesh Kumar K.V ext4_ext_binsearch_idx(struct inode *inode,
543725d26d3SAneesh Kumar K.V 			struct ext4_ext_path *path, ext4_lblk_t block)
544a86c6181SAlex Tomas {
545a86c6181SAlex Tomas 	struct ext4_extent_header *eh = path->p_hdr;
546a86c6181SAlex Tomas 	struct ext4_extent_idx *r, *l, *m;
547a86c6181SAlex Tomas 
548a86c6181SAlex Tomas 
549bba90743SEric Sandeen 	ext_debug("binsearch for %u(idx):  ", block);
550a86c6181SAlex Tomas 
551a86c6181SAlex Tomas 	l = EXT_FIRST_INDEX(eh) + 1;
552e9f410b1SDmitry Monakhov 	r = EXT_LAST_INDEX(eh);
553a86c6181SAlex Tomas 	while (l <= r) {
554a86c6181SAlex Tomas 		m = l + (r - l) / 2;
555a86c6181SAlex Tomas 		if (block < le32_to_cpu(m->ei_block))
556a86c6181SAlex Tomas 			r = m - 1;
557a86c6181SAlex Tomas 		else
558a86c6181SAlex Tomas 			l = m + 1;
55926d535edSDmitry Monakhov 		ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block),
56026d535edSDmitry Monakhov 				m, le32_to_cpu(m->ei_block),
56126d535edSDmitry Monakhov 				r, le32_to_cpu(r->ei_block));
562a86c6181SAlex Tomas 	}
563a86c6181SAlex Tomas 
564a86c6181SAlex Tomas 	path->p_idx = l - 1;
565f65e6fbaSAlex Tomas 	ext_debug("  -> %d->%lld ", le32_to_cpu(path->p_idx->ei_block),
566bf89d16fSTheodore Ts'o 		  ext4_idx_pblock(path->p_idx));
567a86c6181SAlex Tomas 
568a86c6181SAlex Tomas #ifdef CHECK_BINSEARCH
569a86c6181SAlex Tomas 	{
570a86c6181SAlex Tomas 		struct ext4_extent_idx *chix, *ix;
571a86c6181SAlex Tomas 		int k;
572a86c6181SAlex Tomas 
573a86c6181SAlex Tomas 		chix = ix = EXT_FIRST_INDEX(eh);
574a86c6181SAlex Tomas 		for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) {
575a86c6181SAlex Tomas 		  if (k != 0 &&
576a86c6181SAlex Tomas 		      le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) {
5774776004fSTheodore Ts'o 				printk(KERN_DEBUG "k=%d, ix=0x%p, "
5784776004fSTheodore Ts'o 				       "first=0x%p\n", k,
579a86c6181SAlex Tomas 				       ix, EXT_FIRST_INDEX(eh));
5804776004fSTheodore Ts'o 				printk(KERN_DEBUG "%u <= %u\n",
581a86c6181SAlex Tomas 				       le32_to_cpu(ix->ei_block),
582a86c6181SAlex Tomas 				       le32_to_cpu(ix[-1].ei_block));
583a86c6181SAlex Tomas 			}
584a86c6181SAlex Tomas 			BUG_ON(k && le32_to_cpu(ix->ei_block)
585a86c6181SAlex Tomas 					   <= le32_to_cpu(ix[-1].ei_block));
586a86c6181SAlex Tomas 			if (block < le32_to_cpu(ix->ei_block))
587a86c6181SAlex Tomas 				break;
588a86c6181SAlex Tomas 			chix = ix;
589a86c6181SAlex Tomas 		}
590a86c6181SAlex Tomas 		BUG_ON(chix != path->p_idx);
591a86c6181SAlex Tomas 	}
592a86c6181SAlex Tomas #endif
593a86c6181SAlex Tomas 
594a86c6181SAlex Tomas }
595a86c6181SAlex Tomas 
596a86c6181SAlex Tomas /*
597d0d856e8SRandy Dunlap  * ext4_ext_binsearch:
598d0d856e8SRandy Dunlap  * binary search for closest extent of the given block
599c29c0ae7SAlex Tomas  * the header must be checked before calling this
600a86c6181SAlex Tomas  */
601a86c6181SAlex Tomas static void
602725d26d3SAneesh Kumar K.V ext4_ext_binsearch(struct inode *inode,
603725d26d3SAneesh Kumar K.V 		struct ext4_ext_path *path, ext4_lblk_t block)
604a86c6181SAlex Tomas {
605a86c6181SAlex Tomas 	struct ext4_extent_header *eh = path->p_hdr;
606a86c6181SAlex Tomas 	struct ext4_extent *r, *l, *m;
607a86c6181SAlex Tomas 
608a86c6181SAlex Tomas 	if (eh->eh_entries == 0) {
609a86c6181SAlex Tomas 		/*
610d0d856e8SRandy Dunlap 		 * this leaf is empty:
611a86c6181SAlex Tomas 		 * we get such a leaf in split/add case
612a86c6181SAlex Tomas 		 */
613a86c6181SAlex Tomas 		return;
614a86c6181SAlex Tomas 	}
615a86c6181SAlex Tomas 
616bba90743SEric Sandeen 	ext_debug("binsearch for %u:  ", block);
617a86c6181SAlex Tomas 
618a86c6181SAlex Tomas 	l = EXT_FIRST_EXTENT(eh) + 1;
619e9f410b1SDmitry Monakhov 	r = EXT_LAST_EXTENT(eh);
620a86c6181SAlex Tomas 
621a86c6181SAlex Tomas 	while (l <= r) {
622a86c6181SAlex Tomas 		m = l + (r - l) / 2;
623a86c6181SAlex Tomas 		if (block < le32_to_cpu(m->ee_block))
624a86c6181SAlex Tomas 			r = m - 1;
625a86c6181SAlex Tomas 		else
626a86c6181SAlex Tomas 			l = m + 1;
62726d535edSDmitry Monakhov 		ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block),
62826d535edSDmitry Monakhov 				m, le32_to_cpu(m->ee_block),
62926d535edSDmitry Monakhov 				r, le32_to_cpu(r->ee_block));
630a86c6181SAlex Tomas 	}
631a86c6181SAlex Tomas 
632a86c6181SAlex Tomas 	path->p_ext = l - 1;
633553f9008SMingming 	ext_debug("  -> %d:%llu:[%d]%d ",
634a86c6181SAlex Tomas 			le32_to_cpu(path->p_ext->ee_block),
635bf89d16fSTheodore Ts'o 			ext4_ext_pblock(path->p_ext),
636553f9008SMingming 			ext4_ext_is_uninitialized(path->p_ext),
637a2df2a63SAmit Arora 			ext4_ext_get_actual_len(path->p_ext));
638a86c6181SAlex Tomas 
639a86c6181SAlex Tomas #ifdef CHECK_BINSEARCH
640a86c6181SAlex Tomas 	{
641a86c6181SAlex Tomas 		struct ext4_extent *chex, *ex;
642a86c6181SAlex Tomas 		int k;
643a86c6181SAlex Tomas 
644a86c6181SAlex Tomas 		chex = ex = EXT_FIRST_EXTENT(eh);
645a86c6181SAlex Tomas 		for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) {
646a86c6181SAlex Tomas 			BUG_ON(k && le32_to_cpu(ex->ee_block)
647a86c6181SAlex Tomas 					  <= le32_to_cpu(ex[-1].ee_block));
648a86c6181SAlex Tomas 			if (block < le32_to_cpu(ex->ee_block))
649a86c6181SAlex Tomas 				break;
650a86c6181SAlex Tomas 			chex = ex;
651a86c6181SAlex Tomas 		}
652a86c6181SAlex Tomas 		BUG_ON(chex != path->p_ext);
653a86c6181SAlex Tomas 	}
654a86c6181SAlex Tomas #endif
655a86c6181SAlex Tomas 
656a86c6181SAlex Tomas }
657a86c6181SAlex Tomas 
658a86c6181SAlex Tomas int ext4_ext_tree_init(handle_t *handle, struct inode *inode)
659a86c6181SAlex Tomas {
660a86c6181SAlex Tomas 	struct ext4_extent_header *eh;
661a86c6181SAlex Tomas 
662a86c6181SAlex Tomas 	eh = ext_inode_hdr(inode);
663a86c6181SAlex Tomas 	eh->eh_depth = 0;
664a86c6181SAlex Tomas 	eh->eh_entries = 0;
665a86c6181SAlex Tomas 	eh->eh_magic = EXT4_EXT_MAGIC;
66655ad63bfSTheodore Ts'o 	eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0));
667a86c6181SAlex Tomas 	ext4_mark_inode_dirty(handle, inode);
668a86c6181SAlex Tomas 	ext4_ext_invalidate_cache(inode);
669a86c6181SAlex Tomas 	return 0;
670a86c6181SAlex Tomas }
671a86c6181SAlex Tomas 
672a86c6181SAlex Tomas struct ext4_ext_path *
673725d26d3SAneesh Kumar K.V ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block,
674725d26d3SAneesh Kumar K.V 					struct ext4_ext_path *path)
675a86c6181SAlex Tomas {
676a86c6181SAlex Tomas 	struct ext4_extent_header *eh;
677a86c6181SAlex Tomas 	struct buffer_head *bh;
678a86c6181SAlex Tomas 	short int depth, i, ppos = 0, alloc = 0;
679a86c6181SAlex Tomas 
680a86c6181SAlex Tomas 	eh = ext_inode_hdr(inode);
681c29c0ae7SAlex Tomas 	depth = ext_depth(inode);
682a86c6181SAlex Tomas 
683a86c6181SAlex Tomas 	/* account possible depth increase */
684a86c6181SAlex Tomas 	if (!path) {
6855d4958f9SAvantika Mathur 		path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2),
686a86c6181SAlex Tomas 				GFP_NOFS);
687a86c6181SAlex Tomas 		if (!path)
688a86c6181SAlex Tomas 			return ERR_PTR(-ENOMEM);
689a86c6181SAlex Tomas 		alloc = 1;
690a86c6181SAlex Tomas 	}
691a86c6181SAlex Tomas 	path[0].p_hdr = eh;
6921973adcbSShen Feng 	path[0].p_bh = NULL;
693a86c6181SAlex Tomas 
694c29c0ae7SAlex Tomas 	i = depth;
695a86c6181SAlex Tomas 	/* walk through the tree */
696a86c6181SAlex Tomas 	while (i) {
6977a262f7cSAneesh Kumar K.V 		int need_to_validate = 0;
6987a262f7cSAneesh Kumar K.V 
699a86c6181SAlex Tomas 		ext_debug("depth %d: num %d, max %d\n",
700a86c6181SAlex Tomas 			  ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
701c29c0ae7SAlex Tomas 
702a86c6181SAlex Tomas 		ext4_ext_binsearch_idx(inode, path + ppos, block);
703bf89d16fSTheodore Ts'o 		path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx);
704a86c6181SAlex Tomas 		path[ppos].p_depth = i;
705a86c6181SAlex Tomas 		path[ppos].p_ext = NULL;
706a86c6181SAlex Tomas 
7077a262f7cSAneesh Kumar K.V 		bh = sb_getblk(inode->i_sb, path[ppos].p_block);
7087a262f7cSAneesh Kumar K.V 		if (unlikely(!bh))
709a86c6181SAlex Tomas 			goto err;
7107a262f7cSAneesh Kumar K.V 		if (!bh_uptodate_or_lock(bh)) {
7110562e0baSJiaying Zhang 			trace_ext4_ext_load_extent(inode, block,
7120562e0baSJiaying Zhang 						path[ppos].p_block);
7137a262f7cSAneesh Kumar K.V 			if (bh_submit_read(bh) < 0) {
7147a262f7cSAneesh Kumar K.V 				put_bh(bh);
7157a262f7cSAneesh Kumar K.V 				goto err;
7167a262f7cSAneesh Kumar K.V 			}
7177a262f7cSAneesh Kumar K.V 			/* validate the extent entries */
7187a262f7cSAneesh Kumar K.V 			need_to_validate = 1;
7197a262f7cSAneesh Kumar K.V 		}
720a86c6181SAlex Tomas 		eh = ext_block_hdr(bh);
721a86c6181SAlex Tomas 		ppos++;
722273df556SFrank Mayhar 		if (unlikely(ppos > depth)) {
723273df556SFrank Mayhar 			put_bh(bh);
724273df556SFrank Mayhar 			EXT4_ERROR_INODE(inode,
725273df556SFrank Mayhar 					 "ppos %d > depth %d", ppos, depth);
726273df556SFrank Mayhar 			goto err;
727273df556SFrank Mayhar 		}
728a86c6181SAlex Tomas 		path[ppos].p_bh = bh;
729a86c6181SAlex Tomas 		path[ppos].p_hdr = eh;
730a86c6181SAlex Tomas 		i--;
731a86c6181SAlex Tomas 
7327a262f7cSAneesh Kumar K.V 		if (need_to_validate && ext4_ext_check(inode, eh, i))
733a86c6181SAlex Tomas 			goto err;
734a86c6181SAlex Tomas 	}
735a86c6181SAlex Tomas 
736a86c6181SAlex Tomas 	path[ppos].p_depth = i;
737a86c6181SAlex Tomas 	path[ppos].p_ext = NULL;
738a86c6181SAlex Tomas 	path[ppos].p_idx = NULL;
739a86c6181SAlex Tomas 
740a86c6181SAlex Tomas 	/* find extent */
741a86c6181SAlex Tomas 	ext4_ext_binsearch(inode, path + ppos, block);
7421973adcbSShen Feng 	/* if not an empty leaf */
7431973adcbSShen Feng 	if (path[ppos].p_ext)
744bf89d16fSTheodore Ts'o 		path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext);
745a86c6181SAlex Tomas 
746a86c6181SAlex Tomas 	ext4_ext_show_path(inode, path);
747a86c6181SAlex Tomas 
748a86c6181SAlex Tomas 	return path;
749a86c6181SAlex Tomas 
750a86c6181SAlex Tomas err:
751a86c6181SAlex Tomas 	ext4_ext_drop_refs(path);
752a86c6181SAlex Tomas 	if (alloc)
753a86c6181SAlex Tomas 		kfree(path);
754a86c6181SAlex Tomas 	return ERR_PTR(-EIO);
755a86c6181SAlex Tomas }
756a86c6181SAlex Tomas 
757a86c6181SAlex Tomas /*
758d0d856e8SRandy Dunlap  * ext4_ext_insert_index:
759d0d856e8SRandy Dunlap  * insert new index [@logical;@ptr] into the block at @curp;
760d0d856e8SRandy Dunlap  * check where to insert: before @curp or after @curp
761a86c6181SAlex Tomas  */
7621f109d5aSTheodore Ts'o static int ext4_ext_insert_index(handle_t *handle, struct inode *inode,
763a86c6181SAlex Tomas 				 struct ext4_ext_path *curp,
764f65e6fbaSAlex Tomas 				 int logical, ext4_fsblk_t ptr)
765a86c6181SAlex Tomas {
766a86c6181SAlex Tomas 	struct ext4_extent_idx *ix;
767a86c6181SAlex Tomas 	int len, err;
768a86c6181SAlex Tomas 
7697e028976SAvantika Mathur 	err = ext4_ext_get_access(handle, inode, curp);
7707e028976SAvantika Mathur 	if (err)
771a86c6181SAlex Tomas 		return err;
772a86c6181SAlex Tomas 
773273df556SFrank Mayhar 	if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) {
774273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode,
775273df556SFrank Mayhar 				 "logical %d == ei_block %d!",
776273df556SFrank Mayhar 				 logical, le32_to_cpu(curp->p_idx->ei_block));
777273df556SFrank Mayhar 		return -EIO;
778273df556SFrank Mayhar 	}
779a86c6181SAlex Tomas 	len = EXT_MAX_INDEX(curp->p_hdr) - curp->p_idx;
780a86c6181SAlex Tomas 	if (logical > le32_to_cpu(curp->p_idx->ei_block)) {
781a86c6181SAlex Tomas 		/* insert after */
782a86c6181SAlex Tomas 		if (curp->p_idx != EXT_LAST_INDEX(curp->p_hdr)) {
783a86c6181SAlex Tomas 			len = (len - 1) * sizeof(struct ext4_extent_idx);
784a86c6181SAlex Tomas 			len = len < 0 ? 0 : len;
78526d535edSDmitry Monakhov 			ext_debug("insert new index %d after: %llu. "
786a86c6181SAlex Tomas 					"move %d from 0x%p to 0x%p\n",
787a86c6181SAlex Tomas 					logical, ptr, len,
788a86c6181SAlex Tomas 					(curp->p_idx + 1), (curp->p_idx + 2));
789a86c6181SAlex Tomas 			memmove(curp->p_idx + 2, curp->p_idx + 1, len);
790a86c6181SAlex Tomas 		}
791a86c6181SAlex Tomas 		ix = curp->p_idx + 1;
792a86c6181SAlex Tomas 	} else {
793a86c6181SAlex Tomas 		/* insert before */
794a86c6181SAlex Tomas 		len = len * sizeof(struct ext4_extent_idx);
795a86c6181SAlex Tomas 		len = len < 0 ? 0 : len;
79626d535edSDmitry Monakhov 		ext_debug("insert new index %d before: %llu. "
797a86c6181SAlex Tomas 				"move %d from 0x%p to 0x%p\n",
798a86c6181SAlex Tomas 				logical, ptr, len,
799a86c6181SAlex Tomas 				curp->p_idx, (curp->p_idx + 1));
800a86c6181SAlex Tomas 		memmove(curp->p_idx + 1, curp->p_idx, len);
801a86c6181SAlex Tomas 		ix = curp->p_idx;
802a86c6181SAlex Tomas 	}
803a86c6181SAlex Tomas 
804a86c6181SAlex Tomas 	ix->ei_block = cpu_to_le32(logical);
805f65e6fbaSAlex Tomas 	ext4_idx_store_pblock(ix, ptr);
806e8546d06SMarcin Slusarz 	le16_add_cpu(&curp->p_hdr->eh_entries, 1);
807a86c6181SAlex Tomas 
808273df556SFrank Mayhar 	if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries)
809273df556SFrank Mayhar 			     > le16_to_cpu(curp->p_hdr->eh_max))) {
810273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode,
811273df556SFrank Mayhar 				 "logical %d == ei_block %d!",
812273df556SFrank Mayhar 				 logical, le32_to_cpu(curp->p_idx->ei_block));
813273df556SFrank Mayhar 		return -EIO;
814273df556SFrank Mayhar 	}
815273df556SFrank Mayhar 	if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) {
816273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!");
817273df556SFrank Mayhar 		return -EIO;
818273df556SFrank Mayhar 	}
819a86c6181SAlex Tomas 
820a86c6181SAlex Tomas 	err = ext4_ext_dirty(handle, inode, curp);
821a86c6181SAlex Tomas 	ext4_std_error(inode->i_sb, err);
822a86c6181SAlex Tomas 
823a86c6181SAlex Tomas 	return err;
824a86c6181SAlex Tomas }
825a86c6181SAlex Tomas 
826a86c6181SAlex Tomas /*
827d0d856e8SRandy Dunlap  * ext4_ext_split:
828d0d856e8SRandy Dunlap  * inserts new subtree into the path, using free index entry
829d0d856e8SRandy Dunlap  * at depth @at:
830a86c6181SAlex Tomas  * - allocates all needed blocks (new leaf and all intermediate index blocks)
831a86c6181SAlex Tomas  * - makes decision where to split
832d0d856e8SRandy Dunlap  * - moves remaining extents and index entries (right to the split point)
833a86c6181SAlex Tomas  *   into the newly allocated blocks
834d0d856e8SRandy Dunlap  * - initializes subtree
835a86c6181SAlex Tomas  */
836a86c6181SAlex Tomas static int ext4_ext_split(handle_t *handle, struct inode *inode,
83755f020dbSAllison Henderson 			  unsigned int flags,
838a86c6181SAlex Tomas 			  struct ext4_ext_path *path,
839a86c6181SAlex Tomas 			  struct ext4_extent *newext, int at)
840a86c6181SAlex Tomas {
841a86c6181SAlex Tomas 	struct buffer_head *bh = NULL;
842a86c6181SAlex Tomas 	int depth = ext_depth(inode);
843a86c6181SAlex Tomas 	struct ext4_extent_header *neh;
844a86c6181SAlex Tomas 	struct ext4_extent_idx *fidx;
845a86c6181SAlex Tomas 	int i = at, k, m, a;
846f65e6fbaSAlex Tomas 	ext4_fsblk_t newblock, oldblock;
847a86c6181SAlex Tomas 	__le32 border;
848f65e6fbaSAlex Tomas 	ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */
849a86c6181SAlex Tomas 	int err = 0;
850a86c6181SAlex Tomas 
851a86c6181SAlex Tomas 	/* make decision: where to split? */
852d0d856e8SRandy Dunlap 	/* FIXME: now decision is simplest: at current extent */
853a86c6181SAlex Tomas 
854d0d856e8SRandy Dunlap 	/* if current leaf will be split, then we should use
855a86c6181SAlex Tomas 	 * border from split point */
856273df556SFrank Mayhar 	if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) {
857273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!");
858273df556SFrank Mayhar 		return -EIO;
859273df556SFrank Mayhar 	}
860a86c6181SAlex Tomas 	if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) {
861a86c6181SAlex Tomas 		border = path[depth].p_ext[1].ee_block;
862d0d856e8SRandy Dunlap 		ext_debug("leaf will be split."
863a86c6181SAlex Tomas 				" next leaf starts at %d\n",
864a86c6181SAlex Tomas 				  le32_to_cpu(border));
865a86c6181SAlex Tomas 	} else {
866a86c6181SAlex Tomas 		border = newext->ee_block;
867a86c6181SAlex Tomas 		ext_debug("leaf will be added."
868a86c6181SAlex Tomas 				" next leaf starts at %d\n",
869a86c6181SAlex Tomas 				le32_to_cpu(border));
870a86c6181SAlex Tomas 	}
871a86c6181SAlex Tomas 
872a86c6181SAlex Tomas 	/*
873d0d856e8SRandy Dunlap 	 * If error occurs, then we break processing
874d0d856e8SRandy Dunlap 	 * and mark filesystem read-only. index won't
875a86c6181SAlex Tomas 	 * be inserted and tree will be in consistent
876d0d856e8SRandy Dunlap 	 * state. Next mount will repair buffers too.
877a86c6181SAlex Tomas 	 */
878a86c6181SAlex Tomas 
879a86c6181SAlex Tomas 	/*
880d0d856e8SRandy Dunlap 	 * Get array to track all allocated blocks.
881d0d856e8SRandy Dunlap 	 * We need this to handle errors and free blocks
882d0d856e8SRandy Dunlap 	 * upon them.
883a86c6181SAlex Tomas 	 */
8845d4958f9SAvantika Mathur 	ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS);
885a86c6181SAlex Tomas 	if (!ablocks)
886a86c6181SAlex Tomas 		return -ENOMEM;
887a86c6181SAlex Tomas 
888a86c6181SAlex Tomas 	/* allocate all needed blocks */
889a86c6181SAlex Tomas 	ext_debug("allocate %d blocks for indexes/leaf\n", depth - at);
890a86c6181SAlex Tomas 	for (a = 0; a < depth - at; a++) {
891654b4908SAneesh Kumar K.V 		newblock = ext4_ext_new_meta_block(handle, inode, path,
89255f020dbSAllison Henderson 						   newext, &err, flags);
893a86c6181SAlex Tomas 		if (newblock == 0)
894a86c6181SAlex Tomas 			goto cleanup;
895a86c6181SAlex Tomas 		ablocks[a] = newblock;
896a86c6181SAlex Tomas 	}
897a86c6181SAlex Tomas 
898a86c6181SAlex Tomas 	/* initialize new leaf */
899a86c6181SAlex Tomas 	newblock = ablocks[--a];
900273df556SFrank Mayhar 	if (unlikely(newblock == 0)) {
901273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "newblock == 0!");
902273df556SFrank Mayhar 		err = -EIO;
903273df556SFrank Mayhar 		goto cleanup;
904273df556SFrank Mayhar 	}
905a86c6181SAlex Tomas 	bh = sb_getblk(inode->i_sb, newblock);
906a86c6181SAlex Tomas 	if (!bh) {
907a86c6181SAlex Tomas 		err = -EIO;
908a86c6181SAlex Tomas 		goto cleanup;
909a86c6181SAlex Tomas 	}
910a86c6181SAlex Tomas 	lock_buffer(bh);
911a86c6181SAlex Tomas 
9127e028976SAvantika Mathur 	err = ext4_journal_get_create_access(handle, bh);
9137e028976SAvantika Mathur 	if (err)
914a86c6181SAlex Tomas 		goto cleanup;
915a86c6181SAlex Tomas 
916a86c6181SAlex Tomas 	neh = ext_block_hdr(bh);
917a86c6181SAlex Tomas 	neh->eh_entries = 0;
91855ad63bfSTheodore Ts'o 	neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
919a86c6181SAlex Tomas 	neh->eh_magic = EXT4_EXT_MAGIC;
920a86c6181SAlex Tomas 	neh->eh_depth = 0;
921a86c6181SAlex Tomas 
922d0d856e8SRandy Dunlap 	/* move remainder of path[depth] to the new leaf */
923273df556SFrank Mayhar 	if (unlikely(path[depth].p_hdr->eh_entries !=
924273df556SFrank Mayhar 		     path[depth].p_hdr->eh_max)) {
925273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!",
926273df556SFrank Mayhar 				 path[depth].p_hdr->eh_entries,
927273df556SFrank Mayhar 				 path[depth].p_hdr->eh_max);
928273df556SFrank Mayhar 		err = -EIO;
929273df556SFrank Mayhar 		goto cleanup;
930273df556SFrank Mayhar 	}
931a86c6181SAlex Tomas 	/* start copy from next extent */
932*1b16da77SYongqiang Yang 	m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++;
933*1b16da77SYongqiang Yang 	ext4_ext_show_move(inode, path, newblock, depth);
934a86c6181SAlex Tomas 	if (m) {
935*1b16da77SYongqiang Yang 		struct ext4_extent *ex;
936*1b16da77SYongqiang Yang 		ex = EXT_FIRST_EXTENT(neh);
937*1b16da77SYongqiang Yang 		memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m);
938e8546d06SMarcin Slusarz 		le16_add_cpu(&neh->eh_entries, m);
939a86c6181SAlex Tomas 	}
940a86c6181SAlex Tomas 
941a86c6181SAlex Tomas 	set_buffer_uptodate(bh);
942a86c6181SAlex Tomas 	unlock_buffer(bh);
943a86c6181SAlex Tomas 
9440390131bSFrank Mayhar 	err = ext4_handle_dirty_metadata(handle, inode, bh);
9457e028976SAvantika Mathur 	if (err)
946a86c6181SAlex Tomas 		goto cleanup;
947a86c6181SAlex Tomas 	brelse(bh);
948a86c6181SAlex Tomas 	bh = NULL;
949a86c6181SAlex Tomas 
950a86c6181SAlex Tomas 	/* correct old leaf */
951a86c6181SAlex Tomas 	if (m) {
9527e028976SAvantika Mathur 		err = ext4_ext_get_access(handle, inode, path + depth);
9537e028976SAvantika Mathur 		if (err)
954a86c6181SAlex Tomas 			goto cleanup;
955e8546d06SMarcin Slusarz 		le16_add_cpu(&path[depth].p_hdr->eh_entries, -m);
9567e028976SAvantika Mathur 		err = ext4_ext_dirty(handle, inode, path + depth);
9577e028976SAvantika Mathur 		if (err)
958a86c6181SAlex Tomas 			goto cleanup;
959a86c6181SAlex Tomas 
960a86c6181SAlex Tomas 	}
961a86c6181SAlex Tomas 
962a86c6181SAlex Tomas 	/* create intermediate indexes */
963a86c6181SAlex Tomas 	k = depth - at - 1;
964273df556SFrank Mayhar 	if (unlikely(k < 0)) {
965273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "k %d < 0!", k);
966273df556SFrank Mayhar 		err = -EIO;
967273df556SFrank Mayhar 		goto cleanup;
968273df556SFrank Mayhar 	}
969a86c6181SAlex Tomas 	if (k)
970a86c6181SAlex Tomas 		ext_debug("create %d intermediate indices\n", k);
971a86c6181SAlex Tomas 	/* insert new index into current index block */
972a86c6181SAlex Tomas 	/* current depth stored in i var */
973a86c6181SAlex Tomas 	i = depth - 1;
974a86c6181SAlex Tomas 	while (k--) {
975a86c6181SAlex Tomas 		oldblock = newblock;
976a86c6181SAlex Tomas 		newblock = ablocks[--a];
977bba90743SEric Sandeen 		bh = sb_getblk(inode->i_sb, newblock);
978a86c6181SAlex Tomas 		if (!bh) {
979a86c6181SAlex Tomas 			err = -EIO;
980a86c6181SAlex Tomas 			goto cleanup;
981a86c6181SAlex Tomas 		}
982a86c6181SAlex Tomas 		lock_buffer(bh);
983a86c6181SAlex Tomas 
9847e028976SAvantika Mathur 		err = ext4_journal_get_create_access(handle, bh);
9857e028976SAvantika Mathur 		if (err)
986a86c6181SAlex Tomas 			goto cleanup;
987a86c6181SAlex Tomas 
988a86c6181SAlex Tomas 		neh = ext_block_hdr(bh);
989a86c6181SAlex Tomas 		neh->eh_entries = cpu_to_le16(1);
990a86c6181SAlex Tomas 		neh->eh_magic = EXT4_EXT_MAGIC;
99155ad63bfSTheodore Ts'o 		neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
992a86c6181SAlex Tomas 		neh->eh_depth = cpu_to_le16(depth - i);
993a86c6181SAlex Tomas 		fidx = EXT_FIRST_INDEX(neh);
994a86c6181SAlex Tomas 		fidx->ei_block = border;
995f65e6fbaSAlex Tomas 		ext4_idx_store_pblock(fidx, oldblock);
996a86c6181SAlex Tomas 
997bba90743SEric Sandeen 		ext_debug("int.index at %d (block %llu): %u -> %llu\n",
998bba90743SEric Sandeen 				i, newblock, le32_to_cpu(border), oldblock);
999a86c6181SAlex Tomas 
1000*1b16da77SYongqiang Yang 		/* move remainder of path[i] to the new index block */
1001273df556SFrank Mayhar 		if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) !=
1002273df556SFrank Mayhar 					EXT_LAST_INDEX(path[i].p_hdr))) {
1003273df556SFrank Mayhar 			EXT4_ERROR_INODE(inode,
1004273df556SFrank Mayhar 					 "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!",
1005273df556SFrank Mayhar 					 le32_to_cpu(path[i].p_ext->ee_block));
1006273df556SFrank Mayhar 			err = -EIO;
1007273df556SFrank Mayhar 			goto cleanup;
1008273df556SFrank Mayhar 		}
1009*1b16da77SYongqiang Yang 		/* start copy indexes */
1010*1b16da77SYongqiang Yang 		m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++;
1011*1b16da77SYongqiang Yang 		ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx,
1012*1b16da77SYongqiang Yang 				EXT_MAX_INDEX(path[i].p_hdr));
1013*1b16da77SYongqiang Yang 		ext4_ext_show_move(inode, path, newblock, i);
1014a86c6181SAlex Tomas 		if (m) {
1015*1b16da77SYongqiang Yang 			memmove(++fidx, path[i].p_idx,
1016a86c6181SAlex Tomas 				sizeof(struct ext4_extent_idx) * m);
1017e8546d06SMarcin Slusarz 			le16_add_cpu(&neh->eh_entries, m);
1018a86c6181SAlex Tomas 		}
1019a86c6181SAlex Tomas 		set_buffer_uptodate(bh);
1020a86c6181SAlex Tomas 		unlock_buffer(bh);
1021a86c6181SAlex Tomas 
10220390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
10237e028976SAvantika Mathur 		if (err)
1024a86c6181SAlex Tomas 			goto cleanup;
1025a86c6181SAlex Tomas 		brelse(bh);
1026a86c6181SAlex Tomas 		bh = NULL;
1027a86c6181SAlex Tomas 
1028a86c6181SAlex Tomas 		/* correct old index */
1029a86c6181SAlex Tomas 		if (m) {
1030a86c6181SAlex Tomas 			err = ext4_ext_get_access(handle, inode, path + i);
1031a86c6181SAlex Tomas 			if (err)
1032a86c6181SAlex Tomas 				goto cleanup;
1033e8546d06SMarcin Slusarz 			le16_add_cpu(&path[i].p_hdr->eh_entries, -m);
1034a86c6181SAlex Tomas 			err = ext4_ext_dirty(handle, inode, path + i);
1035a86c6181SAlex Tomas 			if (err)
1036a86c6181SAlex Tomas 				goto cleanup;
1037a86c6181SAlex Tomas 		}
1038a86c6181SAlex Tomas 
1039a86c6181SAlex Tomas 		i--;
1040a86c6181SAlex Tomas 	}
1041a86c6181SAlex Tomas 
1042a86c6181SAlex Tomas 	/* insert new index */
1043a86c6181SAlex Tomas 	err = ext4_ext_insert_index(handle, inode, path + at,
1044a86c6181SAlex Tomas 				    le32_to_cpu(border), newblock);
1045a86c6181SAlex Tomas 
1046a86c6181SAlex Tomas cleanup:
1047a86c6181SAlex Tomas 	if (bh) {
1048a86c6181SAlex Tomas 		if (buffer_locked(bh))
1049a86c6181SAlex Tomas 			unlock_buffer(bh);
1050a86c6181SAlex Tomas 		brelse(bh);
1051a86c6181SAlex Tomas 	}
1052a86c6181SAlex Tomas 
1053a86c6181SAlex Tomas 	if (err) {
1054a86c6181SAlex Tomas 		/* free all allocated blocks in error case */
1055a86c6181SAlex Tomas 		for (i = 0; i < depth; i++) {
1056a86c6181SAlex Tomas 			if (!ablocks[i])
1057a86c6181SAlex Tomas 				continue;
10587dc57615SPeter Huewe 			ext4_free_blocks(handle, inode, NULL, ablocks[i], 1,
1059e6362609STheodore Ts'o 					 EXT4_FREE_BLOCKS_METADATA);
1060a86c6181SAlex Tomas 		}
1061a86c6181SAlex Tomas 	}
1062a86c6181SAlex Tomas 	kfree(ablocks);
1063a86c6181SAlex Tomas 
1064a86c6181SAlex Tomas 	return err;
1065a86c6181SAlex Tomas }
1066a86c6181SAlex Tomas 
1067a86c6181SAlex Tomas /*
1068d0d856e8SRandy Dunlap  * ext4_ext_grow_indepth:
1069d0d856e8SRandy Dunlap  * implements tree growing procedure:
1070a86c6181SAlex Tomas  * - allocates new block
1071a86c6181SAlex Tomas  * - moves top-level data (index block or leaf) into the new block
1072d0d856e8SRandy Dunlap  * - initializes new top-level, creating index that points to the
1073a86c6181SAlex Tomas  *   just created block
1074a86c6181SAlex Tomas  */
1075a86c6181SAlex Tomas static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
107655f020dbSAllison Henderson 				 unsigned int flags,
1077a86c6181SAlex Tomas 				 struct ext4_ext_path *path,
1078a86c6181SAlex Tomas 				 struct ext4_extent *newext)
1079a86c6181SAlex Tomas {
1080a86c6181SAlex Tomas 	struct ext4_ext_path *curp = path;
1081a86c6181SAlex Tomas 	struct ext4_extent_header *neh;
1082a86c6181SAlex Tomas 	struct buffer_head *bh;
1083f65e6fbaSAlex Tomas 	ext4_fsblk_t newblock;
1084a86c6181SAlex Tomas 	int err = 0;
1085a86c6181SAlex Tomas 
108655f020dbSAllison Henderson 	newblock = ext4_ext_new_meta_block(handle, inode, path,
108755f020dbSAllison Henderson 		newext, &err, flags);
1088a86c6181SAlex Tomas 	if (newblock == 0)
1089a86c6181SAlex Tomas 		return err;
1090a86c6181SAlex Tomas 
1091a86c6181SAlex Tomas 	bh = sb_getblk(inode->i_sb, newblock);
1092a86c6181SAlex Tomas 	if (!bh) {
1093a86c6181SAlex Tomas 		err = -EIO;
1094a86c6181SAlex Tomas 		ext4_std_error(inode->i_sb, err);
1095a86c6181SAlex Tomas 		return err;
1096a86c6181SAlex Tomas 	}
1097a86c6181SAlex Tomas 	lock_buffer(bh);
1098a86c6181SAlex Tomas 
10997e028976SAvantika Mathur 	err = ext4_journal_get_create_access(handle, bh);
11007e028976SAvantika Mathur 	if (err) {
1101a86c6181SAlex Tomas 		unlock_buffer(bh);
1102a86c6181SAlex Tomas 		goto out;
1103a86c6181SAlex Tomas 	}
1104a86c6181SAlex Tomas 
1105a86c6181SAlex Tomas 	/* move top-level index/leaf into new block */
1106a86c6181SAlex Tomas 	memmove(bh->b_data, curp->p_hdr, sizeof(EXT4_I(inode)->i_data));
1107a86c6181SAlex Tomas 
1108a86c6181SAlex Tomas 	/* set size of new block */
1109a86c6181SAlex Tomas 	neh = ext_block_hdr(bh);
1110a86c6181SAlex Tomas 	/* old root could have indexes or leaves
1111a86c6181SAlex Tomas 	 * so calculate e_max right way */
1112a86c6181SAlex Tomas 	if (ext_depth(inode))
111355ad63bfSTheodore Ts'o 		neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
1114a86c6181SAlex Tomas 	else
111555ad63bfSTheodore Ts'o 		neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
1116a86c6181SAlex Tomas 	neh->eh_magic = EXT4_EXT_MAGIC;
1117a86c6181SAlex Tomas 	set_buffer_uptodate(bh);
1118a86c6181SAlex Tomas 	unlock_buffer(bh);
1119a86c6181SAlex Tomas 
11200390131bSFrank Mayhar 	err = ext4_handle_dirty_metadata(handle, inode, bh);
11217e028976SAvantika Mathur 	if (err)
1122a86c6181SAlex Tomas 		goto out;
1123a86c6181SAlex Tomas 
1124a86c6181SAlex Tomas 	/* create index in new top-level index: num,max,pointer */
11257e028976SAvantika Mathur 	err = ext4_ext_get_access(handle, inode, curp);
11267e028976SAvantika Mathur 	if (err)
1127a86c6181SAlex Tomas 		goto out;
1128a86c6181SAlex Tomas 
1129a86c6181SAlex Tomas 	curp->p_hdr->eh_magic = EXT4_EXT_MAGIC;
113055ad63bfSTheodore Ts'o 	curp->p_hdr->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0));
1131a86c6181SAlex Tomas 	curp->p_hdr->eh_entries = cpu_to_le16(1);
1132a86c6181SAlex Tomas 	curp->p_idx = EXT_FIRST_INDEX(curp->p_hdr);
1133e9f410b1SDmitry Monakhov 
1134e9f410b1SDmitry Monakhov 	if (path[0].p_hdr->eh_depth)
1135e9f410b1SDmitry Monakhov 		curp->p_idx->ei_block =
1136e9f410b1SDmitry Monakhov 			EXT_FIRST_INDEX(path[0].p_hdr)->ei_block;
1137e9f410b1SDmitry Monakhov 	else
1138e9f410b1SDmitry Monakhov 		curp->p_idx->ei_block =
1139e9f410b1SDmitry Monakhov 			EXT_FIRST_EXTENT(path[0].p_hdr)->ee_block;
1140f65e6fbaSAlex Tomas 	ext4_idx_store_pblock(curp->p_idx, newblock);
1141a86c6181SAlex Tomas 
1142a86c6181SAlex Tomas 	neh = ext_inode_hdr(inode);
11432ae02107SMingming Cao 	ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
1144a86c6181SAlex Tomas 		  le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max),
11455a0790c2SAndi Kleen 		  le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block),
1146bf89d16fSTheodore Ts'o 		  ext4_idx_pblock(EXT_FIRST_INDEX(neh)));
1147a86c6181SAlex Tomas 
1148a86c6181SAlex Tomas 	neh->eh_depth = cpu_to_le16(path->p_depth + 1);
1149a86c6181SAlex Tomas 	err = ext4_ext_dirty(handle, inode, curp);
1150a86c6181SAlex Tomas out:
1151a86c6181SAlex Tomas 	brelse(bh);
1152a86c6181SAlex Tomas 
1153a86c6181SAlex Tomas 	return err;
1154a86c6181SAlex Tomas }
1155a86c6181SAlex Tomas 
1156a86c6181SAlex Tomas /*
1157d0d856e8SRandy Dunlap  * ext4_ext_create_new_leaf:
1158d0d856e8SRandy Dunlap  * finds empty index and adds new leaf.
1159d0d856e8SRandy Dunlap  * if no free index is found, then it requests in-depth growing.
1160a86c6181SAlex Tomas  */
1161a86c6181SAlex Tomas static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode,
116255f020dbSAllison Henderson 				    unsigned int flags,
1163a86c6181SAlex Tomas 				    struct ext4_ext_path *path,
1164a86c6181SAlex Tomas 				    struct ext4_extent *newext)
1165a86c6181SAlex Tomas {
1166a86c6181SAlex Tomas 	struct ext4_ext_path *curp;
1167a86c6181SAlex Tomas 	int depth, i, err = 0;
1168a86c6181SAlex Tomas 
1169a86c6181SAlex Tomas repeat:
1170a86c6181SAlex Tomas 	i = depth = ext_depth(inode);
1171a86c6181SAlex Tomas 
1172a86c6181SAlex Tomas 	/* walk up to the tree and look for free index entry */
1173a86c6181SAlex Tomas 	curp = path + depth;
1174a86c6181SAlex Tomas 	while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) {
1175a86c6181SAlex Tomas 		i--;
1176a86c6181SAlex Tomas 		curp--;
1177a86c6181SAlex Tomas 	}
1178a86c6181SAlex Tomas 
1179d0d856e8SRandy Dunlap 	/* we use already allocated block for index block,
1180d0d856e8SRandy Dunlap 	 * so subsequent data blocks should be contiguous */
1181a86c6181SAlex Tomas 	if (EXT_HAS_FREE_INDEX(curp)) {
1182a86c6181SAlex Tomas 		/* if we found index with free entry, then use that
1183a86c6181SAlex Tomas 		 * entry: create all needed subtree and add new leaf */
118455f020dbSAllison Henderson 		err = ext4_ext_split(handle, inode, flags, path, newext, i);
1185787e0981SShen Feng 		if (err)
1186787e0981SShen Feng 			goto out;
1187a86c6181SAlex Tomas 
1188a86c6181SAlex Tomas 		/* refill path */
1189a86c6181SAlex Tomas 		ext4_ext_drop_refs(path);
1190a86c6181SAlex Tomas 		path = ext4_ext_find_extent(inode,
1191725d26d3SAneesh Kumar K.V 				    (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1192a86c6181SAlex Tomas 				    path);
1193a86c6181SAlex Tomas 		if (IS_ERR(path))
1194a86c6181SAlex Tomas 			err = PTR_ERR(path);
1195a86c6181SAlex Tomas 	} else {
1196a86c6181SAlex Tomas 		/* tree is full, time to grow in depth */
119755f020dbSAllison Henderson 		err = ext4_ext_grow_indepth(handle, inode, flags,
119855f020dbSAllison Henderson 					    path, newext);
1199a86c6181SAlex Tomas 		if (err)
1200a86c6181SAlex Tomas 			goto out;
1201a86c6181SAlex Tomas 
1202a86c6181SAlex Tomas 		/* refill path */
1203a86c6181SAlex Tomas 		ext4_ext_drop_refs(path);
1204a86c6181SAlex Tomas 		path = ext4_ext_find_extent(inode,
1205725d26d3SAneesh Kumar K.V 				   (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1206a86c6181SAlex Tomas 				    path);
1207a86c6181SAlex Tomas 		if (IS_ERR(path)) {
1208a86c6181SAlex Tomas 			err = PTR_ERR(path);
1209a86c6181SAlex Tomas 			goto out;
1210a86c6181SAlex Tomas 		}
1211a86c6181SAlex Tomas 
1212a86c6181SAlex Tomas 		/*
1213d0d856e8SRandy Dunlap 		 * only first (depth 0 -> 1) produces free space;
1214d0d856e8SRandy Dunlap 		 * in all other cases we have to split the grown tree
1215a86c6181SAlex Tomas 		 */
1216a86c6181SAlex Tomas 		depth = ext_depth(inode);
1217a86c6181SAlex Tomas 		if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) {
1218d0d856e8SRandy Dunlap 			/* now we need to split */
1219a86c6181SAlex Tomas 			goto repeat;
1220a86c6181SAlex Tomas 		}
1221a86c6181SAlex Tomas 	}
1222a86c6181SAlex Tomas 
1223a86c6181SAlex Tomas out:
1224a86c6181SAlex Tomas 	return err;
1225a86c6181SAlex Tomas }
1226a86c6181SAlex Tomas 
1227a86c6181SAlex Tomas /*
12281988b51eSAlex Tomas  * search the closest allocated block to the left for *logical
12291988b51eSAlex Tomas  * and returns it at @logical + it's physical address at @phys
12301988b51eSAlex Tomas  * if *logical is the smallest allocated block, the function
12311988b51eSAlex Tomas  * returns 0 at @phys
12321988b51eSAlex Tomas  * return value contains 0 (success) or error code
12331988b51eSAlex Tomas  */
12341f109d5aSTheodore Ts'o static int ext4_ext_search_left(struct inode *inode,
12351f109d5aSTheodore Ts'o 				struct ext4_ext_path *path,
12361988b51eSAlex Tomas 				ext4_lblk_t *logical, ext4_fsblk_t *phys)
12371988b51eSAlex Tomas {
12381988b51eSAlex Tomas 	struct ext4_extent_idx *ix;
12391988b51eSAlex Tomas 	struct ext4_extent *ex;
1240b939e376SAneesh Kumar K.V 	int depth, ee_len;
12411988b51eSAlex Tomas 
1242273df556SFrank Mayhar 	if (unlikely(path == NULL)) {
1243273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1244273df556SFrank Mayhar 		return -EIO;
1245273df556SFrank Mayhar 	}
12461988b51eSAlex Tomas 	depth = path->p_depth;
12471988b51eSAlex Tomas 	*phys = 0;
12481988b51eSAlex Tomas 
12491988b51eSAlex Tomas 	if (depth == 0 && path->p_ext == NULL)
12501988b51eSAlex Tomas 		return 0;
12511988b51eSAlex Tomas 
12521988b51eSAlex Tomas 	/* usually extent in the path covers blocks smaller
12531988b51eSAlex Tomas 	 * then *logical, but it can be that extent is the
12541988b51eSAlex Tomas 	 * first one in the file */
12551988b51eSAlex Tomas 
12561988b51eSAlex Tomas 	ex = path[depth].p_ext;
1257b939e376SAneesh Kumar K.V 	ee_len = ext4_ext_get_actual_len(ex);
12581988b51eSAlex Tomas 	if (*logical < le32_to_cpu(ex->ee_block)) {
1259273df556SFrank Mayhar 		if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1260273df556SFrank Mayhar 			EXT4_ERROR_INODE(inode,
1261273df556SFrank Mayhar 					 "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!",
1262273df556SFrank Mayhar 					 *logical, le32_to_cpu(ex->ee_block));
1263273df556SFrank Mayhar 			return -EIO;
1264273df556SFrank Mayhar 		}
12651988b51eSAlex Tomas 		while (--depth >= 0) {
12661988b51eSAlex Tomas 			ix = path[depth].p_idx;
1267273df556SFrank Mayhar 			if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1268273df556SFrank Mayhar 				EXT4_ERROR_INODE(inode,
1269273df556SFrank Mayhar 				  "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!",
1270273df556SFrank Mayhar 				  ix != NULL ? ix->ei_block : 0,
1271273df556SFrank Mayhar 				  EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ?
1272273df556SFrank Mayhar 				    EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block : 0,
1273273df556SFrank Mayhar 				  depth);
1274273df556SFrank Mayhar 				return -EIO;
1275273df556SFrank Mayhar 			}
12761988b51eSAlex Tomas 		}
12771988b51eSAlex Tomas 		return 0;
12781988b51eSAlex Tomas 	}
12791988b51eSAlex Tomas 
1280273df556SFrank Mayhar 	if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1281273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode,
1282273df556SFrank Mayhar 				 "logical %d < ee_block %d + ee_len %d!",
1283273df556SFrank Mayhar 				 *logical, le32_to_cpu(ex->ee_block), ee_len);
1284273df556SFrank Mayhar 		return -EIO;
1285273df556SFrank Mayhar 	}
12861988b51eSAlex Tomas 
1287b939e376SAneesh Kumar K.V 	*logical = le32_to_cpu(ex->ee_block) + ee_len - 1;
1288bf89d16fSTheodore Ts'o 	*phys = ext4_ext_pblock(ex) + ee_len - 1;
12891988b51eSAlex Tomas 	return 0;
12901988b51eSAlex Tomas }
12911988b51eSAlex Tomas 
12921988b51eSAlex Tomas /*
12931988b51eSAlex Tomas  * search the closest allocated block to the right for *logical
12941988b51eSAlex Tomas  * and returns it at @logical + it's physical address at @phys
12951988b51eSAlex Tomas  * if *logical is the smallest allocated block, the function
12961988b51eSAlex Tomas  * returns 0 at @phys
12971988b51eSAlex Tomas  * return value contains 0 (success) or error code
12981988b51eSAlex Tomas  */
12991f109d5aSTheodore Ts'o static int ext4_ext_search_right(struct inode *inode,
13001f109d5aSTheodore Ts'o 				 struct ext4_ext_path *path,
13011988b51eSAlex Tomas 				 ext4_lblk_t *logical, ext4_fsblk_t *phys)
13021988b51eSAlex Tomas {
13031988b51eSAlex Tomas 	struct buffer_head *bh = NULL;
13041988b51eSAlex Tomas 	struct ext4_extent_header *eh;
13051988b51eSAlex Tomas 	struct ext4_extent_idx *ix;
13061988b51eSAlex Tomas 	struct ext4_extent *ex;
13071988b51eSAlex Tomas 	ext4_fsblk_t block;
1308395a87bfSEric Sandeen 	int depth;	/* Note, NOT eh_depth; depth from top of tree */
1309395a87bfSEric Sandeen 	int ee_len;
13101988b51eSAlex Tomas 
1311273df556SFrank Mayhar 	if (unlikely(path == NULL)) {
1312273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1313273df556SFrank Mayhar 		return -EIO;
1314273df556SFrank Mayhar 	}
13151988b51eSAlex Tomas 	depth = path->p_depth;
13161988b51eSAlex Tomas 	*phys = 0;
13171988b51eSAlex Tomas 
13181988b51eSAlex Tomas 	if (depth == 0 && path->p_ext == NULL)
13191988b51eSAlex Tomas 		return 0;
13201988b51eSAlex Tomas 
13211988b51eSAlex Tomas 	/* usually extent in the path covers blocks smaller
13221988b51eSAlex Tomas 	 * then *logical, but it can be that extent is the
13231988b51eSAlex Tomas 	 * first one in the file */
13241988b51eSAlex Tomas 
13251988b51eSAlex Tomas 	ex = path[depth].p_ext;
1326b939e376SAneesh Kumar K.V 	ee_len = ext4_ext_get_actual_len(ex);
13271988b51eSAlex Tomas 	if (*logical < le32_to_cpu(ex->ee_block)) {
1328273df556SFrank Mayhar 		if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1329273df556SFrank Mayhar 			EXT4_ERROR_INODE(inode,
1330273df556SFrank Mayhar 					 "first_extent(path[%d].p_hdr) != ex",
1331273df556SFrank Mayhar 					 depth);
1332273df556SFrank Mayhar 			return -EIO;
1333273df556SFrank Mayhar 		}
13341988b51eSAlex Tomas 		while (--depth >= 0) {
13351988b51eSAlex Tomas 			ix = path[depth].p_idx;
1336273df556SFrank Mayhar 			if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1337273df556SFrank Mayhar 				EXT4_ERROR_INODE(inode,
1338273df556SFrank Mayhar 						 "ix != EXT_FIRST_INDEX *logical %d!",
1339273df556SFrank Mayhar 						 *logical);
1340273df556SFrank Mayhar 				return -EIO;
1341273df556SFrank Mayhar 			}
13421988b51eSAlex Tomas 		}
13431988b51eSAlex Tomas 		*logical = le32_to_cpu(ex->ee_block);
1344bf89d16fSTheodore Ts'o 		*phys = ext4_ext_pblock(ex);
13451988b51eSAlex Tomas 		return 0;
13461988b51eSAlex Tomas 	}
13471988b51eSAlex Tomas 
1348273df556SFrank Mayhar 	if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1349273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode,
1350273df556SFrank Mayhar 				 "logical %d < ee_block %d + ee_len %d!",
1351273df556SFrank Mayhar 				 *logical, le32_to_cpu(ex->ee_block), ee_len);
1352273df556SFrank Mayhar 		return -EIO;
1353273df556SFrank Mayhar 	}
13541988b51eSAlex Tomas 
13551988b51eSAlex Tomas 	if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) {
13561988b51eSAlex Tomas 		/* next allocated block in this leaf */
13571988b51eSAlex Tomas 		ex++;
13581988b51eSAlex Tomas 		*logical = le32_to_cpu(ex->ee_block);
1359bf89d16fSTheodore Ts'o 		*phys = ext4_ext_pblock(ex);
13601988b51eSAlex Tomas 		return 0;
13611988b51eSAlex Tomas 	}
13621988b51eSAlex Tomas 
13631988b51eSAlex Tomas 	/* go up and search for index to the right */
13641988b51eSAlex Tomas 	while (--depth >= 0) {
13651988b51eSAlex Tomas 		ix = path[depth].p_idx;
13661988b51eSAlex Tomas 		if (ix != EXT_LAST_INDEX(path[depth].p_hdr))
136725f1ee3aSWu Fengguang 			goto got_index;
13681988b51eSAlex Tomas 	}
13691988b51eSAlex Tomas 
137025f1ee3aSWu Fengguang 	/* we've gone up to the root and found no index to the right */
13711988b51eSAlex Tomas 	return 0;
13721988b51eSAlex Tomas 
137325f1ee3aSWu Fengguang got_index:
13741988b51eSAlex Tomas 	/* we've found index to the right, let's
13751988b51eSAlex Tomas 	 * follow it and find the closest allocated
13761988b51eSAlex Tomas 	 * block to the right */
13771988b51eSAlex Tomas 	ix++;
1378bf89d16fSTheodore Ts'o 	block = ext4_idx_pblock(ix);
13791988b51eSAlex Tomas 	while (++depth < path->p_depth) {
13801988b51eSAlex Tomas 		bh = sb_bread(inode->i_sb, block);
13811988b51eSAlex Tomas 		if (bh == NULL)
13821988b51eSAlex Tomas 			return -EIO;
13831988b51eSAlex Tomas 		eh = ext_block_hdr(bh);
1384395a87bfSEric Sandeen 		/* subtract from p_depth to get proper eh_depth */
138556b19868SAneesh Kumar K.V 		if (ext4_ext_check(inode, eh, path->p_depth - depth)) {
13861988b51eSAlex Tomas 			put_bh(bh);
13871988b51eSAlex Tomas 			return -EIO;
13881988b51eSAlex Tomas 		}
13891988b51eSAlex Tomas 		ix = EXT_FIRST_INDEX(eh);
1390bf89d16fSTheodore Ts'o 		block = ext4_idx_pblock(ix);
13911988b51eSAlex Tomas 		put_bh(bh);
13921988b51eSAlex Tomas 	}
13931988b51eSAlex Tomas 
13941988b51eSAlex Tomas 	bh = sb_bread(inode->i_sb, block);
13951988b51eSAlex Tomas 	if (bh == NULL)
13961988b51eSAlex Tomas 		return -EIO;
13971988b51eSAlex Tomas 	eh = ext_block_hdr(bh);
139856b19868SAneesh Kumar K.V 	if (ext4_ext_check(inode, eh, path->p_depth - depth)) {
13991988b51eSAlex Tomas 		put_bh(bh);
14001988b51eSAlex Tomas 		return -EIO;
14011988b51eSAlex Tomas 	}
14021988b51eSAlex Tomas 	ex = EXT_FIRST_EXTENT(eh);
14031988b51eSAlex Tomas 	*logical = le32_to_cpu(ex->ee_block);
1404bf89d16fSTheodore Ts'o 	*phys = ext4_ext_pblock(ex);
14051988b51eSAlex Tomas 	put_bh(bh);
14061988b51eSAlex Tomas 	return 0;
14071988b51eSAlex Tomas }
14081988b51eSAlex Tomas 
14091988b51eSAlex Tomas /*
1410d0d856e8SRandy Dunlap  * ext4_ext_next_allocated_block:
1411d0d856e8SRandy Dunlap  * returns allocated block in subsequent extent or EXT_MAX_BLOCK.
1412d0d856e8SRandy Dunlap  * NOTE: it considers block number from index entry as
1413d0d856e8SRandy Dunlap  * allocated block. Thus, index entries have to be consistent
1414d0d856e8SRandy Dunlap  * with leaves.
1415a86c6181SAlex Tomas  */
1416725d26d3SAneesh Kumar K.V static ext4_lblk_t
1417a86c6181SAlex Tomas ext4_ext_next_allocated_block(struct ext4_ext_path *path)
1418a86c6181SAlex Tomas {
1419a86c6181SAlex Tomas 	int depth;
1420a86c6181SAlex Tomas 
1421a86c6181SAlex Tomas 	BUG_ON(path == NULL);
1422a86c6181SAlex Tomas 	depth = path->p_depth;
1423a86c6181SAlex Tomas 
1424a86c6181SAlex Tomas 	if (depth == 0 && path->p_ext == NULL)
1425a86c6181SAlex Tomas 		return EXT_MAX_BLOCK;
1426a86c6181SAlex Tomas 
1427a86c6181SAlex Tomas 	while (depth >= 0) {
1428a86c6181SAlex Tomas 		if (depth == path->p_depth) {
1429a86c6181SAlex Tomas 			/* leaf */
1430a86c6181SAlex Tomas 			if (path[depth].p_ext !=
1431a86c6181SAlex Tomas 					EXT_LAST_EXTENT(path[depth].p_hdr))
1432a86c6181SAlex Tomas 			  return le32_to_cpu(path[depth].p_ext[1].ee_block);
1433a86c6181SAlex Tomas 		} else {
1434a86c6181SAlex Tomas 			/* index */
1435a86c6181SAlex Tomas 			if (path[depth].p_idx !=
1436a86c6181SAlex Tomas 					EXT_LAST_INDEX(path[depth].p_hdr))
1437a86c6181SAlex Tomas 			  return le32_to_cpu(path[depth].p_idx[1].ei_block);
1438a86c6181SAlex Tomas 		}
1439a86c6181SAlex Tomas 		depth--;
1440a86c6181SAlex Tomas 	}
1441a86c6181SAlex Tomas 
1442a86c6181SAlex Tomas 	return EXT_MAX_BLOCK;
1443a86c6181SAlex Tomas }
1444a86c6181SAlex Tomas 
1445a86c6181SAlex Tomas /*
1446d0d856e8SRandy Dunlap  * ext4_ext_next_leaf_block:
1447a86c6181SAlex Tomas  * returns first allocated block from next leaf or EXT_MAX_BLOCK
1448a86c6181SAlex Tomas  */
1449725d26d3SAneesh Kumar K.V static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode,
1450a86c6181SAlex Tomas 					struct ext4_ext_path *path)
1451a86c6181SAlex Tomas {
1452a86c6181SAlex Tomas 	int depth;
1453a86c6181SAlex Tomas 
1454a86c6181SAlex Tomas 	BUG_ON(path == NULL);
1455a86c6181SAlex Tomas 	depth = path->p_depth;
1456a86c6181SAlex Tomas 
1457a86c6181SAlex Tomas 	/* zero-tree has no leaf blocks at all */
1458a86c6181SAlex Tomas 	if (depth == 0)
1459a86c6181SAlex Tomas 		return EXT_MAX_BLOCK;
1460a86c6181SAlex Tomas 
1461a86c6181SAlex Tomas 	/* go to index block */
1462a86c6181SAlex Tomas 	depth--;
1463a86c6181SAlex Tomas 
1464a86c6181SAlex Tomas 	while (depth >= 0) {
1465a86c6181SAlex Tomas 		if (path[depth].p_idx !=
1466a86c6181SAlex Tomas 				EXT_LAST_INDEX(path[depth].p_hdr))
1467725d26d3SAneesh Kumar K.V 			return (ext4_lblk_t)
1468725d26d3SAneesh Kumar K.V 				le32_to_cpu(path[depth].p_idx[1].ei_block);
1469a86c6181SAlex Tomas 		depth--;
1470a86c6181SAlex Tomas 	}
1471a86c6181SAlex Tomas 
1472a86c6181SAlex Tomas 	return EXT_MAX_BLOCK;
1473a86c6181SAlex Tomas }
1474a86c6181SAlex Tomas 
1475a86c6181SAlex Tomas /*
1476d0d856e8SRandy Dunlap  * ext4_ext_correct_indexes:
1477d0d856e8SRandy Dunlap  * if leaf gets modified and modified extent is first in the leaf,
1478d0d856e8SRandy Dunlap  * then we have to correct all indexes above.
1479a86c6181SAlex Tomas  * TODO: do we need to correct tree in all cases?
1480a86c6181SAlex Tomas  */
14811d03ec98SAneesh Kumar K.V static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode,
1482a86c6181SAlex Tomas 				struct ext4_ext_path *path)
1483a86c6181SAlex Tomas {
1484a86c6181SAlex Tomas 	struct ext4_extent_header *eh;
1485a86c6181SAlex Tomas 	int depth = ext_depth(inode);
1486a86c6181SAlex Tomas 	struct ext4_extent *ex;
1487a86c6181SAlex Tomas 	__le32 border;
1488a86c6181SAlex Tomas 	int k, err = 0;
1489a86c6181SAlex Tomas 
1490a86c6181SAlex Tomas 	eh = path[depth].p_hdr;
1491a86c6181SAlex Tomas 	ex = path[depth].p_ext;
1492273df556SFrank Mayhar 
1493273df556SFrank Mayhar 	if (unlikely(ex == NULL || eh == NULL)) {
1494273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode,
1495273df556SFrank Mayhar 				 "ex %p == NULL or eh %p == NULL", ex, eh);
1496273df556SFrank Mayhar 		return -EIO;
1497273df556SFrank Mayhar 	}
1498a86c6181SAlex Tomas 
1499a86c6181SAlex Tomas 	if (depth == 0) {
1500a86c6181SAlex Tomas 		/* there is no tree at all */
1501a86c6181SAlex Tomas 		return 0;
1502a86c6181SAlex Tomas 	}
1503a86c6181SAlex Tomas 
1504a86c6181SAlex Tomas 	if (ex != EXT_FIRST_EXTENT(eh)) {
1505a86c6181SAlex Tomas 		/* we correct tree if first leaf got modified only */
1506a86c6181SAlex Tomas 		return 0;
1507a86c6181SAlex Tomas 	}
1508a86c6181SAlex Tomas 
1509a86c6181SAlex Tomas 	/*
1510d0d856e8SRandy Dunlap 	 * TODO: we need correction if border is smaller than current one
1511a86c6181SAlex Tomas 	 */
1512a86c6181SAlex Tomas 	k = depth - 1;
1513a86c6181SAlex Tomas 	border = path[depth].p_ext->ee_block;
15147e028976SAvantika Mathur 	err = ext4_ext_get_access(handle, inode, path + k);
15157e028976SAvantika Mathur 	if (err)
1516a86c6181SAlex Tomas 		return err;
1517a86c6181SAlex Tomas 	path[k].p_idx->ei_block = border;
15187e028976SAvantika Mathur 	err = ext4_ext_dirty(handle, inode, path + k);
15197e028976SAvantika Mathur 	if (err)
1520a86c6181SAlex Tomas 		return err;
1521a86c6181SAlex Tomas 
1522a86c6181SAlex Tomas 	while (k--) {
1523a86c6181SAlex Tomas 		/* change all left-side indexes */
1524a86c6181SAlex Tomas 		if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr))
1525a86c6181SAlex Tomas 			break;
15267e028976SAvantika Mathur 		err = ext4_ext_get_access(handle, inode, path + k);
15277e028976SAvantika Mathur 		if (err)
1528a86c6181SAlex Tomas 			break;
1529a86c6181SAlex Tomas 		path[k].p_idx->ei_block = border;
15307e028976SAvantika Mathur 		err = ext4_ext_dirty(handle, inode, path + k);
15317e028976SAvantika Mathur 		if (err)
1532a86c6181SAlex Tomas 			break;
1533a86c6181SAlex Tomas 	}
1534a86c6181SAlex Tomas 
1535a86c6181SAlex Tomas 	return err;
1536a86c6181SAlex Tomas }
1537a86c6181SAlex Tomas 
1538748de673SAkira Fujita int
1539a86c6181SAlex Tomas ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1,
1540a86c6181SAlex Tomas 				struct ext4_extent *ex2)
1541a86c6181SAlex Tomas {
1542749269faSAmit Arora 	unsigned short ext1_ee_len, ext2_ee_len, max_len;
1543a2df2a63SAmit Arora 
1544a2df2a63SAmit Arora 	/*
1545a2df2a63SAmit Arora 	 * Make sure that either both extents are uninitialized, or
1546a2df2a63SAmit Arora 	 * both are _not_.
1547a2df2a63SAmit Arora 	 */
1548a2df2a63SAmit Arora 	if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2))
1549a2df2a63SAmit Arora 		return 0;
1550a2df2a63SAmit Arora 
1551749269faSAmit Arora 	if (ext4_ext_is_uninitialized(ex1))
1552749269faSAmit Arora 		max_len = EXT_UNINIT_MAX_LEN;
1553749269faSAmit Arora 	else
1554749269faSAmit Arora 		max_len = EXT_INIT_MAX_LEN;
1555749269faSAmit Arora 
1556a2df2a63SAmit Arora 	ext1_ee_len = ext4_ext_get_actual_len(ex1);
1557a2df2a63SAmit Arora 	ext2_ee_len = ext4_ext_get_actual_len(ex2);
1558a2df2a63SAmit Arora 
1559a2df2a63SAmit Arora 	if (le32_to_cpu(ex1->ee_block) + ext1_ee_len !=
156063f57933SAndrew Morton 			le32_to_cpu(ex2->ee_block))
1561a86c6181SAlex Tomas 		return 0;
1562a86c6181SAlex Tomas 
1563471d4011SSuparna Bhattacharya 	/*
1564471d4011SSuparna Bhattacharya 	 * To allow future support for preallocated extents to be added
1565471d4011SSuparna Bhattacharya 	 * as an RO_COMPAT feature, refuse to merge to extents if
1566d0d856e8SRandy Dunlap 	 * this can result in the top bit of ee_len being set.
1567471d4011SSuparna Bhattacharya 	 */
1568749269faSAmit Arora 	if (ext1_ee_len + ext2_ee_len > max_len)
1569471d4011SSuparna Bhattacharya 		return 0;
1570bbf2f9fbSRobert P. J. Day #ifdef AGGRESSIVE_TEST
1571b939e376SAneesh Kumar K.V 	if (ext1_ee_len >= 4)
1572a86c6181SAlex Tomas 		return 0;
1573a86c6181SAlex Tomas #endif
1574a86c6181SAlex Tomas 
1575bf89d16fSTheodore Ts'o 	if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2))
1576a86c6181SAlex Tomas 		return 1;
1577a86c6181SAlex Tomas 	return 0;
1578a86c6181SAlex Tomas }
1579a86c6181SAlex Tomas 
1580a86c6181SAlex Tomas /*
158156055d3aSAmit Arora  * This function tries to merge the "ex" extent to the next extent in the tree.
158256055d3aSAmit Arora  * It always tries to merge towards right. If you want to merge towards
158356055d3aSAmit Arora  * left, pass "ex - 1" as argument instead of "ex".
158456055d3aSAmit Arora  * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
158556055d3aSAmit Arora  * 1 if they got merged.
158656055d3aSAmit Arora  */
1587197217a5SYongqiang Yang static int ext4_ext_try_to_merge_right(struct inode *inode,
158856055d3aSAmit Arora 				 struct ext4_ext_path *path,
158956055d3aSAmit Arora 				 struct ext4_extent *ex)
159056055d3aSAmit Arora {
159156055d3aSAmit Arora 	struct ext4_extent_header *eh;
159256055d3aSAmit Arora 	unsigned int depth, len;
159356055d3aSAmit Arora 	int merge_done = 0;
159456055d3aSAmit Arora 	int uninitialized = 0;
159556055d3aSAmit Arora 
159656055d3aSAmit Arora 	depth = ext_depth(inode);
159756055d3aSAmit Arora 	BUG_ON(path[depth].p_hdr == NULL);
159856055d3aSAmit Arora 	eh = path[depth].p_hdr;
159956055d3aSAmit Arora 
160056055d3aSAmit Arora 	while (ex < EXT_LAST_EXTENT(eh)) {
160156055d3aSAmit Arora 		if (!ext4_can_extents_be_merged(inode, ex, ex + 1))
160256055d3aSAmit Arora 			break;
160356055d3aSAmit Arora 		/* merge with next extent! */
160456055d3aSAmit Arora 		if (ext4_ext_is_uninitialized(ex))
160556055d3aSAmit Arora 			uninitialized = 1;
160656055d3aSAmit Arora 		ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
160756055d3aSAmit Arora 				+ ext4_ext_get_actual_len(ex + 1));
160856055d3aSAmit Arora 		if (uninitialized)
160956055d3aSAmit Arora 			ext4_ext_mark_uninitialized(ex);
161056055d3aSAmit Arora 
161156055d3aSAmit Arora 		if (ex + 1 < EXT_LAST_EXTENT(eh)) {
161256055d3aSAmit Arora 			len = (EXT_LAST_EXTENT(eh) - ex - 1)
161356055d3aSAmit Arora 				* sizeof(struct ext4_extent);
161456055d3aSAmit Arora 			memmove(ex + 1, ex + 2, len);
161556055d3aSAmit Arora 		}
1616e8546d06SMarcin Slusarz 		le16_add_cpu(&eh->eh_entries, -1);
161756055d3aSAmit Arora 		merge_done = 1;
161856055d3aSAmit Arora 		WARN_ON(eh->eh_entries == 0);
161956055d3aSAmit Arora 		if (!eh->eh_entries)
162024676da4STheodore Ts'o 			EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!");
162156055d3aSAmit Arora 	}
162256055d3aSAmit Arora 
162356055d3aSAmit Arora 	return merge_done;
162456055d3aSAmit Arora }
162556055d3aSAmit Arora 
162656055d3aSAmit Arora /*
1627197217a5SYongqiang Yang  * This function tries to merge the @ex extent to neighbours in the tree.
1628197217a5SYongqiang Yang  * return 1 if merge left else 0.
1629197217a5SYongqiang Yang  */
1630197217a5SYongqiang Yang static int ext4_ext_try_to_merge(struct inode *inode,
1631197217a5SYongqiang Yang 				  struct ext4_ext_path *path,
1632197217a5SYongqiang Yang 				  struct ext4_extent *ex) {
1633197217a5SYongqiang Yang 	struct ext4_extent_header *eh;
1634197217a5SYongqiang Yang 	unsigned int depth;
1635197217a5SYongqiang Yang 	int merge_done = 0;
1636197217a5SYongqiang Yang 	int ret = 0;
1637197217a5SYongqiang Yang 
1638197217a5SYongqiang Yang 	depth = ext_depth(inode);
1639197217a5SYongqiang Yang 	BUG_ON(path[depth].p_hdr == NULL);
1640197217a5SYongqiang Yang 	eh = path[depth].p_hdr;
1641197217a5SYongqiang Yang 
1642197217a5SYongqiang Yang 	if (ex > EXT_FIRST_EXTENT(eh))
1643197217a5SYongqiang Yang 		merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1);
1644197217a5SYongqiang Yang 
1645197217a5SYongqiang Yang 	if (!merge_done)
1646197217a5SYongqiang Yang 		ret = ext4_ext_try_to_merge_right(inode, path, ex);
1647197217a5SYongqiang Yang 
1648197217a5SYongqiang Yang 	return ret;
1649197217a5SYongqiang Yang }
1650197217a5SYongqiang Yang 
1651197217a5SYongqiang Yang /*
165225d14f98SAmit Arora  * check if a portion of the "newext" extent overlaps with an
165325d14f98SAmit Arora  * existing extent.
165425d14f98SAmit Arora  *
165525d14f98SAmit Arora  * If there is an overlap discovered, it updates the length of the newext
165625d14f98SAmit Arora  * such that there will be no overlap, and then returns 1.
165725d14f98SAmit Arora  * If there is no overlap found, it returns 0.
165825d14f98SAmit Arora  */
16591f109d5aSTheodore Ts'o static unsigned int ext4_ext_check_overlap(struct inode *inode,
166025d14f98SAmit Arora 					   struct ext4_extent *newext,
166125d14f98SAmit Arora 					   struct ext4_ext_path *path)
166225d14f98SAmit Arora {
1663725d26d3SAneesh Kumar K.V 	ext4_lblk_t b1, b2;
166425d14f98SAmit Arora 	unsigned int depth, len1;
166525d14f98SAmit Arora 	unsigned int ret = 0;
166625d14f98SAmit Arora 
166725d14f98SAmit Arora 	b1 = le32_to_cpu(newext->ee_block);
1668a2df2a63SAmit Arora 	len1 = ext4_ext_get_actual_len(newext);
166925d14f98SAmit Arora 	depth = ext_depth(inode);
167025d14f98SAmit Arora 	if (!path[depth].p_ext)
167125d14f98SAmit Arora 		goto out;
167225d14f98SAmit Arora 	b2 = le32_to_cpu(path[depth].p_ext->ee_block);
167325d14f98SAmit Arora 
167425d14f98SAmit Arora 	/*
167525d14f98SAmit Arora 	 * get the next allocated block if the extent in the path
167625d14f98SAmit Arora 	 * is before the requested block(s)
167725d14f98SAmit Arora 	 */
167825d14f98SAmit Arora 	if (b2 < b1) {
167925d14f98SAmit Arora 		b2 = ext4_ext_next_allocated_block(path);
168025d14f98SAmit Arora 		if (b2 == EXT_MAX_BLOCK)
168125d14f98SAmit Arora 			goto out;
168225d14f98SAmit Arora 	}
168325d14f98SAmit Arora 
1684725d26d3SAneesh Kumar K.V 	/* check for wrap through zero on extent logical start block*/
168525d14f98SAmit Arora 	if (b1 + len1 < b1) {
168625d14f98SAmit Arora 		len1 = EXT_MAX_BLOCK - b1;
168725d14f98SAmit Arora 		newext->ee_len = cpu_to_le16(len1);
168825d14f98SAmit Arora 		ret = 1;
168925d14f98SAmit Arora 	}
169025d14f98SAmit Arora 
169125d14f98SAmit Arora 	/* check for overlap */
169225d14f98SAmit Arora 	if (b1 + len1 > b2) {
169325d14f98SAmit Arora 		newext->ee_len = cpu_to_le16(b2 - b1);
169425d14f98SAmit Arora 		ret = 1;
169525d14f98SAmit Arora 	}
169625d14f98SAmit Arora out:
169725d14f98SAmit Arora 	return ret;
169825d14f98SAmit Arora }
169925d14f98SAmit Arora 
170025d14f98SAmit Arora /*
1701d0d856e8SRandy Dunlap  * ext4_ext_insert_extent:
1702d0d856e8SRandy Dunlap  * tries to merge requsted extent into the existing extent or
1703d0d856e8SRandy Dunlap  * inserts requested extent as new one into the tree,
1704d0d856e8SRandy Dunlap  * creating new leaf in the no-space case.
1705a86c6181SAlex Tomas  */
1706a86c6181SAlex Tomas int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
1707a86c6181SAlex Tomas 				struct ext4_ext_path *path,
17080031462bSMingming Cao 				struct ext4_extent *newext, int flag)
1709a86c6181SAlex Tomas {
1710a86c6181SAlex Tomas 	struct ext4_extent_header *eh;
1711a86c6181SAlex Tomas 	struct ext4_extent *ex, *fex;
1712a86c6181SAlex Tomas 	struct ext4_extent *nearex; /* nearest extent */
1713a86c6181SAlex Tomas 	struct ext4_ext_path *npath = NULL;
1714725d26d3SAneesh Kumar K.V 	int depth, len, err;
1715725d26d3SAneesh Kumar K.V 	ext4_lblk_t next;
1716a2df2a63SAmit Arora 	unsigned uninitialized = 0;
171755f020dbSAllison Henderson 	int flags = 0;
1718a86c6181SAlex Tomas 
1719273df556SFrank Mayhar 	if (unlikely(ext4_ext_get_actual_len(newext) == 0)) {
1720273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0");
1721273df556SFrank Mayhar 		return -EIO;
1722273df556SFrank Mayhar 	}
1723a86c6181SAlex Tomas 	depth = ext_depth(inode);
1724a86c6181SAlex Tomas 	ex = path[depth].p_ext;
1725273df556SFrank Mayhar 	if (unlikely(path[depth].p_hdr == NULL)) {
1726273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1727273df556SFrank Mayhar 		return -EIO;
1728273df556SFrank Mayhar 	}
1729a86c6181SAlex Tomas 
1730a86c6181SAlex Tomas 	/* try to insert block into found extent and return */
1731744692dcSJiaying Zhang 	if (ex && !(flag & EXT4_GET_BLOCKS_PRE_IO)
17320031462bSMingming Cao 		&& ext4_can_extents_be_merged(inode, ex, newext)) {
1733553f9008SMingming 		ext_debug("append [%d]%d block to %d:[%d]%d (from %llu)\n",
1734553f9008SMingming 			  ext4_ext_is_uninitialized(newext),
1735a2df2a63SAmit Arora 			  ext4_ext_get_actual_len(newext),
1736a86c6181SAlex Tomas 			  le32_to_cpu(ex->ee_block),
1737553f9008SMingming 			  ext4_ext_is_uninitialized(ex),
1738bf89d16fSTheodore Ts'o 			  ext4_ext_get_actual_len(ex),
1739bf89d16fSTheodore Ts'o 			  ext4_ext_pblock(ex));
17407e028976SAvantika Mathur 		err = ext4_ext_get_access(handle, inode, path + depth);
17417e028976SAvantika Mathur 		if (err)
1742a86c6181SAlex Tomas 			return err;
1743a2df2a63SAmit Arora 
1744a2df2a63SAmit Arora 		/*
1745a2df2a63SAmit Arora 		 * ext4_can_extents_be_merged should have checked that either
1746a2df2a63SAmit Arora 		 * both extents are uninitialized, or both aren't. Thus we
1747a2df2a63SAmit Arora 		 * need to check only one of them here.
1748a2df2a63SAmit Arora 		 */
1749a2df2a63SAmit Arora 		if (ext4_ext_is_uninitialized(ex))
1750a2df2a63SAmit Arora 			uninitialized = 1;
1751a2df2a63SAmit Arora 		ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1752a2df2a63SAmit Arora 					+ ext4_ext_get_actual_len(newext));
1753a2df2a63SAmit Arora 		if (uninitialized)
1754a2df2a63SAmit Arora 			ext4_ext_mark_uninitialized(ex);
1755a86c6181SAlex Tomas 		eh = path[depth].p_hdr;
1756a86c6181SAlex Tomas 		nearex = ex;
1757a86c6181SAlex Tomas 		goto merge;
1758a86c6181SAlex Tomas 	}
1759a86c6181SAlex Tomas 
1760a86c6181SAlex Tomas repeat:
1761a86c6181SAlex Tomas 	depth = ext_depth(inode);
1762a86c6181SAlex Tomas 	eh = path[depth].p_hdr;
1763a86c6181SAlex Tomas 	if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max))
1764a86c6181SAlex Tomas 		goto has_space;
1765a86c6181SAlex Tomas 
1766a86c6181SAlex Tomas 	/* probably next leaf has space for us? */
1767a86c6181SAlex Tomas 	fex = EXT_LAST_EXTENT(eh);
1768a86c6181SAlex Tomas 	next = ext4_ext_next_leaf_block(inode, path);
1769a86c6181SAlex Tomas 	if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block)
1770a86c6181SAlex Tomas 	    && next != EXT_MAX_BLOCK) {
1771a86c6181SAlex Tomas 		ext_debug("next leaf block - %d\n", next);
1772a86c6181SAlex Tomas 		BUG_ON(npath != NULL);
1773a86c6181SAlex Tomas 		npath = ext4_ext_find_extent(inode, next, NULL);
1774a86c6181SAlex Tomas 		if (IS_ERR(npath))
1775a86c6181SAlex Tomas 			return PTR_ERR(npath);
1776a86c6181SAlex Tomas 		BUG_ON(npath->p_depth != path->p_depth);
1777a86c6181SAlex Tomas 		eh = npath[depth].p_hdr;
1778a86c6181SAlex Tomas 		if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) {
177925985edcSLucas De Marchi 			ext_debug("next leaf isn't full(%d)\n",
1780a86c6181SAlex Tomas 				  le16_to_cpu(eh->eh_entries));
1781a86c6181SAlex Tomas 			path = npath;
1782a86c6181SAlex Tomas 			goto repeat;
1783a86c6181SAlex Tomas 		}
1784a86c6181SAlex Tomas 		ext_debug("next leaf has no free space(%d,%d)\n",
1785a86c6181SAlex Tomas 			  le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
1786a86c6181SAlex Tomas 	}
1787a86c6181SAlex Tomas 
1788a86c6181SAlex Tomas 	/*
1789d0d856e8SRandy Dunlap 	 * There is no free space in the found leaf.
1790d0d856e8SRandy Dunlap 	 * We're gonna add a new leaf in the tree.
1791a86c6181SAlex Tomas 	 */
179255f020dbSAllison Henderson 	if (flag & EXT4_GET_BLOCKS_PUNCH_OUT_EXT)
179355f020dbSAllison Henderson 		flags = EXT4_MB_USE_ROOT_BLOCKS;
179455f020dbSAllison Henderson 	err = ext4_ext_create_new_leaf(handle, inode, flags, path, newext);
1795a86c6181SAlex Tomas 	if (err)
1796a86c6181SAlex Tomas 		goto cleanup;
1797a86c6181SAlex Tomas 	depth = ext_depth(inode);
1798a86c6181SAlex Tomas 	eh = path[depth].p_hdr;
1799a86c6181SAlex Tomas 
1800a86c6181SAlex Tomas has_space:
1801a86c6181SAlex Tomas 	nearex = path[depth].p_ext;
1802a86c6181SAlex Tomas 
18037e028976SAvantika Mathur 	err = ext4_ext_get_access(handle, inode, path + depth);
18047e028976SAvantika Mathur 	if (err)
1805a86c6181SAlex Tomas 		goto cleanup;
1806a86c6181SAlex Tomas 
1807a86c6181SAlex Tomas 	if (!nearex) {
1808a86c6181SAlex Tomas 		/* there is no extent in this leaf, create first one */
1809553f9008SMingming 		ext_debug("first extent in the leaf: %d:%llu:[%d]%d\n",
1810a86c6181SAlex Tomas 				le32_to_cpu(newext->ee_block),
1811bf89d16fSTheodore Ts'o 				ext4_ext_pblock(newext),
1812553f9008SMingming 				ext4_ext_is_uninitialized(newext),
1813a2df2a63SAmit Arora 				ext4_ext_get_actual_len(newext));
1814a86c6181SAlex Tomas 		path[depth].p_ext = EXT_FIRST_EXTENT(eh);
1815a86c6181SAlex Tomas 	} else if (le32_to_cpu(newext->ee_block)
1816a86c6181SAlex Tomas 			   > le32_to_cpu(nearex->ee_block)) {
1817a86c6181SAlex Tomas /*		BUG_ON(newext->ee_block == nearex->ee_block); */
1818a86c6181SAlex Tomas 		if (nearex != EXT_LAST_EXTENT(eh)) {
1819a86c6181SAlex Tomas 			len = EXT_MAX_EXTENT(eh) - nearex;
1820a86c6181SAlex Tomas 			len = (len - 1) * sizeof(struct ext4_extent);
1821a86c6181SAlex Tomas 			len = len < 0 ? 0 : len;
1822553f9008SMingming 			ext_debug("insert %d:%llu:[%d]%d after: nearest 0x%p, "
1823a86c6181SAlex Tomas 					"move %d from 0x%p to 0x%p\n",
1824a86c6181SAlex Tomas 					le32_to_cpu(newext->ee_block),
1825bf89d16fSTheodore Ts'o 					ext4_ext_pblock(newext),
1826553f9008SMingming 					ext4_ext_is_uninitialized(newext),
1827a2df2a63SAmit Arora 					ext4_ext_get_actual_len(newext),
1828a86c6181SAlex Tomas 					nearex, len, nearex + 1, nearex + 2);
1829a86c6181SAlex Tomas 			memmove(nearex + 2, nearex + 1, len);
1830a86c6181SAlex Tomas 		}
1831a86c6181SAlex Tomas 		path[depth].p_ext = nearex + 1;
1832a86c6181SAlex Tomas 	} else {
1833a86c6181SAlex Tomas 		BUG_ON(newext->ee_block == nearex->ee_block);
1834a86c6181SAlex Tomas 		len = (EXT_MAX_EXTENT(eh) - nearex) * sizeof(struct ext4_extent);
1835a86c6181SAlex Tomas 		len = len < 0 ? 0 : len;
1836553f9008SMingming 		ext_debug("insert %d:%llu:[%d]%d before: nearest 0x%p, "
1837a86c6181SAlex Tomas 				"move %d from 0x%p to 0x%p\n",
1838a86c6181SAlex Tomas 				le32_to_cpu(newext->ee_block),
1839bf89d16fSTheodore Ts'o 				ext4_ext_pblock(newext),
1840553f9008SMingming 				ext4_ext_is_uninitialized(newext),
1841a2df2a63SAmit Arora 				ext4_ext_get_actual_len(newext),
1842a86c6181SAlex Tomas 				nearex, len, nearex + 1, nearex + 2);
1843a86c6181SAlex Tomas 		memmove(nearex + 1, nearex, len);
1844a86c6181SAlex Tomas 		path[depth].p_ext = nearex;
1845a86c6181SAlex Tomas 	}
1846a86c6181SAlex Tomas 
1847e8546d06SMarcin Slusarz 	le16_add_cpu(&eh->eh_entries, 1);
1848a86c6181SAlex Tomas 	nearex = path[depth].p_ext;
1849a86c6181SAlex Tomas 	nearex->ee_block = newext->ee_block;
1850bf89d16fSTheodore Ts'o 	ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext));
1851a86c6181SAlex Tomas 	nearex->ee_len = newext->ee_len;
1852a86c6181SAlex Tomas 
1853a86c6181SAlex Tomas merge:
1854a86c6181SAlex Tomas 	/* try to merge extents to the right */
1855744692dcSJiaying Zhang 	if (!(flag & EXT4_GET_BLOCKS_PRE_IO))
185656055d3aSAmit Arora 		ext4_ext_try_to_merge(inode, path, nearex);
1857a86c6181SAlex Tomas 
1858a86c6181SAlex Tomas 	/* try to merge extents to the left */
1859a86c6181SAlex Tomas 
1860a86c6181SAlex Tomas 	/* time to correct all indexes above */
1861a86c6181SAlex Tomas 	err = ext4_ext_correct_indexes(handle, inode, path);
1862a86c6181SAlex Tomas 	if (err)
1863a86c6181SAlex Tomas 		goto cleanup;
1864a86c6181SAlex Tomas 
1865a86c6181SAlex Tomas 	err = ext4_ext_dirty(handle, inode, path + depth);
1866a86c6181SAlex Tomas 
1867a86c6181SAlex Tomas cleanup:
1868a86c6181SAlex Tomas 	if (npath) {
1869a86c6181SAlex Tomas 		ext4_ext_drop_refs(npath);
1870a86c6181SAlex Tomas 		kfree(npath);
1871a86c6181SAlex Tomas 	}
1872a86c6181SAlex Tomas 	ext4_ext_invalidate_cache(inode);
1873a86c6181SAlex Tomas 	return err;
1874a86c6181SAlex Tomas }
1875a86c6181SAlex Tomas 
18761f109d5aSTheodore Ts'o static int ext4_ext_walk_space(struct inode *inode, ext4_lblk_t block,
18776873fa0dSEric Sandeen 			       ext4_lblk_t num, ext_prepare_callback func,
18786873fa0dSEric Sandeen 			       void *cbdata)
18796873fa0dSEric Sandeen {
18806873fa0dSEric Sandeen 	struct ext4_ext_path *path = NULL;
18816873fa0dSEric Sandeen 	struct ext4_ext_cache cbex;
18826873fa0dSEric Sandeen 	struct ext4_extent *ex;
18836873fa0dSEric Sandeen 	ext4_lblk_t next, start = 0, end = 0;
18846873fa0dSEric Sandeen 	ext4_lblk_t last = block + num;
18856873fa0dSEric Sandeen 	int depth, exists, err = 0;
18866873fa0dSEric Sandeen 
18876873fa0dSEric Sandeen 	BUG_ON(func == NULL);
18886873fa0dSEric Sandeen 	BUG_ON(inode == NULL);
18896873fa0dSEric Sandeen 
18906873fa0dSEric Sandeen 	while (block < last && block != EXT_MAX_BLOCK) {
18916873fa0dSEric Sandeen 		num = last - block;
18926873fa0dSEric Sandeen 		/* find extent for this block */
1893fab3a549STheodore Ts'o 		down_read(&EXT4_I(inode)->i_data_sem);
18946873fa0dSEric Sandeen 		path = ext4_ext_find_extent(inode, block, path);
1895fab3a549STheodore Ts'o 		up_read(&EXT4_I(inode)->i_data_sem);
18966873fa0dSEric Sandeen 		if (IS_ERR(path)) {
18976873fa0dSEric Sandeen 			err = PTR_ERR(path);
18986873fa0dSEric Sandeen 			path = NULL;
18996873fa0dSEric Sandeen 			break;
19006873fa0dSEric Sandeen 		}
19016873fa0dSEric Sandeen 
19026873fa0dSEric Sandeen 		depth = ext_depth(inode);
1903273df556SFrank Mayhar 		if (unlikely(path[depth].p_hdr == NULL)) {
1904273df556SFrank Mayhar 			EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1905273df556SFrank Mayhar 			err = -EIO;
1906273df556SFrank Mayhar 			break;
1907273df556SFrank Mayhar 		}
19086873fa0dSEric Sandeen 		ex = path[depth].p_ext;
19096873fa0dSEric Sandeen 		next = ext4_ext_next_allocated_block(path);
19106873fa0dSEric Sandeen 
19116873fa0dSEric Sandeen 		exists = 0;
19126873fa0dSEric Sandeen 		if (!ex) {
19136873fa0dSEric Sandeen 			/* there is no extent yet, so try to allocate
19146873fa0dSEric Sandeen 			 * all requested space */
19156873fa0dSEric Sandeen 			start = block;
19166873fa0dSEric Sandeen 			end = block + num;
19176873fa0dSEric Sandeen 		} else if (le32_to_cpu(ex->ee_block) > block) {
19186873fa0dSEric Sandeen 			/* need to allocate space before found extent */
19196873fa0dSEric Sandeen 			start = block;
19206873fa0dSEric Sandeen 			end = le32_to_cpu(ex->ee_block);
19216873fa0dSEric Sandeen 			if (block + num < end)
19226873fa0dSEric Sandeen 				end = block + num;
19236873fa0dSEric Sandeen 		} else if (block >= le32_to_cpu(ex->ee_block)
19246873fa0dSEric Sandeen 					+ ext4_ext_get_actual_len(ex)) {
19256873fa0dSEric Sandeen 			/* need to allocate space after found extent */
19266873fa0dSEric Sandeen 			start = block;
19276873fa0dSEric Sandeen 			end = block + num;
19286873fa0dSEric Sandeen 			if (end >= next)
19296873fa0dSEric Sandeen 				end = next;
19306873fa0dSEric Sandeen 		} else if (block >= le32_to_cpu(ex->ee_block)) {
19316873fa0dSEric Sandeen 			/*
19326873fa0dSEric Sandeen 			 * some part of requested space is covered
19336873fa0dSEric Sandeen 			 * by found extent
19346873fa0dSEric Sandeen 			 */
19356873fa0dSEric Sandeen 			start = block;
19366873fa0dSEric Sandeen 			end = le32_to_cpu(ex->ee_block)
19376873fa0dSEric Sandeen 				+ ext4_ext_get_actual_len(ex);
19386873fa0dSEric Sandeen 			if (block + num < end)
19396873fa0dSEric Sandeen 				end = block + num;
19406873fa0dSEric Sandeen 			exists = 1;
19416873fa0dSEric Sandeen 		} else {
19426873fa0dSEric Sandeen 			BUG();
19436873fa0dSEric Sandeen 		}
19446873fa0dSEric Sandeen 		BUG_ON(end <= start);
19456873fa0dSEric Sandeen 
19466873fa0dSEric Sandeen 		if (!exists) {
19476873fa0dSEric Sandeen 			cbex.ec_block = start;
19486873fa0dSEric Sandeen 			cbex.ec_len = end - start;
19496873fa0dSEric Sandeen 			cbex.ec_start = 0;
19506873fa0dSEric Sandeen 		} else {
19516873fa0dSEric Sandeen 			cbex.ec_block = le32_to_cpu(ex->ee_block);
19526873fa0dSEric Sandeen 			cbex.ec_len = ext4_ext_get_actual_len(ex);
1953bf89d16fSTheodore Ts'o 			cbex.ec_start = ext4_ext_pblock(ex);
19546873fa0dSEric Sandeen 		}
19556873fa0dSEric Sandeen 
1956273df556SFrank Mayhar 		if (unlikely(cbex.ec_len == 0)) {
1957273df556SFrank Mayhar 			EXT4_ERROR_INODE(inode, "cbex.ec_len == 0");
1958273df556SFrank Mayhar 			err = -EIO;
1959273df556SFrank Mayhar 			break;
1960273df556SFrank Mayhar 		}
19616873fa0dSEric Sandeen 		err = func(inode, path, &cbex, ex, cbdata);
19626873fa0dSEric Sandeen 		ext4_ext_drop_refs(path);
19636873fa0dSEric Sandeen 
19646873fa0dSEric Sandeen 		if (err < 0)
19656873fa0dSEric Sandeen 			break;
19666873fa0dSEric Sandeen 
19676873fa0dSEric Sandeen 		if (err == EXT_REPEAT)
19686873fa0dSEric Sandeen 			continue;
19696873fa0dSEric Sandeen 		else if (err == EXT_BREAK) {
19706873fa0dSEric Sandeen 			err = 0;
19716873fa0dSEric Sandeen 			break;
19726873fa0dSEric Sandeen 		}
19736873fa0dSEric Sandeen 
19746873fa0dSEric Sandeen 		if (ext_depth(inode) != depth) {
19756873fa0dSEric Sandeen 			/* depth was changed. we have to realloc path */
19766873fa0dSEric Sandeen 			kfree(path);
19776873fa0dSEric Sandeen 			path = NULL;
19786873fa0dSEric Sandeen 		}
19796873fa0dSEric Sandeen 
19806873fa0dSEric Sandeen 		block = cbex.ec_block + cbex.ec_len;
19816873fa0dSEric Sandeen 	}
19826873fa0dSEric Sandeen 
19836873fa0dSEric Sandeen 	if (path) {
19846873fa0dSEric Sandeen 		ext4_ext_drop_refs(path);
19856873fa0dSEric Sandeen 		kfree(path);
19866873fa0dSEric Sandeen 	}
19876873fa0dSEric Sandeen 
19886873fa0dSEric Sandeen 	return err;
19896873fa0dSEric Sandeen }
19906873fa0dSEric Sandeen 
199109b88252SAvantika Mathur static void
1992725d26d3SAneesh Kumar K.V ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block,
1993b05e6ae5STheodore Ts'o 			__u32 len, ext4_fsblk_t start)
1994a86c6181SAlex Tomas {
1995a86c6181SAlex Tomas 	struct ext4_ext_cache *cex;
1996a86c6181SAlex Tomas 	BUG_ON(len == 0);
19972ec0ae3aSTheodore Ts'o 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1998a86c6181SAlex Tomas 	cex = &EXT4_I(inode)->i_cached_extent;
1999a86c6181SAlex Tomas 	cex->ec_block = block;
2000a86c6181SAlex Tomas 	cex->ec_len = len;
2001a86c6181SAlex Tomas 	cex->ec_start = start;
20022ec0ae3aSTheodore Ts'o 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
2003a86c6181SAlex Tomas }
2004a86c6181SAlex Tomas 
2005a86c6181SAlex Tomas /*
2006d0d856e8SRandy Dunlap  * ext4_ext_put_gap_in_cache:
2007d0d856e8SRandy Dunlap  * calculate boundaries of the gap that the requested block fits into
2008a86c6181SAlex Tomas  * and cache this gap
2009a86c6181SAlex Tomas  */
201009b88252SAvantika Mathur static void
2011a86c6181SAlex Tomas ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path,
2012725d26d3SAneesh Kumar K.V 				ext4_lblk_t block)
2013a86c6181SAlex Tomas {
2014a86c6181SAlex Tomas 	int depth = ext_depth(inode);
2015725d26d3SAneesh Kumar K.V 	unsigned long len;
2016725d26d3SAneesh Kumar K.V 	ext4_lblk_t lblock;
2017a86c6181SAlex Tomas 	struct ext4_extent *ex;
2018a86c6181SAlex Tomas 
2019a86c6181SAlex Tomas 	ex = path[depth].p_ext;
2020a86c6181SAlex Tomas 	if (ex == NULL) {
2021a86c6181SAlex Tomas 		/* there is no extent yet, so gap is [0;-] */
2022a86c6181SAlex Tomas 		lblock = 0;
2023a86c6181SAlex Tomas 		len = EXT_MAX_BLOCK;
2024a86c6181SAlex Tomas 		ext_debug("cache gap(whole file):");
2025a86c6181SAlex Tomas 	} else if (block < le32_to_cpu(ex->ee_block)) {
2026a86c6181SAlex Tomas 		lblock = block;
2027a86c6181SAlex Tomas 		len = le32_to_cpu(ex->ee_block) - block;
2028bba90743SEric Sandeen 		ext_debug("cache gap(before): %u [%u:%u]",
2029bba90743SEric Sandeen 				block,
2030bba90743SEric Sandeen 				le32_to_cpu(ex->ee_block),
2031bba90743SEric Sandeen 				 ext4_ext_get_actual_len(ex));
2032a86c6181SAlex Tomas 	} else if (block >= le32_to_cpu(ex->ee_block)
2033a2df2a63SAmit Arora 			+ ext4_ext_get_actual_len(ex)) {
2034725d26d3SAneesh Kumar K.V 		ext4_lblk_t next;
2035a86c6181SAlex Tomas 		lblock = le32_to_cpu(ex->ee_block)
2036a2df2a63SAmit Arora 			+ ext4_ext_get_actual_len(ex);
2037725d26d3SAneesh Kumar K.V 
2038725d26d3SAneesh Kumar K.V 		next = ext4_ext_next_allocated_block(path);
2039bba90743SEric Sandeen 		ext_debug("cache gap(after): [%u:%u] %u",
2040bba90743SEric Sandeen 				le32_to_cpu(ex->ee_block),
2041bba90743SEric Sandeen 				ext4_ext_get_actual_len(ex),
2042bba90743SEric Sandeen 				block);
2043725d26d3SAneesh Kumar K.V 		BUG_ON(next == lblock);
2044725d26d3SAneesh Kumar K.V 		len = next - lblock;
2045a86c6181SAlex Tomas 	} else {
2046a86c6181SAlex Tomas 		lblock = len = 0;
2047a86c6181SAlex Tomas 		BUG();
2048a86c6181SAlex Tomas 	}
2049a86c6181SAlex Tomas 
2050bba90743SEric Sandeen 	ext_debug(" -> %u:%lu\n", lblock, len);
2051b05e6ae5STheodore Ts'o 	ext4_ext_put_in_cache(inode, lblock, len, 0);
2052a86c6181SAlex Tomas }
2053a86c6181SAlex Tomas 
2054b05e6ae5STheodore Ts'o /*
2055a4bb6b64SAllison Henderson  * ext4_ext_in_cache()
2056a4bb6b64SAllison Henderson  * Checks to see if the given block is in the cache.
2057a4bb6b64SAllison Henderson  * If it is, the cached extent is stored in the given
2058a4bb6b64SAllison Henderson  * cache extent pointer.  If the cached extent is a hole,
2059a4bb6b64SAllison Henderson  * this routine should be used instead of
2060a4bb6b64SAllison Henderson  * ext4_ext_in_cache if the calling function needs to
2061a4bb6b64SAllison Henderson  * know the size of the hole.
2062a4bb6b64SAllison Henderson  *
2063a4bb6b64SAllison Henderson  * @inode: The files inode
2064a4bb6b64SAllison Henderson  * @block: The block to look for in the cache
2065a4bb6b64SAllison Henderson  * @ex:    Pointer where the cached extent will be stored
2066a4bb6b64SAllison Henderson  *         if it contains block
2067a4bb6b64SAllison Henderson  *
2068b05e6ae5STheodore Ts'o  * Return 0 if cache is invalid; 1 if the cache is valid
2069b05e6ae5STheodore Ts'o  */
2070a4bb6b64SAllison Henderson static int ext4_ext_check_cache(struct inode *inode, ext4_lblk_t block,
2071a4bb6b64SAllison Henderson 	struct ext4_ext_cache *ex){
2072a86c6181SAlex Tomas 	struct ext4_ext_cache *cex;
207377f4135fSVivek Haldar 	struct ext4_sb_info *sbi;
2074b05e6ae5STheodore Ts'o 	int ret = 0;
2075a86c6181SAlex Tomas 
20762ec0ae3aSTheodore Ts'o 	/*
20772ec0ae3aSTheodore Ts'o 	 * We borrow i_block_reservation_lock to protect i_cached_extent
20782ec0ae3aSTheodore Ts'o 	 */
20792ec0ae3aSTheodore Ts'o 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
2080a86c6181SAlex Tomas 	cex = &EXT4_I(inode)->i_cached_extent;
208177f4135fSVivek Haldar 	sbi = EXT4_SB(inode->i_sb);
2082a86c6181SAlex Tomas 
2083a86c6181SAlex Tomas 	/* has cache valid data? */
2084b05e6ae5STheodore Ts'o 	if (cex->ec_len == 0)
20852ec0ae3aSTheodore Ts'o 		goto errout;
2086a86c6181SAlex Tomas 
2087731eb1a0SAkinobu Mita 	if (in_range(block, cex->ec_block, cex->ec_len)) {
2088a4bb6b64SAllison Henderson 		memcpy(ex, cex, sizeof(struct ext4_ext_cache));
2089bba90743SEric Sandeen 		ext_debug("%u cached by %u:%u:%llu\n",
2090bba90743SEric Sandeen 				block,
2091bba90743SEric Sandeen 				cex->ec_block, cex->ec_len, cex->ec_start);
2092b05e6ae5STheodore Ts'o 		ret = 1;
2093a86c6181SAlex Tomas 	}
20942ec0ae3aSTheodore Ts'o errout:
209577f4135fSVivek Haldar 	if (!ret)
209677f4135fSVivek Haldar 		sbi->extent_cache_misses++;
209777f4135fSVivek Haldar 	else
209877f4135fSVivek Haldar 		sbi->extent_cache_hits++;
20992ec0ae3aSTheodore Ts'o 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
21002ec0ae3aSTheodore Ts'o 	return ret;
2101a86c6181SAlex Tomas }
2102a86c6181SAlex Tomas 
2103a86c6181SAlex Tomas /*
2104a4bb6b64SAllison Henderson  * ext4_ext_in_cache()
2105a4bb6b64SAllison Henderson  * Checks to see if the given block is in the cache.
2106a4bb6b64SAllison Henderson  * If it is, the cached extent is stored in the given
2107a4bb6b64SAllison Henderson  * extent pointer.
2108a4bb6b64SAllison Henderson  *
2109a4bb6b64SAllison Henderson  * @inode: The files inode
2110a4bb6b64SAllison Henderson  * @block: The block to look for in the cache
2111a4bb6b64SAllison Henderson  * @ex:    Pointer where the cached extent will be stored
2112a4bb6b64SAllison Henderson  *         if it contains block
2113a4bb6b64SAllison Henderson  *
2114a4bb6b64SAllison Henderson  * Return 0 if cache is invalid; 1 if the cache is valid
2115a4bb6b64SAllison Henderson  */
2116a4bb6b64SAllison Henderson static int
2117a4bb6b64SAllison Henderson ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block,
2118a4bb6b64SAllison Henderson 			struct ext4_extent *ex)
2119a4bb6b64SAllison Henderson {
2120a4bb6b64SAllison Henderson 	struct ext4_ext_cache cex;
2121a4bb6b64SAllison Henderson 	int ret = 0;
2122a4bb6b64SAllison Henderson 
2123a4bb6b64SAllison Henderson 	if (ext4_ext_check_cache(inode, block, &cex)) {
2124a4bb6b64SAllison Henderson 		ex->ee_block = cpu_to_le32(cex.ec_block);
2125a4bb6b64SAllison Henderson 		ext4_ext_store_pblock(ex, cex.ec_start);
2126a4bb6b64SAllison Henderson 		ex->ee_len = cpu_to_le16(cex.ec_len);
2127a4bb6b64SAllison Henderson 		ret = 1;
2128a4bb6b64SAllison Henderson 	}
2129a4bb6b64SAllison Henderson 
2130a4bb6b64SAllison Henderson 	return ret;
2131a4bb6b64SAllison Henderson }
2132a4bb6b64SAllison Henderson 
2133a4bb6b64SAllison Henderson 
2134a4bb6b64SAllison Henderson /*
2135d0d856e8SRandy Dunlap  * ext4_ext_rm_idx:
2136d0d856e8SRandy Dunlap  * removes index from the index block.
2137d0d856e8SRandy Dunlap  * It's used in truncate case only, thus all requests are for
2138d0d856e8SRandy Dunlap  * last index in the block only.
2139a86c6181SAlex Tomas  */
21401d03ec98SAneesh Kumar K.V static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode,
2141a86c6181SAlex Tomas 			struct ext4_ext_path *path)
2142a86c6181SAlex Tomas {
2143a86c6181SAlex Tomas 	int err;
2144f65e6fbaSAlex Tomas 	ext4_fsblk_t leaf;
2145a86c6181SAlex Tomas 
2146a86c6181SAlex Tomas 	/* free index block */
2147a86c6181SAlex Tomas 	path--;
2148bf89d16fSTheodore Ts'o 	leaf = ext4_idx_pblock(path->p_idx);
2149273df556SFrank Mayhar 	if (unlikely(path->p_hdr->eh_entries == 0)) {
2150273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0");
2151273df556SFrank Mayhar 		return -EIO;
2152273df556SFrank Mayhar 	}
21537e028976SAvantika Mathur 	err = ext4_ext_get_access(handle, inode, path);
21547e028976SAvantika Mathur 	if (err)
2155a86c6181SAlex Tomas 		return err;
2156e8546d06SMarcin Slusarz 	le16_add_cpu(&path->p_hdr->eh_entries, -1);
21577e028976SAvantika Mathur 	err = ext4_ext_dirty(handle, inode, path);
21587e028976SAvantika Mathur 	if (err)
2159a86c6181SAlex Tomas 		return err;
21602ae02107SMingming Cao 	ext_debug("index is empty, remove it, free block %llu\n", leaf);
21617dc57615SPeter Huewe 	ext4_free_blocks(handle, inode, NULL, leaf, 1,
2162e6362609STheodore Ts'o 			 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
2163a86c6181SAlex Tomas 	return err;
2164a86c6181SAlex Tomas }
2165a86c6181SAlex Tomas 
2166a86c6181SAlex Tomas /*
2167ee12b630SMingming Cao  * ext4_ext_calc_credits_for_single_extent:
2168ee12b630SMingming Cao  * This routine returns max. credits that needed to insert an extent
2169ee12b630SMingming Cao  * to the extent tree.
2170ee12b630SMingming Cao  * When pass the actual path, the caller should calculate credits
2171ee12b630SMingming Cao  * under i_data_sem.
2172a86c6181SAlex Tomas  */
2173525f4ed8SMingming Cao int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks,
2174a86c6181SAlex Tomas 						struct ext4_ext_path *path)
2175a86c6181SAlex Tomas {
2176a86c6181SAlex Tomas 	if (path) {
2177ee12b630SMingming Cao 		int depth = ext_depth(inode);
2178f3bd1f3fSMingming Cao 		int ret = 0;
2179ee12b630SMingming Cao 
2180a86c6181SAlex Tomas 		/* probably there is space in leaf? */
2181a86c6181SAlex Tomas 		if (le16_to_cpu(path[depth].p_hdr->eh_entries)
2182ee12b630SMingming Cao 				< le16_to_cpu(path[depth].p_hdr->eh_max)) {
2183ee12b630SMingming Cao 
2184ee12b630SMingming Cao 			/*
2185ee12b630SMingming Cao 			 *  There are some space in the leaf tree, no
2186ee12b630SMingming Cao 			 *  need to account for leaf block credit
2187ee12b630SMingming Cao 			 *
2188ee12b630SMingming Cao 			 *  bitmaps and block group descriptor blocks
2189ee12b630SMingming Cao 			 *  and other metadat blocks still need to be
2190ee12b630SMingming Cao 			 *  accounted.
2191ee12b630SMingming Cao 			 */
2192525f4ed8SMingming Cao 			/* 1 bitmap, 1 block group descriptor */
2193ee12b630SMingming Cao 			ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb);
21945887e98bSAneesh Kumar K.V 			return ret;
2195ee12b630SMingming Cao 		}
2196ee12b630SMingming Cao 	}
2197ee12b630SMingming Cao 
2198525f4ed8SMingming Cao 	return ext4_chunk_trans_blocks(inode, nrblocks);
2199a86c6181SAlex Tomas }
2200a86c6181SAlex Tomas 
2201a86c6181SAlex Tomas /*
2202ee12b630SMingming Cao  * How many index/leaf blocks need to change/allocate to modify nrblocks?
2203ee12b630SMingming Cao  *
2204ee12b630SMingming Cao  * if nrblocks are fit in a single extent (chunk flag is 1), then
2205ee12b630SMingming Cao  * in the worse case, each tree level index/leaf need to be changed
2206ee12b630SMingming Cao  * if the tree split due to insert a new extent, then the old tree
2207ee12b630SMingming Cao  * index/leaf need to be updated too
2208ee12b630SMingming Cao  *
2209ee12b630SMingming Cao  * If the nrblocks are discontiguous, they could cause
2210ee12b630SMingming Cao  * the whole tree split more than once, but this is really rare.
2211a86c6181SAlex Tomas  */
2212525f4ed8SMingming Cao int ext4_ext_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
2213ee12b630SMingming Cao {
2214ee12b630SMingming Cao 	int index;
2215ee12b630SMingming Cao 	int depth = ext_depth(inode);
2216a86c6181SAlex Tomas 
2217ee12b630SMingming Cao 	if (chunk)
2218ee12b630SMingming Cao 		index = depth * 2;
2219ee12b630SMingming Cao 	else
2220ee12b630SMingming Cao 		index = depth * 3;
2221a86c6181SAlex Tomas 
2222ee12b630SMingming Cao 	return index;
2223a86c6181SAlex Tomas }
2224a86c6181SAlex Tomas 
2225a86c6181SAlex Tomas static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
2226a86c6181SAlex Tomas 				struct ext4_extent *ex,
2227725d26d3SAneesh Kumar K.V 				ext4_lblk_t from, ext4_lblk_t to)
2228a86c6181SAlex Tomas {
2229a2df2a63SAmit Arora 	unsigned short ee_len =  ext4_ext_get_actual_len(ex);
2230e6362609STheodore Ts'o 	int flags = EXT4_FREE_BLOCKS_FORGET;
2231a86c6181SAlex Tomas 
2232c9de560dSAlex Tomas 	if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
2233e6362609STheodore Ts'o 		flags |= EXT4_FREE_BLOCKS_METADATA;
2234a86c6181SAlex Tomas #ifdef EXTENTS_STATS
2235a86c6181SAlex Tomas 	{
2236a86c6181SAlex Tomas 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
2237a86c6181SAlex Tomas 		spin_lock(&sbi->s_ext_stats_lock);
2238a86c6181SAlex Tomas 		sbi->s_ext_blocks += ee_len;
2239a86c6181SAlex Tomas 		sbi->s_ext_extents++;
2240a86c6181SAlex Tomas 		if (ee_len < sbi->s_ext_min)
2241a86c6181SAlex Tomas 			sbi->s_ext_min = ee_len;
2242a86c6181SAlex Tomas 		if (ee_len > sbi->s_ext_max)
2243a86c6181SAlex Tomas 			sbi->s_ext_max = ee_len;
2244a86c6181SAlex Tomas 		if (ext_depth(inode) > sbi->s_depth_max)
2245a86c6181SAlex Tomas 			sbi->s_depth_max = ext_depth(inode);
2246a86c6181SAlex Tomas 		spin_unlock(&sbi->s_ext_stats_lock);
2247a86c6181SAlex Tomas 	}
2248a86c6181SAlex Tomas #endif
2249a86c6181SAlex Tomas 	if (from >= le32_to_cpu(ex->ee_block)
2250a2df2a63SAmit Arora 	    && to == le32_to_cpu(ex->ee_block) + ee_len - 1) {
2251a86c6181SAlex Tomas 		/* tail removal */
2252725d26d3SAneesh Kumar K.V 		ext4_lblk_t num;
2253f65e6fbaSAlex Tomas 		ext4_fsblk_t start;
2254725d26d3SAneesh Kumar K.V 
2255a2df2a63SAmit Arora 		num = le32_to_cpu(ex->ee_block) + ee_len - from;
2256bf89d16fSTheodore Ts'o 		start = ext4_ext_pblock(ex) + ee_len - num;
2257725d26d3SAneesh Kumar K.V 		ext_debug("free last %u blocks starting %llu\n", num, start);
22587dc57615SPeter Huewe 		ext4_free_blocks(handle, inode, NULL, start, num, flags);
2259a86c6181SAlex Tomas 	} else if (from == le32_to_cpu(ex->ee_block)
2260a2df2a63SAmit Arora 		   && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) {
2261d583fb87SAllison Henderson 		/* head removal */
2262d583fb87SAllison Henderson 		ext4_lblk_t num;
2263d583fb87SAllison Henderson 		ext4_fsblk_t start;
2264d583fb87SAllison Henderson 
2265d583fb87SAllison Henderson 		num = to - from;
2266d583fb87SAllison Henderson 		start = ext4_ext_pblock(ex);
2267d583fb87SAllison Henderson 
2268d583fb87SAllison Henderson 		ext_debug("free first %u blocks starting %llu\n", num, start);
2269d583fb87SAllison Henderson 		ext4_free_blocks(handle, inode, 0, start, num, flags);
2270d583fb87SAllison Henderson 
2271a86c6181SAlex Tomas 	} else {
2272725d26d3SAneesh Kumar K.V 		printk(KERN_INFO "strange request: removal(2) "
2273725d26d3SAneesh Kumar K.V 				"%u-%u from %u:%u\n",
2274a2df2a63SAmit Arora 				from, to, le32_to_cpu(ex->ee_block), ee_len);
2275a86c6181SAlex Tomas 	}
2276a86c6181SAlex Tomas 	return 0;
2277a86c6181SAlex Tomas }
2278a86c6181SAlex Tomas 
2279d583fb87SAllison Henderson 
2280d583fb87SAllison Henderson /*
2281d583fb87SAllison Henderson  * ext4_ext_rm_leaf() Removes the extents associated with the
2282d583fb87SAllison Henderson  * blocks appearing between "start" and "end", and splits the extents
2283d583fb87SAllison Henderson  * if "start" and "end" appear in the same extent
2284d583fb87SAllison Henderson  *
2285d583fb87SAllison Henderson  * @handle: The journal handle
2286d583fb87SAllison Henderson  * @inode:  The files inode
2287d583fb87SAllison Henderson  * @path:   The path to the leaf
2288d583fb87SAllison Henderson  * @start:  The first block to remove
2289d583fb87SAllison Henderson  * @end:   The last block to remove
2290d583fb87SAllison Henderson  */
2291a86c6181SAlex Tomas static int
2292a86c6181SAlex Tomas ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
2293d583fb87SAllison Henderson 		struct ext4_ext_path *path, ext4_lblk_t start,
2294d583fb87SAllison Henderson 		ext4_lblk_t end)
2295a86c6181SAlex Tomas {
2296a86c6181SAlex Tomas 	int err = 0, correct_index = 0;
2297a86c6181SAlex Tomas 	int depth = ext_depth(inode), credits;
2298a86c6181SAlex Tomas 	struct ext4_extent_header *eh;
2299725d26d3SAneesh Kumar K.V 	ext4_lblk_t a, b, block;
2300725d26d3SAneesh Kumar K.V 	unsigned num;
2301725d26d3SAneesh Kumar K.V 	ext4_lblk_t ex_ee_block;
2302a86c6181SAlex Tomas 	unsigned short ex_ee_len;
2303a2df2a63SAmit Arora 	unsigned uninitialized = 0;
2304a86c6181SAlex Tomas 	struct ext4_extent *ex;
2305d583fb87SAllison Henderson 	struct ext4_map_blocks map;
2306a86c6181SAlex Tomas 
2307c29c0ae7SAlex Tomas 	/* the header must be checked already in ext4_ext_remove_space() */
2308725d26d3SAneesh Kumar K.V 	ext_debug("truncate since %u in leaf\n", start);
2309a86c6181SAlex Tomas 	if (!path[depth].p_hdr)
2310a86c6181SAlex Tomas 		path[depth].p_hdr = ext_block_hdr(path[depth].p_bh);
2311a86c6181SAlex Tomas 	eh = path[depth].p_hdr;
2312273df556SFrank Mayhar 	if (unlikely(path[depth].p_hdr == NULL)) {
2313273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
2314273df556SFrank Mayhar 		return -EIO;
2315273df556SFrank Mayhar 	}
2316a86c6181SAlex Tomas 	/* find where to start removing */
2317a86c6181SAlex Tomas 	ex = EXT_LAST_EXTENT(eh);
2318a86c6181SAlex Tomas 
2319a86c6181SAlex Tomas 	ex_ee_block = le32_to_cpu(ex->ee_block);
2320a2df2a63SAmit Arora 	ex_ee_len = ext4_ext_get_actual_len(ex);
2321a86c6181SAlex Tomas 
2322a86c6181SAlex Tomas 	while (ex >= EXT_FIRST_EXTENT(eh) &&
2323a86c6181SAlex Tomas 			ex_ee_block + ex_ee_len > start) {
2324a41f2071SAneesh Kumar K.V 
2325a41f2071SAneesh Kumar K.V 		if (ext4_ext_is_uninitialized(ex))
2326a41f2071SAneesh Kumar K.V 			uninitialized = 1;
2327a41f2071SAneesh Kumar K.V 		else
2328a41f2071SAneesh Kumar K.V 			uninitialized = 0;
2329a41f2071SAneesh Kumar K.V 
2330553f9008SMingming 		ext_debug("remove ext %u:[%d]%d\n", ex_ee_block,
2331553f9008SMingming 			 uninitialized, ex_ee_len);
2332a86c6181SAlex Tomas 		path[depth].p_ext = ex;
2333a86c6181SAlex Tomas 
2334a86c6181SAlex Tomas 		a = ex_ee_block > start ? ex_ee_block : start;
2335d583fb87SAllison Henderson 		b = ex_ee_block+ex_ee_len - 1 < end ?
2336d583fb87SAllison Henderson 			ex_ee_block+ex_ee_len - 1 : end;
2337a86c6181SAlex Tomas 
2338a86c6181SAlex Tomas 		ext_debug("  border %u:%u\n", a, b);
2339a86c6181SAlex Tomas 
2340d583fb87SAllison Henderson 		/* If this extent is beyond the end of the hole, skip it */
2341d583fb87SAllison Henderson 		if (end <= ex_ee_block) {
2342d583fb87SAllison Henderson 			ex--;
2343d583fb87SAllison Henderson 			ex_ee_block = le32_to_cpu(ex->ee_block);
2344d583fb87SAllison Henderson 			ex_ee_len = ext4_ext_get_actual_len(ex);
2345d583fb87SAllison Henderson 			continue;
2346d583fb87SAllison Henderson 		} else if (a != ex_ee_block &&
2347d583fb87SAllison Henderson 			b != ex_ee_block + ex_ee_len - 1) {
2348d583fb87SAllison Henderson 			/*
2349d583fb87SAllison Henderson 			 * If this is a truncate, then this condition should
2350d583fb87SAllison Henderson 			 * never happen because at least one of the end points
2351d583fb87SAllison Henderson 			 * needs to be on the edge of the extent.
2352d583fb87SAllison Henderson 			 */
2353d583fb87SAllison Henderson 			if (end == EXT_MAX_BLOCK) {
2354d583fb87SAllison Henderson 				ext_debug("  bad truncate %u:%u\n",
2355d583fb87SAllison Henderson 						start, end);
2356a86c6181SAlex Tomas 				block = 0;
2357a86c6181SAlex Tomas 				num = 0;
2358d583fb87SAllison Henderson 				err = -EIO;
2359d583fb87SAllison Henderson 				goto out;
2360d583fb87SAllison Henderson 			}
2361d583fb87SAllison Henderson 			/*
2362d583fb87SAllison Henderson 			 * else this is a hole punch, so the extent needs to
2363d583fb87SAllison Henderson 			 * be split since neither edge of the hole is on the
2364d583fb87SAllison Henderson 			 * extent edge
2365d583fb87SAllison Henderson 			 */
2366d583fb87SAllison Henderson 			else{
2367d583fb87SAllison Henderson 				map.m_pblk = ext4_ext_pblock(ex);
2368d583fb87SAllison Henderson 				map.m_lblk = ex_ee_block;
2369d583fb87SAllison Henderson 				map.m_len = b - ex_ee_block;
2370d583fb87SAllison Henderson 
2371d583fb87SAllison Henderson 				err = ext4_split_extent(handle,
2372d583fb87SAllison Henderson 					inode, path, &map, 0,
2373d583fb87SAllison Henderson 					EXT4_GET_BLOCKS_PUNCH_OUT_EXT |
2374d583fb87SAllison Henderson 					EXT4_GET_BLOCKS_PRE_IO);
2375d583fb87SAllison Henderson 
2376d583fb87SAllison Henderson 				if (err < 0)
2377d583fb87SAllison Henderson 					goto out;
2378d583fb87SAllison Henderson 
2379d583fb87SAllison Henderson 				ex_ee_len = ext4_ext_get_actual_len(ex);
2380d583fb87SAllison Henderson 
2381d583fb87SAllison Henderson 				b = ex_ee_block+ex_ee_len - 1 < end ?
2382d583fb87SAllison Henderson 					ex_ee_block+ex_ee_len - 1 : end;
2383d583fb87SAllison Henderson 
2384d583fb87SAllison Henderson 				/* Then remove tail of this extent */
2385d583fb87SAllison Henderson 				block = ex_ee_block;
2386d583fb87SAllison Henderson 				num = a - block;
2387d583fb87SAllison Henderson 			}
2388a86c6181SAlex Tomas 		} else if (a != ex_ee_block) {
2389a86c6181SAlex Tomas 			/* remove tail of the extent */
2390a86c6181SAlex Tomas 			block = ex_ee_block;
2391a86c6181SAlex Tomas 			num = a - block;
2392a86c6181SAlex Tomas 		} else if (b != ex_ee_block + ex_ee_len - 1) {
2393a86c6181SAlex Tomas 			/* remove head of the extent */
2394d583fb87SAllison Henderson 			block = b;
2395d583fb87SAllison Henderson 			num =  ex_ee_block + ex_ee_len - b;
2396d583fb87SAllison Henderson 
2397d583fb87SAllison Henderson 			/*
2398d583fb87SAllison Henderson 			 * If this is a truncate, this condition
2399d583fb87SAllison Henderson 			 * should never happen
2400d583fb87SAllison Henderson 			 */
2401d583fb87SAllison Henderson 			if (end == EXT_MAX_BLOCK) {
2402d583fb87SAllison Henderson 				ext_debug("  bad truncate %u:%u\n",
2403d583fb87SAllison Henderson 					start, end);
2404d583fb87SAllison Henderson 				err = -EIO;
2405d583fb87SAllison Henderson 				goto out;
2406d583fb87SAllison Henderson 			}
2407a86c6181SAlex Tomas 		} else {
2408a86c6181SAlex Tomas 			/* remove whole extent: excellent! */
2409a86c6181SAlex Tomas 			block = ex_ee_block;
2410a86c6181SAlex Tomas 			num = 0;
2411d583fb87SAllison Henderson 			if (a != ex_ee_block) {
2412d583fb87SAllison Henderson 				ext_debug("  bad truncate %u:%u\n",
2413d583fb87SAllison Henderson 					start, end);
2414d583fb87SAllison Henderson 				err = -EIO;
2415d583fb87SAllison Henderson 				goto out;
2416d583fb87SAllison Henderson 			}
2417d583fb87SAllison Henderson 
2418d583fb87SAllison Henderson 			if (b != ex_ee_block + ex_ee_len - 1) {
2419d583fb87SAllison Henderson 				ext_debug("  bad truncate %u:%u\n",
2420d583fb87SAllison Henderson 					start, end);
2421d583fb87SAllison Henderson 				err = -EIO;
2422d583fb87SAllison Henderson 				goto out;
2423d583fb87SAllison Henderson 			}
2424a86c6181SAlex Tomas 		}
2425a86c6181SAlex Tomas 
242634071da7STheodore Ts'o 		/*
242734071da7STheodore Ts'o 		 * 3 for leaf, sb, and inode plus 2 (bmap and group
242834071da7STheodore Ts'o 		 * descriptor) for each block group; assume two block
242934071da7STheodore Ts'o 		 * groups plus ex_ee_len/blocks_per_block_group for
243034071da7STheodore Ts'o 		 * the worst case
243134071da7STheodore Ts'o 		 */
243234071da7STheodore Ts'o 		credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb));
2433a86c6181SAlex Tomas 		if (ex == EXT_FIRST_EXTENT(eh)) {
2434a86c6181SAlex Tomas 			correct_index = 1;
2435a86c6181SAlex Tomas 			credits += (ext_depth(inode)) + 1;
2436a86c6181SAlex Tomas 		}
24375aca07ebSDmitry Monakhov 		credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
2438a86c6181SAlex Tomas 
2439487caeefSJan Kara 		err = ext4_ext_truncate_extend_restart(handle, inode, credits);
24409102e4faSShen Feng 		if (err)
2441a86c6181SAlex Tomas 			goto out;
2442a86c6181SAlex Tomas 
2443a86c6181SAlex Tomas 		err = ext4_ext_get_access(handle, inode, path + depth);
2444a86c6181SAlex Tomas 		if (err)
2445a86c6181SAlex Tomas 			goto out;
2446a86c6181SAlex Tomas 
2447a86c6181SAlex Tomas 		err = ext4_remove_blocks(handle, inode, ex, a, b);
2448a86c6181SAlex Tomas 		if (err)
2449a86c6181SAlex Tomas 			goto out;
2450a86c6181SAlex Tomas 
2451a86c6181SAlex Tomas 		if (num == 0) {
2452d0d856e8SRandy Dunlap 			/* this extent is removed; mark slot entirely unused */
2453f65e6fbaSAlex Tomas 			ext4_ext_store_pblock(ex, 0);
2454d583fb87SAllison Henderson 		} else if (block != ex_ee_block) {
2455d583fb87SAllison Henderson 			/*
2456d583fb87SAllison Henderson 			 * If this was a head removal, then we need to update
2457d583fb87SAllison Henderson 			 * the physical block since it is now at a different
2458d583fb87SAllison Henderson 			 * location
2459d583fb87SAllison Henderson 			 */
2460d583fb87SAllison Henderson 			ext4_ext_store_pblock(ex, ext4_ext_pblock(ex) + (b-a));
2461a86c6181SAlex Tomas 		}
2462a86c6181SAlex Tomas 
2463a86c6181SAlex Tomas 		ex->ee_block = cpu_to_le32(block);
2464a86c6181SAlex Tomas 		ex->ee_len = cpu_to_le16(num);
2465749269faSAmit Arora 		/*
2466749269faSAmit Arora 		 * Do not mark uninitialized if all the blocks in the
2467749269faSAmit Arora 		 * extent have been removed.
2468749269faSAmit Arora 		 */
2469749269faSAmit Arora 		if (uninitialized && num)
2470a2df2a63SAmit Arora 			ext4_ext_mark_uninitialized(ex);
2471a86c6181SAlex Tomas 
2472a86c6181SAlex Tomas 		err = ext4_ext_dirty(handle, inode, path + depth);
2473a86c6181SAlex Tomas 		if (err)
2474a86c6181SAlex Tomas 			goto out;
2475a86c6181SAlex Tomas 
2476d583fb87SAllison Henderson 		/*
2477d583fb87SAllison Henderson 		 * If the extent was completely released,
2478d583fb87SAllison Henderson 		 * we need to remove it from the leaf
2479d583fb87SAllison Henderson 		 */
2480d583fb87SAllison Henderson 		if (num == 0) {
2481d583fb87SAllison Henderson 			if (end != EXT_MAX_BLOCK) {
2482d583fb87SAllison Henderson 				/*
2483d583fb87SAllison Henderson 				 * For hole punching, we need to scoot all the
2484d583fb87SAllison Henderson 				 * extents up when an extent is removed so that
2485d583fb87SAllison Henderson 				 * we dont have blank extents in the middle
2486d583fb87SAllison Henderson 				 */
2487d583fb87SAllison Henderson 				memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) *
2488d583fb87SAllison Henderson 					sizeof(struct ext4_extent));
2489d583fb87SAllison Henderson 
2490d583fb87SAllison Henderson 				/* Now get rid of the one at the end */
2491d583fb87SAllison Henderson 				memset(EXT_LAST_EXTENT(eh), 0,
2492d583fb87SAllison Henderson 					sizeof(struct ext4_extent));
2493d583fb87SAllison Henderson 			}
2494d583fb87SAllison Henderson 			le16_add_cpu(&eh->eh_entries, -1);
2495d583fb87SAllison Henderson 		}
2496d583fb87SAllison Henderson 
24972ae02107SMingming Cao 		ext_debug("new extent: %u:%u:%llu\n", block, num,
2498bf89d16fSTheodore Ts'o 				ext4_ext_pblock(ex));
2499a86c6181SAlex Tomas 		ex--;
2500a86c6181SAlex Tomas 		ex_ee_block = le32_to_cpu(ex->ee_block);
2501a2df2a63SAmit Arora 		ex_ee_len = ext4_ext_get_actual_len(ex);
2502a86c6181SAlex Tomas 	}
2503a86c6181SAlex Tomas 
2504a86c6181SAlex Tomas 	if (correct_index && eh->eh_entries)
2505a86c6181SAlex Tomas 		err = ext4_ext_correct_indexes(handle, inode, path);
2506a86c6181SAlex Tomas 
2507a86c6181SAlex Tomas 	/* if this leaf is free, then we should
2508a86c6181SAlex Tomas 	 * remove it from index block above */
2509a86c6181SAlex Tomas 	if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL)
2510a86c6181SAlex Tomas 		err = ext4_ext_rm_idx(handle, inode, path + depth);
2511a86c6181SAlex Tomas 
2512a86c6181SAlex Tomas out:
2513a86c6181SAlex Tomas 	return err;
2514a86c6181SAlex Tomas }
2515a86c6181SAlex Tomas 
2516a86c6181SAlex Tomas /*
2517d0d856e8SRandy Dunlap  * ext4_ext_more_to_rm:
2518d0d856e8SRandy Dunlap  * returns 1 if current index has to be freed (even partial)
2519a86c6181SAlex Tomas  */
252009b88252SAvantika Mathur static int
2521a86c6181SAlex Tomas ext4_ext_more_to_rm(struct ext4_ext_path *path)
2522a86c6181SAlex Tomas {
2523a86c6181SAlex Tomas 	BUG_ON(path->p_idx == NULL);
2524a86c6181SAlex Tomas 
2525a86c6181SAlex Tomas 	if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr))
2526a86c6181SAlex Tomas 		return 0;
2527a86c6181SAlex Tomas 
2528a86c6181SAlex Tomas 	/*
2529d0d856e8SRandy Dunlap 	 * if truncate on deeper level happened, it wasn't partial,
2530a86c6181SAlex Tomas 	 * so we have to consider current index for truncation
2531a86c6181SAlex Tomas 	 */
2532a86c6181SAlex Tomas 	if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block)
2533a86c6181SAlex Tomas 		return 0;
2534a86c6181SAlex Tomas 	return 1;
2535a86c6181SAlex Tomas }
2536a86c6181SAlex Tomas 
2537d583fb87SAllison Henderson static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
2538d583fb87SAllison Henderson 				ext4_lblk_t end)
2539a86c6181SAlex Tomas {
2540a86c6181SAlex Tomas 	struct super_block *sb = inode->i_sb;
2541a86c6181SAlex Tomas 	int depth = ext_depth(inode);
2542a86c6181SAlex Tomas 	struct ext4_ext_path *path;
2543a86c6181SAlex Tomas 	handle_t *handle;
25440617b83fSDmitry Monakhov 	int i, err;
2545a86c6181SAlex Tomas 
2546725d26d3SAneesh Kumar K.V 	ext_debug("truncate since %u\n", start);
2547a86c6181SAlex Tomas 
2548a86c6181SAlex Tomas 	/* probably first extent we're gonna free will be last in block */
2549a86c6181SAlex Tomas 	handle = ext4_journal_start(inode, depth + 1);
2550a86c6181SAlex Tomas 	if (IS_ERR(handle))
2551a86c6181SAlex Tomas 		return PTR_ERR(handle);
2552a86c6181SAlex Tomas 
25530617b83fSDmitry Monakhov again:
2554a86c6181SAlex Tomas 	ext4_ext_invalidate_cache(inode);
2555a86c6181SAlex Tomas 
2556a86c6181SAlex Tomas 	/*
2557d0d856e8SRandy Dunlap 	 * We start scanning from right side, freeing all the blocks
2558d0d856e8SRandy Dunlap 	 * after i_size and walking into the tree depth-wise.
2559a86c6181SAlex Tomas 	 */
25600617b83fSDmitry Monakhov 	depth = ext_depth(inode);
2561216553c4SJosef Bacik 	path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), GFP_NOFS);
2562a86c6181SAlex Tomas 	if (path == NULL) {
2563a86c6181SAlex Tomas 		ext4_journal_stop(handle);
2564a86c6181SAlex Tomas 		return -ENOMEM;
2565a86c6181SAlex Tomas 	}
25660617b83fSDmitry Monakhov 	path[0].p_depth = depth;
2567a86c6181SAlex Tomas 	path[0].p_hdr = ext_inode_hdr(inode);
256856b19868SAneesh Kumar K.V 	if (ext4_ext_check(inode, path[0].p_hdr, depth)) {
2569a86c6181SAlex Tomas 		err = -EIO;
2570a86c6181SAlex Tomas 		goto out;
2571a86c6181SAlex Tomas 	}
25720617b83fSDmitry Monakhov 	i = err = 0;
2573a86c6181SAlex Tomas 
2574a86c6181SAlex Tomas 	while (i >= 0 && err == 0) {
2575a86c6181SAlex Tomas 		if (i == depth) {
2576a86c6181SAlex Tomas 			/* this is leaf block */
2577d583fb87SAllison Henderson 			err = ext4_ext_rm_leaf(handle, inode, path,
2578d583fb87SAllison Henderson 					start, end);
2579d0d856e8SRandy Dunlap 			/* root level has p_bh == NULL, brelse() eats this */
2580a86c6181SAlex Tomas 			brelse(path[i].p_bh);
2581a86c6181SAlex Tomas 			path[i].p_bh = NULL;
2582a86c6181SAlex Tomas 			i--;
2583a86c6181SAlex Tomas 			continue;
2584a86c6181SAlex Tomas 		}
2585a86c6181SAlex Tomas 
2586a86c6181SAlex Tomas 		/* this is index block */
2587a86c6181SAlex Tomas 		if (!path[i].p_hdr) {
2588a86c6181SAlex Tomas 			ext_debug("initialize header\n");
2589a86c6181SAlex Tomas 			path[i].p_hdr = ext_block_hdr(path[i].p_bh);
2590a86c6181SAlex Tomas 		}
2591a86c6181SAlex Tomas 
2592a86c6181SAlex Tomas 		if (!path[i].p_idx) {
2593d0d856e8SRandy Dunlap 			/* this level hasn't been touched yet */
2594a86c6181SAlex Tomas 			path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr);
2595a86c6181SAlex Tomas 			path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1;
2596a86c6181SAlex Tomas 			ext_debug("init index ptr: hdr 0x%p, num %d\n",
2597a86c6181SAlex Tomas 				  path[i].p_hdr,
2598a86c6181SAlex Tomas 				  le16_to_cpu(path[i].p_hdr->eh_entries));
2599a86c6181SAlex Tomas 		} else {
2600d0d856e8SRandy Dunlap 			/* we were already here, see at next index */
2601a86c6181SAlex Tomas 			path[i].p_idx--;
2602a86c6181SAlex Tomas 		}
2603a86c6181SAlex Tomas 
2604a86c6181SAlex Tomas 		ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
2605a86c6181SAlex Tomas 				i, EXT_FIRST_INDEX(path[i].p_hdr),
2606a86c6181SAlex Tomas 				path[i].p_idx);
2607a86c6181SAlex Tomas 		if (ext4_ext_more_to_rm(path + i)) {
2608c29c0ae7SAlex Tomas 			struct buffer_head *bh;
2609a86c6181SAlex Tomas 			/* go to the next level */
26102ae02107SMingming Cao 			ext_debug("move to level %d (block %llu)\n",
2611bf89d16fSTheodore Ts'o 				  i + 1, ext4_idx_pblock(path[i].p_idx));
2612a86c6181SAlex Tomas 			memset(path + i + 1, 0, sizeof(*path));
2613bf89d16fSTheodore Ts'o 			bh = sb_bread(sb, ext4_idx_pblock(path[i].p_idx));
2614c29c0ae7SAlex Tomas 			if (!bh) {
2615a86c6181SAlex Tomas 				/* should we reset i_size? */
2616a86c6181SAlex Tomas 				err = -EIO;
2617a86c6181SAlex Tomas 				break;
2618a86c6181SAlex Tomas 			}
2619c29c0ae7SAlex Tomas 			if (WARN_ON(i + 1 > depth)) {
2620c29c0ae7SAlex Tomas 				err = -EIO;
2621c29c0ae7SAlex Tomas 				break;
2622c29c0ae7SAlex Tomas 			}
262356b19868SAneesh Kumar K.V 			if (ext4_ext_check(inode, ext_block_hdr(bh),
2624c29c0ae7SAlex Tomas 							depth - i - 1)) {
2625c29c0ae7SAlex Tomas 				err = -EIO;
2626c29c0ae7SAlex Tomas 				break;
2627c29c0ae7SAlex Tomas 			}
2628c29c0ae7SAlex Tomas 			path[i + 1].p_bh = bh;
2629a86c6181SAlex Tomas 
2630d0d856e8SRandy Dunlap 			/* save actual number of indexes since this
2631d0d856e8SRandy Dunlap 			 * number is changed at the next iteration */
2632a86c6181SAlex Tomas 			path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries);
2633a86c6181SAlex Tomas 			i++;
2634a86c6181SAlex Tomas 		} else {
2635d0d856e8SRandy Dunlap 			/* we finished processing this index, go up */
2636a86c6181SAlex Tomas 			if (path[i].p_hdr->eh_entries == 0 && i > 0) {
2637d0d856e8SRandy Dunlap 				/* index is empty, remove it;
2638a86c6181SAlex Tomas 				 * handle must be already prepared by the
2639a86c6181SAlex Tomas 				 * truncatei_leaf() */
2640a86c6181SAlex Tomas 				err = ext4_ext_rm_idx(handle, inode, path + i);
2641a86c6181SAlex Tomas 			}
2642d0d856e8SRandy Dunlap 			/* root level has p_bh == NULL, brelse() eats this */
2643a86c6181SAlex Tomas 			brelse(path[i].p_bh);
2644a86c6181SAlex Tomas 			path[i].p_bh = NULL;
2645a86c6181SAlex Tomas 			i--;
2646a86c6181SAlex Tomas 			ext_debug("return to level %d\n", i);
2647a86c6181SAlex Tomas 		}
2648a86c6181SAlex Tomas 	}
2649a86c6181SAlex Tomas 
2650a86c6181SAlex Tomas 	/* TODO: flexible tree reduction should be here */
2651a86c6181SAlex Tomas 	if (path->p_hdr->eh_entries == 0) {
2652a86c6181SAlex Tomas 		/*
2653d0d856e8SRandy Dunlap 		 * truncate to zero freed all the tree,
2654d0d856e8SRandy Dunlap 		 * so we need to correct eh_depth
2655a86c6181SAlex Tomas 		 */
2656a86c6181SAlex Tomas 		err = ext4_ext_get_access(handle, inode, path);
2657a86c6181SAlex Tomas 		if (err == 0) {
2658a86c6181SAlex Tomas 			ext_inode_hdr(inode)->eh_depth = 0;
2659a86c6181SAlex Tomas 			ext_inode_hdr(inode)->eh_max =
266055ad63bfSTheodore Ts'o 				cpu_to_le16(ext4_ext_space_root(inode, 0));
2661a86c6181SAlex Tomas 			err = ext4_ext_dirty(handle, inode, path);
2662a86c6181SAlex Tomas 		}
2663a86c6181SAlex Tomas 	}
2664a86c6181SAlex Tomas out:
2665a86c6181SAlex Tomas 	ext4_ext_drop_refs(path);
2666a86c6181SAlex Tomas 	kfree(path);
26670617b83fSDmitry Monakhov 	if (err == -EAGAIN)
26680617b83fSDmitry Monakhov 		goto again;
2669a86c6181SAlex Tomas 	ext4_journal_stop(handle);
2670a86c6181SAlex Tomas 
2671a86c6181SAlex Tomas 	return err;
2672a86c6181SAlex Tomas }
2673a86c6181SAlex Tomas 
2674a86c6181SAlex Tomas /*
2675a86c6181SAlex Tomas  * called at mount time
2676a86c6181SAlex Tomas  */
2677a86c6181SAlex Tomas void ext4_ext_init(struct super_block *sb)
2678a86c6181SAlex Tomas {
2679a86c6181SAlex Tomas 	/*
2680a86c6181SAlex Tomas 	 * possible initialization would be here
2681a86c6181SAlex Tomas 	 */
2682a86c6181SAlex Tomas 
268383982b6fSTheodore Ts'o 	if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
268490576c0bSTheodore Ts'o #if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS)
26854776004fSTheodore Ts'o 		printk(KERN_INFO "EXT4-fs: file extents enabled");
2686bbf2f9fbSRobert P. J. Day #ifdef AGGRESSIVE_TEST
2687bbf2f9fbSRobert P. J. Day 		printk(", aggressive tests");
2688a86c6181SAlex Tomas #endif
2689a86c6181SAlex Tomas #ifdef CHECK_BINSEARCH
2690a86c6181SAlex Tomas 		printk(", check binsearch");
2691a86c6181SAlex Tomas #endif
2692a86c6181SAlex Tomas #ifdef EXTENTS_STATS
2693a86c6181SAlex Tomas 		printk(", stats");
2694a86c6181SAlex Tomas #endif
2695a86c6181SAlex Tomas 		printk("\n");
269690576c0bSTheodore Ts'o #endif
2697a86c6181SAlex Tomas #ifdef EXTENTS_STATS
2698a86c6181SAlex Tomas 		spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock);
2699a86c6181SAlex Tomas 		EXT4_SB(sb)->s_ext_min = 1 << 30;
2700a86c6181SAlex Tomas 		EXT4_SB(sb)->s_ext_max = 0;
2701a86c6181SAlex Tomas #endif
2702a86c6181SAlex Tomas 	}
2703a86c6181SAlex Tomas }
2704a86c6181SAlex Tomas 
2705a86c6181SAlex Tomas /*
2706a86c6181SAlex Tomas  * called at umount time
2707a86c6181SAlex Tomas  */
2708a86c6181SAlex Tomas void ext4_ext_release(struct super_block *sb)
2709a86c6181SAlex Tomas {
271083982b6fSTheodore Ts'o 	if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
2711a86c6181SAlex Tomas 		return;
2712a86c6181SAlex Tomas 
2713a86c6181SAlex Tomas #ifdef EXTENTS_STATS
2714a86c6181SAlex Tomas 	if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) {
2715a86c6181SAlex Tomas 		struct ext4_sb_info *sbi = EXT4_SB(sb);
2716a86c6181SAlex Tomas 		printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
2717a86c6181SAlex Tomas 			sbi->s_ext_blocks, sbi->s_ext_extents,
2718a86c6181SAlex Tomas 			sbi->s_ext_blocks / sbi->s_ext_extents);
2719a86c6181SAlex Tomas 		printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
2720a86c6181SAlex Tomas 			sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max);
2721a86c6181SAlex Tomas 	}
2722a86c6181SAlex Tomas #endif
2723a86c6181SAlex Tomas }
2724a86c6181SAlex Tomas 
2725093a088bSAneesh Kumar K.V /* FIXME!! we need to try to merge to left or right after zero-out  */
2726093a088bSAneesh Kumar K.V static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
2727093a088bSAneesh Kumar K.V {
27282407518dSLukas Czerner 	ext4_fsblk_t ee_pblock;
27292407518dSLukas Czerner 	unsigned int ee_len;
2730b720303dSJing Zhang 	int ret;
2731093a088bSAneesh Kumar K.V 
2732093a088bSAneesh Kumar K.V 	ee_len    = ext4_ext_get_actual_len(ex);
2733bf89d16fSTheodore Ts'o 	ee_pblock = ext4_ext_pblock(ex);
2734093a088bSAneesh Kumar K.V 
2735a107e5a3STheodore Ts'o 	ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS);
27362407518dSLukas Czerner 	if (ret > 0)
27372407518dSLukas Czerner 		ret = 0;
2738093a088bSAneesh Kumar K.V 
27392407518dSLukas Czerner 	return ret;
2740093a088bSAneesh Kumar K.V }
2741093a088bSAneesh Kumar K.V 
274247ea3bb5SYongqiang Yang /*
274347ea3bb5SYongqiang Yang  * used by extent splitting.
274447ea3bb5SYongqiang Yang  */
274547ea3bb5SYongqiang Yang #define EXT4_EXT_MAY_ZEROOUT	0x1  /* safe to zeroout if split fails \
274647ea3bb5SYongqiang Yang 					due to ENOSPC */
274747ea3bb5SYongqiang Yang #define EXT4_EXT_MARK_UNINIT1	0x2  /* mark first half uninitialized */
274847ea3bb5SYongqiang Yang #define EXT4_EXT_MARK_UNINIT2	0x4  /* mark second half uninitialized */
274947ea3bb5SYongqiang Yang 
275047ea3bb5SYongqiang Yang /*
275147ea3bb5SYongqiang Yang  * ext4_split_extent_at() splits an extent at given block.
275247ea3bb5SYongqiang Yang  *
275347ea3bb5SYongqiang Yang  * @handle: the journal handle
275447ea3bb5SYongqiang Yang  * @inode: the file inode
275547ea3bb5SYongqiang Yang  * @path: the path to the extent
275647ea3bb5SYongqiang Yang  * @split: the logical block where the extent is splitted.
275747ea3bb5SYongqiang Yang  * @split_flags: indicates if the extent could be zeroout if split fails, and
275847ea3bb5SYongqiang Yang  *		 the states(init or uninit) of new extents.
275947ea3bb5SYongqiang Yang  * @flags: flags used to insert new extent to extent tree.
276047ea3bb5SYongqiang Yang  *
276147ea3bb5SYongqiang Yang  *
276247ea3bb5SYongqiang Yang  * Splits extent [a, b] into two extents [a, @split) and [@split, b], states
276347ea3bb5SYongqiang Yang  * of which are deterimined by split_flag.
276447ea3bb5SYongqiang Yang  *
276547ea3bb5SYongqiang Yang  * There are two cases:
276647ea3bb5SYongqiang Yang  *  a> the extent are splitted into two extent.
276747ea3bb5SYongqiang Yang  *  b> split is not needed, and just mark the extent.
276847ea3bb5SYongqiang Yang  *
276947ea3bb5SYongqiang Yang  * return 0 on success.
277047ea3bb5SYongqiang Yang  */
277147ea3bb5SYongqiang Yang static int ext4_split_extent_at(handle_t *handle,
277247ea3bb5SYongqiang Yang 			     struct inode *inode,
277347ea3bb5SYongqiang Yang 			     struct ext4_ext_path *path,
277447ea3bb5SYongqiang Yang 			     ext4_lblk_t split,
277547ea3bb5SYongqiang Yang 			     int split_flag,
277647ea3bb5SYongqiang Yang 			     int flags)
277747ea3bb5SYongqiang Yang {
277847ea3bb5SYongqiang Yang 	ext4_fsblk_t newblock;
277947ea3bb5SYongqiang Yang 	ext4_lblk_t ee_block;
278047ea3bb5SYongqiang Yang 	struct ext4_extent *ex, newex, orig_ex;
278147ea3bb5SYongqiang Yang 	struct ext4_extent *ex2 = NULL;
278247ea3bb5SYongqiang Yang 	unsigned int ee_len, depth;
278347ea3bb5SYongqiang Yang 	int err = 0;
278447ea3bb5SYongqiang Yang 
278547ea3bb5SYongqiang Yang 	ext_debug("ext4_split_extents_at: inode %lu, logical"
278647ea3bb5SYongqiang Yang 		"block %llu\n", inode->i_ino, (unsigned long long)split);
278747ea3bb5SYongqiang Yang 
278847ea3bb5SYongqiang Yang 	ext4_ext_show_leaf(inode, path);
278947ea3bb5SYongqiang Yang 
279047ea3bb5SYongqiang Yang 	depth = ext_depth(inode);
279147ea3bb5SYongqiang Yang 	ex = path[depth].p_ext;
279247ea3bb5SYongqiang Yang 	ee_block = le32_to_cpu(ex->ee_block);
279347ea3bb5SYongqiang Yang 	ee_len = ext4_ext_get_actual_len(ex);
279447ea3bb5SYongqiang Yang 	newblock = split - ee_block + ext4_ext_pblock(ex);
279547ea3bb5SYongqiang Yang 
279647ea3bb5SYongqiang Yang 	BUG_ON(split < ee_block || split >= (ee_block + ee_len));
279747ea3bb5SYongqiang Yang 
279847ea3bb5SYongqiang Yang 	err = ext4_ext_get_access(handle, inode, path + depth);
279947ea3bb5SYongqiang Yang 	if (err)
280047ea3bb5SYongqiang Yang 		goto out;
280147ea3bb5SYongqiang Yang 
280247ea3bb5SYongqiang Yang 	if (split == ee_block) {
280347ea3bb5SYongqiang Yang 		/*
280447ea3bb5SYongqiang Yang 		 * case b: block @split is the block that the extent begins with
280547ea3bb5SYongqiang Yang 		 * then we just change the state of the extent, and splitting
280647ea3bb5SYongqiang Yang 		 * is not needed.
280747ea3bb5SYongqiang Yang 		 */
280847ea3bb5SYongqiang Yang 		if (split_flag & EXT4_EXT_MARK_UNINIT2)
280947ea3bb5SYongqiang Yang 			ext4_ext_mark_uninitialized(ex);
281047ea3bb5SYongqiang Yang 		else
281147ea3bb5SYongqiang Yang 			ext4_ext_mark_initialized(ex);
281247ea3bb5SYongqiang Yang 
281347ea3bb5SYongqiang Yang 		if (!(flags & EXT4_GET_BLOCKS_PRE_IO))
281447ea3bb5SYongqiang Yang 			ext4_ext_try_to_merge(inode, path, ex);
281547ea3bb5SYongqiang Yang 
281647ea3bb5SYongqiang Yang 		err = ext4_ext_dirty(handle, inode, path + depth);
281747ea3bb5SYongqiang Yang 		goto out;
281847ea3bb5SYongqiang Yang 	}
281947ea3bb5SYongqiang Yang 
282047ea3bb5SYongqiang Yang 	/* case a */
282147ea3bb5SYongqiang Yang 	memcpy(&orig_ex, ex, sizeof(orig_ex));
282247ea3bb5SYongqiang Yang 	ex->ee_len = cpu_to_le16(split - ee_block);
282347ea3bb5SYongqiang Yang 	if (split_flag & EXT4_EXT_MARK_UNINIT1)
282447ea3bb5SYongqiang Yang 		ext4_ext_mark_uninitialized(ex);
282547ea3bb5SYongqiang Yang 
282647ea3bb5SYongqiang Yang 	/*
282747ea3bb5SYongqiang Yang 	 * path may lead to new leaf, not to original leaf any more
282847ea3bb5SYongqiang Yang 	 * after ext4_ext_insert_extent() returns,
282947ea3bb5SYongqiang Yang 	 */
283047ea3bb5SYongqiang Yang 	err = ext4_ext_dirty(handle, inode, path + depth);
283147ea3bb5SYongqiang Yang 	if (err)
283247ea3bb5SYongqiang Yang 		goto fix_extent_len;
283347ea3bb5SYongqiang Yang 
283447ea3bb5SYongqiang Yang 	ex2 = &newex;
283547ea3bb5SYongqiang Yang 	ex2->ee_block = cpu_to_le32(split);
283647ea3bb5SYongqiang Yang 	ex2->ee_len   = cpu_to_le16(ee_len - (split - ee_block));
283747ea3bb5SYongqiang Yang 	ext4_ext_store_pblock(ex2, newblock);
283847ea3bb5SYongqiang Yang 	if (split_flag & EXT4_EXT_MARK_UNINIT2)
283947ea3bb5SYongqiang Yang 		ext4_ext_mark_uninitialized(ex2);
284047ea3bb5SYongqiang Yang 
284147ea3bb5SYongqiang Yang 	err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
284247ea3bb5SYongqiang Yang 	if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
284347ea3bb5SYongqiang Yang 		err = ext4_ext_zeroout(inode, &orig_ex);
284447ea3bb5SYongqiang Yang 		if (err)
284547ea3bb5SYongqiang Yang 			goto fix_extent_len;
284647ea3bb5SYongqiang Yang 		/* update the extent length and mark as initialized */
284747ea3bb5SYongqiang Yang 		ex->ee_len = cpu_to_le32(ee_len);
284847ea3bb5SYongqiang Yang 		ext4_ext_try_to_merge(inode, path, ex);
284947ea3bb5SYongqiang Yang 		err = ext4_ext_dirty(handle, inode, path + depth);
285047ea3bb5SYongqiang Yang 		goto out;
285147ea3bb5SYongqiang Yang 	} else if (err)
285247ea3bb5SYongqiang Yang 		goto fix_extent_len;
285347ea3bb5SYongqiang Yang 
285447ea3bb5SYongqiang Yang out:
285547ea3bb5SYongqiang Yang 	ext4_ext_show_leaf(inode, path);
285647ea3bb5SYongqiang Yang 	return err;
285747ea3bb5SYongqiang Yang 
285847ea3bb5SYongqiang Yang fix_extent_len:
285947ea3bb5SYongqiang Yang 	ex->ee_len = orig_ex.ee_len;
286047ea3bb5SYongqiang Yang 	ext4_ext_dirty(handle, inode, path + depth);
286147ea3bb5SYongqiang Yang 	return err;
286247ea3bb5SYongqiang Yang }
286347ea3bb5SYongqiang Yang 
286447ea3bb5SYongqiang Yang /*
286547ea3bb5SYongqiang Yang  * ext4_split_extents() splits an extent and mark extent which is covered
286647ea3bb5SYongqiang Yang  * by @map as split_flags indicates
286747ea3bb5SYongqiang Yang  *
286847ea3bb5SYongqiang Yang  * It may result in splitting the extent into multiple extents (upto three)
286947ea3bb5SYongqiang Yang  * There are three possibilities:
287047ea3bb5SYongqiang Yang  *   a> There is no split required
287147ea3bb5SYongqiang Yang  *   b> Splits in two extents: Split is happening at either end of the extent
287247ea3bb5SYongqiang Yang  *   c> Splits in three extents: Somone is splitting in middle of the extent
287347ea3bb5SYongqiang Yang  *
287447ea3bb5SYongqiang Yang  */
287547ea3bb5SYongqiang Yang static int ext4_split_extent(handle_t *handle,
287647ea3bb5SYongqiang Yang 			      struct inode *inode,
287747ea3bb5SYongqiang Yang 			      struct ext4_ext_path *path,
287847ea3bb5SYongqiang Yang 			      struct ext4_map_blocks *map,
287947ea3bb5SYongqiang Yang 			      int split_flag,
288047ea3bb5SYongqiang Yang 			      int flags)
288147ea3bb5SYongqiang Yang {
288247ea3bb5SYongqiang Yang 	ext4_lblk_t ee_block;
288347ea3bb5SYongqiang Yang 	struct ext4_extent *ex;
288447ea3bb5SYongqiang Yang 	unsigned int ee_len, depth;
288547ea3bb5SYongqiang Yang 	int err = 0;
288647ea3bb5SYongqiang Yang 	int uninitialized;
288747ea3bb5SYongqiang Yang 	int split_flag1, flags1;
288847ea3bb5SYongqiang Yang 
288947ea3bb5SYongqiang Yang 	depth = ext_depth(inode);
289047ea3bb5SYongqiang Yang 	ex = path[depth].p_ext;
289147ea3bb5SYongqiang Yang 	ee_block = le32_to_cpu(ex->ee_block);
289247ea3bb5SYongqiang Yang 	ee_len = ext4_ext_get_actual_len(ex);
289347ea3bb5SYongqiang Yang 	uninitialized = ext4_ext_is_uninitialized(ex);
289447ea3bb5SYongqiang Yang 
289547ea3bb5SYongqiang Yang 	if (map->m_lblk + map->m_len < ee_block + ee_len) {
289647ea3bb5SYongqiang Yang 		split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
289747ea3bb5SYongqiang Yang 			      EXT4_EXT_MAY_ZEROOUT : 0;
289847ea3bb5SYongqiang Yang 		flags1 = flags | EXT4_GET_BLOCKS_PRE_IO;
289947ea3bb5SYongqiang Yang 		if (uninitialized)
290047ea3bb5SYongqiang Yang 			split_flag1 |= EXT4_EXT_MARK_UNINIT1 |
290147ea3bb5SYongqiang Yang 				       EXT4_EXT_MARK_UNINIT2;
290247ea3bb5SYongqiang Yang 		err = ext4_split_extent_at(handle, inode, path,
290347ea3bb5SYongqiang Yang 				map->m_lblk + map->m_len, split_flag1, flags1);
290493917411SYongqiang Yang 		if (err)
290593917411SYongqiang Yang 			goto out;
290647ea3bb5SYongqiang Yang 	}
290747ea3bb5SYongqiang Yang 
290847ea3bb5SYongqiang Yang 	ext4_ext_drop_refs(path);
290947ea3bb5SYongqiang Yang 	path = ext4_ext_find_extent(inode, map->m_lblk, path);
291047ea3bb5SYongqiang Yang 	if (IS_ERR(path))
291147ea3bb5SYongqiang Yang 		return PTR_ERR(path);
291247ea3bb5SYongqiang Yang 
291347ea3bb5SYongqiang Yang 	if (map->m_lblk >= ee_block) {
291447ea3bb5SYongqiang Yang 		split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
291547ea3bb5SYongqiang Yang 			      EXT4_EXT_MAY_ZEROOUT : 0;
291647ea3bb5SYongqiang Yang 		if (uninitialized)
291747ea3bb5SYongqiang Yang 			split_flag1 |= EXT4_EXT_MARK_UNINIT1;
291847ea3bb5SYongqiang Yang 		if (split_flag & EXT4_EXT_MARK_UNINIT2)
291947ea3bb5SYongqiang Yang 			split_flag1 |= EXT4_EXT_MARK_UNINIT2;
292047ea3bb5SYongqiang Yang 		err = ext4_split_extent_at(handle, inode, path,
292147ea3bb5SYongqiang Yang 				map->m_lblk, split_flag1, flags);
292247ea3bb5SYongqiang Yang 		if (err)
292347ea3bb5SYongqiang Yang 			goto out;
292447ea3bb5SYongqiang Yang 	}
292547ea3bb5SYongqiang Yang 
292647ea3bb5SYongqiang Yang 	ext4_ext_show_leaf(inode, path);
292747ea3bb5SYongqiang Yang out:
292847ea3bb5SYongqiang Yang 	return err ? err : map->m_len;
292947ea3bb5SYongqiang Yang }
293047ea3bb5SYongqiang Yang 
29313977c965SAneesh Kumar K.V #define EXT4_EXT_ZERO_LEN 7
293256055d3aSAmit Arora /*
2933e35fd660STheodore Ts'o  * This function is called by ext4_ext_map_blocks() if someone tries to write
293456055d3aSAmit Arora  * to an uninitialized extent. It may result in splitting the uninitialized
293556055d3aSAmit Arora  * extent into multiple extents (up to three - one initialized and two
293656055d3aSAmit Arora  * uninitialized).
293756055d3aSAmit Arora  * There are three possibilities:
293856055d3aSAmit Arora  *   a> There is no split required: Entire extent should be initialized
293956055d3aSAmit Arora  *   b> Splits in two extents: Write is happening at either end of the extent
294056055d3aSAmit Arora  *   c> Splits in three extents: Somone is writing in middle of the extent
294156055d3aSAmit Arora  */
2942725d26d3SAneesh Kumar K.V static int ext4_ext_convert_to_initialized(handle_t *handle,
2943725d26d3SAneesh Kumar K.V 					   struct inode *inode,
2944e35fd660STheodore Ts'o 					   struct ext4_map_blocks *map,
2945e35fd660STheodore Ts'o 					   struct ext4_ext_path *path)
294656055d3aSAmit Arora {
2947667eff35SYongqiang Yang 	struct ext4_map_blocks split_map;
2948667eff35SYongqiang Yang 	struct ext4_extent zero_ex;
2949667eff35SYongqiang Yang 	struct ext4_extent *ex;
295021ca087aSDmitry Monakhov 	ext4_lblk_t ee_block, eof_block;
2951725d26d3SAneesh Kumar K.V 	unsigned int allocated, ee_len, depth;
295256055d3aSAmit Arora 	int err = 0;
2953667eff35SYongqiang Yang 	int split_flag = 0;
295421ca087aSDmitry Monakhov 
295521ca087aSDmitry Monakhov 	ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical"
295621ca087aSDmitry Monakhov 		"block %llu, max_blocks %u\n", inode->i_ino,
2957e35fd660STheodore Ts'o 		(unsigned long long)map->m_lblk, map->m_len);
295821ca087aSDmitry Monakhov 
295921ca087aSDmitry Monakhov 	eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
296021ca087aSDmitry Monakhov 		inode->i_sb->s_blocksize_bits;
2961e35fd660STheodore Ts'o 	if (eof_block < map->m_lblk + map->m_len)
2962e35fd660STheodore Ts'o 		eof_block = map->m_lblk + map->m_len;
296356055d3aSAmit Arora 
296456055d3aSAmit Arora 	depth = ext_depth(inode);
296556055d3aSAmit Arora 	ex = path[depth].p_ext;
296656055d3aSAmit Arora 	ee_block = le32_to_cpu(ex->ee_block);
296756055d3aSAmit Arora 	ee_len = ext4_ext_get_actual_len(ex);
2968e35fd660STheodore Ts'o 	allocated = ee_len - (map->m_lblk - ee_block);
296921ca087aSDmitry Monakhov 
2970667eff35SYongqiang Yang 	WARN_ON(map->m_lblk < ee_block);
297121ca087aSDmitry Monakhov 	/*
297221ca087aSDmitry Monakhov 	 * It is safe to convert extent to initialized via explicit
297321ca087aSDmitry Monakhov 	 * zeroout only if extent is fully insde i_size or new_size.
297421ca087aSDmitry Monakhov 	 */
2975667eff35SYongqiang Yang 	split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
297621ca087aSDmitry Monakhov 
29773977c965SAneesh Kumar K.V 	/* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
2978667eff35SYongqiang Yang 	if (ee_len <= 2*EXT4_EXT_ZERO_LEN &&
2979667eff35SYongqiang Yang 	    (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2980667eff35SYongqiang Yang 		err = ext4_ext_zeroout(inode, ex);
29813977c965SAneesh Kumar K.V 		if (err)
298256055d3aSAmit Arora 			goto out;
29839df5643aSAneesh Kumar K.V 
29849df5643aSAneesh Kumar K.V 		err = ext4_ext_get_access(handle, inode, path + depth);
29859df5643aSAneesh Kumar K.V 		if (err)
29869df5643aSAneesh Kumar K.V 			goto out;
2987667eff35SYongqiang Yang 		ext4_ext_mark_initialized(ex);
2988667eff35SYongqiang Yang 		ext4_ext_try_to_merge(inode, path, ex);
298956055d3aSAmit Arora 		err = ext4_ext_dirty(handle, inode, path + depth);
299056055d3aSAmit Arora 		goto out;
2991667eff35SYongqiang Yang 	}
2992093a088bSAneesh Kumar K.V 
2993667eff35SYongqiang Yang 	/*
2994667eff35SYongqiang Yang 	 * four cases:
2995667eff35SYongqiang Yang 	 * 1. split the extent into three extents.
2996667eff35SYongqiang Yang 	 * 2. split the extent into two extents, zeroout the first half.
2997667eff35SYongqiang Yang 	 * 3. split the extent into two extents, zeroout the second half.
2998667eff35SYongqiang Yang 	 * 4. split the extent into two extents with out zeroout.
2999667eff35SYongqiang Yang 	 */
3000667eff35SYongqiang Yang 	split_map.m_lblk = map->m_lblk;
3001667eff35SYongqiang Yang 	split_map.m_len = map->m_len;
3002667eff35SYongqiang Yang 
3003667eff35SYongqiang Yang 	if (allocated > map->m_len) {
3004667eff35SYongqiang Yang 		if (allocated <= EXT4_EXT_ZERO_LEN &&
3005667eff35SYongqiang Yang 		    (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
3006667eff35SYongqiang Yang 			/* case 3 */
3007667eff35SYongqiang Yang 			zero_ex.ee_block =
30089b940f8eSAllison Henderson 					 cpu_to_le32(map->m_lblk);
30099b940f8eSAllison Henderson 			zero_ex.ee_len = cpu_to_le16(allocated);
3010667eff35SYongqiang Yang 			ext4_ext_store_pblock(&zero_ex,
3011667eff35SYongqiang Yang 				ext4_ext_pblock(ex) + map->m_lblk - ee_block);
3012667eff35SYongqiang Yang 			err = ext4_ext_zeroout(inode, &zero_ex);
3013667eff35SYongqiang Yang 			if (err)
3014667eff35SYongqiang Yang 				goto out;
3015667eff35SYongqiang Yang 			split_map.m_lblk = map->m_lblk;
3016667eff35SYongqiang Yang 			split_map.m_len = allocated;
3017667eff35SYongqiang Yang 		} else if ((map->m_lblk - ee_block + map->m_len <
3018667eff35SYongqiang Yang 			   EXT4_EXT_ZERO_LEN) &&
3019667eff35SYongqiang Yang 			   (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
3020667eff35SYongqiang Yang 			/* case 2 */
3021667eff35SYongqiang Yang 			if (map->m_lblk != ee_block) {
3022667eff35SYongqiang Yang 				zero_ex.ee_block = ex->ee_block;
3023667eff35SYongqiang Yang 				zero_ex.ee_len = cpu_to_le16(map->m_lblk -
3024667eff35SYongqiang Yang 							ee_block);
3025667eff35SYongqiang Yang 				ext4_ext_store_pblock(&zero_ex,
3026667eff35SYongqiang Yang 						      ext4_ext_pblock(ex));
3027667eff35SYongqiang Yang 				err = ext4_ext_zeroout(inode, &zero_ex);
3028667eff35SYongqiang Yang 				if (err)
3029667eff35SYongqiang Yang 					goto out;
3030667eff35SYongqiang Yang 			}
3031667eff35SYongqiang Yang 
3032667eff35SYongqiang Yang 			split_map.m_lblk = ee_block;
30339b940f8eSAllison Henderson 			split_map.m_len = map->m_lblk - ee_block + map->m_len;
30349b940f8eSAllison Henderson 			allocated = map->m_len;
3035667eff35SYongqiang Yang 		}
3036667eff35SYongqiang Yang 	}
3037667eff35SYongqiang Yang 
3038667eff35SYongqiang Yang 	allocated = ext4_split_extent(handle, inode, path,
3039667eff35SYongqiang Yang 				       &split_map, split_flag, 0);
3040667eff35SYongqiang Yang 	if (allocated < 0)
3041667eff35SYongqiang Yang 		err = allocated;
3042667eff35SYongqiang Yang 
3043667eff35SYongqiang Yang out:
3044667eff35SYongqiang Yang 	return err ? err : allocated;
304556055d3aSAmit Arora }
304656055d3aSAmit Arora 
3047c278bfecSAneesh Kumar K.V /*
3048e35fd660STheodore Ts'o  * This function is called by ext4_ext_map_blocks() from
30490031462bSMingming Cao  * ext4_get_blocks_dio_write() when DIO to write
30500031462bSMingming Cao  * to an uninitialized extent.
30510031462bSMingming Cao  *
3052fd018fe8SPaul Bolle  * Writing to an uninitialized extent may result in splitting the uninitialized
3053b595076aSUwe Kleine-König  * extent into multiple /initialized uninitialized extents (up to three)
30540031462bSMingming Cao  * There are three possibilities:
30550031462bSMingming Cao  *   a> There is no split required: Entire extent should be uninitialized
30560031462bSMingming Cao  *   b> Splits in two extents: Write is happening at either end of the extent
30570031462bSMingming Cao  *   c> Splits in three extents: Somone is writing in middle of the extent
30580031462bSMingming Cao  *
30590031462bSMingming Cao  * One of more index blocks maybe needed if the extent tree grow after
3060b595076aSUwe Kleine-König  * the uninitialized extent split. To prevent ENOSPC occur at the IO
30610031462bSMingming Cao  * complete, we need to split the uninitialized extent before DIO submit
3062421f91d2SUwe Kleine-König  * the IO. The uninitialized extent called at this time will be split
30630031462bSMingming Cao  * into three uninitialized extent(at most). After IO complete, the part
30640031462bSMingming Cao  * being filled will be convert to initialized by the end_io callback function
30650031462bSMingming Cao  * via ext4_convert_unwritten_extents().
3066ba230c3fSMingming  *
3067ba230c3fSMingming  * Returns the size of uninitialized extent to be written on success.
30680031462bSMingming Cao  */
30690031462bSMingming Cao static int ext4_split_unwritten_extents(handle_t *handle,
30700031462bSMingming Cao 					struct inode *inode,
3071e35fd660STheodore Ts'o 					struct ext4_map_blocks *map,
30720031462bSMingming Cao 					struct ext4_ext_path *path,
30730031462bSMingming Cao 					int flags)
30740031462bSMingming Cao {
3075667eff35SYongqiang Yang 	ext4_lblk_t eof_block;
3076667eff35SYongqiang Yang 	ext4_lblk_t ee_block;
3077667eff35SYongqiang Yang 	struct ext4_extent *ex;
3078667eff35SYongqiang Yang 	unsigned int ee_len;
3079667eff35SYongqiang Yang 	int split_flag = 0, depth;
30800031462bSMingming Cao 
308121ca087aSDmitry Monakhov 	ext_debug("ext4_split_unwritten_extents: inode %lu, logical"
308221ca087aSDmitry Monakhov 		"block %llu, max_blocks %u\n", inode->i_ino,
3083e35fd660STheodore Ts'o 		(unsigned long long)map->m_lblk, map->m_len);
308421ca087aSDmitry Monakhov 
308521ca087aSDmitry Monakhov 	eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
308621ca087aSDmitry Monakhov 		inode->i_sb->s_blocksize_bits;
3087e35fd660STheodore Ts'o 	if (eof_block < map->m_lblk + map->m_len)
3088e35fd660STheodore Ts'o 		eof_block = map->m_lblk + map->m_len;
30890031462bSMingming Cao 	/*
309021ca087aSDmitry Monakhov 	 * It is safe to convert extent to initialized via explicit
309121ca087aSDmitry Monakhov 	 * zeroout only if extent is fully insde i_size or new_size.
309221ca087aSDmitry Monakhov 	 */
3093667eff35SYongqiang Yang 	depth = ext_depth(inode);
30940031462bSMingming Cao 	ex = path[depth].p_ext;
3095667eff35SYongqiang Yang 	ee_block = le32_to_cpu(ex->ee_block);
3096667eff35SYongqiang Yang 	ee_len = ext4_ext_get_actual_len(ex);
30970031462bSMingming Cao 
3098667eff35SYongqiang Yang 	split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
3099667eff35SYongqiang Yang 	split_flag |= EXT4_EXT_MARK_UNINIT2;
31000031462bSMingming Cao 
3101667eff35SYongqiang Yang 	flags |= EXT4_GET_BLOCKS_PRE_IO;
3102667eff35SYongqiang Yang 	return ext4_split_extent(handle, inode, path, map, split_flag, flags);
31030031462bSMingming Cao }
3104197217a5SYongqiang Yang 
3105c7064ef1SJiaying Zhang static int ext4_convert_unwritten_extents_endio(handle_t *handle,
31060031462bSMingming Cao 					      struct inode *inode,
31070031462bSMingming Cao 					      struct ext4_ext_path *path)
31080031462bSMingming Cao {
31090031462bSMingming Cao 	struct ext4_extent *ex;
31100031462bSMingming Cao 	struct ext4_extent_header *eh;
31110031462bSMingming Cao 	int depth;
31120031462bSMingming Cao 	int err = 0;
31130031462bSMingming Cao 
31140031462bSMingming Cao 	depth = ext_depth(inode);
31150031462bSMingming Cao 	eh = path[depth].p_hdr;
31160031462bSMingming Cao 	ex = path[depth].p_ext;
31170031462bSMingming Cao 
3118197217a5SYongqiang Yang 	ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical"
3119197217a5SYongqiang Yang 		"block %llu, max_blocks %u\n", inode->i_ino,
3120197217a5SYongqiang Yang 		(unsigned long long)le32_to_cpu(ex->ee_block),
3121197217a5SYongqiang Yang 		ext4_ext_get_actual_len(ex));
3122197217a5SYongqiang Yang 
31230031462bSMingming Cao 	err = ext4_ext_get_access(handle, inode, path + depth);
31240031462bSMingming Cao 	if (err)
31250031462bSMingming Cao 		goto out;
31260031462bSMingming Cao 	/* first mark the extent as initialized */
31270031462bSMingming Cao 	ext4_ext_mark_initialized(ex);
31280031462bSMingming Cao 
3129197217a5SYongqiang Yang 	/* note: ext4_ext_correct_indexes() isn't needed here because
3130197217a5SYongqiang Yang 	 * borders are not changed
31310031462bSMingming Cao 	 */
3132197217a5SYongqiang Yang 	ext4_ext_try_to_merge(inode, path, ex);
3133197217a5SYongqiang Yang 
31340031462bSMingming Cao 	/* Mark modified extent as dirty */
31350031462bSMingming Cao 	err = ext4_ext_dirty(handle, inode, path + depth);
31360031462bSMingming Cao out:
31370031462bSMingming Cao 	ext4_ext_show_leaf(inode, path);
31380031462bSMingming Cao 	return err;
31390031462bSMingming Cao }
31400031462bSMingming Cao 
3141515f41c3SAneesh Kumar K.V static void unmap_underlying_metadata_blocks(struct block_device *bdev,
3142515f41c3SAneesh Kumar K.V 			sector_t block, int count)
3143515f41c3SAneesh Kumar K.V {
3144515f41c3SAneesh Kumar K.V 	int i;
3145515f41c3SAneesh Kumar K.V 	for (i = 0; i < count; i++)
3146515f41c3SAneesh Kumar K.V                 unmap_underlying_metadata(bdev, block + i);
3147515f41c3SAneesh Kumar K.V }
3148515f41c3SAneesh Kumar K.V 
314958590b06STheodore Ts'o /*
315058590b06STheodore Ts'o  * Handle EOFBLOCKS_FL flag, clearing it if necessary
315158590b06STheodore Ts'o  */
315258590b06STheodore Ts'o static int check_eofblocks_fl(handle_t *handle, struct inode *inode,
3153d002ebf1SEric Sandeen 			      ext4_lblk_t lblk,
315458590b06STheodore Ts'o 			      struct ext4_ext_path *path,
315558590b06STheodore Ts'o 			      unsigned int len)
315658590b06STheodore Ts'o {
315758590b06STheodore Ts'o 	int i, depth;
315858590b06STheodore Ts'o 	struct ext4_extent_header *eh;
315965922cb5SSergey Senozhatsky 	struct ext4_extent *last_ex;
316058590b06STheodore Ts'o 
316158590b06STheodore Ts'o 	if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
316258590b06STheodore Ts'o 		return 0;
316358590b06STheodore Ts'o 
316458590b06STheodore Ts'o 	depth = ext_depth(inode);
316558590b06STheodore Ts'o 	eh = path[depth].p_hdr;
316658590b06STheodore Ts'o 
316758590b06STheodore Ts'o 	if (unlikely(!eh->eh_entries)) {
316858590b06STheodore Ts'o 		EXT4_ERROR_INODE(inode, "eh->eh_entries == 0 and "
316958590b06STheodore Ts'o 				 "EOFBLOCKS_FL set");
317058590b06STheodore Ts'o 		return -EIO;
317158590b06STheodore Ts'o 	}
317258590b06STheodore Ts'o 	last_ex = EXT_LAST_EXTENT(eh);
317358590b06STheodore Ts'o 	/*
317458590b06STheodore Ts'o 	 * We should clear the EOFBLOCKS_FL flag if we are writing the
317558590b06STheodore Ts'o 	 * last block in the last extent in the file.  We test this by
317658590b06STheodore Ts'o 	 * first checking to see if the caller to
317758590b06STheodore Ts'o 	 * ext4_ext_get_blocks() was interested in the last block (or
317858590b06STheodore Ts'o 	 * a block beyond the last block) in the current extent.  If
317958590b06STheodore Ts'o 	 * this turns out to be false, we can bail out from this
318058590b06STheodore Ts'o 	 * function immediately.
318158590b06STheodore Ts'o 	 */
3182d002ebf1SEric Sandeen 	if (lblk + len < le32_to_cpu(last_ex->ee_block) +
318358590b06STheodore Ts'o 	    ext4_ext_get_actual_len(last_ex))
318458590b06STheodore Ts'o 		return 0;
318558590b06STheodore Ts'o 	/*
318658590b06STheodore Ts'o 	 * If the caller does appear to be planning to write at or
318758590b06STheodore Ts'o 	 * beyond the end of the current extent, we then test to see
318858590b06STheodore Ts'o 	 * if the current extent is the last extent in the file, by
318958590b06STheodore Ts'o 	 * checking to make sure it was reached via the rightmost node
319058590b06STheodore Ts'o 	 * at each level of the tree.
319158590b06STheodore Ts'o 	 */
319258590b06STheodore Ts'o 	for (i = depth-1; i >= 0; i--)
319358590b06STheodore Ts'o 		if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr))
319458590b06STheodore Ts'o 			return 0;
319558590b06STheodore Ts'o 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
319658590b06STheodore Ts'o 	return ext4_mark_inode_dirty(handle, inode);
319758590b06STheodore Ts'o }
319858590b06STheodore Ts'o 
31990031462bSMingming Cao static int
32000031462bSMingming Cao ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,
3201e35fd660STheodore Ts'o 			struct ext4_map_blocks *map,
32020031462bSMingming Cao 			struct ext4_ext_path *path, int flags,
3203e35fd660STheodore Ts'o 			unsigned int allocated, ext4_fsblk_t newblock)
32040031462bSMingming Cao {
32050031462bSMingming Cao 	int ret = 0;
32060031462bSMingming Cao 	int err = 0;
32078d5d02e6SMingming Cao 	ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
32080031462bSMingming Cao 
32090031462bSMingming Cao 	ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical"
32100031462bSMingming Cao 		  "block %llu, max_blocks %u, flags %d, allocated %u",
3211e35fd660STheodore Ts'o 		  inode->i_ino, (unsigned long long)map->m_lblk, map->m_len,
32120031462bSMingming Cao 		  flags, allocated);
32130031462bSMingming Cao 	ext4_ext_show_leaf(inode, path);
32140031462bSMingming Cao 
3215c7064ef1SJiaying Zhang 	/* get_block() before submit the IO, split the extent */
3216744692dcSJiaying Zhang 	if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
3217e35fd660STheodore Ts'o 		ret = ext4_split_unwritten_extents(handle, inode, map,
3218e35fd660STheodore Ts'o 						   path, flags);
32195f524950SMingming 		/*
32205f524950SMingming 		 * Flag the inode(non aio case) or end_io struct (aio case)
322125985edcSLucas De Marchi 		 * that this IO needs to conversion to written when IO is
32225f524950SMingming 		 * completed
32235f524950SMingming 		 */
3224e9e3bcecSEric Sandeen 		if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) {
3225bd2d0210STheodore Ts'o 			io->flag = EXT4_IO_END_UNWRITTEN;
3226e9e3bcecSEric Sandeen 			atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten);
3227e9e3bcecSEric Sandeen 		} else
322819f5fb7aSTheodore Ts'o 			ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3229744692dcSJiaying Zhang 		if (ext4_should_dioread_nolock(inode))
3230e35fd660STheodore Ts'o 			map->m_flags |= EXT4_MAP_UNINIT;
32310031462bSMingming Cao 		goto out;
32320031462bSMingming Cao 	}
3233c7064ef1SJiaying Zhang 	/* IO end_io complete, convert the filled extent to written */
3234744692dcSJiaying Zhang 	if ((flags & EXT4_GET_BLOCKS_CONVERT)) {
3235c7064ef1SJiaying Zhang 		ret = ext4_convert_unwritten_extents_endio(handle, inode,
32360031462bSMingming Cao 							path);
323758590b06STheodore Ts'o 		if (ret >= 0) {
3238b436b9beSJan Kara 			ext4_update_inode_fsync_trans(handle, inode, 1);
3239d002ebf1SEric Sandeen 			err = check_eofblocks_fl(handle, inode, map->m_lblk,
3240d002ebf1SEric Sandeen 						 path, map->m_len);
324158590b06STheodore Ts'o 		} else
324258590b06STheodore Ts'o 			err = ret;
32430031462bSMingming Cao 		goto out2;
32440031462bSMingming Cao 	}
32450031462bSMingming Cao 	/* buffered IO case */
32460031462bSMingming Cao 	/*
32470031462bSMingming Cao 	 * repeat fallocate creation request
32480031462bSMingming Cao 	 * we already have an unwritten extent
32490031462bSMingming Cao 	 */
32500031462bSMingming Cao 	if (flags & EXT4_GET_BLOCKS_UNINIT_EXT)
32510031462bSMingming Cao 		goto map_out;
32520031462bSMingming Cao 
32530031462bSMingming Cao 	/* buffered READ or buffered write_begin() lookup */
32540031462bSMingming Cao 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
32550031462bSMingming Cao 		/*
32560031462bSMingming Cao 		 * We have blocks reserved already.  We
32570031462bSMingming Cao 		 * return allocated blocks so that delalloc
32580031462bSMingming Cao 		 * won't do block reservation for us.  But
32590031462bSMingming Cao 		 * the buffer head will be unmapped so that
32600031462bSMingming Cao 		 * a read from the block returns 0s.
32610031462bSMingming Cao 		 */
3262e35fd660STheodore Ts'o 		map->m_flags |= EXT4_MAP_UNWRITTEN;
32630031462bSMingming Cao 		goto out1;
32640031462bSMingming Cao 	}
32650031462bSMingming Cao 
32660031462bSMingming Cao 	/* buffered write, writepage time, convert*/
3267e35fd660STheodore Ts'o 	ret = ext4_ext_convert_to_initialized(handle, inode, map, path);
326858590b06STheodore Ts'o 	if (ret >= 0) {
3269b436b9beSJan Kara 		ext4_update_inode_fsync_trans(handle, inode, 1);
3270d002ebf1SEric Sandeen 		err = check_eofblocks_fl(handle, inode, map->m_lblk, path,
3271d002ebf1SEric Sandeen 					 map->m_len);
327258590b06STheodore Ts'o 		if (err < 0)
327358590b06STheodore Ts'o 			goto out2;
327458590b06STheodore Ts'o 	}
327558590b06STheodore Ts'o 
32760031462bSMingming Cao out:
32770031462bSMingming Cao 	if (ret <= 0) {
32780031462bSMingming Cao 		err = ret;
32790031462bSMingming Cao 		goto out2;
32800031462bSMingming Cao 	} else
32810031462bSMingming Cao 		allocated = ret;
3282e35fd660STheodore Ts'o 	map->m_flags |= EXT4_MAP_NEW;
3283515f41c3SAneesh Kumar K.V 	/*
3284515f41c3SAneesh Kumar K.V 	 * if we allocated more blocks than requested
3285515f41c3SAneesh Kumar K.V 	 * we need to make sure we unmap the extra block
3286515f41c3SAneesh Kumar K.V 	 * allocated. The actual needed block will get
3287515f41c3SAneesh Kumar K.V 	 * unmapped later when we find the buffer_head marked
3288515f41c3SAneesh Kumar K.V 	 * new.
3289515f41c3SAneesh Kumar K.V 	 */
3290e35fd660STheodore Ts'o 	if (allocated > map->m_len) {
3291515f41c3SAneesh Kumar K.V 		unmap_underlying_metadata_blocks(inode->i_sb->s_bdev,
3292e35fd660STheodore Ts'o 					newblock + map->m_len,
3293e35fd660STheodore Ts'o 					allocated - map->m_len);
3294e35fd660STheodore Ts'o 		allocated = map->m_len;
3295515f41c3SAneesh Kumar K.V 	}
32965f634d06SAneesh Kumar K.V 
32975f634d06SAneesh Kumar K.V 	/*
32985f634d06SAneesh Kumar K.V 	 * If we have done fallocate with the offset that is already
32995f634d06SAneesh Kumar K.V 	 * delayed allocated, we would have block reservation
33005f634d06SAneesh Kumar K.V 	 * and quota reservation done in the delayed write path.
33015f634d06SAneesh Kumar K.V 	 * But fallocate would have already updated quota and block
33025f634d06SAneesh Kumar K.V 	 * count for this offset. So cancel these reservation
33035f634d06SAneesh Kumar K.V 	 */
33041296cc85SAneesh Kumar K.V 	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
33055f634d06SAneesh Kumar K.V 		ext4_da_update_reserve_space(inode, allocated, 0);
33065f634d06SAneesh Kumar K.V 
33070031462bSMingming Cao map_out:
3308e35fd660STheodore Ts'o 	map->m_flags |= EXT4_MAP_MAPPED;
33090031462bSMingming Cao out1:
3310e35fd660STheodore Ts'o 	if (allocated > map->m_len)
3311e35fd660STheodore Ts'o 		allocated = map->m_len;
33120031462bSMingming Cao 	ext4_ext_show_leaf(inode, path);
3313e35fd660STheodore Ts'o 	map->m_pblk = newblock;
3314e35fd660STheodore Ts'o 	map->m_len = allocated;
33150031462bSMingming Cao out2:
33160031462bSMingming Cao 	if (path) {
33170031462bSMingming Cao 		ext4_ext_drop_refs(path);
33180031462bSMingming Cao 		kfree(path);
33190031462bSMingming Cao 	}
33200031462bSMingming Cao 	return err ? err : allocated;
33210031462bSMingming Cao }
332258590b06STheodore Ts'o 
33230031462bSMingming Cao /*
3324f5ab0d1fSMingming Cao  * Block allocation/map/preallocation routine for extents based files
3325f5ab0d1fSMingming Cao  *
3326f5ab0d1fSMingming Cao  *
3327c278bfecSAneesh Kumar K.V  * Need to be called with
33280e855ac8SAneesh Kumar K.V  * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
33290e855ac8SAneesh Kumar K.V  * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
3330f5ab0d1fSMingming Cao  *
3331f5ab0d1fSMingming Cao  * return > 0, number of of blocks already mapped/allocated
3332f5ab0d1fSMingming Cao  *          if create == 0 and these are pre-allocated blocks
3333f5ab0d1fSMingming Cao  *          	buffer head is unmapped
3334f5ab0d1fSMingming Cao  *          otherwise blocks are mapped
3335f5ab0d1fSMingming Cao  *
3336f5ab0d1fSMingming Cao  * return = 0, if plain look up failed (blocks have not been allocated)
3337f5ab0d1fSMingming Cao  *          buffer head is unmapped
3338f5ab0d1fSMingming Cao  *
3339f5ab0d1fSMingming Cao  * return < 0, error case.
3340c278bfecSAneesh Kumar K.V  */
3341e35fd660STheodore Ts'o int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
3342e35fd660STheodore Ts'o 			struct ext4_map_blocks *map, int flags)
3343a86c6181SAlex Tomas {
3344a86c6181SAlex Tomas 	struct ext4_ext_path *path = NULL;
334558590b06STheodore Ts'o 	struct ext4_extent newex, *ex;
33460562e0baSJiaying Zhang 	ext4_fsblk_t newblock = 0;
3347b05e6ae5STheodore Ts'o 	int err = 0, depth, ret;
3348498e5f24STheodore Ts'o 	unsigned int allocated = 0;
3349e861304bSAllison Henderson 	unsigned int punched_out = 0;
3350e861304bSAllison Henderson 	unsigned int result = 0;
3351c9de560dSAlex Tomas 	struct ext4_allocation_request ar;
33528d5d02e6SMingming Cao 	ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
3353e861304bSAllison Henderson 	struct ext4_map_blocks punch_map;
3354a86c6181SAlex Tomas 
335584fe3befSMingming 	ext_debug("blocks %u/%u requested for inode %lu\n",
3356e35fd660STheodore Ts'o 		  map->m_lblk, map->m_len, inode->i_ino);
33570562e0baSJiaying Zhang 	trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags);
3358a86c6181SAlex Tomas 
3359a86c6181SAlex Tomas 	/* check in cache */
3360e861304bSAllison Henderson 	if (ext4_ext_in_cache(inode, map->m_lblk, &newex) &&
3361e861304bSAllison Henderson 		((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0)) {
3362b05e6ae5STheodore Ts'o 		if (!newex.ee_start_lo && !newex.ee_start_hi) {
3363c2177057STheodore Ts'o 			if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
336456055d3aSAmit Arora 				/*
336556055d3aSAmit Arora 				 * block isn't allocated yet and
336656055d3aSAmit Arora 				 * user doesn't want to allocate it
336756055d3aSAmit Arora 				 */
3368a86c6181SAlex Tomas 				goto out2;
3369a86c6181SAlex Tomas 			}
3370a86c6181SAlex Tomas 			/* we should allocate requested block */
3371b05e6ae5STheodore Ts'o 		} else {
3372a86c6181SAlex Tomas 			/* block is already allocated */
3373e35fd660STheodore Ts'o 			newblock = map->m_lblk
3374a86c6181SAlex Tomas 				   - le32_to_cpu(newex.ee_block)
3375bf89d16fSTheodore Ts'o 				   + ext4_ext_pblock(&newex);
3376d0d856e8SRandy Dunlap 			/* number of remaining blocks in the extent */
3377b939e376SAneesh Kumar K.V 			allocated = ext4_ext_get_actual_len(&newex) -
3378e35fd660STheodore Ts'o 				(map->m_lblk - le32_to_cpu(newex.ee_block));
3379a86c6181SAlex Tomas 			goto out;
3380a86c6181SAlex Tomas 		}
3381a86c6181SAlex Tomas 	}
3382a86c6181SAlex Tomas 
3383a86c6181SAlex Tomas 	/* find extent for this block */
3384e35fd660STheodore Ts'o 	path = ext4_ext_find_extent(inode, map->m_lblk, NULL);
3385a86c6181SAlex Tomas 	if (IS_ERR(path)) {
3386a86c6181SAlex Tomas 		err = PTR_ERR(path);
3387a86c6181SAlex Tomas 		path = NULL;
3388a86c6181SAlex Tomas 		goto out2;
3389a86c6181SAlex Tomas 	}
3390a86c6181SAlex Tomas 
3391a86c6181SAlex Tomas 	depth = ext_depth(inode);
3392a86c6181SAlex Tomas 
3393a86c6181SAlex Tomas 	/*
3394d0d856e8SRandy Dunlap 	 * consistent leaf must not be empty;
3395d0d856e8SRandy Dunlap 	 * this situation is possible, though, _during_ tree modification;
3396a86c6181SAlex Tomas 	 * this is why assert can't be put in ext4_ext_find_extent()
3397a86c6181SAlex Tomas 	 */
3398273df556SFrank Mayhar 	if (unlikely(path[depth].p_ext == NULL && depth != 0)) {
3399273df556SFrank Mayhar 		EXT4_ERROR_INODE(inode, "bad extent address "
3400f70f362bSTheodore Ts'o 				 "lblock: %lu, depth: %d pblock %lld",
3401f70f362bSTheodore Ts'o 				 (unsigned long) map->m_lblk, depth,
3402f70f362bSTheodore Ts'o 				 path[depth].p_block);
3403034fb4c9SSurbhi Palande 		err = -EIO;
3404034fb4c9SSurbhi Palande 		goto out2;
3405034fb4c9SSurbhi Palande 	}
3406a86c6181SAlex Tomas 
34077e028976SAvantika Mathur 	ex = path[depth].p_ext;
34087e028976SAvantika Mathur 	if (ex) {
3409725d26d3SAneesh Kumar K.V 		ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
3410bf89d16fSTheodore Ts'o 		ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
3411a2df2a63SAmit Arora 		unsigned short ee_len;
3412471d4011SSuparna Bhattacharya 
3413471d4011SSuparna Bhattacharya 		/*
3414471d4011SSuparna Bhattacharya 		 * Uninitialized extents are treated as holes, except that
341556055d3aSAmit Arora 		 * we split out initialized portions during a write.
3416471d4011SSuparna Bhattacharya 		 */
3417a2df2a63SAmit Arora 		ee_len = ext4_ext_get_actual_len(ex);
3418d0d856e8SRandy Dunlap 		/* if found extent covers block, simply return it */
3419e35fd660STheodore Ts'o 		if (in_range(map->m_lblk, ee_block, ee_len)) {
3420e35fd660STheodore Ts'o 			newblock = map->m_lblk - ee_block + ee_start;
3421d0d856e8SRandy Dunlap 			/* number of remaining blocks in the extent */
3422e35fd660STheodore Ts'o 			allocated = ee_len - (map->m_lblk - ee_block);
3423e35fd660STheodore Ts'o 			ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk,
3424a86c6181SAlex Tomas 				  ee_block, ee_len, newblock);
342556055d3aSAmit Arora 
3426e861304bSAllison Henderson 			if ((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0) {
3427e861304bSAllison Henderson 				/*
3428e861304bSAllison Henderson 				 * Do not put uninitialized extent
3429e861304bSAllison Henderson 				 * in the cache
3430e861304bSAllison Henderson 				 */
343156055d3aSAmit Arora 				if (!ext4_ext_is_uninitialized(ex)) {
3432a2df2a63SAmit Arora 					ext4_ext_put_in_cache(inode, ee_block,
3433b05e6ae5STheodore Ts'o 						ee_len, ee_start);
3434a86c6181SAlex Tomas 					goto out;
3435a86c6181SAlex Tomas 				}
3436e861304bSAllison Henderson 				ret = ext4_ext_handle_uninitialized_extents(
3437e861304bSAllison Henderson 					handle, inode, map, path, flags,
3438e861304bSAllison Henderson 					allocated, newblock);
34390031462bSMingming Cao 				return ret;
344056055d3aSAmit Arora 			}
3441e861304bSAllison Henderson 
3442e861304bSAllison Henderson 			/*
3443e861304bSAllison Henderson 			 * Punch out the map length, but only to the
3444e861304bSAllison Henderson 			 * end of the extent
3445e861304bSAllison Henderson 			 */
3446e861304bSAllison Henderson 			punched_out = allocated < map->m_len ?
3447e861304bSAllison Henderson 				allocated : map->m_len;
3448e861304bSAllison Henderson 
3449e861304bSAllison Henderson 			/*
3450e861304bSAllison Henderson 			 * Sense extents need to be converted to
3451e861304bSAllison Henderson 			 * uninitialized, they must fit in an
3452e861304bSAllison Henderson 			 * uninitialized extent
3453e861304bSAllison Henderson 			 */
3454e861304bSAllison Henderson 			if (punched_out > EXT_UNINIT_MAX_LEN)
3455e861304bSAllison Henderson 				punched_out = EXT_UNINIT_MAX_LEN;
3456e861304bSAllison Henderson 
3457e861304bSAllison Henderson 			punch_map.m_lblk = map->m_lblk;
3458e861304bSAllison Henderson 			punch_map.m_pblk = newblock;
3459e861304bSAllison Henderson 			punch_map.m_len = punched_out;
3460e861304bSAllison Henderson 			punch_map.m_flags = 0;
3461e861304bSAllison Henderson 
3462e861304bSAllison Henderson 			/* Check to see if the extent needs to be split */
3463e861304bSAllison Henderson 			if (punch_map.m_len != ee_len ||
3464e861304bSAllison Henderson 				punch_map.m_lblk != ee_block) {
3465e861304bSAllison Henderson 
3466e861304bSAllison Henderson 				ret = ext4_split_extent(handle, inode,
3467e861304bSAllison Henderson 				path, &punch_map, 0,
3468e861304bSAllison Henderson 				EXT4_GET_BLOCKS_PUNCH_OUT_EXT |
3469e861304bSAllison Henderson 				EXT4_GET_BLOCKS_PRE_IO);
3470e861304bSAllison Henderson 
3471e861304bSAllison Henderson 				if (ret < 0) {
3472e861304bSAllison Henderson 					err = ret;
3473e861304bSAllison Henderson 					goto out2;
3474e861304bSAllison Henderson 				}
3475e861304bSAllison Henderson 				/*
3476e861304bSAllison Henderson 				 * find extent for the block at
3477e861304bSAllison Henderson 				 * the start of the hole
3478e861304bSAllison Henderson 				 */
3479e861304bSAllison Henderson 				ext4_ext_drop_refs(path);
3480e861304bSAllison Henderson 				kfree(path);
3481e861304bSAllison Henderson 
3482e861304bSAllison Henderson 				path = ext4_ext_find_extent(inode,
3483e861304bSAllison Henderson 				map->m_lblk, NULL);
3484e861304bSAllison Henderson 				if (IS_ERR(path)) {
3485e861304bSAllison Henderson 					err = PTR_ERR(path);
3486e861304bSAllison Henderson 					path = NULL;
3487e861304bSAllison Henderson 					goto out2;
3488e861304bSAllison Henderson 				}
3489e861304bSAllison Henderson 
3490e861304bSAllison Henderson 				depth = ext_depth(inode);
3491e861304bSAllison Henderson 				ex = path[depth].p_ext;
3492e861304bSAllison Henderson 				ee_len = ext4_ext_get_actual_len(ex);
3493e861304bSAllison Henderson 				ee_block = le32_to_cpu(ex->ee_block);
3494e861304bSAllison Henderson 				ee_start = ext4_ext_pblock(ex);
3495e861304bSAllison Henderson 
3496e861304bSAllison Henderson 			}
3497e861304bSAllison Henderson 
3498e861304bSAllison Henderson 			ext4_ext_mark_uninitialized(ex);
3499e861304bSAllison Henderson 
3500e861304bSAllison Henderson 			err = ext4_ext_remove_space(inode, map->m_lblk,
3501e861304bSAllison Henderson 				map->m_lblk + punched_out);
3502e861304bSAllison Henderson 
3503e861304bSAllison Henderson 			goto out2;
3504e861304bSAllison Henderson 		}
3505a86c6181SAlex Tomas 	}
3506a86c6181SAlex Tomas 
3507a86c6181SAlex Tomas 	/*
3508d0d856e8SRandy Dunlap 	 * requested block isn't allocated yet;
3509a86c6181SAlex Tomas 	 * we couldn't try to create block if create flag is zero
3510a86c6181SAlex Tomas 	 */
3511c2177057STheodore Ts'o 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
351256055d3aSAmit Arora 		/*
351356055d3aSAmit Arora 		 * put just found gap into cache to speed up
351456055d3aSAmit Arora 		 * subsequent requests
351556055d3aSAmit Arora 		 */
3516e35fd660STheodore Ts'o 		ext4_ext_put_gap_in_cache(inode, path, map->m_lblk);
3517a86c6181SAlex Tomas 		goto out2;
3518a86c6181SAlex Tomas 	}
3519a86c6181SAlex Tomas 	/*
3520c2ea3fdeSTheodore Ts'o 	 * Okay, we need to do block allocation.
3521a86c6181SAlex Tomas 	 */
3522a86c6181SAlex Tomas 
3523c9de560dSAlex Tomas 	/* find neighbour allocated blocks */
3524e35fd660STheodore Ts'o 	ar.lleft = map->m_lblk;
3525c9de560dSAlex Tomas 	err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
3526c9de560dSAlex Tomas 	if (err)
3527c9de560dSAlex Tomas 		goto out2;
3528e35fd660STheodore Ts'o 	ar.lright = map->m_lblk;
3529c9de560dSAlex Tomas 	err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright);
3530c9de560dSAlex Tomas 	if (err)
3531c9de560dSAlex Tomas 		goto out2;
353225d14f98SAmit Arora 
3533749269faSAmit Arora 	/*
3534749269faSAmit Arora 	 * See if request is beyond maximum number of blocks we can have in
3535749269faSAmit Arora 	 * a single extent. For an initialized extent this limit is
3536749269faSAmit Arora 	 * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
3537749269faSAmit Arora 	 * EXT_UNINIT_MAX_LEN.
3538749269faSAmit Arora 	 */
3539e35fd660STheodore Ts'o 	if (map->m_len > EXT_INIT_MAX_LEN &&
3540c2177057STheodore Ts'o 	    !(flags & EXT4_GET_BLOCKS_UNINIT_EXT))
3541e35fd660STheodore Ts'o 		map->m_len = EXT_INIT_MAX_LEN;
3542e35fd660STheodore Ts'o 	else if (map->m_len > EXT_UNINIT_MAX_LEN &&
3543c2177057STheodore Ts'o 		 (flags & EXT4_GET_BLOCKS_UNINIT_EXT))
3544e35fd660STheodore Ts'o 		map->m_len = EXT_UNINIT_MAX_LEN;
3545749269faSAmit Arora 
3546e35fd660STheodore Ts'o 	/* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */
3547e35fd660STheodore Ts'o 	newex.ee_block = cpu_to_le32(map->m_lblk);
3548e35fd660STheodore Ts'o 	newex.ee_len = cpu_to_le16(map->m_len);
354925d14f98SAmit Arora 	err = ext4_ext_check_overlap(inode, &newex, path);
355025d14f98SAmit Arora 	if (err)
3551b939e376SAneesh Kumar K.V 		allocated = ext4_ext_get_actual_len(&newex);
355225d14f98SAmit Arora 	else
3553e35fd660STheodore Ts'o 		allocated = map->m_len;
3554c9de560dSAlex Tomas 
3555c9de560dSAlex Tomas 	/* allocate new block */
3556c9de560dSAlex Tomas 	ar.inode = inode;
3557e35fd660STheodore Ts'o 	ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk);
3558e35fd660STheodore Ts'o 	ar.logical = map->m_lblk;
3559c9de560dSAlex Tomas 	ar.len = allocated;
3560c9de560dSAlex Tomas 	if (S_ISREG(inode->i_mode))
3561c9de560dSAlex Tomas 		ar.flags = EXT4_MB_HINT_DATA;
3562c9de560dSAlex Tomas 	else
3563c9de560dSAlex Tomas 		/* disable in-core preallocation for non-regular files */
3564c9de560dSAlex Tomas 		ar.flags = 0;
3565556b27abSVivek Haldar 	if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE)
3566556b27abSVivek Haldar 		ar.flags |= EXT4_MB_HINT_NOPREALLOC;
3567c9de560dSAlex Tomas 	newblock = ext4_mb_new_blocks(handle, &ar, &err);
3568a86c6181SAlex Tomas 	if (!newblock)
3569a86c6181SAlex Tomas 		goto out2;
357084fe3befSMingming 	ext_debug("allocate new block: goal %llu, found %llu/%u\n",
3571498e5f24STheodore Ts'o 		  ar.goal, newblock, allocated);
3572a86c6181SAlex Tomas 
3573a86c6181SAlex Tomas 	/* try to insert new extent into found leaf and return */
3574f65e6fbaSAlex Tomas 	ext4_ext_store_pblock(&newex, newblock);
3575c9de560dSAlex Tomas 	newex.ee_len = cpu_to_le16(ar.len);
35768d5d02e6SMingming Cao 	/* Mark uninitialized */
35778d5d02e6SMingming Cao 	if (flags & EXT4_GET_BLOCKS_UNINIT_EXT){
3578a2df2a63SAmit Arora 		ext4_ext_mark_uninitialized(&newex);
35798d5d02e6SMingming Cao 		/*
3580744692dcSJiaying Zhang 		 * io_end structure was created for every IO write to an
358125985edcSLucas De Marchi 		 * uninitialized extent. To avoid unnecessary conversion,
3582744692dcSJiaying Zhang 		 * here we flag the IO that really needs the conversion.
35835f524950SMingming 		 * For non asycn direct IO case, flag the inode state
358425985edcSLucas De Marchi 		 * that we need to perform conversion when IO is done.
35858d5d02e6SMingming Cao 		 */
3586744692dcSJiaying Zhang 		if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
3587e9e3bcecSEric Sandeen 			if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) {
3588bd2d0210STheodore Ts'o 				io->flag = EXT4_IO_END_UNWRITTEN;
3589e9e3bcecSEric Sandeen 				atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten);
3590e9e3bcecSEric Sandeen 			} else
359119f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
359219f5fb7aSTheodore Ts'o 						     EXT4_STATE_DIO_UNWRITTEN);
35935f524950SMingming 		}
3594744692dcSJiaying Zhang 		if (ext4_should_dioread_nolock(inode))
3595e35fd660STheodore Ts'o 			map->m_flags |= EXT4_MAP_UNINIT;
35968d5d02e6SMingming Cao 	}
3597c8d46e41SJiaying Zhang 
3598d002ebf1SEric Sandeen 	err = check_eofblocks_fl(handle, inode, map->m_lblk, path, ar.len);
359958590b06STheodore Ts'o 	if (err)
3600273df556SFrank Mayhar 		goto out2;
360158590b06STheodore Ts'o 
36020031462bSMingming Cao 	err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
3603315054f0SAlex Tomas 	if (err) {
3604315054f0SAlex Tomas 		/* free data blocks we just allocated */
3605c9de560dSAlex Tomas 		/* not a good idea to call discard here directly,
3606c9de560dSAlex Tomas 		 * but otherwise we'd need to call it every free() */
3607c2ea3fdeSTheodore Ts'o 		ext4_discard_preallocations(inode);
36087dc57615SPeter Huewe 		ext4_free_blocks(handle, inode, NULL, ext4_ext_pblock(&newex),
3609b939e376SAneesh Kumar K.V 				 ext4_ext_get_actual_len(&newex), 0);
3610a86c6181SAlex Tomas 		goto out2;
3611315054f0SAlex Tomas 	}
3612a86c6181SAlex Tomas 
3613a86c6181SAlex Tomas 	/* previous routine could use block we allocated */
3614bf89d16fSTheodore Ts'o 	newblock = ext4_ext_pblock(&newex);
3615b939e376SAneesh Kumar K.V 	allocated = ext4_ext_get_actual_len(&newex);
3616e35fd660STheodore Ts'o 	if (allocated > map->m_len)
3617e35fd660STheodore Ts'o 		allocated = map->m_len;
3618e35fd660STheodore Ts'o 	map->m_flags |= EXT4_MAP_NEW;
3619a86c6181SAlex Tomas 
3620b436b9beSJan Kara 	/*
36215f634d06SAneesh Kumar K.V 	 * Update reserved blocks/metadata blocks after successful
36225f634d06SAneesh Kumar K.V 	 * block allocation which had been deferred till now.
36235f634d06SAneesh Kumar K.V 	 */
36241296cc85SAneesh Kumar K.V 	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
36255f634d06SAneesh Kumar K.V 		ext4_da_update_reserve_space(inode, allocated, 1);
36265f634d06SAneesh Kumar K.V 
36275f634d06SAneesh Kumar K.V 	/*
3628b436b9beSJan Kara 	 * Cache the extent and update transaction to commit on fdatasync only
3629b436b9beSJan Kara 	 * when it is _not_ an uninitialized extent.
3630b436b9beSJan Kara 	 */
3631b436b9beSJan Kara 	if ((flags & EXT4_GET_BLOCKS_UNINIT_EXT) == 0) {
3632b05e6ae5STheodore Ts'o 		ext4_ext_put_in_cache(inode, map->m_lblk, allocated, newblock);
3633b436b9beSJan Kara 		ext4_update_inode_fsync_trans(handle, inode, 1);
3634b436b9beSJan Kara 	} else
3635b436b9beSJan Kara 		ext4_update_inode_fsync_trans(handle, inode, 0);
3636a86c6181SAlex Tomas out:
3637e35fd660STheodore Ts'o 	if (allocated > map->m_len)
3638e35fd660STheodore Ts'o 		allocated = map->m_len;
3639a86c6181SAlex Tomas 	ext4_ext_show_leaf(inode, path);
3640e35fd660STheodore Ts'o 	map->m_flags |= EXT4_MAP_MAPPED;
3641e35fd660STheodore Ts'o 	map->m_pblk = newblock;
3642e35fd660STheodore Ts'o 	map->m_len = allocated;
3643a86c6181SAlex Tomas out2:
3644a86c6181SAlex Tomas 	if (path) {
3645a86c6181SAlex Tomas 		ext4_ext_drop_refs(path);
3646a86c6181SAlex Tomas 		kfree(path);
3647a86c6181SAlex Tomas 	}
36480562e0baSJiaying Zhang 	trace_ext4_ext_map_blocks_exit(inode, map->m_lblk,
36490562e0baSJiaying Zhang 		newblock, map->m_len, err ? err : allocated);
3650e861304bSAllison Henderson 
3651e861304bSAllison Henderson 	result = (flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) ?
3652e861304bSAllison Henderson 			punched_out : allocated;
3653e861304bSAllison Henderson 
3654e861304bSAllison Henderson 	return err ? err : result;
3655a86c6181SAlex Tomas }
3656a86c6181SAlex Tomas 
3657cf108bcaSJan Kara void ext4_ext_truncate(struct inode *inode)
3658a86c6181SAlex Tomas {
3659a86c6181SAlex Tomas 	struct address_space *mapping = inode->i_mapping;
3660a86c6181SAlex Tomas 	struct super_block *sb = inode->i_sb;
3661725d26d3SAneesh Kumar K.V 	ext4_lblk_t last_block;
3662a86c6181SAlex Tomas 	handle_t *handle;
3663a86c6181SAlex Tomas 	int err = 0;
3664a86c6181SAlex Tomas 
3665a86c6181SAlex Tomas 	/*
36663889fd57SJiaying Zhang 	 * finish any pending end_io work so we won't run the risk of
36673889fd57SJiaying Zhang 	 * converting any truncated blocks to initialized later
36683889fd57SJiaying Zhang 	 */
36693889fd57SJiaying Zhang 	ext4_flush_completed_IO(inode);
36703889fd57SJiaying Zhang 
36713889fd57SJiaying Zhang 	/*
3672a86c6181SAlex Tomas 	 * probably first extent we're gonna free will be last in block
3673a86c6181SAlex Tomas 	 */
3674f3bd1f3fSMingming Cao 	err = ext4_writepage_trans_blocks(inode);
3675a86c6181SAlex Tomas 	handle = ext4_journal_start(inode, err);
3676cf108bcaSJan Kara 	if (IS_ERR(handle))
3677a86c6181SAlex Tomas 		return;
3678a86c6181SAlex Tomas 
3679cf108bcaSJan Kara 	if (inode->i_size & (sb->s_blocksize - 1))
3680cf108bcaSJan Kara 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3681a86c6181SAlex Tomas 
36829ddfc3dcSJan Kara 	if (ext4_orphan_add(handle, inode))
36839ddfc3dcSJan Kara 		goto out_stop;
36849ddfc3dcSJan Kara 
36850e855ac8SAneesh Kumar K.V 	down_write(&EXT4_I(inode)->i_data_sem);
3686a86c6181SAlex Tomas 	ext4_ext_invalidate_cache(inode);
3687a86c6181SAlex Tomas 
3688c2ea3fdeSTheodore Ts'o 	ext4_discard_preallocations(inode);
3689c9de560dSAlex Tomas 
3690a86c6181SAlex Tomas 	/*
3691d0d856e8SRandy Dunlap 	 * TODO: optimization is possible here.
3692d0d856e8SRandy Dunlap 	 * Probably we need not scan at all,
3693d0d856e8SRandy Dunlap 	 * because page truncation is enough.
3694a86c6181SAlex Tomas 	 */
3695a86c6181SAlex Tomas 
3696a86c6181SAlex Tomas 	/* we have to know where to truncate from in crash case */
3697a86c6181SAlex Tomas 	EXT4_I(inode)->i_disksize = inode->i_size;
3698a86c6181SAlex Tomas 	ext4_mark_inode_dirty(handle, inode);
3699a86c6181SAlex Tomas 
3700a86c6181SAlex Tomas 	last_block = (inode->i_size + sb->s_blocksize - 1)
3701a86c6181SAlex Tomas 			>> EXT4_BLOCK_SIZE_BITS(sb);
3702d583fb87SAllison Henderson 	err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCK);
3703a86c6181SAlex Tomas 
3704a86c6181SAlex Tomas 	/* In a multi-transaction truncate, we only make the final
370556055d3aSAmit Arora 	 * transaction synchronous.
370656055d3aSAmit Arora 	 */
3707a86c6181SAlex Tomas 	if (IS_SYNC(inode))
37080390131bSFrank Mayhar 		ext4_handle_sync(handle);
3709a86c6181SAlex Tomas 
37109ddfc3dcSJan Kara 	up_write(&EXT4_I(inode)->i_data_sem);
3711f6d2f6b3SEric Gouriou 
3712f6d2f6b3SEric Gouriou out_stop:
3713a86c6181SAlex Tomas 	/*
3714d0d856e8SRandy Dunlap 	 * If this was a simple ftruncate() and the file will remain alive,
3715a86c6181SAlex Tomas 	 * then we need to clear up the orphan record which we created above.
3716a86c6181SAlex Tomas 	 * However, if this was a real unlink then we were called by
3717a86c6181SAlex Tomas 	 * ext4_delete_inode(), and we allow that function to clean up the
3718a86c6181SAlex Tomas 	 * orphan info for us.
3719a86c6181SAlex Tomas 	 */
3720a86c6181SAlex Tomas 	if (inode->i_nlink)
3721a86c6181SAlex Tomas 		ext4_orphan_del(handle, inode);
3722a86c6181SAlex Tomas 
3723ef737728SSolofo Ramangalahy 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3724ef737728SSolofo Ramangalahy 	ext4_mark_inode_dirty(handle, inode);
3725a86c6181SAlex Tomas 	ext4_journal_stop(handle);
3726a86c6181SAlex Tomas }
3727a86c6181SAlex Tomas 
3728fd28784aSAneesh Kumar K.V static void ext4_falloc_update_inode(struct inode *inode,
3729fd28784aSAneesh Kumar K.V 				int mode, loff_t new_size, int update_ctime)
3730fd28784aSAneesh Kumar K.V {
3731fd28784aSAneesh Kumar K.V 	struct timespec now;
3732fd28784aSAneesh Kumar K.V 
3733fd28784aSAneesh Kumar K.V 	if (update_ctime) {
3734fd28784aSAneesh Kumar K.V 		now = current_fs_time(inode->i_sb);
3735fd28784aSAneesh Kumar K.V 		if (!timespec_equal(&inode->i_ctime, &now))
3736fd28784aSAneesh Kumar K.V 			inode->i_ctime = now;
3737fd28784aSAneesh Kumar K.V 	}
3738fd28784aSAneesh Kumar K.V 	/*
3739fd28784aSAneesh Kumar K.V 	 * Update only when preallocation was requested beyond
3740fd28784aSAneesh Kumar K.V 	 * the file size.
3741fd28784aSAneesh Kumar K.V 	 */
3742cf17fea6SAneesh Kumar K.V 	if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3743cf17fea6SAneesh Kumar K.V 		if (new_size > i_size_read(inode))
3744fd28784aSAneesh Kumar K.V 			i_size_write(inode, new_size);
3745cf17fea6SAneesh Kumar K.V 		if (new_size > EXT4_I(inode)->i_disksize)
3746cf17fea6SAneesh Kumar K.V 			ext4_update_i_disksize(inode, new_size);
3747c8d46e41SJiaying Zhang 	} else {
3748c8d46e41SJiaying Zhang 		/*
3749c8d46e41SJiaying Zhang 		 * Mark that we allocate beyond EOF so the subsequent truncate
3750c8d46e41SJiaying Zhang 		 * can proceed even if the new size is the same as i_size.
3751c8d46e41SJiaying Zhang 		 */
3752c8d46e41SJiaying Zhang 		if (new_size > i_size_read(inode))
375312e9b892SDmitry Monakhov 			ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3754fd28784aSAneesh Kumar K.V 	}
3755fd28784aSAneesh Kumar K.V 
3756fd28784aSAneesh Kumar K.V }
3757fd28784aSAneesh Kumar K.V 
3758a2df2a63SAmit Arora /*
37592fe17c10SChristoph Hellwig  * preallocate space for a file. This implements ext4's fallocate file
3760a2df2a63SAmit Arora  * operation, which gets called from sys_fallocate system call.
3761a2df2a63SAmit Arora  * For block-mapped files, posix_fallocate should fall back to the method
3762a2df2a63SAmit Arora  * of writing zeroes to the required new blocks (the same behavior which is
3763a2df2a63SAmit Arora  * expected for file systems which do not support fallocate() system call).
3764a2df2a63SAmit Arora  */
37652fe17c10SChristoph Hellwig long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
3766a2df2a63SAmit Arora {
37672fe17c10SChristoph Hellwig 	struct inode *inode = file->f_path.dentry->d_inode;
3768a2df2a63SAmit Arora 	handle_t *handle;
3769fd28784aSAneesh Kumar K.V 	loff_t new_size;
3770498e5f24STheodore Ts'o 	unsigned int max_blocks;
3771a2df2a63SAmit Arora 	int ret = 0;
3772a2df2a63SAmit Arora 	int ret2 = 0;
3773a2df2a63SAmit Arora 	int retries = 0;
37742ed88685STheodore Ts'o 	struct ext4_map_blocks map;
3775a2df2a63SAmit Arora 	unsigned int credits, blkbits = inode->i_blkbits;
3776a2df2a63SAmit Arora 
3777a2df2a63SAmit Arora 	/*
3778a2df2a63SAmit Arora 	 * currently supporting (pre)allocate mode for extent-based
3779a2df2a63SAmit Arora 	 * files _only_
3780a2df2a63SAmit Arora 	 */
378112e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
3782a2df2a63SAmit Arora 		return -EOPNOTSUPP;
3783a2df2a63SAmit Arora 
3784a4bb6b64SAllison Henderson 	/* Return error if mode is not supported */
3785a4bb6b64SAllison Henderson 	if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
3786a4bb6b64SAllison Henderson 		return -EOPNOTSUPP;
3787a4bb6b64SAllison Henderson 
3788a4bb6b64SAllison Henderson 	if (mode & FALLOC_FL_PUNCH_HOLE)
3789a4bb6b64SAllison Henderson 		return ext4_punch_hole(file, offset, len);
3790a4bb6b64SAllison Henderson 
37910562e0baSJiaying Zhang 	trace_ext4_fallocate_enter(inode, offset, len, mode);
37922ed88685STheodore Ts'o 	map.m_lblk = offset >> blkbits;
3793fd28784aSAneesh Kumar K.V 	/*
3794fd28784aSAneesh Kumar K.V 	 * We can't just convert len to max_blocks because
3795fd28784aSAneesh Kumar K.V 	 * If blocksize = 4096 offset = 3072 and len = 2048
3796fd28784aSAneesh Kumar K.V 	 */
3797a2df2a63SAmit Arora 	max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits)
37982ed88685STheodore Ts'o 		- map.m_lblk;
3799a2df2a63SAmit Arora 	/*
3800f3bd1f3fSMingming Cao 	 * credits to insert 1 extent into extent tree
3801a2df2a63SAmit Arora 	 */
3802f3bd1f3fSMingming Cao 	credits = ext4_chunk_trans_blocks(inode, max_blocks);
380355bd725aSAneesh Kumar K.V 	mutex_lock(&inode->i_mutex);
38046d19c42bSNikanth Karthikesan 	ret = inode_newsize_ok(inode, (len + offset));
38056d19c42bSNikanth Karthikesan 	if (ret) {
38066d19c42bSNikanth Karthikesan 		mutex_unlock(&inode->i_mutex);
38070562e0baSJiaying Zhang 		trace_ext4_fallocate_exit(inode, offset, max_blocks, ret);
38086d19c42bSNikanth Karthikesan 		return ret;
38096d19c42bSNikanth Karthikesan 	}
3810a2df2a63SAmit Arora retry:
3811a2df2a63SAmit Arora 	while (ret >= 0 && ret < max_blocks) {
38122ed88685STheodore Ts'o 		map.m_lblk = map.m_lblk + ret;
38132ed88685STheodore Ts'o 		map.m_len = max_blocks = max_blocks - ret;
3814a2df2a63SAmit Arora 		handle = ext4_journal_start(inode, credits);
3815a2df2a63SAmit Arora 		if (IS_ERR(handle)) {
3816a2df2a63SAmit Arora 			ret = PTR_ERR(handle);
3817a2df2a63SAmit Arora 			break;
3818a2df2a63SAmit Arora 		}
38192ed88685STheodore Ts'o 		ret = ext4_map_blocks(handle, inode, &map,
3820556b27abSVivek Haldar 				      EXT4_GET_BLOCKS_CREATE_UNINIT_EXT |
3821556b27abSVivek Haldar 				      EXT4_GET_BLOCKS_NO_NORMALIZE);
3822221879c9SAneesh Kumar K.V 		if (ret <= 0) {
38232c98615dSAneesh Kumar K.V #ifdef EXT4FS_DEBUG
38242c98615dSAneesh Kumar K.V 			WARN_ON(ret <= 0);
3825e35fd660STheodore Ts'o 			printk(KERN_ERR "%s: ext4_ext_map_blocks "
38262c98615dSAneesh Kumar K.V 				    "returned error inode#%lu, block=%u, "
38279fd9784cSThadeu Lima de Souza Cascardo 				    "max_blocks=%u", __func__,
3828a6371b63SKazuya Mio 				    inode->i_ino, map.m_lblk, max_blocks);
38292c98615dSAneesh Kumar K.V #endif
3830a2df2a63SAmit Arora 			ext4_mark_inode_dirty(handle, inode);
3831a2df2a63SAmit Arora 			ret2 = ext4_journal_stop(handle);
3832a2df2a63SAmit Arora 			break;
3833a2df2a63SAmit Arora 		}
38342ed88685STheodore Ts'o 		if ((map.m_lblk + ret) >= (EXT4_BLOCK_ALIGN(offset + len,
3835fd28784aSAneesh Kumar K.V 						blkbits) >> blkbits))
3836fd28784aSAneesh Kumar K.V 			new_size = offset + len;
3837fd28784aSAneesh Kumar K.V 		else
38382ed88685STheodore Ts'o 			new_size = (map.m_lblk + ret) << blkbits;
3839a2df2a63SAmit Arora 
3840fd28784aSAneesh Kumar K.V 		ext4_falloc_update_inode(inode, mode, new_size,
38412ed88685STheodore Ts'o 					 (map.m_flags & EXT4_MAP_NEW));
3842a2df2a63SAmit Arora 		ext4_mark_inode_dirty(handle, inode);
3843a2df2a63SAmit Arora 		ret2 = ext4_journal_stop(handle);
3844a2df2a63SAmit Arora 		if (ret2)
3845a2df2a63SAmit Arora 			break;
3846a2df2a63SAmit Arora 	}
3847fd28784aSAneesh Kumar K.V 	if (ret == -ENOSPC &&
3848fd28784aSAneesh Kumar K.V 			ext4_should_retry_alloc(inode->i_sb, &retries)) {
3849fd28784aSAneesh Kumar K.V 		ret = 0;
3850a2df2a63SAmit Arora 		goto retry;
3851a2df2a63SAmit Arora 	}
385255bd725aSAneesh Kumar K.V 	mutex_unlock(&inode->i_mutex);
38530562e0baSJiaying Zhang 	trace_ext4_fallocate_exit(inode, offset, max_blocks,
38540562e0baSJiaying Zhang 				ret > 0 ? ret2 : ret);
3855a2df2a63SAmit Arora 	return ret > 0 ? ret2 : ret;
3856a2df2a63SAmit Arora }
38576873fa0dSEric Sandeen 
38586873fa0dSEric Sandeen /*
38590031462bSMingming Cao  * This function convert a range of blocks to written extents
38600031462bSMingming Cao  * The caller of this function will pass the start offset and the size.
38610031462bSMingming Cao  * all unwritten extents within this range will be converted to
38620031462bSMingming Cao  * written extents.
38630031462bSMingming Cao  *
38640031462bSMingming Cao  * This function is called from the direct IO end io call back
38650031462bSMingming Cao  * function, to convert the fallocated extents after IO is completed.
3866109f5565SMingming  * Returns 0 on success.
38670031462bSMingming Cao  */
38680031462bSMingming Cao int ext4_convert_unwritten_extents(struct inode *inode, loff_t offset,
3869a1de02dcSEric Sandeen 				    ssize_t len)
38700031462bSMingming Cao {
38710031462bSMingming Cao 	handle_t *handle;
38720031462bSMingming Cao 	unsigned int max_blocks;
38730031462bSMingming Cao 	int ret = 0;
38740031462bSMingming Cao 	int ret2 = 0;
38752ed88685STheodore Ts'o 	struct ext4_map_blocks map;
38760031462bSMingming Cao 	unsigned int credits, blkbits = inode->i_blkbits;
38770031462bSMingming Cao 
38782ed88685STheodore Ts'o 	map.m_lblk = offset >> blkbits;
38790031462bSMingming Cao 	/*
38800031462bSMingming Cao 	 * We can't just convert len to max_blocks because
38810031462bSMingming Cao 	 * If blocksize = 4096 offset = 3072 and len = 2048
38820031462bSMingming Cao 	 */
38832ed88685STheodore Ts'o 	max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) -
38842ed88685STheodore Ts'o 		      map.m_lblk);
38850031462bSMingming Cao 	/*
38860031462bSMingming Cao 	 * credits to insert 1 extent into extent tree
38870031462bSMingming Cao 	 */
38880031462bSMingming Cao 	credits = ext4_chunk_trans_blocks(inode, max_blocks);
38890031462bSMingming Cao 	while (ret >= 0 && ret < max_blocks) {
38902ed88685STheodore Ts'o 		map.m_lblk += ret;
38912ed88685STheodore Ts'o 		map.m_len = (max_blocks -= ret);
38920031462bSMingming Cao 		handle = ext4_journal_start(inode, credits);
38930031462bSMingming Cao 		if (IS_ERR(handle)) {
38940031462bSMingming Cao 			ret = PTR_ERR(handle);
38950031462bSMingming Cao 			break;
38960031462bSMingming Cao 		}
38972ed88685STheodore Ts'o 		ret = ext4_map_blocks(handle, inode, &map,
3898c7064ef1SJiaying Zhang 				      EXT4_GET_BLOCKS_IO_CONVERT_EXT);
38990031462bSMingming Cao 		if (ret <= 0) {
39000031462bSMingming Cao 			WARN_ON(ret <= 0);
3901e35fd660STheodore Ts'o 			printk(KERN_ERR "%s: ext4_ext_map_blocks "
39020031462bSMingming Cao 				    "returned error inode#%lu, block=%u, "
39030031462bSMingming Cao 				    "max_blocks=%u", __func__,
39042ed88685STheodore Ts'o 				    inode->i_ino, map.m_lblk, map.m_len);
39050031462bSMingming Cao 		}
39060031462bSMingming Cao 		ext4_mark_inode_dirty(handle, inode);
39070031462bSMingming Cao 		ret2 = ext4_journal_stop(handle);
39080031462bSMingming Cao 		if (ret <= 0 || ret2 )
39090031462bSMingming Cao 			break;
39100031462bSMingming Cao 	}
39110031462bSMingming Cao 	return ret > 0 ? ret2 : ret;
39120031462bSMingming Cao }
39136d9c85ebSYongqiang Yang 
39140031462bSMingming Cao /*
39156873fa0dSEric Sandeen  * Callback function called for each extent to gather FIEMAP information.
39166873fa0dSEric Sandeen  */
39173a06d778SAneesh Kumar K.V static int ext4_ext_fiemap_cb(struct inode *inode, struct ext4_ext_path *path,
39186873fa0dSEric Sandeen 		       struct ext4_ext_cache *newex, struct ext4_extent *ex,
39196873fa0dSEric Sandeen 		       void *data)
39206873fa0dSEric Sandeen {
39216873fa0dSEric Sandeen 	__u64	logical;
39226873fa0dSEric Sandeen 	__u64	physical;
39236873fa0dSEric Sandeen 	__u64	length;
39246d9c85ebSYongqiang Yang 	loff_t	size;
39256873fa0dSEric Sandeen 	__u32	flags = 0;
39266d9c85ebSYongqiang Yang 	int		ret = 0;
39276d9c85ebSYongqiang Yang 	struct fiemap_extent_info *fieinfo = data;
39286d9c85ebSYongqiang Yang 	unsigned char blksize_bits;
39296873fa0dSEric Sandeen 
39306d9c85ebSYongqiang Yang 	blksize_bits = inode->i_sb->s_blocksize_bits;
39316873fa0dSEric Sandeen 	logical = (__u64)newex->ec_block << blksize_bits;
39326873fa0dSEric Sandeen 
3933b05e6ae5STheodore Ts'o 	if (newex->ec_start == 0) {
39346d9c85ebSYongqiang Yang 		/*
39356d9c85ebSYongqiang Yang 		 * No extent in extent-tree contains block @newex->ec_start,
39366d9c85ebSYongqiang Yang 		 * then the block may stay in 1)a hole or 2)delayed-extent.
39376d9c85ebSYongqiang Yang 		 *
39386d9c85ebSYongqiang Yang 		 * Holes or delayed-extents are processed as follows.
39396d9c85ebSYongqiang Yang 		 * 1. lookup dirty pages with specified range in pagecache.
39406d9c85ebSYongqiang Yang 		 *    If no page is got, then there is no delayed-extent and
39416d9c85ebSYongqiang Yang 		 *    return with EXT_CONTINUE.
39426d9c85ebSYongqiang Yang 		 * 2. find the 1st mapped buffer,
39436d9c85ebSYongqiang Yang 		 * 3. check if the mapped buffer is both in the request range
39446d9c85ebSYongqiang Yang 		 *    and a delayed buffer. If not, there is no delayed-extent,
39456d9c85ebSYongqiang Yang 		 *    then return.
39466d9c85ebSYongqiang Yang 		 * 4. a delayed-extent is found, the extent will be collected.
39476d9c85ebSYongqiang Yang 		 */
39486d9c85ebSYongqiang Yang 		ext4_lblk_t	end = 0;
39496d9c85ebSYongqiang Yang 		pgoff_t		last_offset;
39506873fa0dSEric Sandeen 		pgoff_t		offset;
39516d9c85ebSYongqiang Yang 		pgoff_t		index;
3952b221349fSYongqiang Yang 		pgoff_t		start_index = 0;
39536d9c85ebSYongqiang Yang 		struct page	**pages = NULL;
39546873fa0dSEric Sandeen 		struct buffer_head *bh = NULL;
39556d9c85ebSYongqiang Yang 		struct buffer_head *head = NULL;
39566d9c85ebSYongqiang Yang 		unsigned int nr_pages = PAGE_SIZE / sizeof(struct page *);
39576d9c85ebSYongqiang Yang 
39586d9c85ebSYongqiang Yang 		pages = kmalloc(PAGE_SIZE, GFP_KERNEL);
39596d9c85ebSYongqiang Yang 		if (pages == NULL)
39606d9c85ebSYongqiang Yang 			return -ENOMEM;
39616873fa0dSEric Sandeen 
39626873fa0dSEric Sandeen 		offset = logical >> PAGE_SHIFT;
39636d9c85ebSYongqiang Yang repeat:
39646d9c85ebSYongqiang Yang 		last_offset = offset;
39656d9c85ebSYongqiang Yang 		head = NULL;
39666d9c85ebSYongqiang Yang 		ret = find_get_pages_tag(inode->i_mapping, &offset,
39676d9c85ebSYongqiang Yang 					PAGECACHE_TAG_DIRTY, nr_pages, pages);
39686873fa0dSEric Sandeen 
39696d9c85ebSYongqiang Yang 		if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
39706d9c85ebSYongqiang Yang 			/* First time, try to find a mapped buffer. */
39716d9c85ebSYongqiang Yang 			if (ret == 0) {
39726d9c85ebSYongqiang Yang out:
39736d9c85ebSYongqiang Yang 				for (index = 0; index < ret; index++)
39746d9c85ebSYongqiang Yang 					page_cache_release(pages[index]);
39756d9c85ebSYongqiang Yang 				/* just a hole. */
39766d9c85ebSYongqiang Yang 				kfree(pages);
39776873fa0dSEric Sandeen 				return EXT_CONTINUE;
39786873fa0dSEric Sandeen 			}
3979b221349fSYongqiang Yang 			index = 0;
39806d9c85ebSYongqiang Yang 
3981b221349fSYongqiang Yang next_page:
39826d9c85ebSYongqiang Yang 			/* Try to find the 1st mapped buffer. */
3983b221349fSYongqiang Yang 			end = ((__u64)pages[index]->index << PAGE_SHIFT) >>
39846d9c85ebSYongqiang Yang 				  blksize_bits;
3985b221349fSYongqiang Yang 			if (!page_has_buffers(pages[index]))
39866d9c85ebSYongqiang Yang 				goto out;
3987b221349fSYongqiang Yang 			head = page_buffers(pages[index]);
39886d9c85ebSYongqiang Yang 			if (!head)
39896d9c85ebSYongqiang Yang 				goto out;
39906d9c85ebSYongqiang Yang 
3991b221349fSYongqiang Yang 			index++;
39926d9c85ebSYongqiang Yang 			bh = head;
39936d9c85ebSYongqiang Yang 			do {
3994b221349fSYongqiang Yang 				if (end >= newex->ec_block +
39956d9c85ebSYongqiang Yang 					newex->ec_len)
39966d9c85ebSYongqiang Yang 					/* The buffer is out of
39976d9c85ebSYongqiang Yang 					 * the request range.
39986d9c85ebSYongqiang Yang 					 */
39996d9c85ebSYongqiang Yang 					goto out;
4000b221349fSYongqiang Yang 
4001b221349fSYongqiang Yang 				if (buffer_mapped(bh) &&
4002b221349fSYongqiang Yang 				    end >= newex->ec_block) {
4003b221349fSYongqiang Yang 					start_index = index - 1;
4004b221349fSYongqiang Yang 					/* get the 1st mapped buffer. */
40056d9c85ebSYongqiang Yang 					goto found_mapped_buffer;
40066d9c85ebSYongqiang Yang 				}
4007b221349fSYongqiang Yang 
40086d9c85ebSYongqiang Yang 				bh = bh->b_this_page;
40096d9c85ebSYongqiang Yang 				end++;
40106d9c85ebSYongqiang Yang 			} while (bh != head);
40116d9c85ebSYongqiang Yang 
4012b221349fSYongqiang Yang 			/* No mapped buffer in the range found in this page,
4013b221349fSYongqiang Yang 			 * We need to look up next page.
4014b221349fSYongqiang Yang 			 */
4015b221349fSYongqiang Yang 			if (index >= ret) {
4016b221349fSYongqiang Yang 				/* There is no page left, but we need to limit
4017b221349fSYongqiang Yang 				 * newex->ec_len.
4018b221349fSYongqiang Yang 				 */
4019b221349fSYongqiang Yang 				newex->ec_len = end - newex->ec_block;
40206d9c85ebSYongqiang Yang 				goto out;
4021b221349fSYongqiang Yang 			}
4022b221349fSYongqiang Yang 			goto next_page;
40236d9c85ebSYongqiang Yang 		} else {
40246d9c85ebSYongqiang Yang 			/*Find contiguous delayed buffers. */
40256d9c85ebSYongqiang Yang 			if (ret > 0 && pages[0]->index == last_offset)
40266d9c85ebSYongqiang Yang 				head = page_buffers(pages[0]);
40276d9c85ebSYongqiang Yang 			bh = head;
4028b221349fSYongqiang Yang 			index = 1;
4029b221349fSYongqiang Yang 			start_index = 0;
40306d9c85ebSYongqiang Yang 		}
40316d9c85ebSYongqiang Yang 
40326d9c85ebSYongqiang Yang found_mapped_buffer:
40336d9c85ebSYongqiang Yang 		if (bh != NULL && buffer_delay(bh)) {
40346d9c85ebSYongqiang Yang 			/* 1st or contiguous delayed buffer found. */
40356d9c85ebSYongqiang Yang 			if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
40366d9c85ebSYongqiang Yang 				/*
40376d9c85ebSYongqiang Yang 				 * 1st delayed buffer found, record
40386d9c85ebSYongqiang Yang 				 * the start of extent.
40396d9c85ebSYongqiang Yang 				 */
40406d9c85ebSYongqiang Yang 				flags |= FIEMAP_EXTENT_DELALLOC;
40416d9c85ebSYongqiang Yang 				newex->ec_block = end;
40426d9c85ebSYongqiang Yang 				logical = (__u64)end << blksize_bits;
40436d9c85ebSYongqiang Yang 			}
40446d9c85ebSYongqiang Yang 			/* Find contiguous delayed buffers. */
40456d9c85ebSYongqiang Yang 			do {
40466d9c85ebSYongqiang Yang 				if (!buffer_delay(bh))
40476d9c85ebSYongqiang Yang 					goto found_delayed_extent;
40486d9c85ebSYongqiang Yang 				bh = bh->b_this_page;
40496d9c85ebSYongqiang Yang 				end++;
40506d9c85ebSYongqiang Yang 			} while (bh != head);
40516d9c85ebSYongqiang Yang 
4052b221349fSYongqiang Yang 			for (; index < ret; index++) {
40536d9c85ebSYongqiang Yang 				if (!page_has_buffers(pages[index])) {
40546d9c85ebSYongqiang Yang 					bh = NULL;
40556d9c85ebSYongqiang Yang 					break;
40566d9c85ebSYongqiang Yang 				}
40576d9c85ebSYongqiang Yang 				head = page_buffers(pages[index]);
40586d9c85ebSYongqiang Yang 				if (!head) {
40596d9c85ebSYongqiang Yang 					bh = NULL;
40606d9c85ebSYongqiang Yang 					break;
40616d9c85ebSYongqiang Yang 				}
4062b221349fSYongqiang Yang 
40636d9c85ebSYongqiang Yang 				if (pages[index]->index !=
4064b221349fSYongqiang Yang 				    pages[start_index]->index + index
4065b221349fSYongqiang Yang 				    - start_index) {
40666d9c85ebSYongqiang Yang 					/* Blocks are not contiguous. */
40676d9c85ebSYongqiang Yang 					bh = NULL;
40686d9c85ebSYongqiang Yang 					break;
40696d9c85ebSYongqiang Yang 				}
40706d9c85ebSYongqiang Yang 				bh = head;
40716d9c85ebSYongqiang Yang 				do {
40726d9c85ebSYongqiang Yang 					if (!buffer_delay(bh))
40736d9c85ebSYongqiang Yang 						/* Delayed-extent ends. */
40746d9c85ebSYongqiang Yang 						goto found_delayed_extent;
40756d9c85ebSYongqiang Yang 					bh = bh->b_this_page;
40766d9c85ebSYongqiang Yang 					end++;
40776d9c85ebSYongqiang Yang 				} while (bh != head);
40786d9c85ebSYongqiang Yang 			}
40796d9c85ebSYongqiang Yang 		} else if (!(flags & FIEMAP_EXTENT_DELALLOC))
40806d9c85ebSYongqiang Yang 			/* a hole found. */
40816d9c85ebSYongqiang Yang 			goto out;
40826d9c85ebSYongqiang Yang 
40836d9c85ebSYongqiang Yang found_delayed_extent:
40846d9c85ebSYongqiang Yang 		newex->ec_len = min(end - newex->ec_block,
40856d9c85ebSYongqiang Yang 						(ext4_lblk_t)EXT_INIT_MAX_LEN);
40866d9c85ebSYongqiang Yang 		if (ret == nr_pages && bh != NULL &&
40876d9c85ebSYongqiang Yang 			newex->ec_len < EXT_INIT_MAX_LEN &&
40886d9c85ebSYongqiang Yang 			buffer_delay(bh)) {
40896d9c85ebSYongqiang Yang 			/* Have not collected an extent and continue. */
40906d9c85ebSYongqiang Yang 			for (index = 0; index < ret; index++)
40916d9c85ebSYongqiang Yang 				page_cache_release(pages[index]);
40926d9c85ebSYongqiang Yang 			goto repeat;
40936d9c85ebSYongqiang Yang 		}
40946d9c85ebSYongqiang Yang 
40956d9c85ebSYongqiang Yang 		for (index = 0; index < ret; index++)
40966d9c85ebSYongqiang Yang 			page_cache_release(pages[index]);
40976d9c85ebSYongqiang Yang 		kfree(pages);
40986873fa0dSEric Sandeen 	}
40996873fa0dSEric Sandeen 
41006873fa0dSEric Sandeen 	physical = (__u64)newex->ec_start << blksize_bits;
41016873fa0dSEric Sandeen 	length =   (__u64)newex->ec_len << blksize_bits;
41026873fa0dSEric Sandeen 
41036873fa0dSEric Sandeen 	if (ex && ext4_ext_is_uninitialized(ex))
41046873fa0dSEric Sandeen 		flags |= FIEMAP_EXTENT_UNWRITTEN;
41056873fa0dSEric Sandeen 
41066d9c85ebSYongqiang Yang 	size = i_size_read(inode);
41076d9c85ebSYongqiang Yang 	if (logical + length >= size)
41086873fa0dSEric Sandeen 		flags |= FIEMAP_EXTENT_LAST;
41096873fa0dSEric Sandeen 
41106d9c85ebSYongqiang Yang 	ret = fiemap_fill_next_extent(fieinfo, logical, physical,
41116873fa0dSEric Sandeen 					length, flags);
41126d9c85ebSYongqiang Yang 	if (ret < 0)
41136d9c85ebSYongqiang Yang 		return ret;
41146d9c85ebSYongqiang Yang 	if (ret == 1)
41156873fa0dSEric Sandeen 		return EXT_BREAK;
41166873fa0dSEric Sandeen 	return EXT_CONTINUE;
41176873fa0dSEric Sandeen }
41186873fa0dSEric Sandeen 
41196873fa0dSEric Sandeen /* fiemap flags we can handle specified here */
41206873fa0dSEric Sandeen #define EXT4_FIEMAP_FLAGS	(FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
41216873fa0dSEric Sandeen 
41223a06d778SAneesh Kumar K.V static int ext4_xattr_fiemap(struct inode *inode,
41233a06d778SAneesh Kumar K.V 				struct fiemap_extent_info *fieinfo)
41246873fa0dSEric Sandeen {
41256873fa0dSEric Sandeen 	__u64 physical = 0;
41266873fa0dSEric Sandeen 	__u64 length;
41276873fa0dSEric Sandeen 	__u32 flags = FIEMAP_EXTENT_LAST;
41286873fa0dSEric Sandeen 	int blockbits = inode->i_sb->s_blocksize_bits;
41296873fa0dSEric Sandeen 	int error = 0;
41306873fa0dSEric Sandeen 
41316873fa0dSEric Sandeen 	/* in-inode? */
413219f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
41336873fa0dSEric Sandeen 		struct ext4_iloc iloc;
41346873fa0dSEric Sandeen 		int offset;	/* offset of xattr in inode */
41356873fa0dSEric Sandeen 
41366873fa0dSEric Sandeen 		error = ext4_get_inode_loc(inode, &iloc);
41376873fa0dSEric Sandeen 		if (error)
41386873fa0dSEric Sandeen 			return error;
41396873fa0dSEric Sandeen 		physical = iloc.bh->b_blocknr << blockbits;
41406873fa0dSEric Sandeen 		offset = EXT4_GOOD_OLD_INODE_SIZE +
41416873fa0dSEric Sandeen 				EXT4_I(inode)->i_extra_isize;
41426873fa0dSEric Sandeen 		physical += offset;
41436873fa0dSEric Sandeen 		length = EXT4_SB(inode->i_sb)->s_inode_size - offset;
41446873fa0dSEric Sandeen 		flags |= FIEMAP_EXTENT_DATA_INLINE;
4145fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
41466873fa0dSEric Sandeen 	} else { /* external block */
41476873fa0dSEric Sandeen 		physical = EXT4_I(inode)->i_file_acl << blockbits;
41486873fa0dSEric Sandeen 		length = inode->i_sb->s_blocksize;
41496873fa0dSEric Sandeen 	}
41506873fa0dSEric Sandeen 
41516873fa0dSEric Sandeen 	if (physical)
41526873fa0dSEric Sandeen 		error = fiemap_fill_next_extent(fieinfo, 0, physical,
41536873fa0dSEric Sandeen 						length, flags);
41546873fa0dSEric Sandeen 	return (error < 0 ? error : 0);
41556873fa0dSEric Sandeen }
41566873fa0dSEric Sandeen 
4157a4bb6b64SAllison Henderson /*
4158a4bb6b64SAllison Henderson  * ext4_ext_punch_hole
4159a4bb6b64SAllison Henderson  *
4160a4bb6b64SAllison Henderson  * Punches a hole of "length" bytes in a file starting
4161a4bb6b64SAllison Henderson  * at byte "offset"
4162a4bb6b64SAllison Henderson  *
4163a4bb6b64SAllison Henderson  * @inode:  The inode of the file to punch a hole in
4164a4bb6b64SAllison Henderson  * @offset: The starting byte offset of the hole
4165a4bb6b64SAllison Henderson  * @length: The length of the hole
4166a4bb6b64SAllison Henderson  *
4167a4bb6b64SAllison Henderson  * Returns the number of blocks removed or negative on err
4168a4bb6b64SAllison Henderson  */
4169a4bb6b64SAllison Henderson int ext4_ext_punch_hole(struct file *file, loff_t offset, loff_t length)
4170a4bb6b64SAllison Henderson {
4171a4bb6b64SAllison Henderson 	struct inode *inode = file->f_path.dentry->d_inode;
4172a4bb6b64SAllison Henderson 	struct super_block *sb = inode->i_sb;
4173a4bb6b64SAllison Henderson 	struct ext4_ext_cache cache_ex;
4174a4bb6b64SAllison Henderson 	ext4_lblk_t first_block, last_block, num_blocks, iblock, max_blocks;
4175a4bb6b64SAllison Henderson 	struct address_space *mapping = inode->i_mapping;
4176a4bb6b64SAllison Henderson 	struct ext4_map_blocks map;
4177a4bb6b64SAllison Henderson 	handle_t *handle;
4178a4bb6b64SAllison Henderson 	loff_t first_block_offset, last_block_offset, block_len;
4179a4bb6b64SAllison Henderson 	loff_t first_page, last_page, first_page_offset, last_page_offset;
4180a4bb6b64SAllison Henderson 	int ret, credits, blocks_released, err = 0;
4181a4bb6b64SAllison Henderson 
4182a4bb6b64SAllison Henderson 	first_block = (offset + sb->s_blocksize - 1) >>
4183a4bb6b64SAllison Henderson 		EXT4_BLOCK_SIZE_BITS(sb);
4184a4bb6b64SAllison Henderson 	last_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4185a4bb6b64SAllison Henderson 
4186a4bb6b64SAllison Henderson 	first_block_offset = first_block << EXT4_BLOCK_SIZE_BITS(sb);
4187a4bb6b64SAllison Henderson 	last_block_offset = last_block << EXT4_BLOCK_SIZE_BITS(sb);
4188a4bb6b64SAllison Henderson 
4189a4bb6b64SAllison Henderson 	first_page = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
4190a4bb6b64SAllison Henderson 	last_page = (offset + length) >> PAGE_CACHE_SHIFT;
4191a4bb6b64SAllison Henderson 
4192a4bb6b64SAllison Henderson 	first_page_offset = first_page << PAGE_CACHE_SHIFT;
4193a4bb6b64SAllison Henderson 	last_page_offset = last_page << PAGE_CACHE_SHIFT;
4194a4bb6b64SAllison Henderson 
4195a4bb6b64SAllison Henderson 	/*
4196a4bb6b64SAllison Henderson 	 * Write out all dirty pages to avoid race conditions
4197a4bb6b64SAllison Henderson 	 * Then release them.
4198a4bb6b64SAllison Henderson 	 */
4199a4bb6b64SAllison Henderson 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
4200a4bb6b64SAllison Henderson 		err = filemap_write_and_wait_range(mapping,
4201a4bb6b64SAllison Henderson 			first_page_offset == 0 ? 0 : first_page_offset-1,
4202a4bb6b64SAllison Henderson 			last_page_offset);
4203a4bb6b64SAllison Henderson 
4204a4bb6b64SAllison Henderson 			if (err)
4205a4bb6b64SAllison Henderson 				return err;
4206a4bb6b64SAllison Henderson 	}
4207a4bb6b64SAllison Henderson 
4208a4bb6b64SAllison Henderson 	/* Now release the pages */
4209a4bb6b64SAllison Henderson 	if (last_page_offset > first_page_offset) {
4210a4bb6b64SAllison Henderson 		truncate_inode_pages_range(mapping, first_page_offset,
4211a4bb6b64SAllison Henderson 					   last_page_offset-1);
4212a4bb6b64SAllison Henderson 	}
4213a4bb6b64SAllison Henderson 
4214a4bb6b64SAllison Henderson 	/* finish any pending end_io work */
4215a4bb6b64SAllison Henderson 	ext4_flush_completed_IO(inode);
4216a4bb6b64SAllison Henderson 
4217a4bb6b64SAllison Henderson 	credits = ext4_writepage_trans_blocks(inode);
4218a4bb6b64SAllison Henderson 	handle = ext4_journal_start(inode, credits);
4219a4bb6b64SAllison Henderson 	if (IS_ERR(handle))
4220a4bb6b64SAllison Henderson 		return PTR_ERR(handle);
4221a4bb6b64SAllison Henderson 
4222a4bb6b64SAllison Henderson 	err = ext4_orphan_add(handle, inode);
4223a4bb6b64SAllison Henderson 	if (err)
4224a4bb6b64SAllison Henderson 		goto out;
4225a4bb6b64SAllison Henderson 
4226a4bb6b64SAllison Henderson 	/*
4227a4bb6b64SAllison Henderson 	 * Now we need to zero out the un block aligned data.
4228a4bb6b64SAllison Henderson 	 * If the file is smaller than a block, just
4229a4bb6b64SAllison Henderson 	 * zero out the middle
4230a4bb6b64SAllison Henderson 	 */
4231a4bb6b64SAllison Henderson 	if (first_block > last_block)
4232a4bb6b64SAllison Henderson 		ext4_block_zero_page_range(handle, mapping, offset, length);
4233a4bb6b64SAllison Henderson 	else {
4234a4bb6b64SAllison Henderson 		/* zero out the head of the hole before the first block */
4235a4bb6b64SAllison Henderson 		block_len  = first_block_offset - offset;
4236a4bb6b64SAllison Henderson 		if (block_len > 0)
4237a4bb6b64SAllison Henderson 			ext4_block_zero_page_range(handle, mapping,
4238a4bb6b64SAllison Henderson 						   offset, block_len);
4239a4bb6b64SAllison Henderson 
4240a4bb6b64SAllison Henderson 		/* zero out the tail of the hole after the last block */
4241a4bb6b64SAllison Henderson 		block_len = offset + length - last_block_offset;
4242a4bb6b64SAllison Henderson 		if (block_len > 0) {
4243a4bb6b64SAllison Henderson 			ext4_block_zero_page_range(handle, mapping,
4244a4bb6b64SAllison Henderson 					last_block_offset, block_len);
4245a4bb6b64SAllison Henderson 		}
4246a4bb6b64SAllison Henderson 	}
4247a4bb6b64SAllison Henderson 
4248a4bb6b64SAllison Henderson 	/* If there are no blocks to remove, return now */
4249a4bb6b64SAllison Henderson 	if (first_block >= last_block)
4250a4bb6b64SAllison Henderson 		goto out;
4251a4bb6b64SAllison Henderson 
4252a4bb6b64SAllison Henderson 	down_write(&EXT4_I(inode)->i_data_sem);
4253a4bb6b64SAllison Henderson 	ext4_ext_invalidate_cache(inode);
4254a4bb6b64SAllison Henderson 	ext4_discard_preallocations(inode);
4255a4bb6b64SAllison Henderson 
4256a4bb6b64SAllison Henderson 	/*
4257a4bb6b64SAllison Henderson 	 * Loop over all the blocks and identify blocks
4258a4bb6b64SAllison Henderson 	 * that need to be punched out
4259a4bb6b64SAllison Henderson 	 */
4260a4bb6b64SAllison Henderson 	iblock = first_block;
4261a4bb6b64SAllison Henderson 	blocks_released = 0;
4262a4bb6b64SAllison Henderson 	while (iblock < last_block) {
4263a4bb6b64SAllison Henderson 		max_blocks = last_block - iblock;
4264a4bb6b64SAllison Henderson 		num_blocks = 1;
4265a4bb6b64SAllison Henderson 		memset(&map, 0, sizeof(map));
4266a4bb6b64SAllison Henderson 		map.m_lblk = iblock;
4267a4bb6b64SAllison Henderson 		map.m_len = max_blocks;
4268a4bb6b64SAllison Henderson 		ret = ext4_ext_map_blocks(handle, inode, &map,
4269a4bb6b64SAllison Henderson 			EXT4_GET_BLOCKS_PUNCH_OUT_EXT);
4270a4bb6b64SAllison Henderson 
4271a4bb6b64SAllison Henderson 		if (ret > 0) {
4272a4bb6b64SAllison Henderson 			blocks_released += ret;
4273a4bb6b64SAllison Henderson 			num_blocks = ret;
4274a4bb6b64SAllison Henderson 		} else if (ret == 0) {
4275a4bb6b64SAllison Henderson 			/*
4276a4bb6b64SAllison Henderson 			 * If map blocks could not find the block,
4277a4bb6b64SAllison Henderson 			 * then it is in a hole.  If the hole was
4278a4bb6b64SAllison Henderson 			 * not already cached, then map blocks should
4279a4bb6b64SAllison Henderson 			 * put it in the cache.  So we can get the hole
4280a4bb6b64SAllison Henderson 			 * out of the cache
4281a4bb6b64SAllison Henderson 			 */
4282a4bb6b64SAllison Henderson 			memset(&cache_ex, 0, sizeof(cache_ex));
4283a4bb6b64SAllison Henderson 			if ((ext4_ext_check_cache(inode, iblock, &cache_ex)) &&
4284a4bb6b64SAllison Henderson 				!cache_ex.ec_start) {
4285a4bb6b64SAllison Henderson 
4286a4bb6b64SAllison Henderson 				/* The hole is cached */
4287a4bb6b64SAllison Henderson 				num_blocks = cache_ex.ec_block +
4288a4bb6b64SAllison Henderson 				cache_ex.ec_len - iblock;
4289a4bb6b64SAllison Henderson 
4290a4bb6b64SAllison Henderson 			} else {
4291a4bb6b64SAllison Henderson 				/* The block could not be identified */
4292a4bb6b64SAllison Henderson 				err = -EIO;
4293a4bb6b64SAllison Henderson 				break;
4294a4bb6b64SAllison Henderson 			}
4295a4bb6b64SAllison Henderson 		} else {
4296a4bb6b64SAllison Henderson 			/* Map blocks error */
4297a4bb6b64SAllison Henderson 			err = ret;
4298a4bb6b64SAllison Henderson 			break;
4299a4bb6b64SAllison Henderson 		}
4300a4bb6b64SAllison Henderson 
4301a4bb6b64SAllison Henderson 		if (num_blocks == 0) {
4302a4bb6b64SAllison Henderson 			/* This condition should never happen */
4303a4bb6b64SAllison Henderson 			ext_debug("Block lookup failed");
4304a4bb6b64SAllison Henderson 			err = -EIO;
4305a4bb6b64SAllison Henderson 			break;
4306a4bb6b64SAllison Henderson 		}
4307a4bb6b64SAllison Henderson 
4308a4bb6b64SAllison Henderson 		iblock += num_blocks;
4309a4bb6b64SAllison Henderson 	}
4310a4bb6b64SAllison Henderson 
4311a4bb6b64SAllison Henderson 	if (blocks_released > 0) {
4312a4bb6b64SAllison Henderson 		ext4_ext_invalidate_cache(inode);
4313a4bb6b64SAllison Henderson 		ext4_discard_preallocations(inode);
4314a4bb6b64SAllison Henderson 	}
4315a4bb6b64SAllison Henderson 
4316a4bb6b64SAllison Henderson 	if (IS_SYNC(inode))
4317a4bb6b64SAllison Henderson 		ext4_handle_sync(handle);
4318a4bb6b64SAllison Henderson 
4319a4bb6b64SAllison Henderson 	up_write(&EXT4_I(inode)->i_data_sem);
4320a4bb6b64SAllison Henderson 
4321a4bb6b64SAllison Henderson out:
4322a4bb6b64SAllison Henderson 	ext4_orphan_del(handle, inode);
4323a4bb6b64SAllison Henderson 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4324a4bb6b64SAllison Henderson 	ext4_mark_inode_dirty(handle, inode);
4325a4bb6b64SAllison Henderson 	ext4_journal_stop(handle);
4326a4bb6b64SAllison Henderson 	return err;
4327a4bb6b64SAllison Henderson }
43286873fa0dSEric Sandeen int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
43296873fa0dSEric Sandeen 		__u64 start, __u64 len)
43306873fa0dSEric Sandeen {
43316873fa0dSEric Sandeen 	ext4_lblk_t start_blk;
43326873fa0dSEric Sandeen 	int error = 0;
43336873fa0dSEric Sandeen 
43346873fa0dSEric Sandeen 	/* fallback to generic here if not in extents fmt */
433512e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
43366873fa0dSEric Sandeen 		return generic_block_fiemap(inode, fieinfo, start, len,
43376873fa0dSEric Sandeen 			ext4_get_block);
43386873fa0dSEric Sandeen 
43396873fa0dSEric Sandeen 	if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS))
43406873fa0dSEric Sandeen 		return -EBADR;
43416873fa0dSEric Sandeen 
43426873fa0dSEric Sandeen 	if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
43436873fa0dSEric Sandeen 		error = ext4_xattr_fiemap(inode, fieinfo);
43446873fa0dSEric Sandeen 	} else {
4345aca92ff6SLeonard Michlmayr 		ext4_lblk_t len_blks;
4346aca92ff6SLeonard Michlmayr 		__u64 last_blk;
4347aca92ff6SLeonard Michlmayr 
43486873fa0dSEric Sandeen 		start_blk = start >> inode->i_sb->s_blocksize_bits;
4349aca92ff6SLeonard Michlmayr 		last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits;
4350aca92ff6SLeonard Michlmayr 		if (last_blk >= EXT_MAX_BLOCK)
4351aca92ff6SLeonard Michlmayr 			last_blk = EXT_MAX_BLOCK-1;
4352aca92ff6SLeonard Michlmayr 		len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1;
43536873fa0dSEric Sandeen 
43546873fa0dSEric Sandeen 		/*
43556873fa0dSEric Sandeen 		 * Walk the extent tree gathering extent information.
43566873fa0dSEric Sandeen 		 * ext4_ext_fiemap_cb will push extents back to user.
43576873fa0dSEric Sandeen 		 */
43586873fa0dSEric Sandeen 		error = ext4_ext_walk_space(inode, start_blk, len_blks,
43596873fa0dSEric Sandeen 					  ext4_ext_fiemap_cb, fieinfo);
43606873fa0dSEric Sandeen 	}
43616873fa0dSEric Sandeen 
43626873fa0dSEric Sandeen 	return error;
43636873fa0dSEric Sandeen }
4364