blob: ae65f247ceda63c29c640208ca3e85a205346e9b [file] [log] [blame]
Alex Tomasa86c6182006-10-11 01:21:03 -07001/*
2 * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
3 * Written by Alex Tomas <alex@clusterfs.com>
4 *
5 * Architecture independence:
6 * Copyright (c) 2005, Bull S.A.
7 * Written by Pierre Peiffer <pierre.peiffer@bull.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public Licens
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
21 */
22
23/*
24 * Extents support for EXT4
25 *
26 * TODO:
27 * - ext4*_error() should be used in some situations
28 * - analyze all BUG()/BUG_ON(), use -EIO where appropriate
29 * - smart tree reduction
30 */
31
32#include <linux/module.h>
33#include <linux/fs.h>
34#include <linux/time.h>
Mingming Caocd02ff02007-10-16 18:38:25 -040035#include <linux/jbd2.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070036#include <linux/highuid.h>
37#include <linux/pagemap.h>
38#include <linux/quotaops.h>
39#include <linux/string.h>
40#include <linux/slab.h>
Amit Aroraa2df2a62007-07-17 21:42:41 -040041#include <linux/falloc.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070042#include <asm/uaccess.h>
Eric Sandeen6873fa02008-10-07 00:46:36 -040043#include <linux/fiemap.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040044#include "ext4_jbd2.h"
45#include "ext4_extents.h"
Alex Tomasa86c6182006-10-11 01:21:03 -070046
Jiaying Zhang0562e0b2011-03-21 21:38:05 -040047#include <trace/events/ext4.h>
48
Allison Hendersond583fb82011-05-25 07:41:43 -040049static int ext4_split_extent(handle_t *handle,
50 struct inode *inode,
51 struct ext4_ext_path *path,
52 struct ext4_map_blocks *map,
53 int split_flag,
54 int flags);
55
Jan Kara487caee2009-08-17 22:17:20 -040056static int ext4_ext_truncate_extend_restart(handle_t *handle,
57 struct inode *inode,
58 int needed)
Alex Tomasa86c6182006-10-11 01:21:03 -070059{
60 int err;
61
Frank Mayhar03901312009-01-07 00:06:22 -050062 if (!ext4_handle_valid(handle))
63 return 0;
Alex Tomasa86c6182006-10-11 01:21:03 -070064 if (handle->h_buffer_credits > needed)
Shen Feng9102e4f2008-07-11 19:27:31 -040065 return 0;
66 err = ext4_journal_extend(handle, needed);
Theodore Ts'o0123c932008-08-01 20:57:54 -040067 if (err <= 0)
Shen Feng9102e4f2008-07-11 19:27:31 -040068 return err;
Jan Kara487caee2009-08-17 22:17:20 -040069 err = ext4_truncate_restart_trans(handle, inode, needed);
Dmitry Monakhov0617b832010-05-17 01:00:00 -040070 if (err == 0)
71 err = -EAGAIN;
Jan Kara487caee2009-08-17 22:17:20 -040072
73 return err;
Alex Tomasa86c6182006-10-11 01:21:03 -070074}
75
76/*
77 * could return:
78 * - EROFS
79 * - ENOMEM
80 */
81static int ext4_ext_get_access(handle_t *handle, struct inode *inode,
82 struct ext4_ext_path *path)
83{
84 if (path->p_bh) {
85 /* path points to block */
86 return ext4_journal_get_write_access(handle, path->p_bh);
87 }
88 /* path points to leaf/index in inode body */
89 /* we use in-core data, no need to protect them */
90 return 0;
91}
92
93/*
94 * could return:
95 * - EROFS
96 * - ENOMEM
97 * - EIO
98 */
99static int ext4_ext_dirty(handle_t *handle, struct inode *inode,
100 struct ext4_ext_path *path)
101{
102 int err;
103 if (path->p_bh) {
104 /* path points to block */
Frank Mayhar03901312009-01-07 00:06:22 -0500105 err = ext4_handle_dirty_metadata(handle, inode, path->p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700106 } else {
107 /* path points to leaf/index in inode body */
108 err = ext4_mark_inode_dirty(handle, inode);
109 }
110 return err;
111}
112
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700113static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700114 struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500115 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700116{
117 struct ext4_inode_info *ei = EXT4_I(inode);
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700118 ext4_fsblk_t bg_start;
Valerie Clement74d34872008-02-15 13:43:07 -0500119 ext4_fsblk_t last_block;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700120 ext4_grpblk_t colour;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400121 ext4_group_t block_group;
122 int flex_size = ext4_flex_bg_size(EXT4_SB(inode->i_sb));
Alex Tomasa86c6182006-10-11 01:21:03 -0700123 int depth;
124
125 if (path) {
126 struct ext4_extent *ex;
127 depth = path->p_depth;
128
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500129 /*
130 * Try to predict block placement assuming that we are
131 * filling in a file which will eventually be
132 * non-sparse --- i.e., in the case of libbfd writing
133 * an ELF object sections out-of-order but in a way
134 * the eventually results in a contiguous object or
135 * executable file, or some database extending a table
136 * space file. However, this is actually somewhat
137 * non-ideal if we are writing a sparse file such as
138 * qemu or KVM writing a raw image file that is going
139 * to stay fairly sparse, since it will end up
140 * fragmenting the file system's free space. Maybe we
141 * should have some hueristics or some way to allow
142 * userspace to pass a hint to file system,
Tao Mab8d65682011-01-21 23:21:31 +0800143 * especially if the latter case turns out to be
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500144 * common.
145 */
Avantika Mathur7e028972006-12-06 20:41:33 -0800146 ex = path[depth].p_ext;
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500147 if (ex) {
148 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex);
149 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block);
150
151 if (block > ext_block)
152 return ext_pblk + (block - ext_block);
153 else
154 return ext_pblk - (ext_block - block);
155 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700156
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700157 /* it looks like index is empty;
158 * try to find starting block from index itself */
Alex Tomasa86c6182006-10-11 01:21:03 -0700159 if (path[depth].p_bh)
160 return path[depth].p_bh->b_blocknr;
161 }
162
163 /* OK. use inode's group */
Theodore Ts'oa4912122009-03-12 12:18:34 -0400164 block_group = ei->i_block_group;
165 if (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) {
166 /*
167 * If there are at least EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME
Theodore Ts'o60e66792010-05-17 07:00:00 -0400168 * block groups per flexgroup, reserve the first block
169 * group for directories and special files. Regular
Theodore Ts'oa4912122009-03-12 12:18:34 -0400170 * files will start at the second block group. This
Theodore Ts'o60e66792010-05-17 07:00:00 -0400171 * tends to speed up directory access and improves
Theodore Ts'oa4912122009-03-12 12:18:34 -0400172 * fsck times.
173 */
174 block_group &= ~(flex_size-1);
175 if (S_ISREG(inode->i_mode))
176 block_group++;
177 }
Akinobu Mita5661bd62010-03-03 23:53:39 -0500178 bg_start = ext4_group_first_block_no(inode->i_sb, block_group);
Valerie Clement74d34872008-02-15 13:43:07 -0500179 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
180
Theodore Ts'oa4912122009-03-12 12:18:34 -0400181 /*
182 * If we are doing delayed allocation, we don't need take
183 * colour into account.
184 */
185 if (test_opt(inode->i_sb, DELALLOC))
186 return bg_start;
187
Valerie Clement74d34872008-02-15 13:43:07 -0500188 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
189 colour = (current->pid % 16) *
Alex Tomasa86c6182006-10-11 01:21:03 -0700190 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
Valerie Clement74d34872008-02-15 13:43:07 -0500191 else
192 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
Alex Tomasa86c6182006-10-11 01:21:03 -0700193 return bg_start + colour + block;
194}
195
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400196/*
197 * Allocation for a meta data block
198 */
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700199static ext4_fsblk_t
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400200ext4_ext_new_meta_block(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700201 struct ext4_ext_path *path,
Allison Henderson55f020d2011-05-25 07:41:26 -0400202 struct ext4_extent *ex, int *err, unsigned int flags)
Alex Tomasa86c6182006-10-11 01:21:03 -0700203{
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700204 ext4_fsblk_t goal, newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700205
206 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block));
Allison Henderson55f020d2011-05-25 07:41:26 -0400207 newblock = ext4_new_meta_blocks(handle, inode, goal, flags,
208 NULL, err);
Alex Tomasa86c6182006-10-11 01:21:03 -0700209 return newblock;
210}
211
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400212static inline int ext4_ext_space_block(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700213{
214 int size;
215
216 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
217 / sizeof(struct ext4_extent);
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400218 if (!check) {
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100219#ifdef AGGRESSIVE_TEST
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400220 if (size > 6)
221 size = 6;
Alex Tomasa86c6182006-10-11 01:21:03 -0700222#endif
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400223 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700224 return size;
225}
226
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400227static inline int ext4_ext_space_block_idx(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700228{
229 int size;
230
231 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
232 / sizeof(struct ext4_extent_idx);
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400233 if (!check) {
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100234#ifdef AGGRESSIVE_TEST
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400235 if (size > 5)
236 size = 5;
Alex Tomasa86c6182006-10-11 01:21:03 -0700237#endif
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400238 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700239 return size;
240}
241
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400242static inline int ext4_ext_space_root(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700243{
244 int size;
245
246 size = sizeof(EXT4_I(inode)->i_data);
247 size -= sizeof(struct ext4_extent_header);
248 size /= sizeof(struct ext4_extent);
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400249 if (!check) {
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100250#ifdef AGGRESSIVE_TEST
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400251 if (size > 3)
252 size = 3;
Alex Tomasa86c6182006-10-11 01:21:03 -0700253#endif
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400254 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700255 return size;
256}
257
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400258static inline int ext4_ext_space_root_idx(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700259{
260 int size;
261
262 size = sizeof(EXT4_I(inode)->i_data);
263 size -= sizeof(struct ext4_extent_header);
264 size /= sizeof(struct ext4_extent_idx);
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400265 if (!check) {
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100266#ifdef AGGRESSIVE_TEST
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400267 if (size > 4)
268 size = 4;
Alex Tomasa86c6182006-10-11 01:21:03 -0700269#endif
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400270 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700271 return size;
272}
273
Mingming Caod2a17632008-07-14 17:52:37 -0400274/*
275 * Calculate the number of metadata blocks needed
276 * to allocate @blocks
277 * Worse case is one block per extent
278 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -0500279int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -0400280{
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500281 struct ext4_inode_info *ei = EXT4_I(inode);
282 int idxs, num = 0;
Mingming Caod2a17632008-07-14 17:52:37 -0400283
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500284 idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
285 / sizeof(struct ext4_extent_idx));
Mingming Caod2a17632008-07-14 17:52:37 -0400286
287 /*
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500288 * If the new delayed allocation block is contiguous with the
289 * previous da block, it can share index blocks with the
290 * previous block, so we only need to allocate a new index
291 * block every idxs leaf blocks. At ldxs**2 blocks, we need
292 * an additional index block, and at ldxs**3 blocks, yet
293 * another index blocks.
Mingming Caod2a17632008-07-14 17:52:37 -0400294 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500295 if (ei->i_da_metadata_calc_len &&
296 ei->i_da_metadata_calc_last_lblock+1 == lblock) {
297 if ((ei->i_da_metadata_calc_len % idxs) == 0)
298 num++;
299 if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0)
300 num++;
301 if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) {
302 num++;
303 ei->i_da_metadata_calc_len = 0;
304 } else
305 ei->i_da_metadata_calc_len++;
306 ei->i_da_metadata_calc_last_lblock++;
307 return num;
308 }
Mingming Caod2a17632008-07-14 17:52:37 -0400309
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500310 /*
311 * In the worst case we need a new set of index blocks at
312 * every level of the inode's extent tree.
313 */
314 ei->i_da_metadata_calc_len = 1;
315 ei->i_da_metadata_calc_last_lblock = lblock;
316 return ext_depth(inode) + 1;
Mingming Caod2a17632008-07-14 17:52:37 -0400317}
318
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400319static int
320ext4_ext_max_entries(struct inode *inode, int depth)
321{
322 int max;
323
324 if (depth == ext_depth(inode)) {
325 if (depth == 0)
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400326 max = ext4_ext_space_root(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400327 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400328 max = ext4_ext_space_root_idx(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400329 } else {
330 if (depth == 0)
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400331 max = ext4_ext_space_block(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400332 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400333 max = ext4_ext_space_block_idx(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400334 }
335
336 return max;
337}
338
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400339static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext)
340{
Theodore Ts'obf89d162010-10-27 21:30:14 -0400341 ext4_fsblk_t block = ext4_ext_pblock(ext);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400342 int len = ext4_ext_get_actual_len(ext);
Theodore Ts'oe84a26c2009-04-22 20:52:25 -0400343
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400344 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400345}
346
347static int ext4_valid_extent_idx(struct inode *inode,
348 struct ext4_extent_idx *ext_idx)
349{
Theodore Ts'obf89d162010-10-27 21:30:14 -0400350 ext4_fsblk_t block = ext4_idx_pblock(ext_idx);
Theodore Ts'oe84a26c2009-04-22 20:52:25 -0400351
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400352 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400353}
354
355static int ext4_valid_extent_entries(struct inode *inode,
356 struct ext4_extent_header *eh,
357 int depth)
358{
359 struct ext4_extent *ext;
360 struct ext4_extent_idx *ext_idx;
361 unsigned short entries;
362 if (eh->eh_entries == 0)
363 return 1;
364
365 entries = le16_to_cpu(eh->eh_entries);
366
367 if (depth == 0) {
368 /* leaf entries */
369 ext = EXT_FIRST_EXTENT(eh);
370 while (entries) {
371 if (!ext4_valid_extent(inode, ext))
372 return 0;
373 ext++;
374 entries--;
375 }
376 } else {
377 ext_idx = EXT_FIRST_INDEX(eh);
378 while (entries) {
379 if (!ext4_valid_extent_idx(inode, ext_idx))
380 return 0;
381 ext_idx++;
382 entries--;
383 }
384 }
385 return 1;
386}
387
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400388static int __ext4_ext_check(const char *function, unsigned int line,
389 struct inode *inode, struct ext4_extent_header *eh,
390 int depth)
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400391{
392 const char *error_msg;
393 int max = 0;
394
395 if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) {
396 error_msg = "invalid magic";
397 goto corrupted;
398 }
399 if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) {
400 error_msg = "unexpected eh_depth";
401 goto corrupted;
402 }
403 if (unlikely(eh->eh_max == 0)) {
404 error_msg = "invalid eh_max";
405 goto corrupted;
406 }
407 max = ext4_ext_max_entries(inode, depth);
408 if (unlikely(le16_to_cpu(eh->eh_max) > max)) {
409 error_msg = "too large eh_max";
410 goto corrupted;
411 }
412 if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
413 error_msg = "invalid eh_entries";
414 goto corrupted;
415 }
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400416 if (!ext4_valid_extent_entries(inode, eh, depth)) {
417 error_msg = "invalid extent entries";
418 goto corrupted;
419 }
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400420 return 0;
421
422corrupted:
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400423 ext4_error_inode(inode, function, line, 0,
Theodore Ts'o24676da2010-05-16 21:00:00 -0400424 "bad header/extent: %s - magic %x, "
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400425 "entries %u, max %u(%u), depth %u(%u)",
Theodore Ts'o24676da2010-05-16 21:00:00 -0400426 error_msg, le16_to_cpu(eh->eh_magic),
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400427 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
428 max, le16_to_cpu(eh->eh_depth), depth);
429
430 return -EIO;
431}
432
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400433#define ext4_ext_check(inode, eh, depth) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400434 __ext4_ext_check(__func__, __LINE__, inode, eh, depth)
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400435
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400436int ext4_ext_check_inode(struct inode *inode)
437{
438 return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode));
439}
440
Alex Tomasa86c6182006-10-11 01:21:03 -0700441#ifdef EXT_DEBUG
442static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path)
443{
444 int k, l = path->p_depth;
445
446 ext_debug("path:");
447 for (k = 0; k <= l; k++, path++) {
448 if (path->p_idx) {
Mingming Cao2ae02102006-10-11 01:21:11 -0700449 ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400450 ext4_idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700451 } else if (path->p_ext) {
Mingming553f9002009-09-18 13:34:55 -0400452 ext_debug(" %d:[%d]%d:%llu ",
Alex Tomasa86c6182006-10-11 01:21:03 -0700453 le32_to_cpu(path->p_ext->ee_block),
Mingming553f9002009-09-18 13:34:55 -0400454 ext4_ext_is_uninitialized(path->p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400455 ext4_ext_get_actual_len(path->p_ext),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400456 ext4_ext_pblock(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700457 } else
458 ext_debug(" []");
459 }
460 ext_debug("\n");
461}
462
463static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path)
464{
465 int depth = ext_depth(inode);
466 struct ext4_extent_header *eh;
467 struct ext4_extent *ex;
468 int i;
469
470 if (!path)
471 return;
472
473 eh = path[depth].p_hdr;
474 ex = EXT_FIRST_EXTENT(eh);
475
Mingming553f9002009-09-18 13:34:55 -0400476 ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino);
477
Alex Tomasa86c6182006-10-11 01:21:03 -0700478 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) {
Mingming553f9002009-09-18 13:34:55 -0400479 ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block),
480 ext4_ext_is_uninitialized(ex),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400481 ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -0700482 }
483 ext_debug("\n");
484}
485#else
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400486#define ext4_ext_show_path(inode, path)
487#define ext4_ext_show_leaf(inode, path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700488#endif
489
Aneesh Kumar K.Vb35905c2008-02-25 16:54:37 -0500490void ext4_ext_drop_refs(struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700491{
492 int depth = path->p_depth;
493 int i;
494
495 for (i = 0; i <= depth; i++, path++)
496 if (path->p_bh) {
497 brelse(path->p_bh);
498 path->p_bh = NULL;
499 }
500}
501
502/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700503 * ext4_ext_binsearch_idx:
504 * binary search for the closest index of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400505 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700506 */
507static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500508ext4_ext_binsearch_idx(struct inode *inode,
509 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700510{
511 struct ext4_extent_header *eh = path->p_hdr;
512 struct ext4_extent_idx *r, *l, *m;
513
Alex Tomasa86c6182006-10-11 01:21:03 -0700514
Eric Sandeenbba90742008-01-28 23:58:27 -0500515 ext_debug("binsearch for %u(idx): ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700516
517 l = EXT_FIRST_INDEX(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400518 r = EXT_LAST_INDEX(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700519 while (l <= r) {
520 m = l + (r - l) / 2;
521 if (block < le32_to_cpu(m->ei_block))
522 r = m - 1;
523 else
524 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400525 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block),
526 m, le32_to_cpu(m->ei_block),
527 r, le32_to_cpu(r->ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700528 }
529
530 path->p_idx = l - 1;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700531 ext_debug(" -> %d->%lld ", le32_to_cpu(path->p_idx->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400532 ext4_idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700533
534#ifdef CHECK_BINSEARCH
535 {
536 struct ext4_extent_idx *chix, *ix;
537 int k;
538
539 chix = ix = EXT_FIRST_INDEX(eh);
540 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) {
541 if (k != 0 &&
542 le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400543 printk(KERN_DEBUG "k=%d, ix=0x%p, "
544 "first=0x%p\n", k,
545 ix, EXT_FIRST_INDEX(eh));
546 printk(KERN_DEBUG "%u <= %u\n",
Alex Tomasa86c6182006-10-11 01:21:03 -0700547 le32_to_cpu(ix->ei_block),
548 le32_to_cpu(ix[-1].ei_block));
549 }
550 BUG_ON(k && le32_to_cpu(ix->ei_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400551 <= le32_to_cpu(ix[-1].ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700552 if (block < le32_to_cpu(ix->ei_block))
553 break;
554 chix = ix;
555 }
556 BUG_ON(chix != path->p_idx);
557 }
558#endif
559
560}
561
562/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700563 * ext4_ext_binsearch:
564 * binary search for closest extent of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400565 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700566 */
567static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500568ext4_ext_binsearch(struct inode *inode,
569 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700570{
571 struct ext4_extent_header *eh = path->p_hdr;
572 struct ext4_extent *r, *l, *m;
573
Alex Tomasa86c6182006-10-11 01:21:03 -0700574 if (eh->eh_entries == 0) {
575 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700576 * this leaf is empty:
577 * we get such a leaf in split/add case
Alex Tomasa86c6182006-10-11 01:21:03 -0700578 */
579 return;
580 }
581
Eric Sandeenbba90742008-01-28 23:58:27 -0500582 ext_debug("binsearch for %u: ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700583
584 l = EXT_FIRST_EXTENT(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400585 r = EXT_LAST_EXTENT(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700586
587 while (l <= r) {
588 m = l + (r - l) / 2;
589 if (block < le32_to_cpu(m->ee_block))
590 r = m - 1;
591 else
592 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400593 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block),
594 m, le32_to_cpu(m->ee_block),
595 r, le32_to_cpu(r->ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700596 }
597
598 path->p_ext = l - 1;
Mingming553f9002009-09-18 13:34:55 -0400599 ext_debug(" -> %d:%llu:[%d]%d ",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400600 le32_to_cpu(path->p_ext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400601 ext4_ext_pblock(path->p_ext),
Mingming553f9002009-09-18 13:34:55 -0400602 ext4_ext_is_uninitialized(path->p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400603 ext4_ext_get_actual_len(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700604
605#ifdef CHECK_BINSEARCH
606 {
607 struct ext4_extent *chex, *ex;
608 int k;
609
610 chex = ex = EXT_FIRST_EXTENT(eh);
611 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) {
612 BUG_ON(k && le32_to_cpu(ex->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400613 <= le32_to_cpu(ex[-1].ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700614 if (block < le32_to_cpu(ex->ee_block))
615 break;
616 chex = ex;
617 }
618 BUG_ON(chex != path->p_ext);
619 }
620#endif
621
622}
623
624int ext4_ext_tree_init(handle_t *handle, struct inode *inode)
625{
626 struct ext4_extent_header *eh;
627
628 eh = ext_inode_hdr(inode);
629 eh->eh_depth = 0;
630 eh->eh_entries = 0;
631 eh->eh_magic = EXT4_EXT_MAGIC;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400632 eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -0700633 ext4_mark_inode_dirty(handle, inode);
634 ext4_ext_invalidate_cache(inode);
635 return 0;
636}
637
638struct ext4_ext_path *
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500639ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block,
640 struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700641{
642 struct ext4_extent_header *eh;
643 struct buffer_head *bh;
644 short int depth, i, ppos = 0, alloc = 0;
645
646 eh = ext_inode_hdr(inode);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400647 depth = ext_depth(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -0700648
649 /* account possible depth increase */
650 if (!path) {
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800651 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2),
Alex Tomasa86c6182006-10-11 01:21:03 -0700652 GFP_NOFS);
653 if (!path)
654 return ERR_PTR(-ENOMEM);
655 alloc = 1;
656 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700657 path[0].p_hdr = eh;
Shen Feng1973adc2008-07-11 19:27:31 -0400658 path[0].p_bh = NULL;
Alex Tomasa86c6182006-10-11 01:21:03 -0700659
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400660 i = depth;
Alex Tomasa86c6182006-10-11 01:21:03 -0700661 /* walk through the tree */
662 while (i) {
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400663 int need_to_validate = 0;
664
Alex Tomasa86c6182006-10-11 01:21:03 -0700665 ext_debug("depth %d: num %d, max %d\n",
666 ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400667
Alex Tomasa86c6182006-10-11 01:21:03 -0700668 ext4_ext_binsearch_idx(inode, path + ppos, block);
Theodore Ts'obf89d162010-10-27 21:30:14 -0400669 path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx);
Alex Tomasa86c6182006-10-11 01:21:03 -0700670 path[ppos].p_depth = i;
671 path[ppos].p_ext = NULL;
672
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400673 bh = sb_getblk(inode->i_sb, path[ppos].p_block);
674 if (unlikely(!bh))
Alex Tomasa86c6182006-10-11 01:21:03 -0700675 goto err;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400676 if (!bh_uptodate_or_lock(bh)) {
Jiaying Zhang0562e0b2011-03-21 21:38:05 -0400677 trace_ext4_ext_load_extent(inode, block,
678 path[ppos].p_block);
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400679 if (bh_submit_read(bh) < 0) {
680 put_bh(bh);
681 goto err;
682 }
683 /* validate the extent entries */
684 need_to_validate = 1;
685 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700686 eh = ext_block_hdr(bh);
687 ppos++;
Frank Mayhar273df552010-03-02 11:46:09 -0500688 if (unlikely(ppos > depth)) {
689 put_bh(bh);
690 EXT4_ERROR_INODE(inode,
691 "ppos %d > depth %d", ppos, depth);
692 goto err;
693 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700694 path[ppos].p_bh = bh;
695 path[ppos].p_hdr = eh;
696 i--;
697
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400698 if (need_to_validate && ext4_ext_check(inode, eh, i))
Alex Tomasa86c6182006-10-11 01:21:03 -0700699 goto err;
700 }
701
702 path[ppos].p_depth = i;
Alex Tomasa86c6182006-10-11 01:21:03 -0700703 path[ppos].p_ext = NULL;
704 path[ppos].p_idx = NULL;
705
Alex Tomasa86c6182006-10-11 01:21:03 -0700706 /* find extent */
707 ext4_ext_binsearch(inode, path + ppos, block);
Shen Feng1973adc2008-07-11 19:27:31 -0400708 /* if not an empty leaf */
709 if (path[ppos].p_ext)
Theodore Ts'obf89d162010-10-27 21:30:14 -0400710 path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext);
Alex Tomasa86c6182006-10-11 01:21:03 -0700711
712 ext4_ext_show_path(inode, path);
713
714 return path;
715
716err:
717 ext4_ext_drop_refs(path);
718 if (alloc)
719 kfree(path);
720 return ERR_PTR(-EIO);
721}
722
723/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700724 * ext4_ext_insert_index:
725 * insert new index [@logical;@ptr] into the block at @curp;
726 * check where to insert: before @curp or after @curp
Alex Tomasa86c6182006-10-11 01:21:03 -0700727 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400728static int ext4_ext_insert_index(handle_t *handle, struct inode *inode,
729 struct ext4_ext_path *curp,
730 int logical, ext4_fsblk_t ptr)
Alex Tomasa86c6182006-10-11 01:21:03 -0700731{
732 struct ext4_extent_idx *ix;
733 int len, err;
734
Avantika Mathur7e028972006-12-06 20:41:33 -0800735 err = ext4_ext_get_access(handle, inode, curp);
736 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700737 return err;
738
Frank Mayhar273df552010-03-02 11:46:09 -0500739 if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) {
740 EXT4_ERROR_INODE(inode,
741 "logical %d == ei_block %d!",
742 logical, le32_to_cpu(curp->p_idx->ei_block));
743 return -EIO;
744 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700745 len = EXT_MAX_INDEX(curp->p_hdr) - curp->p_idx;
746 if (logical > le32_to_cpu(curp->p_idx->ei_block)) {
747 /* insert after */
748 if (curp->p_idx != EXT_LAST_INDEX(curp->p_hdr)) {
749 len = (len - 1) * sizeof(struct ext4_extent_idx);
750 len = len < 0 ? 0 : len;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400751 ext_debug("insert new index %d after: %llu. "
Alex Tomasa86c6182006-10-11 01:21:03 -0700752 "move %d from 0x%p to 0x%p\n",
753 logical, ptr, len,
754 (curp->p_idx + 1), (curp->p_idx + 2));
755 memmove(curp->p_idx + 2, curp->p_idx + 1, len);
756 }
757 ix = curp->p_idx + 1;
758 } else {
759 /* insert before */
760 len = len * sizeof(struct ext4_extent_idx);
761 len = len < 0 ? 0 : len;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400762 ext_debug("insert new index %d before: %llu. "
Alex Tomasa86c6182006-10-11 01:21:03 -0700763 "move %d from 0x%p to 0x%p\n",
764 logical, ptr, len,
765 curp->p_idx, (curp->p_idx + 1));
766 memmove(curp->p_idx + 1, curp->p_idx, len);
767 ix = curp->p_idx;
768 }
769
770 ix->ei_block = cpu_to_le32(logical);
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700771 ext4_idx_store_pblock(ix, ptr);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400772 le16_add_cpu(&curp->p_hdr->eh_entries, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -0700773
Frank Mayhar273df552010-03-02 11:46:09 -0500774 if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries)
775 > le16_to_cpu(curp->p_hdr->eh_max))) {
776 EXT4_ERROR_INODE(inode,
777 "logical %d == ei_block %d!",
778 logical, le32_to_cpu(curp->p_idx->ei_block));
779 return -EIO;
780 }
781 if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) {
782 EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!");
783 return -EIO;
784 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700785
786 err = ext4_ext_dirty(handle, inode, curp);
787 ext4_std_error(inode->i_sb, err);
788
789 return err;
790}
791
792/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700793 * ext4_ext_split:
794 * inserts new subtree into the path, using free index entry
795 * at depth @at:
796 * - allocates all needed blocks (new leaf and all intermediate index blocks)
797 * - makes decision where to split
798 * - moves remaining extents and index entries (right to the split point)
799 * into the newly allocated blocks
800 * - initializes subtree
Alex Tomasa86c6182006-10-11 01:21:03 -0700801 */
802static int ext4_ext_split(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -0400803 unsigned int flags,
804 struct ext4_ext_path *path,
805 struct ext4_extent *newext, int at)
Alex Tomasa86c6182006-10-11 01:21:03 -0700806{
807 struct buffer_head *bh = NULL;
808 int depth = ext_depth(inode);
809 struct ext4_extent_header *neh;
810 struct ext4_extent_idx *fidx;
811 struct ext4_extent *ex;
812 int i = at, k, m, a;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700813 ext4_fsblk_t newblock, oldblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700814 __le32 border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700815 ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */
Alex Tomasa86c6182006-10-11 01:21:03 -0700816 int err = 0;
817
818 /* make decision: where to split? */
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700819 /* FIXME: now decision is simplest: at current extent */
Alex Tomasa86c6182006-10-11 01:21:03 -0700820
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700821 /* if current leaf will be split, then we should use
Alex Tomasa86c6182006-10-11 01:21:03 -0700822 * border from split point */
Frank Mayhar273df552010-03-02 11:46:09 -0500823 if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) {
824 EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!");
825 return -EIO;
826 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700827 if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) {
828 border = path[depth].p_ext[1].ee_block;
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700829 ext_debug("leaf will be split."
Alex Tomasa86c6182006-10-11 01:21:03 -0700830 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400831 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700832 } else {
833 border = newext->ee_block;
834 ext_debug("leaf will be added."
835 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400836 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700837 }
838
839 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700840 * If error occurs, then we break processing
841 * and mark filesystem read-only. index won't
Alex Tomasa86c6182006-10-11 01:21:03 -0700842 * be inserted and tree will be in consistent
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700843 * state. Next mount will repair buffers too.
Alex Tomasa86c6182006-10-11 01:21:03 -0700844 */
845
846 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700847 * Get array to track all allocated blocks.
848 * We need this to handle errors and free blocks
849 * upon them.
Alex Tomasa86c6182006-10-11 01:21:03 -0700850 */
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800851 ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS);
Alex Tomasa86c6182006-10-11 01:21:03 -0700852 if (!ablocks)
853 return -ENOMEM;
Alex Tomasa86c6182006-10-11 01:21:03 -0700854
855 /* allocate all needed blocks */
856 ext_debug("allocate %d blocks for indexes/leaf\n", depth - at);
857 for (a = 0; a < depth - at; a++) {
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400858 newblock = ext4_ext_new_meta_block(handle, inode, path,
Allison Henderson55f020d2011-05-25 07:41:26 -0400859 newext, &err, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -0700860 if (newblock == 0)
861 goto cleanup;
862 ablocks[a] = newblock;
863 }
864
865 /* initialize new leaf */
866 newblock = ablocks[--a];
Frank Mayhar273df552010-03-02 11:46:09 -0500867 if (unlikely(newblock == 0)) {
868 EXT4_ERROR_INODE(inode, "newblock == 0!");
869 err = -EIO;
870 goto cleanup;
871 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700872 bh = sb_getblk(inode->i_sb, newblock);
873 if (!bh) {
874 err = -EIO;
875 goto cleanup;
876 }
877 lock_buffer(bh);
878
Avantika Mathur7e028972006-12-06 20:41:33 -0800879 err = ext4_journal_get_create_access(handle, bh);
880 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700881 goto cleanup;
882
883 neh = ext_block_hdr(bh);
884 neh->eh_entries = 0;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400885 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -0700886 neh->eh_magic = EXT4_EXT_MAGIC;
887 neh->eh_depth = 0;
888 ex = EXT_FIRST_EXTENT(neh);
889
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700890 /* move remainder of path[depth] to the new leaf */
Frank Mayhar273df552010-03-02 11:46:09 -0500891 if (unlikely(path[depth].p_hdr->eh_entries !=
892 path[depth].p_hdr->eh_max)) {
893 EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!",
894 path[depth].p_hdr->eh_entries,
895 path[depth].p_hdr->eh_max);
896 err = -EIO;
897 goto cleanup;
898 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700899 /* start copy from next extent */
900 /* TODO: we could do it by single memmove */
901 m = 0;
902 path[depth].p_ext++;
903 while (path[depth].p_ext <=
904 EXT_MAX_EXTENT(path[depth].p_hdr)) {
Mingming553f9002009-09-18 13:34:55 -0400905 ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400906 le32_to_cpu(path[depth].p_ext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400907 ext4_ext_pblock(path[depth].p_ext),
Mingming553f9002009-09-18 13:34:55 -0400908 ext4_ext_is_uninitialized(path[depth].p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400909 ext4_ext_get_actual_len(path[depth].p_ext),
Alex Tomasa86c6182006-10-11 01:21:03 -0700910 newblock);
911 /*memmove(ex++, path[depth].p_ext++,
912 sizeof(struct ext4_extent));
913 neh->eh_entries++;*/
914 path[depth].p_ext++;
915 m++;
916 }
917 if (m) {
918 memmove(ex, path[depth].p_ext-m, sizeof(struct ext4_extent)*m);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400919 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -0700920 }
921
922 set_buffer_uptodate(bh);
923 unlock_buffer(bh);
924
Frank Mayhar03901312009-01-07 00:06:22 -0500925 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -0800926 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700927 goto cleanup;
928 brelse(bh);
929 bh = NULL;
930
931 /* correct old leaf */
932 if (m) {
Avantika Mathur7e028972006-12-06 20:41:33 -0800933 err = ext4_ext_get_access(handle, inode, path + depth);
934 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700935 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -0400936 le16_add_cpu(&path[depth].p_hdr->eh_entries, -m);
Avantika Mathur7e028972006-12-06 20:41:33 -0800937 err = ext4_ext_dirty(handle, inode, path + depth);
938 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700939 goto cleanup;
940
941 }
942
943 /* create intermediate indexes */
944 k = depth - at - 1;
Frank Mayhar273df552010-03-02 11:46:09 -0500945 if (unlikely(k < 0)) {
946 EXT4_ERROR_INODE(inode, "k %d < 0!", k);
947 err = -EIO;
948 goto cleanup;
949 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700950 if (k)
951 ext_debug("create %d intermediate indices\n", k);
952 /* insert new index into current index block */
953 /* current depth stored in i var */
954 i = depth - 1;
955 while (k--) {
956 oldblock = newblock;
957 newblock = ablocks[--a];
Eric Sandeenbba90742008-01-28 23:58:27 -0500958 bh = sb_getblk(inode->i_sb, newblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700959 if (!bh) {
960 err = -EIO;
961 goto cleanup;
962 }
963 lock_buffer(bh);
964
Avantika Mathur7e028972006-12-06 20:41:33 -0800965 err = ext4_journal_get_create_access(handle, bh);
966 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700967 goto cleanup;
968
969 neh = ext_block_hdr(bh);
970 neh->eh_entries = cpu_to_le16(1);
971 neh->eh_magic = EXT4_EXT_MAGIC;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400972 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -0700973 neh->eh_depth = cpu_to_le16(depth - i);
974 fidx = EXT_FIRST_INDEX(neh);
975 fidx->ei_block = border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700976 ext4_idx_store_pblock(fidx, oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700977
Eric Sandeenbba90742008-01-28 23:58:27 -0500978 ext_debug("int.index at %d (block %llu): %u -> %llu\n",
979 i, newblock, le32_to_cpu(border), oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700980 /* copy indexes */
981 m = 0;
982 path[i].p_idx++;
983
984 ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx,
985 EXT_MAX_INDEX(path[i].p_hdr));
Frank Mayhar273df552010-03-02 11:46:09 -0500986 if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) !=
987 EXT_LAST_INDEX(path[i].p_hdr))) {
988 EXT4_ERROR_INODE(inode,
989 "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!",
990 le32_to_cpu(path[i].p_ext->ee_block));
991 err = -EIO;
992 goto cleanup;
993 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700994 while (path[i].p_idx <= EXT_MAX_INDEX(path[i].p_hdr)) {
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400995 ext_debug("%d: move %d:%llu in new index %llu\n", i,
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400996 le32_to_cpu(path[i].p_idx->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400997 ext4_idx_pblock(path[i].p_idx),
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400998 newblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700999 /*memmove(++fidx, path[i].p_idx++,
1000 sizeof(struct ext4_extent_idx));
1001 neh->eh_entries++;
1002 BUG_ON(neh->eh_entries > neh->eh_max);*/
1003 path[i].p_idx++;
1004 m++;
1005 }
1006 if (m) {
1007 memmove(++fidx, path[i].p_idx - m,
1008 sizeof(struct ext4_extent_idx) * m);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001009 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -07001010 }
1011 set_buffer_uptodate(bh);
1012 unlock_buffer(bh);
1013
Frank Mayhar03901312009-01-07 00:06:22 -05001014 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -08001015 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001016 goto cleanup;
1017 brelse(bh);
1018 bh = NULL;
1019
1020 /* correct old index */
1021 if (m) {
1022 err = ext4_ext_get_access(handle, inode, path + i);
1023 if (err)
1024 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -04001025 le16_add_cpu(&path[i].p_hdr->eh_entries, -m);
Alex Tomasa86c6182006-10-11 01:21:03 -07001026 err = ext4_ext_dirty(handle, inode, path + i);
1027 if (err)
1028 goto cleanup;
1029 }
1030
1031 i--;
1032 }
1033
1034 /* insert new index */
Alex Tomasa86c6182006-10-11 01:21:03 -07001035 err = ext4_ext_insert_index(handle, inode, path + at,
1036 le32_to_cpu(border), newblock);
1037
1038cleanup:
1039 if (bh) {
1040 if (buffer_locked(bh))
1041 unlock_buffer(bh);
1042 brelse(bh);
1043 }
1044
1045 if (err) {
1046 /* free all allocated blocks in error case */
1047 for (i = 0; i < depth; i++) {
1048 if (!ablocks[i])
1049 continue;
Peter Huewe7dc57612011-02-21 21:01:42 -05001050 ext4_free_blocks(handle, inode, NULL, ablocks[i], 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -05001051 EXT4_FREE_BLOCKS_METADATA);
Alex Tomasa86c6182006-10-11 01:21:03 -07001052 }
1053 }
1054 kfree(ablocks);
1055
1056 return err;
1057}
1058
1059/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001060 * ext4_ext_grow_indepth:
1061 * implements tree growing procedure:
1062 * - allocates new block
1063 * - moves top-level data (index block or leaf) into the new block
1064 * - initializes new top-level, creating index that points to the
1065 * just created block
Alex Tomasa86c6182006-10-11 01:21:03 -07001066 */
1067static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -04001068 unsigned int flags,
1069 struct ext4_ext_path *path,
1070 struct ext4_extent *newext)
Alex Tomasa86c6182006-10-11 01:21:03 -07001071{
1072 struct ext4_ext_path *curp = path;
1073 struct ext4_extent_header *neh;
Alex Tomasa86c6182006-10-11 01:21:03 -07001074 struct buffer_head *bh;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001075 ext4_fsblk_t newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07001076 int err = 0;
1077
Allison Henderson55f020d2011-05-25 07:41:26 -04001078 newblock = ext4_ext_new_meta_block(handle, inode, path,
1079 newext, &err, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07001080 if (newblock == 0)
1081 return err;
1082
1083 bh = sb_getblk(inode->i_sb, newblock);
1084 if (!bh) {
1085 err = -EIO;
1086 ext4_std_error(inode->i_sb, err);
1087 return err;
1088 }
1089 lock_buffer(bh);
1090
Avantika Mathur7e028972006-12-06 20:41:33 -08001091 err = ext4_journal_get_create_access(handle, bh);
1092 if (err) {
Alex Tomasa86c6182006-10-11 01:21:03 -07001093 unlock_buffer(bh);
1094 goto out;
1095 }
1096
1097 /* move top-level index/leaf into new block */
1098 memmove(bh->b_data, curp->p_hdr, sizeof(EXT4_I(inode)->i_data));
1099
1100 /* set size of new block */
1101 neh = ext_block_hdr(bh);
1102 /* old root could have indexes or leaves
1103 * so calculate e_max right way */
1104 if (ext_depth(inode))
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001105 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001106 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001107 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001108 neh->eh_magic = EXT4_EXT_MAGIC;
1109 set_buffer_uptodate(bh);
1110 unlock_buffer(bh);
1111
Frank Mayhar03901312009-01-07 00:06:22 -05001112 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -08001113 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001114 goto out;
1115
1116 /* create index in new top-level index: num,max,pointer */
Avantika Mathur7e028972006-12-06 20:41:33 -08001117 err = ext4_ext_get_access(handle, inode, curp);
1118 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001119 goto out;
1120
1121 curp->p_hdr->eh_magic = EXT4_EXT_MAGIC;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001122 curp->p_hdr->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001123 curp->p_hdr->eh_entries = cpu_to_le16(1);
1124 curp->p_idx = EXT_FIRST_INDEX(curp->p_hdr);
Dmitry Monakhove9f410b2007-07-18 09:09:15 -04001125
1126 if (path[0].p_hdr->eh_depth)
1127 curp->p_idx->ei_block =
1128 EXT_FIRST_INDEX(path[0].p_hdr)->ei_block;
1129 else
1130 curp->p_idx->ei_block =
1131 EXT_FIRST_EXTENT(path[0].p_hdr)->ee_block;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001132 ext4_idx_store_pblock(curp->p_idx, newblock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001133
1134 neh = ext_inode_hdr(inode);
Mingming Cao2ae02102006-10-11 01:21:11 -07001135 ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
Alex Tomasa86c6182006-10-11 01:21:03 -07001136 le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max),
Andi Kleen5a0790c2010-06-14 13:28:03 -04001137 le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001138 ext4_idx_pblock(EXT_FIRST_INDEX(neh)));
Alex Tomasa86c6182006-10-11 01:21:03 -07001139
1140 neh->eh_depth = cpu_to_le16(path->p_depth + 1);
1141 err = ext4_ext_dirty(handle, inode, curp);
1142out:
1143 brelse(bh);
1144
1145 return err;
1146}
1147
1148/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001149 * ext4_ext_create_new_leaf:
1150 * finds empty index and adds new leaf.
1151 * if no free index is found, then it requests in-depth growing.
Alex Tomasa86c6182006-10-11 01:21:03 -07001152 */
1153static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -04001154 unsigned int flags,
1155 struct ext4_ext_path *path,
1156 struct ext4_extent *newext)
Alex Tomasa86c6182006-10-11 01:21:03 -07001157{
1158 struct ext4_ext_path *curp;
1159 int depth, i, err = 0;
1160
1161repeat:
1162 i = depth = ext_depth(inode);
1163
1164 /* walk up to the tree and look for free index entry */
1165 curp = path + depth;
1166 while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) {
1167 i--;
1168 curp--;
1169 }
1170
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001171 /* we use already allocated block for index block,
1172 * so subsequent data blocks should be contiguous */
Alex Tomasa86c6182006-10-11 01:21:03 -07001173 if (EXT_HAS_FREE_INDEX(curp)) {
1174 /* if we found index with free entry, then use that
1175 * entry: create all needed subtree and add new leaf */
Allison Henderson55f020d2011-05-25 07:41:26 -04001176 err = ext4_ext_split(handle, inode, flags, path, newext, i);
Shen Feng787e0982008-07-11 19:27:31 -04001177 if (err)
1178 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07001179
1180 /* refill path */
1181 ext4_ext_drop_refs(path);
1182 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001183 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1184 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001185 if (IS_ERR(path))
1186 err = PTR_ERR(path);
1187 } else {
1188 /* tree is full, time to grow in depth */
Allison Henderson55f020d2011-05-25 07:41:26 -04001189 err = ext4_ext_grow_indepth(handle, inode, flags,
1190 path, newext);
Alex Tomasa86c6182006-10-11 01:21:03 -07001191 if (err)
1192 goto out;
1193
1194 /* refill path */
1195 ext4_ext_drop_refs(path);
1196 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001197 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1198 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001199 if (IS_ERR(path)) {
1200 err = PTR_ERR(path);
1201 goto out;
1202 }
1203
1204 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001205 * only first (depth 0 -> 1) produces free space;
1206 * in all other cases we have to split the grown tree
Alex Tomasa86c6182006-10-11 01:21:03 -07001207 */
1208 depth = ext_depth(inode);
1209 if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001210 /* now we need to split */
Alex Tomasa86c6182006-10-11 01:21:03 -07001211 goto repeat;
1212 }
1213 }
1214
1215out:
1216 return err;
1217}
1218
1219/*
Alex Tomas1988b512008-01-28 23:58:27 -05001220 * search the closest allocated block to the left for *logical
1221 * and returns it at @logical + it's physical address at @phys
1222 * if *logical is the smallest allocated block, the function
1223 * returns 0 at @phys
1224 * return value contains 0 (success) or error code
1225 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001226static int ext4_ext_search_left(struct inode *inode,
1227 struct ext4_ext_path *path,
1228 ext4_lblk_t *logical, ext4_fsblk_t *phys)
Alex Tomas1988b512008-01-28 23:58:27 -05001229{
1230 struct ext4_extent_idx *ix;
1231 struct ext4_extent *ex;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001232 int depth, ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001233
Frank Mayhar273df552010-03-02 11:46:09 -05001234 if (unlikely(path == NULL)) {
1235 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1236 return -EIO;
1237 }
Alex Tomas1988b512008-01-28 23:58:27 -05001238 depth = path->p_depth;
1239 *phys = 0;
1240
1241 if (depth == 0 && path->p_ext == NULL)
1242 return 0;
1243
1244 /* usually extent in the path covers blocks smaller
1245 * then *logical, but it can be that extent is the
1246 * first one in the file */
1247
1248 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001249 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001250 if (*logical < le32_to_cpu(ex->ee_block)) {
Frank Mayhar273df552010-03-02 11:46:09 -05001251 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1252 EXT4_ERROR_INODE(inode,
1253 "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!",
1254 *logical, le32_to_cpu(ex->ee_block));
1255 return -EIO;
1256 }
Alex Tomas1988b512008-01-28 23:58:27 -05001257 while (--depth >= 0) {
1258 ix = path[depth].p_idx;
Frank Mayhar273df552010-03-02 11:46:09 -05001259 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1260 EXT4_ERROR_INODE(inode,
1261 "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!",
1262 ix != NULL ? ix->ei_block : 0,
1263 EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ?
1264 EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block : 0,
1265 depth);
1266 return -EIO;
1267 }
Alex Tomas1988b512008-01-28 23:58:27 -05001268 }
1269 return 0;
1270 }
1271
Frank Mayhar273df552010-03-02 11:46:09 -05001272 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1273 EXT4_ERROR_INODE(inode,
1274 "logical %d < ee_block %d + ee_len %d!",
1275 *logical, le32_to_cpu(ex->ee_block), ee_len);
1276 return -EIO;
1277 }
Alex Tomas1988b512008-01-28 23:58:27 -05001278
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001279 *logical = le32_to_cpu(ex->ee_block) + ee_len - 1;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001280 *phys = ext4_ext_pblock(ex) + ee_len - 1;
Alex Tomas1988b512008-01-28 23:58:27 -05001281 return 0;
1282}
1283
1284/*
1285 * search the closest allocated block to the right for *logical
1286 * and returns it at @logical + it's physical address at @phys
1287 * if *logical is the smallest allocated block, the function
1288 * returns 0 at @phys
1289 * return value contains 0 (success) or error code
1290 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001291static int ext4_ext_search_right(struct inode *inode,
1292 struct ext4_ext_path *path,
1293 ext4_lblk_t *logical, ext4_fsblk_t *phys)
Alex Tomas1988b512008-01-28 23:58:27 -05001294{
1295 struct buffer_head *bh = NULL;
1296 struct ext4_extent_header *eh;
1297 struct ext4_extent_idx *ix;
1298 struct ext4_extent *ex;
1299 ext4_fsblk_t block;
Eric Sandeen395a87b2009-03-10 18:18:47 -04001300 int depth; /* Note, NOT eh_depth; depth from top of tree */
1301 int ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001302
Frank Mayhar273df552010-03-02 11:46:09 -05001303 if (unlikely(path == NULL)) {
1304 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1305 return -EIO;
1306 }
Alex Tomas1988b512008-01-28 23:58:27 -05001307 depth = path->p_depth;
1308 *phys = 0;
1309
1310 if (depth == 0 && path->p_ext == NULL)
1311 return 0;
1312
1313 /* usually extent in the path covers blocks smaller
1314 * then *logical, but it can be that extent is the
1315 * first one in the file */
1316
1317 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001318 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001319 if (*logical < le32_to_cpu(ex->ee_block)) {
Frank Mayhar273df552010-03-02 11:46:09 -05001320 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1321 EXT4_ERROR_INODE(inode,
1322 "first_extent(path[%d].p_hdr) != ex",
1323 depth);
1324 return -EIO;
1325 }
Alex Tomas1988b512008-01-28 23:58:27 -05001326 while (--depth >= 0) {
1327 ix = path[depth].p_idx;
Frank Mayhar273df552010-03-02 11:46:09 -05001328 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1329 EXT4_ERROR_INODE(inode,
1330 "ix != EXT_FIRST_INDEX *logical %d!",
1331 *logical);
1332 return -EIO;
1333 }
Alex Tomas1988b512008-01-28 23:58:27 -05001334 }
1335 *logical = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001336 *phys = ext4_ext_pblock(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001337 return 0;
1338 }
1339
Frank Mayhar273df552010-03-02 11:46:09 -05001340 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1341 EXT4_ERROR_INODE(inode,
1342 "logical %d < ee_block %d + ee_len %d!",
1343 *logical, le32_to_cpu(ex->ee_block), ee_len);
1344 return -EIO;
1345 }
Alex Tomas1988b512008-01-28 23:58:27 -05001346
1347 if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) {
1348 /* next allocated block in this leaf */
1349 ex++;
1350 *logical = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001351 *phys = ext4_ext_pblock(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001352 return 0;
1353 }
1354
1355 /* go up and search for index to the right */
1356 while (--depth >= 0) {
1357 ix = path[depth].p_idx;
1358 if (ix != EXT_LAST_INDEX(path[depth].p_hdr))
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001359 goto got_index;
Alex Tomas1988b512008-01-28 23:58:27 -05001360 }
1361
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001362 /* we've gone up to the root and found no index to the right */
1363 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001364
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001365got_index:
Alex Tomas1988b512008-01-28 23:58:27 -05001366 /* we've found index to the right, let's
1367 * follow it and find the closest allocated
1368 * block to the right */
1369 ix++;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001370 block = ext4_idx_pblock(ix);
Alex Tomas1988b512008-01-28 23:58:27 -05001371 while (++depth < path->p_depth) {
1372 bh = sb_bread(inode->i_sb, block);
1373 if (bh == NULL)
1374 return -EIO;
1375 eh = ext_block_hdr(bh);
Eric Sandeen395a87b2009-03-10 18:18:47 -04001376 /* subtract from p_depth to get proper eh_depth */
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -04001377 if (ext4_ext_check(inode, eh, path->p_depth - depth)) {
Alex Tomas1988b512008-01-28 23:58:27 -05001378 put_bh(bh);
1379 return -EIO;
1380 }
1381 ix = EXT_FIRST_INDEX(eh);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001382 block = ext4_idx_pblock(ix);
Alex Tomas1988b512008-01-28 23:58:27 -05001383 put_bh(bh);
1384 }
1385
1386 bh = sb_bread(inode->i_sb, block);
1387 if (bh == NULL)
1388 return -EIO;
1389 eh = ext_block_hdr(bh);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -04001390 if (ext4_ext_check(inode, eh, path->p_depth - depth)) {
Alex Tomas1988b512008-01-28 23:58:27 -05001391 put_bh(bh);
1392 return -EIO;
1393 }
1394 ex = EXT_FIRST_EXTENT(eh);
1395 *logical = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001396 *phys = ext4_ext_pblock(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001397 put_bh(bh);
1398 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001399}
1400
1401/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001402 * ext4_ext_next_allocated_block:
1403 * returns allocated block in subsequent extent or EXT_MAX_BLOCK.
1404 * NOTE: it considers block number from index entry as
1405 * allocated block. Thus, index entries have to be consistent
1406 * with leaves.
Alex Tomasa86c6182006-10-11 01:21:03 -07001407 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001408static ext4_lblk_t
Alex Tomasa86c6182006-10-11 01:21:03 -07001409ext4_ext_next_allocated_block(struct ext4_ext_path *path)
1410{
1411 int depth;
1412
1413 BUG_ON(path == NULL);
1414 depth = path->p_depth;
1415
1416 if (depth == 0 && path->p_ext == NULL)
1417 return EXT_MAX_BLOCK;
1418
1419 while (depth >= 0) {
1420 if (depth == path->p_depth) {
1421 /* leaf */
1422 if (path[depth].p_ext !=
1423 EXT_LAST_EXTENT(path[depth].p_hdr))
1424 return le32_to_cpu(path[depth].p_ext[1].ee_block);
1425 } else {
1426 /* index */
1427 if (path[depth].p_idx !=
1428 EXT_LAST_INDEX(path[depth].p_hdr))
1429 return le32_to_cpu(path[depth].p_idx[1].ei_block);
1430 }
1431 depth--;
1432 }
1433
1434 return EXT_MAX_BLOCK;
1435}
1436
1437/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001438 * ext4_ext_next_leaf_block:
Alex Tomasa86c6182006-10-11 01:21:03 -07001439 * returns first allocated block from next leaf or EXT_MAX_BLOCK
1440 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001441static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode,
Andrew Morton63f57932006-10-11 01:21:24 -07001442 struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -07001443{
1444 int depth;
1445
1446 BUG_ON(path == NULL);
1447 depth = path->p_depth;
1448
1449 /* zero-tree has no leaf blocks at all */
1450 if (depth == 0)
1451 return EXT_MAX_BLOCK;
1452
1453 /* go to index block */
1454 depth--;
1455
1456 while (depth >= 0) {
1457 if (path[depth].p_idx !=
1458 EXT_LAST_INDEX(path[depth].p_hdr))
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001459 return (ext4_lblk_t)
1460 le32_to_cpu(path[depth].p_idx[1].ei_block);
Alex Tomasa86c6182006-10-11 01:21:03 -07001461 depth--;
1462 }
1463
1464 return EXT_MAX_BLOCK;
1465}
1466
1467/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001468 * ext4_ext_correct_indexes:
1469 * if leaf gets modified and modified extent is first in the leaf,
1470 * then we have to correct all indexes above.
Alex Tomasa86c6182006-10-11 01:21:03 -07001471 * TODO: do we need to correct tree in all cases?
1472 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001473static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -07001474 struct ext4_ext_path *path)
1475{
1476 struct ext4_extent_header *eh;
1477 int depth = ext_depth(inode);
1478 struct ext4_extent *ex;
1479 __le32 border;
1480 int k, err = 0;
1481
1482 eh = path[depth].p_hdr;
1483 ex = path[depth].p_ext;
Frank Mayhar273df552010-03-02 11:46:09 -05001484
1485 if (unlikely(ex == NULL || eh == NULL)) {
1486 EXT4_ERROR_INODE(inode,
1487 "ex %p == NULL or eh %p == NULL", ex, eh);
1488 return -EIO;
1489 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001490
1491 if (depth == 0) {
1492 /* there is no tree at all */
1493 return 0;
1494 }
1495
1496 if (ex != EXT_FIRST_EXTENT(eh)) {
1497 /* we correct tree if first leaf got modified only */
1498 return 0;
1499 }
1500
1501 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001502 * TODO: we need correction if border is smaller than current one
Alex Tomasa86c6182006-10-11 01:21:03 -07001503 */
1504 k = depth - 1;
1505 border = path[depth].p_ext->ee_block;
Avantika Mathur7e028972006-12-06 20:41:33 -08001506 err = ext4_ext_get_access(handle, inode, path + k);
1507 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001508 return err;
1509 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001510 err = ext4_ext_dirty(handle, inode, path + k);
1511 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001512 return err;
1513
1514 while (k--) {
1515 /* change all left-side indexes */
1516 if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr))
1517 break;
Avantika Mathur7e028972006-12-06 20:41:33 -08001518 err = ext4_ext_get_access(handle, inode, path + k);
1519 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001520 break;
1521 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001522 err = ext4_ext_dirty(handle, inode, path + k);
1523 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001524 break;
1525 }
1526
1527 return err;
1528}
1529
Akira Fujita748de672009-06-17 19:24:03 -04001530int
Alex Tomasa86c6182006-10-11 01:21:03 -07001531ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1,
1532 struct ext4_extent *ex2)
1533{
Amit Arora749269f2007-07-18 09:02:56 -04001534 unsigned short ext1_ee_len, ext2_ee_len, max_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001535
1536 /*
1537 * Make sure that either both extents are uninitialized, or
1538 * both are _not_.
1539 */
1540 if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2))
1541 return 0;
1542
Amit Arora749269f2007-07-18 09:02:56 -04001543 if (ext4_ext_is_uninitialized(ex1))
1544 max_len = EXT_UNINIT_MAX_LEN;
1545 else
1546 max_len = EXT_INIT_MAX_LEN;
1547
Amit Aroraa2df2a62007-07-17 21:42:41 -04001548 ext1_ee_len = ext4_ext_get_actual_len(ex1);
1549 ext2_ee_len = ext4_ext_get_actual_len(ex2);
1550
1551 if (le32_to_cpu(ex1->ee_block) + ext1_ee_len !=
Andrew Morton63f57932006-10-11 01:21:24 -07001552 le32_to_cpu(ex2->ee_block))
Alex Tomasa86c6182006-10-11 01:21:03 -07001553 return 0;
1554
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001555 /*
1556 * To allow future support for preallocated extents to be added
1557 * as an RO_COMPAT feature, refuse to merge to extents if
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001558 * this can result in the top bit of ee_len being set.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001559 */
Amit Arora749269f2007-07-18 09:02:56 -04001560 if (ext1_ee_len + ext2_ee_len > max_len)
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001561 return 0;
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01001562#ifdef AGGRESSIVE_TEST
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001563 if (ext1_ee_len >= 4)
Alex Tomasa86c6182006-10-11 01:21:03 -07001564 return 0;
1565#endif
1566
Theodore Ts'obf89d162010-10-27 21:30:14 -04001567 if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2))
Alex Tomasa86c6182006-10-11 01:21:03 -07001568 return 1;
1569 return 0;
1570}
1571
1572/*
Amit Arora56055d32007-07-17 21:42:38 -04001573 * This function tries to merge the "ex" extent to the next extent in the tree.
1574 * It always tries to merge towards right. If you want to merge towards
1575 * left, pass "ex - 1" as argument instead of "ex".
1576 * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
1577 * 1 if they got merged.
1578 */
Yongqiang Yang197217a2011-05-03 11:45:29 -04001579static int ext4_ext_try_to_merge_right(struct inode *inode,
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001580 struct ext4_ext_path *path,
1581 struct ext4_extent *ex)
Amit Arora56055d32007-07-17 21:42:38 -04001582{
1583 struct ext4_extent_header *eh;
1584 unsigned int depth, len;
1585 int merge_done = 0;
1586 int uninitialized = 0;
1587
1588 depth = ext_depth(inode);
1589 BUG_ON(path[depth].p_hdr == NULL);
1590 eh = path[depth].p_hdr;
1591
1592 while (ex < EXT_LAST_EXTENT(eh)) {
1593 if (!ext4_can_extents_be_merged(inode, ex, ex + 1))
1594 break;
1595 /* merge with next extent! */
1596 if (ext4_ext_is_uninitialized(ex))
1597 uninitialized = 1;
1598 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1599 + ext4_ext_get_actual_len(ex + 1));
1600 if (uninitialized)
1601 ext4_ext_mark_uninitialized(ex);
1602
1603 if (ex + 1 < EXT_LAST_EXTENT(eh)) {
1604 len = (EXT_LAST_EXTENT(eh) - ex - 1)
1605 * sizeof(struct ext4_extent);
1606 memmove(ex + 1, ex + 2, len);
1607 }
Marcin Slusarze8546d02008-04-17 10:38:59 -04001608 le16_add_cpu(&eh->eh_entries, -1);
Amit Arora56055d32007-07-17 21:42:38 -04001609 merge_done = 1;
1610 WARN_ON(eh->eh_entries == 0);
1611 if (!eh->eh_entries)
Theodore Ts'o24676da2010-05-16 21:00:00 -04001612 EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!");
Amit Arora56055d32007-07-17 21:42:38 -04001613 }
1614
1615 return merge_done;
1616}
1617
1618/*
Yongqiang Yang197217a2011-05-03 11:45:29 -04001619 * This function tries to merge the @ex extent to neighbours in the tree.
1620 * return 1 if merge left else 0.
1621 */
1622static int ext4_ext_try_to_merge(struct inode *inode,
1623 struct ext4_ext_path *path,
1624 struct ext4_extent *ex) {
1625 struct ext4_extent_header *eh;
1626 unsigned int depth;
1627 int merge_done = 0;
1628 int ret = 0;
1629
1630 depth = ext_depth(inode);
1631 BUG_ON(path[depth].p_hdr == NULL);
1632 eh = path[depth].p_hdr;
1633
1634 if (ex > EXT_FIRST_EXTENT(eh))
1635 merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1);
1636
1637 if (!merge_done)
1638 ret = ext4_ext_try_to_merge_right(inode, path, ex);
1639
1640 return ret;
1641}
1642
1643/*
Amit Arora25d14f92007-05-24 13:04:13 -04001644 * check if a portion of the "newext" extent overlaps with an
1645 * existing extent.
1646 *
1647 * If there is an overlap discovered, it updates the length of the newext
1648 * such that there will be no overlap, and then returns 1.
1649 * If there is no overlap found, it returns 0.
1650 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001651static unsigned int ext4_ext_check_overlap(struct inode *inode,
1652 struct ext4_extent *newext,
1653 struct ext4_ext_path *path)
Amit Arora25d14f92007-05-24 13:04:13 -04001654{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001655 ext4_lblk_t b1, b2;
Amit Arora25d14f92007-05-24 13:04:13 -04001656 unsigned int depth, len1;
1657 unsigned int ret = 0;
1658
1659 b1 = le32_to_cpu(newext->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04001660 len1 = ext4_ext_get_actual_len(newext);
Amit Arora25d14f92007-05-24 13:04:13 -04001661 depth = ext_depth(inode);
1662 if (!path[depth].p_ext)
1663 goto out;
1664 b2 = le32_to_cpu(path[depth].p_ext->ee_block);
1665
1666 /*
1667 * get the next allocated block if the extent in the path
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001668 * is before the requested block(s)
Amit Arora25d14f92007-05-24 13:04:13 -04001669 */
1670 if (b2 < b1) {
1671 b2 = ext4_ext_next_allocated_block(path);
1672 if (b2 == EXT_MAX_BLOCK)
1673 goto out;
1674 }
1675
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001676 /* check for wrap through zero on extent logical start block*/
Amit Arora25d14f92007-05-24 13:04:13 -04001677 if (b1 + len1 < b1) {
1678 len1 = EXT_MAX_BLOCK - b1;
1679 newext->ee_len = cpu_to_le16(len1);
1680 ret = 1;
1681 }
1682
1683 /* check for overlap */
1684 if (b1 + len1 > b2) {
1685 newext->ee_len = cpu_to_le16(b2 - b1);
1686 ret = 1;
1687 }
1688out:
1689 return ret;
1690}
1691
1692/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001693 * ext4_ext_insert_extent:
1694 * tries to merge requsted extent into the existing extent or
1695 * inserts requested extent as new one into the tree,
1696 * creating new leaf in the no-space case.
Alex Tomasa86c6182006-10-11 01:21:03 -07001697 */
1698int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
1699 struct ext4_ext_path *path,
Mingming Cao00314622009-09-28 15:49:08 -04001700 struct ext4_extent *newext, int flag)
Alex Tomasa86c6182006-10-11 01:21:03 -07001701{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001702 struct ext4_extent_header *eh;
Alex Tomasa86c6182006-10-11 01:21:03 -07001703 struct ext4_extent *ex, *fex;
1704 struct ext4_extent *nearex; /* nearest extent */
1705 struct ext4_ext_path *npath = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001706 int depth, len, err;
1707 ext4_lblk_t next;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001708 unsigned uninitialized = 0;
Allison Henderson55f020d2011-05-25 07:41:26 -04001709 int flags = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07001710
Frank Mayhar273df552010-03-02 11:46:09 -05001711 if (unlikely(ext4_ext_get_actual_len(newext) == 0)) {
1712 EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0");
1713 return -EIO;
1714 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001715 depth = ext_depth(inode);
1716 ex = path[depth].p_ext;
Frank Mayhar273df552010-03-02 11:46:09 -05001717 if (unlikely(path[depth].p_hdr == NULL)) {
1718 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1719 return -EIO;
1720 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001721
1722 /* try to insert block into found extent and return */
Jiaying Zhang744692d2010-03-04 16:14:02 -05001723 if (ex && !(flag & EXT4_GET_BLOCKS_PRE_IO)
Mingming Cao00314622009-09-28 15:49:08 -04001724 && ext4_can_extents_be_merged(inode, ex, newext)) {
Mingming553f9002009-09-18 13:34:55 -04001725 ext_debug("append [%d]%d block to %d:[%d]%d (from %llu)\n",
Theodore Ts'obf89d162010-10-27 21:30:14 -04001726 ext4_ext_is_uninitialized(newext),
1727 ext4_ext_get_actual_len(newext),
1728 le32_to_cpu(ex->ee_block),
1729 ext4_ext_is_uninitialized(ex),
1730 ext4_ext_get_actual_len(ex),
1731 ext4_ext_pblock(ex));
Avantika Mathur7e028972006-12-06 20:41:33 -08001732 err = ext4_ext_get_access(handle, inode, path + depth);
1733 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001734 return err;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001735
1736 /*
1737 * ext4_can_extents_be_merged should have checked that either
1738 * both extents are uninitialized, or both aren't. Thus we
1739 * need to check only one of them here.
1740 */
1741 if (ext4_ext_is_uninitialized(ex))
1742 uninitialized = 1;
1743 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1744 + ext4_ext_get_actual_len(newext));
1745 if (uninitialized)
1746 ext4_ext_mark_uninitialized(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001747 eh = path[depth].p_hdr;
1748 nearex = ex;
1749 goto merge;
1750 }
1751
1752repeat:
1753 depth = ext_depth(inode);
1754 eh = path[depth].p_hdr;
1755 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max))
1756 goto has_space;
1757
1758 /* probably next leaf has space for us? */
1759 fex = EXT_LAST_EXTENT(eh);
1760 next = ext4_ext_next_leaf_block(inode, path);
1761 if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block)
1762 && next != EXT_MAX_BLOCK) {
1763 ext_debug("next leaf block - %d\n", next);
1764 BUG_ON(npath != NULL);
1765 npath = ext4_ext_find_extent(inode, next, NULL);
1766 if (IS_ERR(npath))
1767 return PTR_ERR(npath);
1768 BUG_ON(npath->p_depth != path->p_depth);
1769 eh = npath[depth].p_hdr;
1770 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001771 ext_debug("next leaf isn't full(%d)\n",
Alex Tomasa86c6182006-10-11 01:21:03 -07001772 le16_to_cpu(eh->eh_entries));
1773 path = npath;
1774 goto repeat;
1775 }
1776 ext_debug("next leaf has no free space(%d,%d)\n",
1777 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
1778 }
1779
1780 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001781 * There is no free space in the found leaf.
1782 * We're gonna add a new leaf in the tree.
Alex Tomasa86c6182006-10-11 01:21:03 -07001783 */
Allison Henderson55f020d2011-05-25 07:41:26 -04001784 if (flag & EXT4_GET_BLOCKS_PUNCH_OUT_EXT)
1785 flags = EXT4_MB_USE_ROOT_BLOCKS;
1786 err = ext4_ext_create_new_leaf(handle, inode, flags, path, newext);
Alex Tomasa86c6182006-10-11 01:21:03 -07001787 if (err)
1788 goto cleanup;
1789 depth = ext_depth(inode);
1790 eh = path[depth].p_hdr;
1791
1792has_space:
1793 nearex = path[depth].p_ext;
1794
Avantika Mathur7e028972006-12-06 20:41:33 -08001795 err = ext4_ext_get_access(handle, inode, path + depth);
1796 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001797 goto cleanup;
1798
1799 if (!nearex) {
1800 /* there is no extent in this leaf, create first one */
Mingming553f9002009-09-18 13:34:55 -04001801 ext_debug("first extent in the leaf: %d:%llu:[%d]%d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001802 le32_to_cpu(newext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001803 ext4_ext_pblock(newext),
Mingming553f9002009-09-18 13:34:55 -04001804 ext4_ext_is_uninitialized(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001805 ext4_ext_get_actual_len(newext));
Alex Tomasa86c6182006-10-11 01:21:03 -07001806 path[depth].p_ext = EXT_FIRST_EXTENT(eh);
1807 } else if (le32_to_cpu(newext->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001808 > le32_to_cpu(nearex->ee_block)) {
Alex Tomasa86c6182006-10-11 01:21:03 -07001809/* BUG_ON(newext->ee_block == nearex->ee_block); */
1810 if (nearex != EXT_LAST_EXTENT(eh)) {
1811 len = EXT_MAX_EXTENT(eh) - nearex;
1812 len = (len - 1) * sizeof(struct ext4_extent);
1813 len = len < 0 ? 0 : len;
Mingming553f9002009-09-18 13:34:55 -04001814 ext_debug("insert %d:%llu:[%d]%d after: nearest 0x%p, "
Alex Tomasa86c6182006-10-11 01:21:03 -07001815 "move %d from 0x%p to 0x%p\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001816 le32_to_cpu(newext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001817 ext4_ext_pblock(newext),
Mingming553f9002009-09-18 13:34:55 -04001818 ext4_ext_is_uninitialized(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001819 ext4_ext_get_actual_len(newext),
Alex Tomasa86c6182006-10-11 01:21:03 -07001820 nearex, len, nearex + 1, nearex + 2);
1821 memmove(nearex + 2, nearex + 1, len);
1822 }
1823 path[depth].p_ext = nearex + 1;
1824 } else {
1825 BUG_ON(newext->ee_block == nearex->ee_block);
1826 len = (EXT_MAX_EXTENT(eh) - nearex) * sizeof(struct ext4_extent);
1827 len = len < 0 ? 0 : len;
Mingming553f9002009-09-18 13:34:55 -04001828 ext_debug("insert %d:%llu:[%d]%d before: nearest 0x%p, "
Alex Tomasa86c6182006-10-11 01:21:03 -07001829 "move %d from 0x%p to 0x%p\n",
1830 le32_to_cpu(newext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001831 ext4_ext_pblock(newext),
Mingming553f9002009-09-18 13:34:55 -04001832 ext4_ext_is_uninitialized(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001833 ext4_ext_get_actual_len(newext),
Alex Tomasa86c6182006-10-11 01:21:03 -07001834 nearex, len, nearex + 1, nearex + 2);
1835 memmove(nearex + 1, nearex, len);
1836 path[depth].p_ext = nearex;
1837 }
1838
Marcin Slusarze8546d02008-04-17 10:38:59 -04001839 le16_add_cpu(&eh->eh_entries, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -07001840 nearex = path[depth].p_ext;
1841 nearex->ee_block = newext->ee_block;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001842 ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext));
Alex Tomasa86c6182006-10-11 01:21:03 -07001843 nearex->ee_len = newext->ee_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07001844
1845merge:
1846 /* try to merge extents to the right */
Jiaying Zhang744692d2010-03-04 16:14:02 -05001847 if (!(flag & EXT4_GET_BLOCKS_PRE_IO))
Mingming Cao00314622009-09-28 15:49:08 -04001848 ext4_ext_try_to_merge(inode, path, nearex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001849
1850 /* try to merge extents to the left */
1851
1852 /* time to correct all indexes above */
1853 err = ext4_ext_correct_indexes(handle, inode, path);
1854 if (err)
1855 goto cleanup;
1856
1857 err = ext4_ext_dirty(handle, inode, path + depth);
1858
1859cleanup:
1860 if (npath) {
1861 ext4_ext_drop_refs(npath);
1862 kfree(npath);
1863 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001864 ext4_ext_invalidate_cache(inode);
1865 return err;
1866}
1867
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001868static int ext4_ext_walk_space(struct inode *inode, ext4_lblk_t block,
1869 ext4_lblk_t num, ext_prepare_callback func,
1870 void *cbdata)
Eric Sandeen6873fa02008-10-07 00:46:36 -04001871{
1872 struct ext4_ext_path *path = NULL;
1873 struct ext4_ext_cache cbex;
1874 struct ext4_extent *ex;
1875 ext4_lblk_t next, start = 0, end = 0;
1876 ext4_lblk_t last = block + num;
1877 int depth, exists, err = 0;
1878
1879 BUG_ON(func == NULL);
1880 BUG_ON(inode == NULL);
1881
1882 while (block < last && block != EXT_MAX_BLOCK) {
1883 num = last - block;
1884 /* find extent for this block */
Theodore Ts'ofab3a542009-12-09 21:30:02 -05001885 down_read(&EXT4_I(inode)->i_data_sem);
Eric Sandeen6873fa02008-10-07 00:46:36 -04001886 path = ext4_ext_find_extent(inode, block, path);
Theodore Ts'ofab3a542009-12-09 21:30:02 -05001887 up_read(&EXT4_I(inode)->i_data_sem);
Eric Sandeen6873fa02008-10-07 00:46:36 -04001888 if (IS_ERR(path)) {
1889 err = PTR_ERR(path);
1890 path = NULL;
1891 break;
1892 }
1893
1894 depth = ext_depth(inode);
Frank Mayhar273df552010-03-02 11:46:09 -05001895 if (unlikely(path[depth].p_hdr == NULL)) {
1896 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1897 err = -EIO;
1898 break;
1899 }
Eric Sandeen6873fa02008-10-07 00:46:36 -04001900 ex = path[depth].p_ext;
1901 next = ext4_ext_next_allocated_block(path);
1902
1903 exists = 0;
1904 if (!ex) {
1905 /* there is no extent yet, so try to allocate
1906 * all requested space */
1907 start = block;
1908 end = block + num;
1909 } else if (le32_to_cpu(ex->ee_block) > block) {
1910 /* need to allocate space before found extent */
1911 start = block;
1912 end = le32_to_cpu(ex->ee_block);
1913 if (block + num < end)
1914 end = block + num;
1915 } else if (block >= le32_to_cpu(ex->ee_block)
1916 + ext4_ext_get_actual_len(ex)) {
1917 /* need to allocate space after found extent */
1918 start = block;
1919 end = block + num;
1920 if (end >= next)
1921 end = next;
1922 } else if (block >= le32_to_cpu(ex->ee_block)) {
1923 /*
1924 * some part of requested space is covered
1925 * by found extent
1926 */
1927 start = block;
1928 end = le32_to_cpu(ex->ee_block)
1929 + ext4_ext_get_actual_len(ex);
1930 if (block + num < end)
1931 end = block + num;
1932 exists = 1;
1933 } else {
1934 BUG();
1935 }
1936 BUG_ON(end <= start);
1937
1938 if (!exists) {
1939 cbex.ec_block = start;
1940 cbex.ec_len = end - start;
1941 cbex.ec_start = 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04001942 } else {
1943 cbex.ec_block = le32_to_cpu(ex->ee_block);
1944 cbex.ec_len = ext4_ext_get_actual_len(ex);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001945 cbex.ec_start = ext4_ext_pblock(ex);
Eric Sandeen6873fa02008-10-07 00:46:36 -04001946 }
1947
Frank Mayhar273df552010-03-02 11:46:09 -05001948 if (unlikely(cbex.ec_len == 0)) {
1949 EXT4_ERROR_INODE(inode, "cbex.ec_len == 0");
1950 err = -EIO;
1951 break;
1952 }
Eric Sandeen6873fa02008-10-07 00:46:36 -04001953 err = func(inode, path, &cbex, ex, cbdata);
1954 ext4_ext_drop_refs(path);
1955
1956 if (err < 0)
1957 break;
1958
1959 if (err == EXT_REPEAT)
1960 continue;
1961 else if (err == EXT_BREAK) {
1962 err = 0;
1963 break;
1964 }
1965
1966 if (ext_depth(inode) != depth) {
1967 /* depth was changed. we have to realloc path */
1968 kfree(path);
1969 path = NULL;
1970 }
1971
1972 block = cbex.ec_block + cbex.ec_len;
1973 }
1974
1975 if (path) {
1976 ext4_ext_drop_refs(path);
1977 kfree(path);
1978 }
1979
1980 return err;
1981}
1982
Avantika Mathur09b88252006-12-06 20:41:36 -08001983static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001984ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block,
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05001985 __u32 len, ext4_fsblk_t start)
Alex Tomasa86c6182006-10-11 01:21:03 -07001986{
1987 struct ext4_ext_cache *cex;
1988 BUG_ON(len == 0);
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04001989 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001990 cex = &EXT4_I(inode)->i_cached_extent;
Alex Tomasa86c6182006-10-11 01:21:03 -07001991 cex->ec_block = block;
1992 cex->ec_len = len;
1993 cex->ec_start = start;
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04001994 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001995}
1996
1997/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001998 * ext4_ext_put_gap_in_cache:
1999 * calculate boundaries of the gap that the requested block fits into
Alex Tomasa86c6182006-10-11 01:21:03 -07002000 * and cache this gap
2001 */
Avantika Mathur09b88252006-12-06 20:41:36 -08002002static void
Alex Tomasa86c6182006-10-11 01:21:03 -07002003ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002004 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -07002005{
2006 int depth = ext_depth(inode);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002007 unsigned long len;
2008 ext4_lblk_t lblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07002009 struct ext4_extent *ex;
2010
2011 ex = path[depth].p_ext;
2012 if (ex == NULL) {
2013 /* there is no extent yet, so gap is [0;-] */
2014 lblock = 0;
2015 len = EXT_MAX_BLOCK;
2016 ext_debug("cache gap(whole file):");
2017 } else if (block < le32_to_cpu(ex->ee_block)) {
2018 lblock = block;
2019 len = le32_to_cpu(ex->ee_block) - block;
Eric Sandeenbba90742008-01-28 23:58:27 -05002020 ext_debug("cache gap(before): %u [%u:%u]",
2021 block,
2022 le32_to_cpu(ex->ee_block),
2023 ext4_ext_get_actual_len(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -07002024 } else if (block >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002025 + ext4_ext_get_actual_len(ex)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002026 ext4_lblk_t next;
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002027 lblock = le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002028 + ext4_ext_get_actual_len(ex);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002029
2030 next = ext4_ext_next_allocated_block(path);
Eric Sandeenbba90742008-01-28 23:58:27 -05002031 ext_debug("cache gap(after): [%u:%u] %u",
2032 le32_to_cpu(ex->ee_block),
2033 ext4_ext_get_actual_len(ex),
2034 block);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002035 BUG_ON(next == lblock);
2036 len = next - lblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07002037 } else {
2038 lblock = len = 0;
2039 BUG();
2040 }
2041
Eric Sandeenbba90742008-01-28 23:58:27 -05002042 ext_debug(" -> %u:%lu\n", lblock, len);
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002043 ext4_ext_put_in_cache(inode, lblock, len, 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07002044}
2045
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002046/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04002047 * ext4_ext_in_cache()
2048 * Checks to see if the given block is in the cache.
2049 * If it is, the cached extent is stored in the given
2050 * cache extent pointer. If the cached extent is a hole,
2051 * this routine should be used instead of
2052 * ext4_ext_in_cache if the calling function needs to
2053 * know the size of the hole.
2054 *
2055 * @inode: The files inode
2056 * @block: The block to look for in the cache
2057 * @ex: Pointer where the cached extent will be stored
2058 * if it contains block
2059 *
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002060 * Return 0 if cache is invalid; 1 if the cache is valid
2061 */
Allison Hendersona4bb6b62011-05-25 07:41:50 -04002062static int ext4_ext_check_cache(struct inode *inode, ext4_lblk_t block,
2063 struct ext4_ext_cache *ex){
Alex Tomasa86c6182006-10-11 01:21:03 -07002064 struct ext4_ext_cache *cex;
Vivek Haldar77f41352011-05-22 21:24:16 -04002065 struct ext4_sb_info *sbi;
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002066 int ret = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002067
Theodore Ts'o60e66792010-05-17 07:00:00 -04002068 /*
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002069 * We borrow i_block_reservation_lock to protect i_cached_extent
2070 */
2071 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Alex Tomasa86c6182006-10-11 01:21:03 -07002072 cex = &EXT4_I(inode)->i_cached_extent;
Vivek Haldar77f41352011-05-22 21:24:16 -04002073 sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002074
2075 /* has cache valid data? */
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002076 if (cex->ec_len == 0)
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002077 goto errout;
Alex Tomasa86c6182006-10-11 01:21:03 -07002078
Akinobu Mita731eb1a2010-03-03 23:55:01 -05002079 if (in_range(block, cex->ec_block, cex->ec_len)) {
Allison Hendersona4bb6b62011-05-25 07:41:50 -04002080 memcpy(ex, cex, sizeof(struct ext4_ext_cache));
Eric Sandeenbba90742008-01-28 23:58:27 -05002081 ext_debug("%u cached by %u:%u:%llu\n",
2082 block,
2083 cex->ec_block, cex->ec_len, cex->ec_start);
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002084 ret = 1;
Alex Tomasa86c6182006-10-11 01:21:03 -07002085 }
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002086errout:
Vivek Haldar77f41352011-05-22 21:24:16 -04002087 if (!ret)
2088 sbi->extent_cache_misses++;
2089 else
2090 sbi->extent_cache_hits++;
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002091 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
2092 return ret;
Alex Tomasa86c6182006-10-11 01:21:03 -07002093}
2094
2095/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04002096 * ext4_ext_in_cache()
2097 * Checks to see if the given block is in the cache.
2098 * If it is, the cached extent is stored in the given
2099 * extent pointer.
2100 *
2101 * @inode: The files inode
2102 * @block: The block to look for in the cache
2103 * @ex: Pointer where the cached extent will be stored
2104 * if it contains block
2105 *
2106 * Return 0 if cache is invalid; 1 if the cache is valid
2107 */
2108static int
2109ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block,
2110 struct ext4_extent *ex)
2111{
2112 struct ext4_ext_cache cex;
2113 int ret = 0;
2114
2115 if (ext4_ext_check_cache(inode, block, &cex)) {
2116 ex->ee_block = cpu_to_le32(cex.ec_block);
2117 ext4_ext_store_pblock(ex, cex.ec_start);
2118 ex->ee_len = cpu_to_le16(cex.ec_len);
2119 ret = 1;
2120 }
2121
2122 return ret;
2123}
2124
2125
2126/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002127 * ext4_ext_rm_idx:
2128 * removes index from the index block.
2129 * It's used in truncate case only, thus all requests are for
2130 * last index in the block only.
Alex Tomasa86c6182006-10-11 01:21:03 -07002131 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002132static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -07002133 struct ext4_ext_path *path)
2134{
Alex Tomasa86c6182006-10-11 01:21:03 -07002135 int err;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002136 ext4_fsblk_t leaf;
Alex Tomasa86c6182006-10-11 01:21:03 -07002137
2138 /* free index block */
2139 path--;
Theodore Ts'obf89d162010-10-27 21:30:14 -04002140 leaf = ext4_idx_pblock(path->p_idx);
Frank Mayhar273df552010-03-02 11:46:09 -05002141 if (unlikely(path->p_hdr->eh_entries == 0)) {
2142 EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0");
2143 return -EIO;
2144 }
Avantika Mathur7e028972006-12-06 20:41:33 -08002145 err = ext4_ext_get_access(handle, inode, path);
2146 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002147 return err;
Marcin Slusarze8546d02008-04-17 10:38:59 -04002148 le16_add_cpu(&path->p_hdr->eh_entries, -1);
Avantika Mathur7e028972006-12-06 20:41:33 -08002149 err = ext4_ext_dirty(handle, inode, path);
2150 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002151 return err;
Mingming Cao2ae02102006-10-11 01:21:11 -07002152 ext_debug("index is empty, remove it, free block %llu\n", leaf);
Peter Huewe7dc57612011-02-21 21:01:42 -05002153 ext4_free_blocks(handle, inode, NULL, leaf, 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -05002154 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
Alex Tomasa86c6182006-10-11 01:21:03 -07002155 return err;
2156}
2157
2158/*
Mingming Caoee12b632008-08-19 22:16:05 -04002159 * ext4_ext_calc_credits_for_single_extent:
2160 * This routine returns max. credits that needed to insert an extent
2161 * to the extent tree.
2162 * When pass the actual path, the caller should calculate credits
2163 * under i_data_sem.
Alex Tomasa86c6182006-10-11 01:21:03 -07002164 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002165int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks,
Alex Tomasa86c6182006-10-11 01:21:03 -07002166 struct ext4_ext_path *path)
2167{
Alex Tomasa86c6182006-10-11 01:21:03 -07002168 if (path) {
Mingming Caoee12b632008-08-19 22:16:05 -04002169 int depth = ext_depth(inode);
Mingming Caof3bd1f32008-08-19 22:16:03 -04002170 int ret = 0;
Mingming Caoee12b632008-08-19 22:16:05 -04002171
Alex Tomasa86c6182006-10-11 01:21:03 -07002172 /* probably there is space in leaf? */
Alex Tomasa86c6182006-10-11 01:21:03 -07002173 if (le16_to_cpu(path[depth].p_hdr->eh_entries)
Mingming Caoee12b632008-08-19 22:16:05 -04002174 < le16_to_cpu(path[depth].p_hdr->eh_max)) {
2175
2176 /*
2177 * There are some space in the leaf tree, no
2178 * need to account for leaf block credit
2179 *
2180 * bitmaps and block group descriptor blocks
2181 * and other metadat blocks still need to be
2182 * accounted.
2183 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002184 /* 1 bitmap, 1 block group descriptor */
Mingming Caoee12b632008-08-19 22:16:05 -04002185 ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb);
Aneesh Kumar K.V5887e982009-07-05 23:12:04 -04002186 return ret;
Mingming Caoee12b632008-08-19 22:16:05 -04002187 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002188 }
2189
Mingming Cao525f4ed2008-08-19 22:15:58 -04002190 return ext4_chunk_trans_blocks(inode, nrblocks);
Mingming Caoee12b632008-08-19 22:16:05 -04002191}
Alex Tomasa86c6182006-10-11 01:21:03 -07002192
Mingming Caoee12b632008-08-19 22:16:05 -04002193/*
2194 * How many index/leaf blocks need to change/allocate to modify nrblocks?
2195 *
2196 * if nrblocks are fit in a single extent (chunk flag is 1), then
2197 * in the worse case, each tree level index/leaf need to be changed
2198 * if the tree split due to insert a new extent, then the old tree
2199 * index/leaf need to be updated too
2200 *
2201 * If the nrblocks are discontiguous, they could cause
2202 * the whole tree split more than once, but this is really rare.
2203 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002204int ext4_ext_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
Mingming Caoee12b632008-08-19 22:16:05 -04002205{
2206 int index;
2207 int depth = ext_depth(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07002208
Mingming Caoee12b632008-08-19 22:16:05 -04002209 if (chunk)
2210 index = depth * 2;
2211 else
2212 index = depth * 3;
Alex Tomasa86c6182006-10-11 01:21:03 -07002213
Mingming Caoee12b632008-08-19 22:16:05 -04002214 return index;
Alex Tomasa86c6182006-10-11 01:21:03 -07002215}
2216
2217static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
2218 struct ext4_extent *ex,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002219 ext4_lblk_t from, ext4_lblk_t to)
Alex Tomasa86c6182006-10-11 01:21:03 -07002220{
Amit Aroraa2df2a62007-07-17 21:42:41 -04002221 unsigned short ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'oe6362602009-11-23 07:17:05 -05002222 int flags = EXT4_FREE_BLOCKS_FORGET;
Alex Tomasa86c6182006-10-11 01:21:03 -07002223
Alex Tomasc9de5602008-01-29 00:19:52 -05002224 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
Theodore Ts'oe6362602009-11-23 07:17:05 -05002225 flags |= EXT4_FREE_BLOCKS_METADATA;
Alex Tomasa86c6182006-10-11 01:21:03 -07002226#ifdef EXTENTS_STATS
2227 {
2228 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002229 spin_lock(&sbi->s_ext_stats_lock);
2230 sbi->s_ext_blocks += ee_len;
2231 sbi->s_ext_extents++;
2232 if (ee_len < sbi->s_ext_min)
2233 sbi->s_ext_min = ee_len;
2234 if (ee_len > sbi->s_ext_max)
2235 sbi->s_ext_max = ee_len;
2236 if (ext_depth(inode) > sbi->s_depth_max)
2237 sbi->s_depth_max = ext_depth(inode);
2238 spin_unlock(&sbi->s_ext_stats_lock);
2239 }
2240#endif
2241 if (from >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002242 && to == le32_to_cpu(ex->ee_block) + ee_len - 1) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002243 /* tail removal */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002244 ext4_lblk_t num;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002245 ext4_fsblk_t start;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002246
Amit Aroraa2df2a62007-07-17 21:42:41 -04002247 num = le32_to_cpu(ex->ee_block) + ee_len - from;
Theodore Ts'obf89d162010-10-27 21:30:14 -04002248 start = ext4_ext_pblock(ex) + ee_len - num;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002249 ext_debug("free last %u blocks starting %llu\n", num, start);
Peter Huewe7dc57612011-02-21 21:01:42 -05002250 ext4_free_blocks(handle, inode, NULL, start, num, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07002251 } else if (from == le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002252 && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) {
Allison Hendersond583fb82011-05-25 07:41:43 -04002253 /* head removal */
2254 ext4_lblk_t num;
2255 ext4_fsblk_t start;
2256
2257 num = to - from;
2258 start = ext4_ext_pblock(ex);
2259
2260 ext_debug("free first %u blocks starting %llu\n", num, start);
2261 ext4_free_blocks(handle, inode, 0, start, num, flags);
2262
Alex Tomasa86c6182006-10-11 01:21:03 -07002263 } else {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002264 printk(KERN_INFO "strange request: removal(2) "
2265 "%u-%u from %u:%u\n",
2266 from, to, le32_to_cpu(ex->ee_block), ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07002267 }
2268 return 0;
2269}
2270
Allison Hendersond583fb82011-05-25 07:41:43 -04002271
2272/*
2273 * ext4_ext_rm_leaf() Removes the extents associated with the
2274 * blocks appearing between "start" and "end", and splits the extents
2275 * if "start" and "end" appear in the same extent
2276 *
2277 * @handle: The journal handle
2278 * @inode: The files inode
2279 * @path: The path to the leaf
2280 * @start: The first block to remove
2281 * @end: The last block to remove
2282 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002283static int
2284ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
Allison Hendersond583fb82011-05-25 07:41:43 -04002285 struct ext4_ext_path *path, ext4_lblk_t start,
2286 ext4_lblk_t end)
Alex Tomasa86c6182006-10-11 01:21:03 -07002287{
2288 int err = 0, correct_index = 0;
2289 int depth = ext_depth(inode), credits;
2290 struct ext4_extent_header *eh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002291 ext4_lblk_t a, b, block;
2292 unsigned num;
2293 ext4_lblk_t ex_ee_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07002294 unsigned short ex_ee_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04002295 unsigned uninitialized = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002296 struct ext4_extent *ex;
Allison Hendersond583fb82011-05-25 07:41:43 -04002297 struct ext4_map_blocks map;
Alex Tomasa86c6182006-10-11 01:21:03 -07002298
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002299 /* the header must be checked already in ext4_ext_remove_space() */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002300 ext_debug("truncate since %u in leaf\n", start);
Alex Tomasa86c6182006-10-11 01:21:03 -07002301 if (!path[depth].p_hdr)
2302 path[depth].p_hdr = ext_block_hdr(path[depth].p_bh);
2303 eh = path[depth].p_hdr;
Frank Mayhar273df552010-03-02 11:46:09 -05002304 if (unlikely(path[depth].p_hdr == NULL)) {
2305 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
2306 return -EIO;
2307 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002308 /* find where to start removing */
2309 ex = EXT_LAST_EXTENT(eh);
2310
2311 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002312 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002313
2314 while (ex >= EXT_FIRST_EXTENT(eh) &&
2315 ex_ee_block + ex_ee_len > start) {
Aneesh Kumar K.Va41f2072009-06-10 14:22:55 -04002316
2317 if (ext4_ext_is_uninitialized(ex))
2318 uninitialized = 1;
2319 else
2320 uninitialized = 0;
2321
Mingming553f9002009-09-18 13:34:55 -04002322 ext_debug("remove ext %u:[%d]%d\n", ex_ee_block,
2323 uninitialized, ex_ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07002324 path[depth].p_ext = ex;
2325
2326 a = ex_ee_block > start ? ex_ee_block : start;
Allison Hendersond583fb82011-05-25 07:41:43 -04002327 b = ex_ee_block+ex_ee_len - 1 < end ?
2328 ex_ee_block+ex_ee_len - 1 : end;
Alex Tomasa86c6182006-10-11 01:21:03 -07002329
2330 ext_debug(" border %u:%u\n", a, b);
2331
Allison Hendersond583fb82011-05-25 07:41:43 -04002332 /* If this extent is beyond the end of the hole, skip it */
2333 if (end <= ex_ee_block) {
2334 ex--;
2335 ex_ee_block = le32_to_cpu(ex->ee_block);
2336 ex_ee_len = ext4_ext_get_actual_len(ex);
2337 continue;
2338 } else if (a != ex_ee_block &&
2339 b != ex_ee_block + ex_ee_len - 1) {
2340 /*
2341 * If this is a truncate, then this condition should
2342 * never happen because at least one of the end points
2343 * needs to be on the edge of the extent.
2344 */
2345 if (end == EXT_MAX_BLOCK) {
2346 ext_debug(" bad truncate %u:%u\n",
2347 start, end);
2348 block = 0;
2349 num = 0;
2350 err = -EIO;
2351 goto out;
2352 }
2353 /*
2354 * else this is a hole punch, so the extent needs to
2355 * be split since neither edge of the hole is on the
2356 * extent edge
2357 */
2358 else{
2359 map.m_pblk = ext4_ext_pblock(ex);
2360 map.m_lblk = ex_ee_block;
2361 map.m_len = b - ex_ee_block;
2362
2363 err = ext4_split_extent(handle,
2364 inode, path, &map, 0,
2365 EXT4_GET_BLOCKS_PUNCH_OUT_EXT |
2366 EXT4_GET_BLOCKS_PRE_IO);
2367
2368 if (err < 0)
2369 goto out;
2370
2371 ex_ee_len = ext4_ext_get_actual_len(ex);
2372
2373 b = ex_ee_block+ex_ee_len - 1 < end ?
2374 ex_ee_block+ex_ee_len - 1 : end;
2375
2376 /* Then remove tail of this extent */
2377 block = ex_ee_block;
2378 num = a - block;
2379 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002380 } else if (a != ex_ee_block) {
2381 /* remove tail of the extent */
2382 block = ex_ee_block;
2383 num = a - block;
2384 } else if (b != ex_ee_block + ex_ee_len - 1) {
2385 /* remove head of the extent */
Allison Hendersond583fb82011-05-25 07:41:43 -04002386 block = b;
2387 num = ex_ee_block + ex_ee_len - b;
2388
2389 /*
2390 * If this is a truncate, this condition
2391 * should never happen
2392 */
2393 if (end == EXT_MAX_BLOCK) {
2394 ext_debug(" bad truncate %u:%u\n",
2395 start, end);
2396 err = -EIO;
2397 goto out;
2398 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002399 } else {
2400 /* remove whole extent: excellent! */
2401 block = ex_ee_block;
2402 num = 0;
Allison Hendersond583fb82011-05-25 07:41:43 -04002403 if (a != ex_ee_block) {
2404 ext_debug(" bad truncate %u:%u\n",
2405 start, end);
2406 err = -EIO;
2407 goto out;
2408 }
2409
2410 if (b != ex_ee_block + ex_ee_len - 1) {
2411 ext_debug(" bad truncate %u:%u\n",
2412 start, end);
2413 err = -EIO;
2414 goto out;
2415 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002416 }
2417
Theodore Ts'o34071da2008-08-01 21:59:19 -04002418 /*
2419 * 3 for leaf, sb, and inode plus 2 (bmap and group
2420 * descriptor) for each block group; assume two block
2421 * groups plus ex_ee_len/blocks_per_block_group for
2422 * the worst case
2423 */
2424 credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb));
Alex Tomasa86c6182006-10-11 01:21:03 -07002425 if (ex == EXT_FIRST_EXTENT(eh)) {
2426 correct_index = 1;
2427 credits += (ext_depth(inode)) + 1;
2428 }
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -05002429 credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002430
Jan Kara487caee2009-08-17 22:17:20 -04002431 err = ext4_ext_truncate_extend_restart(handle, inode, credits);
Shen Feng9102e4f2008-07-11 19:27:31 -04002432 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002433 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07002434
2435 err = ext4_ext_get_access(handle, inode, path + depth);
2436 if (err)
2437 goto out;
2438
2439 err = ext4_remove_blocks(handle, inode, ex, a, b);
2440 if (err)
2441 goto out;
2442
2443 if (num == 0) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002444 /* this extent is removed; mark slot entirely unused */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002445 ext4_ext_store_pblock(ex, 0);
Allison Hendersond583fb82011-05-25 07:41:43 -04002446 } else if (block != ex_ee_block) {
2447 /*
2448 * If this was a head removal, then we need to update
2449 * the physical block since it is now at a different
2450 * location
2451 */
2452 ext4_ext_store_pblock(ex, ext4_ext_pblock(ex) + (b-a));
Alex Tomasa86c6182006-10-11 01:21:03 -07002453 }
2454
2455 ex->ee_block = cpu_to_le32(block);
2456 ex->ee_len = cpu_to_le16(num);
Amit Arora749269f2007-07-18 09:02:56 -04002457 /*
2458 * Do not mark uninitialized if all the blocks in the
2459 * extent have been removed.
2460 */
2461 if (uninitialized && num)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002462 ext4_ext_mark_uninitialized(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002463
2464 err = ext4_ext_dirty(handle, inode, path + depth);
2465 if (err)
2466 goto out;
2467
Allison Hendersond583fb82011-05-25 07:41:43 -04002468 /*
2469 * If the extent was completely released,
2470 * we need to remove it from the leaf
2471 */
2472 if (num == 0) {
2473 if (end != EXT_MAX_BLOCK) {
2474 /*
2475 * For hole punching, we need to scoot all the
2476 * extents up when an extent is removed so that
2477 * we dont have blank extents in the middle
2478 */
2479 memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) *
2480 sizeof(struct ext4_extent));
2481
2482 /* Now get rid of the one at the end */
2483 memset(EXT_LAST_EXTENT(eh), 0,
2484 sizeof(struct ext4_extent));
2485 }
2486 le16_add_cpu(&eh->eh_entries, -1);
2487 }
2488
Mingming Cao2ae02102006-10-11 01:21:11 -07002489 ext_debug("new extent: %u:%u:%llu\n", block, num,
Theodore Ts'obf89d162010-10-27 21:30:14 -04002490 ext4_ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -07002491 ex--;
2492 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002493 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002494 }
2495
2496 if (correct_index && eh->eh_entries)
2497 err = ext4_ext_correct_indexes(handle, inode, path);
2498
2499 /* if this leaf is free, then we should
2500 * remove it from index block above */
2501 if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL)
2502 err = ext4_ext_rm_idx(handle, inode, path + depth);
2503
2504out:
2505 return err;
2506}
2507
2508/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002509 * ext4_ext_more_to_rm:
2510 * returns 1 if current index has to be freed (even partial)
Alex Tomasa86c6182006-10-11 01:21:03 -07002511 */
Avantika Mathur09b88252006-12-06 20:41:36 -08002512static int
Alex Tomasa86c6182006-10-11 01:21:03 -07002513ext4_ext_more_to_rm(struct ext4_ext_path *path)
2514{
2515 BUG_ON(path->p_idx == NULL);
2516
2517 if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr))
2518 return 0;
2519
2520 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002521 * if truncate on deeper level happened, it wasn't partial,
Alex Tomasa86c6182006-10-11 01:21:03 -07002522 * so we have to consider current index for truncation
2523 */
2524 if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block)
2525 return 0;
2526 return 1;
2527}
2528
Allison Hendersond583fb82011-05-25 07:41:43 -04002529static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
2530 ext4_lblk_t end)
Alex Tomasa86c6182006-10-11 01:21:03 -07002531{
2532 struct super_block *sb = inode->i_sb;
2533 int depth = ext_depth(inode);
2534 struct ext4_ext_path *path;
2535 handle_t *handle;
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002536 int i, err;
Alex Tomasa86c6182006-10-11 01:21:03 -07002537
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002538 ext_debug("truncate since %u\n", start);
Alex Tomasa86c6182006-10-11 01:21:03 -07002539
2540 /* probably first extent we're gonna free will be last in block */
2541 handle = ext4_journal_start(inode, depth + 1);
2542 if (IS_ERR(handle))
2543 return PTR_ERR(handle);
2544
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002545again:
Alex Tomasa86c6182006-10-11 01:21:03 -07002546 ext4_ext_invalidate_cache(inode);
2547
2548 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002549 * We start scanning from right side, freeing all the blocks
2550 * after i_size and walking into the tree depth-wise.
Alex Tomasa86c6182006-10-11 01:21:03 -07002551 */
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002552 depth = ext_depth(inode);
Josef Bacik216553c2008-04-29 22:02:02 -04002553 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), GFP_NOFS);
Alex Tomasa86c6182006-10-11 01:21:03 -07002554 if (path == NULL) {
2555 ext4_journal_stop(handle);
2556 return -ENOMEM;
2557 }
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002558 path[0].p_depth = depth;
Alex Tomasa86c6182006-10-11 01:21:03 -07002559 path[0].p_hdr = ext_inode_hdr(inode);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -04002560 if (ext4_ext_check(inode, path[0].p_hdr, depth)) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002561 err = -EIO;
2562 goto out;
2563 }
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002564 i = err = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002565
2566 while (i >= 0 && err == 0) {
2567 if (i == depth) {
2568 /* this is leaf block */
Allison Hendersond583fb82011-05-25 07:41:43 -04002569 err = ext4_ext_rm_leaf(handle, inode, path,
2570 start, end);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002571 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002572 brelse(path[i].p_bh);
2573 path[i].p_bh = NULL;
2574 i--;
2575 continue;
2576 }
2577
2578 /* this is index block */
2579 if (!path[i].p_hdr) {
2580 ext_debug("initialize header\n");
2581 path[i].p_hdr = ext_block_hdr(path[i].p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -07002582 }
2583
Alex Tomasa86c6182006-10-11 01:21:03 -07002584 if (!path[i].p_idx) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002585 /* this level hasn't been touched yet */
Alex Tomasa86c6182006-10-11 01:21:03 -07002586 path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr);
2587 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1;
2588 ext_debug("init index ptr: hdr 0x%p, num %d\n",
2589 path[i].p_hdr,
2590 le16_to_cpu(path[i].p_hdr->eh_entries));
2591 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002592 /* we were already here, see at next index */
Alex Tomasa86c6182006-10-11 01:21:03 -07002593 path[i].p_idx--;
2594 }
2595
2596 ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
2597 i, EXT_FIRST_INDEX(path[i].p_hdr),
2598 path[i].p_idx);
2599 if (ext4_ext_more_to_rm(path + i)) {
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002600 struct buffer_head *bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002601 /* go to the next level */
Mingming Cao2ae02102006-10-11 01:21:11 -07002602 ext_debug("move to level %d (block %llu)\n",
Theodore Ts'obf89d162010-10-27 21:30:14 -04002603 i + 1, ext4_idx_pblock(path[i].p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -07002604 memset(path + i + 1, 0, sizeof(*path));
Theodore Ts'obf89d162010-10-27 21:30:14 -04002605 bh = sb_bread(sb, ext4_idx_pblock(path[i].p_idx));
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002606 if (!bh) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002607 /* should we reset i_size? */
2608 err = -EIO;
2609 break;
2610 }
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002611 if (WARN_ON(i + 1 > depth)) {
2612 err = -EIO;
2613 break;
2614 }
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -04002615 if (ext4_ext_check(inode, ext_block_hdr(bh),
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002616 depth - i - 1)) {
2617 err = -EIO;
2618 break;
2619 }
2620 path[i + 1].p_bh = bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002621
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002622 /* save actual number of indexes since this
2623 * number is changed at the next iteration */
Alex Tomasa86c6182006-10-11 01:21:03 -07002624 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries);
2625 i++;
2626 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002627 /* we finished processing this index, go up */
Alex Tomasa86c6182006-10-11 01:21:03 -07002628 if (path[i].p_hdr->eh_entries == 0 && i > 0) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002629 /* index is empty, remove it;
Alex Tomasa86c6182006-10-11 01:21:03 -07002630 * handle must be already prepared by the
2631 * truncatei_leaf() */
2632 err = ext4_ext_rm_idx(handle, inode, path + i);
2633 }
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002634 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002635 brelse(path[i].p_bh);
2636 path[i].p_bh = NULL;
2637 i--;
2638 ext_debug("return to level %d\n", i);
2639 }
2640 }
2641
2642 /* TODO: flexible tree reduction should be here */
2643 if (path->p_hdr->eh_entries == 0) {
2644 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002645 * truncate to zero freed all the tree,
2646 * so we need to correct eh_depth
Alex Tomasa86c6182006-10-11 01:21:03 -07002647 */
2648 err = ext4_ext_get_access(handle, inode, path);
2649 if (err == 0) {
2650 ext_inode_hdr(inode)->eh_depth = 0;
2651 ext_inode_hdr(inode)->eh_max =
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04002652 cpu_to_le16(ext4_ext_space_root(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07002653 err = ext4_ext_dirty(handle, inode, path);
2654 }
2655 }
2656out:
Alex Tomasa86c6182006-10-11 01:21:03 -07002657 ext4_ext_drop_refs(path);
2658 kfree(path);
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002659 if (err == -EAGAIN)
2660 goto again;
Alex Tomasa86c6182006-10-11 01:21:03 -07002661 ext4_journal_stop(handle);
2662
2663 return err;
2664}
2665
2666/*
2667 * called at mount time
2668 */
2669void ext4_ext_init(struct super_block *sb)
2670{
2671 /*
2672 * possible initialization would be here
2673 */
2674
Theodore Ts'o83982b62009-01-06 14:53:16 -05002675 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Theodore Ts'o90576c02009-09-29 15:51:30 -04002676#if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS)
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002677 printk(KERN_INFO "EXT4-fs: file extents enabled");
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01002678#ifdef AGGRESSIVE_TEST
2679 printk(", aggressive tests");
Alex Tomasa86c6182006-10-11 01:21:03 -07002680#endif
2681#ifdef CHECK_BINSEARCH
2682 printk(", check binsearch");
2683#endif
2684#ifdef EXTENTS_STATS
2685 printk(", stats");
2686#endif
2687 printk("\n");
Theodore Ts'o90576c02009-09-29 15:51:30 -04002688#endif
Alex Tomasa86c6182006-10-11 01:21:03 -07002689#ifdef EXTENTS_STATS
2690 spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock);
2691 EXT4_SB(sb)->s_ext_min = 1 << 30;
2692 EXT4_SB(sb)->s_ext_max = 0;
2693#endif
2694 }
2695}
2696
2697/*
2698 * called at umount time
2699 */
2700void ext4_ext_release(struct super_block *sb)
2701{
Theodore Ts'o83982b62009-01-06 14:53:16 -05002702 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
Alex Tomasa86c6182006-10-11 01:21:03 -07002703 return;
2704
2705#ifdef EXTENTS_STATS
2706 if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) {
2707 struct ext4_sb_info *sbi = EXT4_SB(sb);
2708 printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
2709 sbi->s_ext_blocks, sbi->s_ext_extents,
2710 sbi->s_ext_blocks / sbi->s_ext_extents);
2711 printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
2712 sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max);
2713 }
2714#endif
2715}
2716
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002717/* FIXME!! we need to try to merge to left or right after zero-out */
2718static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
2719{
Lukas Czerner24075182010-10-27 21:30:06 -04002720 ext4_fsblk_t ee_pblock;
2721 unsigned int ee_len;
Jing Zhangb7203032010-05-12 00:00:00 -04002722 int ret;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002723
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002724 ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'obf89d162010-10-27 21:30:14 -04002725 ee_pblock = ext4_ext_pblock(ex);
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002726
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04002727 ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS);
Lukas Czerner24075182010-10-27 21:30:06 -04002728 if (ret > 0)
2729 ret = 0;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002730
Lukas Czerner24075182010-10-27 21:30:06 -04002731 return ret;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002732}
2733
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002734/*
2735 * used by extent splitting.
2736 */
2737#define EXT4_EXT_MAY_ZEROOUT 0x1 /* safe to zeroout if split fails \
2738 due to ENOSPC */
2739#define EXT4_EXT_MARK_UNINIT1 0x2 /* mark first half uninitialized */
2740#define EXT4_EXT_MARK_UNINIT2 0x4 /* mark second half uninitialized */
2741
2742/*
2743 * ext4_split_extent_at() splits an extent at given block.
2744 *
2745 * @handle: the journal handle
2746 * @inode: the file inode
2747 * @path: the path to the extent
2748 * @split: the logical block where the extent is splitted.
2749 * @split_flags: indicates if the extent could be zeroout if split fails, and
2750 * the states(init or uninit) of new extents.
2751 * @flags: flags used to insert new extent to extent tree.
2752 *
2753 *
2754 * Splits extent [a, b] into two extents [a, @split) and [@split, b], states
2755 * of which are deterimined by split_flag.
2756 *
2757 * There are two cases:
2758 * a> the extent are splitted into two extent.
2759 * b> split is not needed, and just mark the extent.
2760 *
2761 * return 0 on success.
2762 */
2763static int ext4_split_extent_at(handle_t *handle,
2764 struct inode *inode,
2765 struct ext4_ext_path *path,
2766 ext4_lblk_t split,
2767 int split_flag,
2768 int flags)
2769{
2770 ext4_fsblk_t newblock;
2771 ext4_lblk_t ee_block;
2772 struct ext4_extent *ex, newex, orig_ex;
2773 struct ext4_extent *ex2 = NULL;
2774 unsigned int ee_len, depth;
2775 int err = 0;
2776
2777 ext_debug("ext4_split_extents_at: inode %lu, logical"
2778 "block %llu\n", inode->i_ino, (unsigned long long)split);
2779
2780 ext4_ext_show_leaf(inode, path);
2781
2782 depth = ext_depth(inode);
2783 ex = path[depth].p_ext;
2784 ee_block = le32_to_cpu(ex->ee_block);
2785 ee_len = ext4_ext_get_actual_len(ex);
2786 newblock = split - ee_block + ext4_ext_pblock(ex);
2787
2788 BUG_ON(split < ee_block || split >= (ee_block + ee_len));
2789
2790 err = ext4_ext_get_access(handle, inode, path + depth);
2791 if (err)
2792 goto out;
2793
2794 if (split == ee_block) {
2795 /*
2796 * case b: block @split is the block that the extent begins with
2797 * then we just change the state of the extent, and splitting
2798 * is not needed.
2799 */
2800 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2801 ext4_ext_mark_uninitialized(ex);
2802 else
2803 ext4_ext_mark_initialized(ex);
2804
2805 if (!(flags & EXT4_GET_BLOCKS_PRE_IO))
2806 ext4_ext_try_to_merge(inode, path, ex);
2807
2808 err = ext4_ext_dirty(handle, inode, path + depth);
2809 goto out;
2810 }
2811
2812 /* case a */
2813 memcpy(&orig_ex, ex, sizeof(orig_ex));
2814 ex->ee_len = cpu_to_le16(split - ee_block);
2815 if (split_flag & EXT4_EXT_MARK_UNINIT1)
2816 ext4_ext_mark_uninitialized(ex);
2817
2818 /*
2819 * path may lead to new leaf, not to original leaf any more
2820 * after ext4_ext_insert_extent() returns,
2821 */
2822 err = ext4_ext_dirty(handle, inode, path + depth);
2823 if (err)
2824 goto fix_extent_len;
2825
2826 ex2 = &newex;
2827 ex2->ee_block = cpu_to_le32(split);
2828 ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block));
2829 ext4_ext_store_pblock(ex2, newblock);
2830 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2831 ext4_ext_mark_uninitialized(ex2);
2832
2833 err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
2834 if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2835 err = ext4_ext_zeroout(inode, &orig_ex);
2836 if (err)
2837 goto fix_extent_len;
2838 /* update the extent length and mark as initialized */
2839 ex->ee_len = cpu_to_le32(ee_len);
2840 ext4_ext_try_to_merge(inode, path, ex);
2841 err = ext4_ext_dirty(handle, inode, path + depth);
2842 goto out;
2843 } else if (err)
2844 goto fix_extent_len;
2845
2846out:
2847 ext4_ext_show_leaf(inode, path);
2848 return err;
2849
2850fix_extent_len:
2851 ex->ee_len = orig_ex.ee_len;
2852 ext4_ext_dirty(handle, inode, path + depth);
2853 return err;
2854}
2855
2856/*
2857 * ext4_split_extents() splits an extent and mark extent which is covered
2858 * by @map as split_flags indicates
2859 *
2860 * It may result in splitting the extent into multiple extents (upto three)
2861 * There are three possibilities:
2862 * a> There is no split required
2863 * b> Splits in two extents: Split is happening at either end of the extent
2864 * c> Splits in three extents: Somone is splitting in middle of the extent
2865 *
2866 */
2867static int ext4_split_extent(handle_t *handle,
2868 struct inode *inode,
2869 struct ext4_ext_path *path,
2870 struct ext4_map_blocks *map,
2871 int split_flag,
2872 int flags)
2873{
2874 ext4_lblk_t ee_block;
2875 struct ext4_extent *ex;
2876 unsigned int ee_len, depth;
2877 int err = 0;
2878 int uninitialized;
2879 int split_flag1, flags1;
2880
2881 depth = ext_depth(inode);
2882 ex = path[depth].p_ext;
2883 ee_block = le32_to_cpu(ex->ee_block);
2884 ee_len = ext4_ext_get_actual_len(ex);
2885 uninitialized = ext4_ext_is_uninitialized(ex);
2886
2887 if (map->m_lblk + map->m_len < ee_block + ee_len) {
2888 split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
2889 EXT4_EXT_MAY_ZEROOUT : 0;
2890 flags1 = flags | EXT4_GET_BLOCKS_PRE_IO;
2891 if (uninitialized)
2892 split_flag1 |= EXT4_EXT_MARK_UNINIT1 |
2893 EXT4_EXT_MARK_UNINIT2;
2894 err = ext4_split_extent_at(handle, inode, path,
2895 map->m_lblk + map->m_len, split_flag1, flags1);
Yongqiang Yang93917412011-05-22 20:49:12 -04002896 if (err)
2897 goto out;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002898 }
2899
2900 ext4_ext_drop_refs(path);
2901 path = ext4_ext_find_extent(inode, map->m_lblk, path);
2902 if (IS_ERR(path))
2903 return PTR_ERR(path);
2904
2905 if (map->m_lblk >= ee_block) {
2906 split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ?
2907 EXT4_EXT_MAY_ZEROOUT : 0;
2908 if (uninitialized)
2909 split_flag1 |= EXT4_EXT_MARK_UNINIT1;
2910 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2911 split_flag1 |= EXT4_EXT_MARK_UNINIT2;
2912 err = ext4_split_extent_at(handle, inode, path,
2913 map->m_lblk, split_flag1, flags);
2914 if (err)
2915 goto out;
2916 }
2917
2918 ext4_ext_show_leaf(inode, path);
2919out:
2920 return err ? err : map->m_len;
2921}
2922
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002923#define EXT4_EXT_ZERO_LEN 7
Amit Arora56055d32007-07-17 21:42:38 -04002924/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -04002925 * This function is called by ext4_ext_map_blocks() if someone tries to write
Amit Arora56055d32007-07-17 21:42:38 -04002926 * to an uninitialized extent. It may result in splitting the uninitialized
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002927 * extent into multiple extents (up to three - one initialized and two
Amit Arora56055d32007-07-17 21:42:38 -04002928 * uninitialized).
2929 * There are three possibilities:
2930 * a> There is no split required: Entire extent should be initialized
2931 * b> Splits in two extents: Write is happening at either end of the extent
2932 * c> Splits in three extents: Somone is writing in middle of the extent
2933 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002934static int ext4_ext_convert_to_initialized(handle_t *handle,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04002935 struct inode *inode,
2936 struct ext4_map_blocks *map,
2937 struct ext4_ext_path *path)
Amit Arora56055d32007-07-17 21:42:38 -04002938{
Yongqiang Yang667eff32011-05-03 12:25:07 -04002939 struct ext4_map_blocks split_map;
2940 struct ext4_extent zero_ex;
2941 struct ext4_extent *ex;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04002942 ext4_lblk_t ee_block, eof_block;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002943 unsigned int allocated, ee_len, depth;
Amit Arora56055d32007-07-17 21:42:38 -04002944 int err = 0;
Yongqiang Yang667eff32011-05-03 12:25:07 -04002945 int split_flag = 0;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04002946
2947 ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical"
2948 "block %llu, max_blocks %u\n", inode->i_ino,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04002949 (unsigned long long)map->m_lblk, map->m_len);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04002950
2951 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
2952 inode->i_sb->s_blocksize_bits;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04002953 if (eof_block < map->m_lblk + map->m_len)
2954 eof_block = map->m_lblk + map->m_len;
Amit Arora56055d32007-07-17 21:42:38 -04002955
2956 depth = ext_depth(inode);
Amit Arora56055d32007-07-17 21:42:38 -04002957 ex = path[depth].p_ext;
2958 ee_block = le32_to_cpu(ex->ee_block);
2959 ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04002960 allocated = ee_len - (map->m_lblk - ee_block);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04002961
Yongqiang Yang667eff32011-05-03 12:25:07 -04002962 WARN_ON(map->m_lblk < ee_block);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04002963 /*
2964 * It is safe to convert extent to initialized via explicit
2965 * zeroout only if extent is fully insde i_size or new_size.
2966 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04002967 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04002968
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002969 /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
Yongqiang Yang667eff32011-05-03 12:25:07 -04002970 if (ee_len <= 2*EXT4_EXT_ZERO_LEN &&
2971 (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2972 err = ext4_ext_zeroout(inode, ex);
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002973 if (err)
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002974 goto out;
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002975
2976 err = ext4_ext_get_access(handle, inode, path + depth);
2977 if (err)
2978 goto out;
Yongqiang Yang667eff32011-05-03 12:25:07 -04002979 ext4_ext_mark_initialized(ex);
2980 ext4_ext_try_to_merge(inode, path, ex);
2981 err = ext4_ext_dirty(handle, inode, path + depth);
2982 goto out;
Amit Arora56055d32007-07-17 21:42:38 -04002983 }
Yongqiang Yang667eff32011-05-03 12:25:07 -04002984
Amit Arora56055d32007-07-17 21:42:38 -04002985 /*
Yongqiang Yang667eff32011-05-03 12:25:07 -04002986 * four cases:
2987 * 1. split the extent into three extents.
2988 * 2. split the extent into two extents, zeroout the first half.
2989 * 3. split the extent into two extents, zeroout the second half.
2990 * 4. split the extent into two extents with out zeroout.
Amit Arora56055d32007-07-17 21:42:38 -04002991 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04002992 split_map.m_lblk = map->m_lblk;
2993 split_map.m_len = map->m_len;
2994
2995 if (allocated > map->m_len) {
2996 if (allocated <= EXT4_EXT_ZERO_LEN &&
2997 (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
2998 /* case 3 */
2999 zero_ex.ee_block =
Allison Henderson9b940f82011-05-16 10:11:09 -04003000 cpu_to_le32(map->m_lblk);
3001 zero_ex.ee_len = cpu_to_le16(allocated);
Yongqiang Yang667eff32011-05-03 12:25:07 -04003002 ext4_ext_store_pblock(&zero_ex,
3003 ext4_ext_pblock(ex) + map->m_lblk - ee_block);
3004 err = ext4_ext_zeroout(inode, &zero_ex);
Amit Arora56055d32007-07-17 21:42:38 -04003005 if (err)
3006 goto out;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003007 split_map.m_lblk = map->m_lblk;
3008 split_map.m_len = allocated;
3009 } else if ((map->m_lblk - ee_block + map->m_len <
3010 EXT4_EXT_ZERO_LEN) &&
3011 (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
3012 /* case 2 */
3013 if (map->m_lblk != ee_block) {
3014 zero_ex.ee_block = ex->ee_block;
3015 zero_ex.ee_len = cpu_to_le16(map->m_lblk -
3016 ee_block);
3017 ext4_ext_store_pblock(&zero_ex,
3018 ext4_ext_pblock(ex));
3019 err = ext4_ext_zeroout(inode, &zero_ex);
3020 if (err)
3021 goto out;
3022 }
3023
Yongqiang Yang667eff32011-05-03 12:25:07 -04003024 split_map.m_lblk = ee_block;
Allison Henderson9b940f82011-05-16 10:11:09 -04003025 split_map.m_len = map->m_lblk - ee_block + map->m_len;
3026 allocated = map->m_len;
Amit Arora56055d32007-07-17 21:42:38 -04003027 }
3028 }
Yongqiang Yang667eff32011-05-03 12:25:07 -04003029
3030 allocated = ext4_split_extent(handle, inode, path,
3031 &split_map, split_flag, 0);
3032 if (allocated < 0)
3033 err = allocated;
3034
Amit Arora56055d32007-07-17 21:42:38 -04003035out:
3036 return err ? err : allocated;
3037}
3038
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05003039/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003040 * This function is called by ext4_ext_map_blocks() from
Mingming Cao00314622009-09-28 15:49:08 -04003041 * ext4_get_blocks_dio_write() when DIO to write
3042 * to an uninitialized extent.
3043 *
Paul Bollefd018fe2011-02-15 00:05:43 +01003044 * Writing to an uninitialized extent may result in splitting the uninitialized
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003045 * extent into multiple /initialized uninitialized extents (up to three)
Mingming Cao00314622009-09-28 15:49:08 -04003046 * There are three possibilities:
3047 * a> There is no split required: Entire extent should be uninitialized
3048 * b> Splits in two extents: Write is happening at either end of the extent
3049 * c> Splits in three extents: Somone is writing in middle of the extent
3050 *
3051 * One of more index blocks maybe needed if the extent tree grow after
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003052 * the uninitialized extent split. To prevent ENOSPC occur at the IO
Mingming Cao00314622009-09-28 15:49:08 -04003053 * complete, we need to split the uninitialized extent before DIO submit
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02003054 * the IO. The uninitialized extent called at this time will be split
Mingming Cao00314622009-09-28 15:49:08 -04003055 * into three uninitialized extent(at most). After IO complete, the part
3056 * being filled will be convert to initialized by the end_io callback function
3057 * via ext4_convert_unwritten_extents().
Mingmingba230c32009-11-06 04:01:23 -05003058 *
3059 * Returns the size of uninitialized extent to be written on success.
Mingming Cao00314622009-09-28 15:49:08 -04003060 */
3061static int ext4_split_unwritten_extents(handle_t *handle,
3062 struct inode *inode,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003063 struct ext4_map_blocks *map,
Mingming Cao00314622009-09-28 15:49:08 -04003064 struct ext4_ext_path *path,
Mingming Cao00314622009-09-28 15:49:08 -04003065 int flags)
3066{
Yongqiang Yang667eff32011-05-03 12:25:07 -04003067 ext4_lblk_t eof_block;
3068 ext4_lblk_t ee_block;
3069 struct ext4_extent *ex;
3070 unsigned int ee_len;
3071 int split_flag = 0, depth;
Mingming Cao00314622009-09-28 15:49:08 -04003072
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003073 ext_debug("ext4_split_unwritten_extents: inode %lu, logical"
3074 "block %llu, max_blocks %u\n", inode->i_ino,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003075 (unsigned long long)map->m_lblk, map->m_len);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003076
3077 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
3078 inode->i_sb->s_blocksize_bits;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003079 if (eof_block < map->m_lblk + map->m_len)
3080 eof_block = map->m_lblk + map->m_len;
Mingming Cao00314622009-09-28 15:49:08 -04003081 /*
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003082 * It is safe to convert extent to initialized via explicit
3083 * zeroout only if extent is fully insde i_size or new_size.
3084 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04003085 depth = ext_depth(inode);
3086 ex = path[depth].p_ext;
3087 ee_block = le32_to_cpu(ex->ee_block);
3088 ee_len = ext4_ext_get_actual_len(ex);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003089
Yongqiang Yang667eff32011-05-03 12:25:07 -04003090 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
3091 split_flag |= EXT4_EXT_MARK_UNINIT2;
Mingming Cao00314622009-09-28 15:49:08 -04003092
Yongqiang Yang667eff32011-05-03 12:25:07 -04003093 flags |= EXT4_GET_BLOCKS_PRE_IO;
3094 return ext4_split_extent(handle, inode, path, map, split_flag, flags);
Mingming Cao00314622009-09-28 15:49:08 -04003095}
Yongqiang Yang197217a2011-05-03 11:45:29 -04003096
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003097static int ext4_convert_unwritten_extents_endio(handle_t *handle,
Mingming Cao00314622009-09-28 15:49:08 -04003098 struct inode *inode,
3099 struct ext4_ext_path *path)
3100{
3101 struct ext4_extent *ex;
3102 struct ext4_extent_header *eh;
3103 int depth;
3104 int err = 0;
Mingming Cao00314622009-09-28 15:49:08 -04003105
3106 depth = ext_depth(inode);
3107 eh = path[depth].p_hdr;
3108 ex = path[depth].p_ext;
3109
Yongqiang Yang197217a2011-05-03 11:45:29 -04003110 ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical"
3111 "block %llu, max_blocks %u\n", inode->i_ino,
3112 (unsigned long long)le32_to_cpu(ex->ee_block),
3113 ext4_ext_get_actual_len(ex));
3114
Mingming Cao00314622009-09-28 15:49:08 -04003115 err = ext4_ext_get_access(handle, inode, path + depth);
3116 if (err)
3117 goto out;
3118 /* first mark the extent as initialized */
3119 ext4_ext_mark_initialized(ex);
3120
Yongqiang Yang197217a2011-05-03 11:45:29 -04003121 /* note: ext4_ext_correct_indexes() isn't needed here because
3122 * borders are not changed
Mingming Cao00314622009-09-28 15:49:08 -04003123 */
Yongqiang Yang197217a2011-05-03 11:45:29 -04003124 ext4_ext_try_to_merge(inode, path, ex);
3125
Mingming Cao00314622009-09-28 15:49:08 -04003126 /* Mark modified extent as dirty */
3127 err = ext4_ext_dirty(handle, inode, path + depth);
3128out:
3129 ext4_ext_show_leaf(inode, path);
3130 return err;
3131}
3132
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003133static void unmap_underlying_metadata_blocks(struct block_device *bdev,
3134 sector_t block, int count)
3135{
3136 int i;
3137 for (i = 0; i < count; i++)
3138 unmap_underlying_metadata(bdev, block + i);
3139}
3140
Theodore Ts'o58590b02010-10-27 21:23:12 -04003141/*
3142 * Handle EOFBLOCKS_FL flag, clearing it if necessary
3143 */
3144static int check_eofblocks_fl(handle_t *handle, struct inode *inode,
Eric Sandeend002ebf2011-01-10 13:03:35 -05003145 ext4_lblk_t lblk,
Theodore Ts'o58590b02010-10-27 21:23:12 -04003146 struct ext4_ext_path *path,
3147 unsigned int len)
3148{
3149 int i, depth;
3150 struct ext4_extent_header *eh;
Sergey Senozhatsky65922cb2011-03-23 14:08:27 -04003151 struct ext4_extent *last_ex;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003152
3153 if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
3154 return 0;
3155
3156 depth = ext_depth(inode);
3157 eh = path[depth].p_hdr;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003158
3159 if (unlikely(!eh->eh_entries)) {
3160 EXT4_ERROR_INODE(inode, "eh->eh_entries == 0 and "
3161 "EOFBLOCKS_FL set");
3162 return -EIO;
3163 }
3164 last_ex = EXT_LAST_EXTENT(eh);
3165 /*
3166 * We should clear the EOFBLOCKS_FL flag if we are writing the
3167 * last block in the last extent in the file. We test this by
3168 * first checking to see if the caller to
3169 * ext4_ext_get_blocks() was interested in the last block (or
3170 * a block beyond the last block) in the current extent. If
3171 * this turns out to be false, we can bail out from this
3172 * function immediately.
3173 */
Eric Sandeend002ebf2011-01-10 13:03:35 -05003174 if (lblk + len < le32_to_cpu(last_ex->ee_block) +
Theodore Ts'o58590b02010-10-27 21:23:12 -04003175 ext4_ext_get_actual_len(last_ex))
3176 return 0;
3177 /*
3178 * If the caller does appear to be planning to write at or
3179 * beyond the end of the current extent, we then test to see
3180 * if the current extent is the last extent in the file, by
3181 * checking to make sure it was reached via the rightmost node
3182 * at each level of the tree.
3183 */
3184 for (i = depth-1; i >= 0; i--)
3185 if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr))
3186 return 0;
3187 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3188 return ext4_mark_inode_dirty(handle, inode);
3189}
3190
Mingming Cao00314622009-09-28 15:49:08 -04003191static int
3192ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003193 struct ext4_map_blocks *map,
Mingming Cao00314622009-09-28 15:49:08 -04003194 struct ext4_ext_path *path, int flags,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003195 unsigned int allocated, ext4_fsblk_t newblock)
Mingming Cao00314622009-09-28 15:49:08 -04003196{
3197 int ret = 0;
3198 int err = 0;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003199 ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
Mingming Cao00314622009-09-28 15:49:08 -04003200
3201 ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical"
3202 "block %llu, max_blocks %u, flags %d, allocated %u",
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003203 inode->i_ino, (unsigned long long)map->m_lblk, map->m_len,
Mingming Cao00314622009-09-28 15:49:08 -04003204 flags, allocated);
3205 ext4_ext_show_leaf(inode, path);
3206
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003207 /* get_block() before submit the IO, split the extent */
Jiaying Zhang744692d2010-03-04 16:14:02 -05003208 if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003209 ret = ext4_split_unwritten_extents(handle, inode, map,
3210 path, flags);
Mingming5f524952009-11-10 10:48:04 -05003211 /*
3212 * Flag the inode(non aio case) or end_io struct (aio case)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003213 * that this IO needs to conversion to written when IO is
Mingming5f524952009-11-10 10:48:04 -05003214 * completed
3215 */
Eric Sandeene9e3bce2011-02-12 08:17:34 -05003216 if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -04003217 io->flag = EXT4_IO_END_UNWRITTEN;
Eric Sandeene9e3bce2011-02-12 08:17:34 -05003218 atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten);
3219 } else
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003220 ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
Jiaying Zhang744692d2010-03-04 16:14:02 -05003221 if (ext4_should_dioread_nolock(inode))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003222 map->m_flags |= EXT4_MAP_UNINIT;
Mingming Cao00314622009-09-28 15:49:08 -04003223 goto out;
3224 }
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003225 /* IO end_io complete, convert the filled extent to written */
Jiaying Zhang744692d2010-03-04 16:14:02 -05003226 if ((flags & EXT4_GET_BLOCKS_CONVERT)) {
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003227 ret = ext4_convert_unwritten_extents_endio(handle, inode,
Mingming Cao00314622009-09-28 15:49:08 -04003228 path);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003229 if (ret >= 0) {
Jan Karab436b9b2009-12-08 23:51:10 -05003230 ext4_update_inode_fsync_trans(handle, inode, 1);
Eric Sandeend002ebf2011-01-10 13:03:35 -05003231 err = check_eofblocks_fl(handle, inode, map->m_lblk,
3232 path, map->m_len);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003233 } else
3234 err = ret;
Mingming Cao00314622009-09-28 15:49:08 -04003235 goto out2;
3236 }
3237 /* buffered IO case */
3238 /*
3239 * repeat fallocate creation request
3240 * we already have an unwritten extent
3241 */
3242 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT)
3243 goto map_out;
3244
3245 /* buffered READ or buffered write_begin() lookup */
3246 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
3247 /*
3248 * We have blocks reserved already. We
3249 * return allocated blocks so that delalloc
3250 * won't do block reservation for us. But
3251 * the buffer head will be unmapped so that
3252 * a read from the block returns 0s.
3253 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003254 map->m_flags |= EXT4_MAP_UNWRITTEN;
Mingming Cao00314622009-09-28 15:49:08 -04003255 goto out1;
3256 }
3257
3258 /* buffered write, writepage time, convert*/
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003259 ret = ext4_ext_convert_to_initialized(handle, inode, map, path);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003260 if (ret >= 0) {
Jan Karab436b9b2009-12-08 23:51:10 -05003261 ext4_update_inode_fsync_trans(handle, inode, 1);
Eric Sandeend002ebf2011-01-10 13:03:35 -05003262 err = check_eofblocks_fl(handle, inode, map->m_lblk, path,
3263 map->m_len);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003264 if (err < 0)
3265 goto out2;
3266 }
3267
Mingming Cao00314622009-09-28 15:49:08 -04003268out:
3269 if (ret <= 0) {
3270 err = ret;
3271 goto out2;
3272 } else
3273 allocated = ret;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003274 map->m_flags |= EXT4_MAP_NEW;
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003275 /*
3276 * if we allocated more blocks than requested
3277 * we need to make sure we unmap the extra block
3278 * allocated. The actual needed block will get
3279 * unmapped later when we find the buffer_head marked
3280 * new.
3281 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003282 if (allocated > map->m_len) {
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003283 unmap_underlying_metadata_blocks(inode->i_sb->s_bdev,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003284 newblock + map->m_len,
3285 allocated - map->m_len);
3286 allocated = map->m_len;
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003287 }
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003288
3289 /*
3290 * If we have done fallocate with the offset that is already
3291 * delayed allocated, we would have block reservation
3292 * and quota reservation done in the delayed write path.
3293 * But fallocate would have already updated quota and block
3294 * count for this offset. So cancel these reservation
3295 */
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05003296 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003297 ext4_da_update_reserve_space(inode, allocated, 0);
3298
Mingming Cao00314622009-09-28 15:49:08 -04003299map_out:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003300 map->m_flags |= EXT4_MAP_MAPPED;
Mingming Cao00314622009-09-28 15:49:08 -04003301out1:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003302 if (allocated > map->m_len)
3303 allocated = map->m_len;
Mingming Cao00314622009-09-28 15:49:08 -04003304 ext4_ext_show_leaf(inode, path);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003305 map->m_pblk = newblock;
3306 map->m_len = allocated;
Mingming Cao00314622009-09-28 15:49:08 -04003307out2:
3308 if (path) {
3309 ext4_ext_drop_refs(path);
3310 kfree(path);
3311 }
3312 return err ? err : allocated;
3313}
Theodore Ts'o58590b02010-10-27 21:23:12 -04003314
Mingming Cao00314622009-09-28 15:49:08 -04003315/*
Mingming Caof5ab0d12008-02-25 15:29:55 -05003316 * Block allocation/map/preallocation routine for extents based files
3317 *
3318 *
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05003319 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05003320 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
3321 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
Mingming Caof5ab0d12008-02-25 15:29:55 -05003322 *
3323 * return > 0, number of of blocks already mapped/allocated
3324 * if create == 0 and these are pre-allocated blocks
3325 * buffer head is unmapped
3326 * otherwise blocks are mapped
3327 *
3328 * return = 0, if plain look up failed (blocks have not been allocated)
3329 * buffer head is unmapped
3330 *
3331 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05003332 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003333int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
3334 struct ext4_map_blocks *map, int flags)
Alex Tomasa86c6182006-10-11 01:21:03 -07003335{
3336 struct ext4_ext_path *path = NULL;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003337 struct ext4_extent newex, *ex;
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003338 ext4_fsblk_t newblock = 0;
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05003339 int err = 0, depth, ret;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003340 unsigned int allocated = 0;
Allison Hendersone8613042011-05-25 07:41:46 -04003341 unsigned int punched_out = 0;
3342 unsigned int result = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003343 struct ext4_allocation_request ar;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003344 ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio;
Allison Hendersone8613042011-05-25 07:41:46 -04003345 struct ext4_map_blocks punch_map;
Alex Tomasa86c6182006-10-11 01:21:03 -07003346
Mingming84fe3be2009-09-01 08:44:37 -04003347 ext_debug("blocks %u/%u requested for inode %lu\n",
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003348 map->m_lblk, map->m_len, inode->i_ino);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003349 trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07003350
3351 /* check in cache */
Allison Hendersone8613042011-05-25 07:41:46 -04003352 if (ext4_ext_in_cache(inode, map->m_lblk, &newex) &&
3353 ((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0)) {
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05003354 if (!newex.ee_start_lo && !newex.ee_start_hi) {
Theodore Ts'oc2177052009-05-14 00:58:52 -04003355 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
Amit Arora56055d32007-07-17 21:42:38 -04003356 /*
3357 * block isn't allocated yet and
3358 * user doesn't want to allocate it
3359 */
Alex Tomasa86c6182006-10-11 01:21:03 -07003360 goto out2;
3361 }
3362 /* we should allocate requested block */
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05003363 } else {
Alex Tomasa86c6182006-10-11 01:21:03 -07003364 /* block is already allocated */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003365 newblock = map->m_lblk
Dave Kleikamp8c55e202007-05-24 13:04:54 -04003366 - le32_to_cpu(newex.ee_block)
Theodore Ts'obf89d162010-10-27 21:30:14 -04003367 + ext4_ext_pblock(&newex);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003368 /* number of remaining blocks in the extent */
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05003369 allocated = ext4_ext_get_actual_len(&newex) -
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003370 (map->m_lblk - le32_to_cpu(newex.ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -07003371 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07003372 }
3373 }
3374
3375 /* find extent for this block */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003376 path = ext4_ext_find_extent(inode, map->m_lblk, NULL);
Alex Tomasa86c6182006-10-11 01:21:03 -07003377 if (IS_ERR(path)) {
3378 err = PTR_ERR(path);
3379 path = NULL;
3380 goto out2;
3381 }
3382
3383 depth = ext_depth(inode);
3384
3385 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003386 * consistent leaf must not be empty;
3387 * this situation is possible, though, _during_ tree modification;
Alex Tomasa86c6182006-10-11 01:21:03 -07003388 * this is why assert can't be put in ext4_ext_find_extent()
3389 */
Frank Mayhar273df552010-03-02 11:46:09 -05003390 if (unlikely(path[depth].p_ext == NULL && depth != 0)) {
3391 EXT4_ERROR_INODE(inode, "bad extent address "
Theodore Ts'of70f3622010-05-16 23:00:00 -04003392 "lblock: %lu, depth: %d pblock %lld",
3393 (unsigned long) map->m_lblk, depth,
3394 path[depth].p_block);
Surbhi Palande034fb4c2009-12-14 09:53:52 -05003395 err = -EIO;
3396 goto out2;
3397 }
Alex Tomasa86c6182006-10-11 01:21:03 -07003398
Avantika Mathur7e028972006-12-06 20:41:33 -08003399 ex = path[depth].p_ext;
3400 if (ex) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003401 ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04003402 ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
Amit Aroraa2df2a62007-07-17 21:42:41 -04003403 unsigned short ee_len;
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07003404
3405 /*
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07003406 * Uninitialized extents are treated as holes, except that
Amit Arora56055d32007-07-17 21:42:38 -04003407 * we split out initialized portions during a write.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07003408 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04003409 ee_len = ext4_ext_get_actual_len(ex);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003410 /* if found extent covers block, simply return it */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003411 if (in_range(map->m_lblk, ee_block, ee_len)) {
3412 newblock = map->m_lblk - ee_block + ee_start;
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003413 /* number of remaining blocks in the extent */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003414 allocated = ee_len - (map->m_lblk - ee_block);
3415 ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk,
3416 ee_block, ee_len, newblock);
Amit Arora56055d32007-07-17 21:42:38 -04003417
Allison Hendersone8613042011-05-25 07:41:46 -04003418 if ((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0) {
3419 /*
3420 * Do not put uninitialized extent
3421 * in the cache
3422 */
3423 if (!ext4_ext_is_uninitialized(ex)) {
3424 ext4_ext_put_in_cache(inode, ee_block,
3425 ee_len, ee_start);
3426 goto out;
3427 }
3428 ret = ext4_ext_handle_uninitialized_extents(
3429 handle, inode, map, path, flags,
3430 allocated, newblock);
3431 return ret;
Amit Arora56055d32007-07-17 21:42:38 -04003432 }
Allison Hendersone8613042011-05-25 07:41:46 -04003433
3434 /*
3435 * Punch out the map length, but only to the
3436 * end of the extent
3437 */
3438 punched_out = allocated < map->m_len ?
3439 allocated : map->m_len;
3440
3441 /*
3442 * Sense extents need to be converted to
3443 * uninitialized, they must fit in an
3444 * uninitialized extent
3445 */
3446 if (punched_out > EXT_UNINIT_MAX_LEN)
3447 punched_out = EXT_UNINIT_MAX_LEN;
3448
3449 punch_map.m_lblk = map->m_lblk;
3450 punch_map.m_pblk = newblock;
3451 punch_map.m_len = punched_out;
3452 punch_map.m_flags = 0;
3453
3454 /* Check to see if the extent needs to be split */
3455 if (punch_map.m_len != ee_len ||
3456 punch_map.m_lblk != ee_block) {
3457
3458 ret = ext4_split_extent(handle, inode,
3459 path, &punch_map, 0,
3460 EXT4_GET_BLOCKS_PUNCH_OUT_EXT |
3461 EXT4_GET_BLOCKS_PRE_IO);
3462
3463 if (ret < 0) {
3464 err = ret;
3465 goto out2;
3466 }
3467 /*
3468 * find extent for the block at
3469 * the start of the hole
3470 */
3471 ext4_ext_drop_refs(path);
3472 kfree(path);
3473
3474 path = ext4_ext_find_extent(inode,
3475 map->m_lblk, NULL);
3476 if (IS_ERR(path)) {
3477 err = PTR_ERR(path);
3478 path = NULL;
3479 goto out2;
3480 }
3481
3482 depth = ext_depth(inode);
3483 ex = path[depth].p_ext;
3484 ee_len = ext4_ext_get_actual_len(ex);
3485 ee_block = le32_to_cpu(ex->ee_block);
3486 ee_start = ext4_ext_pblock(ex);
3487
3488 }
3489
3490 ext4_ext_mark_uninitialized(ex);
3491
3492 err = ext4_ext_remove_space(inode, map->m_lblk,
3493 map->m_lblk + punched_out);
3494
3495 goto out2;
Alex Tomasa86c6182006-10-11 01:21:03 -07003496 }
3497 }
3498
3499 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003500 * requested block isn't allocated yet;
Alex Tomasa86c6182006-10-11 01:21:03 -07003501 * we couldn't try to create block if create flag is zero
3502 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04003503 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
Amit Arora56055d32007-07-17 21:42:38 -04003504 /*
3505 * put just found gap into cache to speed up
3506 * subsequent requests
3507 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003508 ext4_ext_put_gap_in_cache(inode, path, map->m_lblk);
Alex Tomasa86c6182006-10-11 01:21:03 -07003509 goto out2;
3510 }
3511 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003512 * Okay, we need to do block allocation.
Andrew Morton63f57932006-10-11 01:21:24 -07003513 */
Alex Tomasa86c6182006-10-11 01:21:03 -07003514
Alex Tomasc9de5602008-01-29 00:19:52 -05003515 /* find neighbour allocated blocks */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003516 ar.lleft = map->m_lblk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003517 err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
3518 if (err)
3519 goto out2;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003520 ar.lright = map->m_lblk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003521 err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright);
3522 if (err)
3523 goto out2;
Amit Arora25d14f92007-05-24 13:04:13 -04003524
Amit Arora749269f2007-07-18 09:02:56 -04003525 /*
3526 * See if request is beyond maximum number of blocks we can have in
3527 * a single extent. For an initialized extent this limit is
3528 * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
3529 * EXT_UNINIT_MAX_LEN.
3530 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003531 if (map->m_len > EXT_INIT_MAX_LEN &&
Theodore Ts'oc2177052009-05-14 00:58:52 -04003532 !(flags & EXT4_GET_BLOCKS_UNINIT_EXT))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003533 map->m_len = EXT_INIT_MAX_LEN;
3534 else if (map->m_len > EXT_UNINIT_MAX_LEN &&
Theodore Ts'oc2177052009-05-14 00:58:52 -04003535 (flags & EXT4_GET_BLOCKS_UNINIT_EXT))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003536 map->m_len = EXT_UNINIT_MAX_LEN;
Amit Arora749269f2007-07-18 09:02:56 -04003537
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003538 /* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */
3539 newex.ee_block = cpu_to_le32(map->m_lblk);
3540 newex.ee_len = cpu_to_le16(map->m_len);
Amit Arora25d14f92007-05-24 13:04:13 -04003541 err = ext4_ext_check_overlap(inode, &newex, path);
3542 if (err)
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05003543 allocated = ext4_ext_get_actual_len(&newex);
Amit Arora25d14f92007-05-24 13:04:13 -04003544 else
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003545 allocated = map->m_len;
Alex Tomasc9de5602008-01-29 00:19:52 -05003546
3547 /* allocate new block */
3548 ar.inode = inode;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003549 ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk);
3550 ar.logical = map->m_lblk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003551 ar.len = allocated;
3552 if (S_ISREG(inode->i_mode))
3553 ar.flags = EXT4_MB_HINT_DATA;
3554 else
3555 /* disable in-core preallocation for non-regular files */
3556 ar.flags = 0;
Vivek Haldar556b27a2011-05-25 07:41:54 -04003557 if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE)
3558 ar.flags |= EXT4_MB_HINT_NOPREALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05003559 newblock = ext4_mb_new_blocks(handle, &ar, &err);
Alex Tomasa86c6182006-10-11 01:21:03 -07003560 if (!newblock)
3561 goto out2;
Mingming84fe3be2009-09-01 08:44:37 -04003562 ext_debug("allocate new block: goal %llu, found %llu/%u\n",
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003563 ar.goal, newblock, allocated);
Alex Tomasa86c6182006-10-11 01:21:03 -07003564
3565 /* try to insert new extent into found leaf and return */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07003566 ext4_ext_store_pblock(&newex, newblock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003567 newex.ee_len = cpu_to_le16(ar.len);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003568 /* Mark uninitialized */
3569 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT){
Amit Aroraa2df2a62007-07-17 21:42:41 -04003570 ext4_ext_mark_uninitialized(&newex);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003571 /*
Jiaying Zhang744692d2010-03-04 16:14:02 -05003572 * io_end structure was created for every IO write to an
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003573 * uninitialized extent. To avoid unnecessary conversion,
Jiaying Zhang744692d2010-03-04 16:14:02 -05003574 * here we flag the IO that really needs the conversion.
Mingming5f524952009-11-10 10:48:04 -05003575 * For non asycn direct IO case, flag the inode state
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003576 * that we need to perform conversion when IO is done.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003577 */
Jiaying Zhang744692d2010-03-04 16:14:02 -05003578 if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
Eric Sandeene9e3bce2011-02-12 08:17:34 -05003579 if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -04003580 io->flag = EXT4_IO_END_UNWRITTEN;
Eric Sandeene9e3bce2011-02-12 08:17:34 -05003581 atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten);
3582 } else
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003583 ext4_set_inode_state(inode,
3584 EXT4_STATE_DIO_UNWRITTEN);
Mingming5f524952009-11-10 10:48:04 -05003585 }
Jiaying Zhang744692d2010-03-04 16:14:02 -05003586 if (ext4_should_dioread_nolock(inode))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003587 map->m_flags |= EXT4_MAP_UNINIT;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003588 }
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003589
Eric Sandeend002ebf2011-01-10 13:03:35 -05003590 err = check_eofblocks_fl(handle, inode, map->m_lblk, path, ar.len);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003591 if (err)
3592 goto out2;
3593
Mingming Cao00314622009-09-28 15:49:08 -04003594 err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
Alex Tomas315054f2007-05-24 13:04:25 -04003595 if (err) {
3596 /* free data blocks we just allocated */
Alex Tomasc9de5602008-01-29 00:19:52 -05003597 /* not a good idea to call discard here directly,
3598 * but otherwise we'd need to call it every free() */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003599 ext4_discard_preallocations(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05003600 ext4_free_blocks(handle, inode, NULL, ext4_ext_pblock(&newex),
Theodore Ts'oe6362602009-11-23 07:17:05 -05003601 ext4_ext_get_actual_len(&newex), 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07003602 goto out2;
Alex Tomas315054f2007-05-24 13:04:25 -04003603 }
Alex Tomasa86c6182006-10-11 01:21:03 -07003604
Alex Tomasa86c6182006-10-11 01:21:03 -07003605 /* previous routine could use block we allocated */
Theodore Ts'obf89d162010-10-27 21:30:14 -04003606 newblock = ext4_ext_pblock(&newex);
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05003607 allocated = ext4_ext_get_actual_len(&newex);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003608 if (allocated > map->m_len)
3609 allocated = map->m_len;
3610 map->m_flags |= EXT4_MAP_NEW;
Alex Tomasa86c6182006-10-11 01:21:03 -07003611
Jan Karab436b9b2009-12-08 23:51:10 -05003612 /*
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003613 * Update reserved blocks/metadata blocks after successful
3614 * block allocation which had been deferred till now.
3615 */
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -05003616 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003617 ext4_da_update_reserve_space(inode, allocated, 1);
3618
3619 /*
Jan Karab436b9b2009-12-08 23:51:10 -05003620 * Cache the extent and update transaction to commit on fdatasync only
3621 * when it is _not_ an uninitialized extent.
3622 */
3623 if ((flags & EXT4_GET_BLOCKS_UNINIT_EXT) == 0) {
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05003624 ext4_ext_put_in_cache(inode, map->m_lblk, allocated, newblock);
Jan Karab436b9b2009-12-08 23:51:10 -05003625 ext4_update_inode_fsync_trans(handle, inode, 1);
3626 } else
3627 ext4_update_inode_fsync_trans(handle, inode, 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07003628out:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003629 if (allocated > map->m_len)
3630 allocated = map->m_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07003631 ext4_ext_show_leaf(inode, path);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003632 map->m_flags |= EXT4_MAP_MAPPED;
3633 map->m_pblk = newblock;
3634 map->m_len = allocated;
Alex Tomasa86c6182006-10-11 01:21:03 -07003635out2:
3636 if (path) {
3637 ext4_ext_drop_refs(path);
3638 kfree(path);
3639 }
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003640 trace_ext4_ext_map_blocks_exit(inode, map->m_lblk,
3641 newblock, map->m_len, err ? err : allocated);
Allison Hendersone8613042011-05-25 07:41:46 -04003642
3643 result = (flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) ?
3644 punched_out : allocated;
3645
3646 return err ? err : result;
Alex Tomasa86c6182006-10-11 01:21:03 -07003647}
3648
Jan Karacf108bc2008-07-11 19:27:31 -04003649void ext4_ext_truncate(struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -07003650{
3651 struct address_space *mapping = inode->i_mapping;
3652 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003653 ext4_lblk_t last_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07003654 handle_t *handle;
3655 int err = 0;
3656
3657 /*
Jiaying Zhang3889fd52011-01-10 12:47:05 -05003658 * finish any pending end_io work so we won't run the risk of
3659 * converting any truncated blocks to initialized later
3660 */
3661 ext4_flush_completed_IO(inode);
3662
3663 /*
Alex Tomasa86c6182006-10-11 01:21:03 -07003664 * probably first extent we're gonna free will be last in block
3665 */
Mingming Caof3bd1f32008-08-19 22:16:03 -04003666 err = ext4_writepage_trans_blocks(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07003667 handle = ext4_journal_start(inode, err);
Jan Karacf108bc2008-07-11 19:27:31 -04003668 if (IS_ERR(handle))
Alex Tomasa86c6182006-10-11 01:21:03 -07003669 return;
Alex Tomasa86c6182006-10-11 01:21:03 -07003670
Jan Karacf108bc2008-07-11 19:27:31 -04003671 if (inode->i_size & (sb->s_blocksize - 1))
3672 ext4_block_truncate_page(handle, mapping, inode->i_size);
Alex Tomasa86c6182006-10-11 01:21:03 -07003673
Jan Kara9ddfc3d2008-07-11 19:27:31 -04003674 if (ext4_orphan_add(handle, inode))
3675 goto out_stop;
3676
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05003677 down_write(&EXT4_I(inode)->i_data_sem);
Alex Tomasa86c6182006-10-11 01:21:03 -07003678 ext4_ext_invalidate_cache(inode);
3679
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003680 ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05003681
Alex Tomasa86c6182006-10-11 01:21:03 -07003682 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003683 * TODO: optimization is possible here.
3684 * Probably we need not scan at all,
3685 * because page truncation is enough.
Alex Tomasa86c6182006-10-11 01:21:03 -07003686 */
Alex Tomasa86c6182006-10-11 01:21:03 -07003687
3688 /* we have to know where to truncate from in crash case */
3689 EXT4_I(inode)->i_disksize = inode->i_size;
3690 ext4_mark_inode_dirty(handle, inode);
3691
3692 last_block = (inode->i_size + sb->s_blocksize - 1)
3693 >> EXT4_BLOCK_SIZE_BITS(sb);
Allison Hendersond583fb82011-05-25 07:41:43 -04003694 err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCK);
Alex Tomasa86c6182006-10-11 01:21:03 -07003695
3696 /* In a multi-transaction truncate, we only make the final
Amit Arora56055d32007-07-17 21:42:38 -04003697 * transaction synchronous.
3698 */
Alex Tomasa86c6182006-10-11 01:21:03 -07003699 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05003700 ext4_handle_sync(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07003701
Jan Kara9ddfc3d2008-07-11 19:27:31 -04003702 up_write(&EXT4_I(inode)->i_data_sem);
Eric Gouriouf6d2f6b2011-05-22 21:33:00 -04003703
3704out_stop:
Alex Tomasa86c6182006-10-11 01:21:03 -07003705 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003706 * If this was a simple ftruncate() and the file will remain alive,
Alex Tomasa86c6182006-10-11 01:21:03 -07003707 * then we need to clear up the orphan record which we created above.
3708 * However, if this was a real unlink then we were called by
3709 * ext4_delete_inode(), and we allow that function to clean up the
3710 * orphan info for us.
3711 */
3712 if (inode->i_nlink)
3713 ext4_orphan_del(handle, inode);
3714
Solofo Ramangalahyef737722008-04-29 22:00:41 -04003715 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3716 ext4_mark_inode_dirty(handle, inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07003717 ext4_journal_stop(handle);
3718}
3719
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003720static void ext4_falloc_update_inode(struct inode *inode,
3721 int mode, loff_t new_size, int update_ctime)
3722{
3723 struct timespec now;
3724
3725 if (update_ctime) {
3726 now = current_fs_time(inode->i_sb);
3727 if (!timespec_equal(&inode->i_ctime, &now))
3728 inode->i_ctime = now;
3729 }
3730 /*
3731 * Update only when preallocation was requested beyond
3732 * the file size.
3733 */
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003734 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
3735 if (new_size > i_size_read(inode))
3736 i_size_write(inode, new_size);
3737 if (new_size > EXT4_I(inode)->i_disksize)
3738 ext4_update_i_disksize(inode, new_size);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003739 } else {
3740 /*
3741 * Mark that we allocate beyond EOF so the subsequent truncate
3742 * can proceed even if the new size is the same as i_size.
3743 */
3744 if (new_size > i_size_read(inode))
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003745 ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003746 }
3747
3748}
3749
Amit Aroraa2df2a62007-07-17 21:42:41 -04003750/*
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003751 * preallocate space for a file. This implements ext4's fallocate file
Amit Aroraa2df2a62007-07-17 21:42:41 -04003752 * operation, which gets called from sys_fallocate system call.
3753 * For block-mapped files, posix_fallocate should fall back to the method
3754 * of writing zeroes to the required new blocks (the same behavior which is
3755 * expected for file systems which do not support fallocate() system call).
3756 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003757long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
Amit Aroraa2df2a62007-07-17 21:42:41 -04003758{
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01003759 struct inode *inode = file->f_path.dentry->d_inode;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003760 handle_t *handle;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003761 loff_t new_size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003762 unsigned int max_blocks;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003763 int ret = 0;
3764 int ret2 = 0;
3765 int retries = 0;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003766 struct ext4_map_blocks map;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003767 unsigned int credits, blkbits = inode->i_blkbits;
3768
3769 /*
3770 * currently supporting (pre)allocate mode for extent-based
3771 * files _only_
3772 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003773 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Amit Aroraa2df2a62007-07-17 21:42:41 -04003774 return -EOPNOTSUPP;
3775
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003776 /* Return error if mode is not supported */
3777 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
3778 return -EOPNOTSUPP;
3779
3780 if (mode & FALLOC_FL_PUNCH_HOLE)
3781 return ext4_punch_hole(file, offset, len);
3782
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003783 trace_ext4_fallocate_enter(inode, offset, len, mode);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003784 map.m_lblk = offset >> blkbits;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003785 /*
3786 * We can't just convert len to max_blocks because
3787 * If blocksize = 4096 offset = 3072 and len = 2048
3788 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04003789 max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003790 - map.m_lblk;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003791 /*
Mingming Caof3bd1f32008-08-19 22:16:03 -04003792 * credits to insert 1 extent into extent tree
Amit Aroraa2df2a62007-07-17 21:42:41 -04003793 */
Mingming Caof3bd1f32008-08-19 22:16:03 -04003794 credits = ext4_chunk_trans_blocks(inode, max_blocks);
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05003795 mutex_lock(&inode->i_mutex);
Nikanth Karthikesan6d19c422010-05-16 14:00:00 -04003796 ret = inode_newsize_ok(inode, (len + offset));
3797 if (ret) {
3798 mutex_unlock(&inode->i_mutex);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003799 trace_ext4_fallocate_exit(inode, offset, max_blocks, ret);
Nikanth Karthikesan6d19c422010-05-16 14:00:00 -04003800 return ret;
3801 }
Amit Aroraa2df2a62007-07-17 21:42:41 -04003802retry:
3803 while (ret >= 0 && ret < max_blocks) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003804 map.m_lblk = map.m_lblk + ret;
3805 map.m_len = max_blocks = max_blocks - ret;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003806 handle = ext4_journal_start(inode, credits);
3807 if (IS_ERR(handle)) {
3808 ret = PTR_ERR(handle);
3809 break;
3810 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003811 ret = ext4_map_blocks(handle, inode, &map,
Vivek Haldar556b27a2011-05-25 07:41:54 -04003812 EXT4_GET_BLOCKS_CREATE_UNINIT_EXT |
3813 EXT4_GET_BLOCKS_NO_NORMALIZE);
Aneesh Kumar K.V221879c2008-01-28 23:58:27 -05003814 if (ret <= 0) {
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05003815#ifdef EXT4FS_DEBUG
3816 WARN_ON(ret <= 0);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003817 printk(KERN_ERR "%s: ext4_ext_map_blocks "
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05003818 "returned error inode#%lu, block=%u, "
Thadeu Lima de Souza Cascardo9fd97842009-01-26 19:26:26 -05003819 "max_blocks=%u", __func__,
Kazuya Mioa6371b62010-10-27 21:30:15 -04003820 inode->i_ino, map.m_lblk, max_blocks);
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05003821#endif
Amit Aroraa2df2a62007-07-17 21:42:41 -04003822 ext4_mark_inode_dirty(handle, inode);
3823 ret2 = ext4_journal_stop(handle);
3824 break;
3825 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003826 if ((map.m_lblk + ret) >= (EXT4_BLOCK_ALIGN(offset + len,
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003827 blkbits) >> blkbits))
3828 new_size = offset + len;
3829 else
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003830 new_size = (map.m_lblk + ret) << blkbits;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003831
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003832 ext4_falloc_update_inode(inode, mode, new_size,
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003833 (map.m_flags & EXT4_MAP_NEW));
Amit Aroraa2df2a62007-07-17 21:42:41 -04003834 ext4_mark_inode_dirty(handle, inode);
3835 ret2 = ext4_journal_stop(handle);
3836 if (ret2)
3837 break;
3838 }
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003839 if (ret == -ENOSPC &&
3840 ext4_should_retry_alloc(inode->i_sb, &retries)) {
3841 ret = 0;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003842 goto retry;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003843 }
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05003844 mutex_unlock(&inode->i_mutex);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003845 trace_ext4_fallocate_exit(inode, offset, max_blocks,
3846 ret > 0 ? ret2 : ret);
Amit Aroraa2df2a62007-07-17 21:42:41 -04003847 return ret > 0 ? ret2 : ret;
3848}
Eric Sandeen6873fa02008-10-07 00:46:36 -04003849
3850/*
Mingming Cao00314622009-09-28 15:49:08 -04003851 * This function convert a range of blocks to written extents
3852 * The caller of this function will pass the start offset and the size.
3853 * all unwritten extents within this range will be converted to
3854 * written extents.
3855 *
3856 * This function is called from the direct IO end io call back
3857 * function, to convert the fallocated extents after IO is completed.
Mingming109f5562009-11-10 10:48:08 -05003858 * Returns 0 on success.
Mingming Cao00314622009-09-28 15:49:08 -04003859 */
3860int ext4_convert_unwritten_extents(struct inode *inode, loff_t offset,
Eric Sandeena1de02d2010-02-04 23:58:38 -05003861 ssize_t len)
Mingming Cao00314622009-09-28 15:49:08 -04003862{
3863 handle_t *handle;
Mingming Cao00314622009-09-28 15:49:08 -04003864 unsigned int max_blocks;
3865 int ret = 0;
3866 int ret2 = 0;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003867 struct ext4_map_blocks map;
Mingming Cao00314622009-09-28 15:49:08 -04003868 unsigned int credits, blkbits = inode->i_blkbits;
3869
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003870 map.m_lblk = offset >> blkbits;
Mingming Cao00314622009-09-28 15:49:08 -04003871 /*
3872 * We can't just convert len to max_blocks because
3873 * If blocksize = 4096 offset = 3072 and len = 2048
3874 */
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003875 max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) -
3876 map.m_lblk);
Mingming Cao00314622009-09-28 15:49:08 -04003877 /*
3878 * credits to insert 1 extent into extent tree
3879 */
3880 credits = ext4_chunk_trans_blocks(inode, max_blocks);
3881 while (ret >= 0 && ret < max_blocks) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003882 map.m_lblk += ret;
3883 map.m_len = (max_blocks -= ret);
Mingming Cao00314622009-09-28 15:49:08 -04003884 handle = ext4_journal_start(inode, credits);
3885 if (IS_ERR(handle)) {
3886 ret = PTR_ERR(handle);
3887 break;
3888 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003889 ret = ext4_map_blocks(handle, inode, &map,
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003890 EXT4_GET_BLOCKS_IO_CONVERT_EXT);
Mingming Cao00314622009-09-28 15:49:08 -04003891 if (ret <= 0) {
3892 WARN_ON(ret <= 0);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003893 printk(KERN_ERR "%s: ext4_ext_map_blocks "
Mingming Cao00314622009-09-28 15:49:08 -04003894 "returned error inode#%lu, block=%u, "
3895 "max_blocks=%u", __func__,
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003896 inode->i_ino, map.m_lblk, map.m_len);
Mingming Cao00314622009-09-28 15:49:08 -04003897 }
3898 ext4_mark_inode_dirty(handle, inode);
3899 ret2 = ext4_journal_stop(handle);
3900 if (ret <= 0 || ret2 )
3901 break;
3902 }
3903 return ret > 0 ? ret2 : ret;
3904}
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003905
Mingming Cao00314622009-09-28 15:49:08 -04003906/*
Eric Sandeen6873fa02008-10-07 00:46:36 -04003907 * Callback function called for each extent to gather FIEMAP information.
3908 */
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003909static int ext4_ext_fiemap_cb(struct inode *inode, struct ext4_ext_path *path,
Eric Sandeen6873fa02008-10-07 00:46:36 -04003910 struct ext4_ext_cache *newex, struct ext4_extent *ex,
3911 void *data)
3912{
Eric Sandeen6873fa02008-10-07 00:46:36 -04003913 __u64 logical;
3914 __u64 physical;
3915 __u64 length;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003916 loff_t size;
Eric Sandeen6873fa02008-10-07 00:46:36 -04003917 __u32 flags = 0;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003918 int ret = 0;
3919 struct fiemap_extent_info *fieinfo = data;
3920 unsigned char blksize_bits;
Eric Sandeen6873fa02008-10-07 00:46:36 -04003921
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003922 blksize_bits = inode->i_sb->s_blocksize_bits;
3923 logical = (__u64)newex->ec_block << blksize_bits;
Eric Sandeen6873fa02008-10-07 00:46:36 -04003924
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05003925 if (newex->ec_start == 0) {
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003926 /*
3927 * No extent in extent-tree contains block @newex->ec_start,
3928 * then the block may stay in 1)a hole or 2)delayed-extent.
3929 *
3930 * Holes or delayed-extents are processed as follows.
3931 * 1. lookup dirty pages with specified range in pagecache.
3932 * If no page is got, then there is no delayed-extent and
3933 * return with EXT_CONTINUE.
3934 * 2. find the 1st mapped buffer,
3935 * 3. check if the mapped buffer is both in the request range
3936 * and a delayed buffer. If not, there is no delayed-extent,
3937 * then return.
3938 * 4. a delayed-extent is found, the extent will be collected.
3939 */
3940 ext4_lblk_t end = 0;
3941 pgoff_t last_offset;
3942 pgoff_t offset;
3943 pgoff_t index;
Yongqiang Yangb2213492011-05-24 11:36:58 -04003944 pgoff_t start_index = 0;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003945 struct page **pages = NULL;
Eric Sandeen6873fa02008-10-07 00:46:36 -04003946 struct buffer_head *bh = NULL;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003947 struct buffer_head *head = NULL;
3948 unsigned int nr_pages = PAGE_SIZE / sizeof(struct page *);
3949
3950 pages = kmalloc(PAGE_SIZE, GFP_KERNEL);
3951 if (pages == NULL)
3952 return -ENOMEM;
Eric Sandeen6873fa02008-10-07 00:46:36 -04003953
3954 offset = logical >> PAGE_SHIFT;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003955repeat:
3956 last_offset = offset;
3957 head = NULL;
3958 ret = find_get_pages_tag(inode->i_mapping, &offset,
3959 PAGECACHE_TAG_DIRTY, nr_pages, pages);
Eric Sandeen6873fa02008-10-07 00:46:36 -04003960
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003961 if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
3962 /* First time, try to find a mapped buffer. */
3963 if (ret == 0) {
3964out:
3965 for (index = 0; index < ret; index++)
3966 page_cache_release(pages[index]);
3967 /* just a hole. */
3968 kfree(pages);
3969 return EXT_CONTINUE;
3970 }
Yongqiang Yangb2213492011-05-24 11:36:58 -04003971 index = 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04003972
Yongqiang Yangb2213492011-05-24 11:36:58 -04003973next_page:
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003974 /* Try to find the 1st mapped buffer. */
Yongqiang Yangb2213492011-05-24 11:36:58 -04003975 end = ((__u64)pages[index]->index << PAGE_SHIFT) >>
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003976 blksize_bits;
Yongqiang Yangb2213492011-05-24 11:36:58 -04003977 if (!page_has_buffers(pages[index]))
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003978 goto out;
Yongqiang Yangb2213492011-05-24 11:36:58 -04003979 head = page_buffers(pages[index]);
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003980 if (!head)
3981 goto out;
Eric Sandeen6873fa02008-10-07 00:46:36 -04003982
Yongqiang Yangb2213492011-05-24 11:36:58 -04003983 index++;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003984 bh = head;
3985 do {
Yongqiang Yangb2213492011-05-24 11:36:58 -04003986 if (end >= newex->ec_block +
3987 newex->ec_len)
3988 /* The buffer is out of
3989 * the request range.
3990 */
3991 goto out;
3992
3993 if (buffer_mapped(bh) &&
3994 end >= newex->ec_block) {
3995 start_index = index - 1;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003996 /* get the 1st mapped buffer. */
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05003997 goto found_mapped_buffer;
3998 }
Yongqiang Yangb2213492011-05-24 11:36:58 -04003999
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004000 bh = bh->b_this_page;
4001 end++;
4002 } while (bh != head);
4003
Yongqiang Yangb2213492011-05-24 11:36:58 -04004004 /* No mapped buffer in the range found in this page,
4005 * We need to look up next page.
4006 */
4007 if (index >= ret) {
4008 /* There is no page left, but we need to limit
4009 * newex->ec_len.
4010 */
4011 newex->ec_len = end - newex->ec_block;
4012 goto out;
4013 }
4014 goto next_page;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004015 } else {
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004016 /*Find contiguous delayed buffers. */
4017 if (ret > 0 && pages[0]->index == last_offset)
4018 head = page_buffers(pages[0]);
4019 bh = head;
Yongqiang Yangb2213492011-05-24 11:36:58 -04004020 index = 1;
4021 start_index = 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004022 }
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004023
4024found_mapped_buffer:
4025 if (bh != NULL && buffer_delay(bh)) {
4026 /* 1st or contiguous delayed buffer found. */
4027 if (!(flags & FIEMAP_EXTENT_DELALLOC)) {
4028 /*
4029 * 1st delayed buffer found, record
4030 * the start of extent.
4031 */
4032 flags |= FIEMAP_EXTENT_DELALLOC;
4033 newex->ec_block = end;
4034 logical = (__u64)end << blksize_bits;
4035 }
4036 /* Find contiguous delayed buffers. */
4037 do {
4038 if (!buffer_delay(bh))
4039 goto found_delayed_extent;
4040 bh = bh->b_this_page;
4041 end++;
4042 } while (bh != head);
4043
Yongqiang Yangb2213492011-05-24 11:36:58 -04004044 for (; index < ret; index++) {
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004045 if (!page_has_buffers(pages[index])) {
4046 bh = NULL;
4047 break;
4048 }
4049 head = page_buffers(pages[index]);
4050 if (!head) {
4051 bh = NULL;
4052 break;
4053 }
Yongqiang Yangb2213492011-05-24 11:36:58 -04004054
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004055 if (pages[index]->index !=
Yongqiang Yangb2213492011-05-24 11:36:58 -04004056 pages[start_index]->index + index
4057 - start_index) {
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004058 /* Blocks are not contiguous. */
4059 bh = NULL;
4060 break;
4061 }
4062 bh = head;
4063 do {
4064 if (!buffer_delay(bh))
4065 /* Delayed-extent ends. */
4066 goto found_delayed_extent;
4067 bh = bh->b_this_page;
4068 end++;
4069 } while (bh != head);
4070 }
4071 } else if (!(flags & FIEMAP_EXTENT_DELALLOC))
4072 /* a hole found. */
4073 goto out;
4074
4075found_delayed_extent:
4076 newex->ec_len = min(end - newex->ec_block,
4077 (ext4_lblk_t)EXT_INIT_MAX_LEN);
4078 if (ret == nr_pages && bh != NULL &&
4079 newex->ec_len < EXT_INIT_MAX_LEN &&
4080 buffer_delay(bh)) {
4081 /* Have not collected an extent and continue. */
4082 for (index = 0; index < ret; index++)
4083 page_cache_release(pages[index]);
4084 goto repeat;
4085 }
4086
4087 for (index = 0; index < ret; index++)
4088 page_cache_release(pages[index]);
4089 kfree(pages);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004090 }
4091
4092 physical = (__u64)newex->ec_start << blksize_bits;
4093 length = (__u64)newex->ec_len << blksize_bits;
4094
4095 if (ex && ext4_ext_is_uninitialized(ex))
4096 flags |= FIEMAP_EXTENT_UNWRITTEN;
4097
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004098 size = i_size_read(inode);
4099 if (logical + length >= size)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004100 flags |= FIEMAP_EXTENT_LAST;
4101
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004102 ret = fiemap_fill_next_extent(fieinfo, logical, physical,
Eric Sandeen6873fa02008-10-07 00:46:36 -04004103 length, flags);
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004104 if (ret < 0)
4105 return ret;
4106 if (ret == 1)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004107 return EXT_BREAK;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004108 return EXT_CONTINUE;
4109}
4110
4111/* fiemap flags we can handle specified here */
4112#define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
4113
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004114static int ext4_xattr_fiemap(struct inode *inode,
4115 struct fiemap_extent_info *fieinfo)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004116{
4117 __u64 physical = 0;
4118 __u64 length;
4119 __u32 flags = FIEMAP_EXTENT_LAST;
4120 int blockbits = inode->i_sb->s_blocksize_bits;
4121 int error = 0;
4122
4123 /* in-inode? */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004124 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Eric Sandeen6873fa02008-10-07 00:46:36 -04004125 struct ext4_iloc iloc;
4126 int offset; /* offset of xattr in inode */
4127
4128 error = ext4_get_inode_loc(inode, &iloc);
4129 if (error)
4130 return error;
4131 physical = iloc.bh->b_blocknr << blockbits;
4132 offset = EXT4_GOOD_OLD_INODE_SIZE +
4133 EXT4_I(inode)->i_extra_isize;
4134 physical += offset;
4135 length = EXT4_SB(inode->i_sb)->s_inode_size - offset;
4136 flags |= FIEMAP_EXTENT_DATA_INLINE;
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004137 brelse(iloc.bh);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004138 } else { /* external block */
4139 physical = EXT4_I(inode)->i_file_acl << blockbits;
4140 length = inode->i_sb->s_blocksize;
4141 }
4142
4143 if (physical)
4144 error = fiemap_fill_next_extent(fieinfo, 0, physical,
4145 length, flags);
4146 return (error < 0 ? error : 0);
4147}
4148
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004149/*
4150 * ext4_ext_punch_hole
4151 *
4152 * Punches a hole of "length" bytes in a file starting
4153 * at byte "offset"
4154 *
4155 * @inode: The inode of the file to punch a hole in
4156 * @offset: The starting byte offset of the hole
4157 * @length: The length of the hole
4158 *
4159 * Returns the number of blocks removed or negative on err
4160 */
4161int ext4_ext_punch_hole(struct file *file, loff_t offset, loff_t length)
4162{
4163 struct inode *inode = file->f_path.dentry->d_inode;
4164 struct super_block *sb = inode->i_sb;
4165 struct ext4_ext_cache cache_ex;
4166 ext4_lblk_t first_block, last_block, num_blocks, iblock, max_blocks;
4167 struct address_space *mapping = inode->i_mapping;
4168 struct ext4_map_blocks map;
4169 handle_t *handle;
4170 loff_t first_block_offset, last_block_offset, block_len;
4171 loff_t first_page, last_page, first_page_offset, last_page_offset;
4172 int ret, credits, blocks_released, err = 0;
4173
4174 first_block = (offset + sb->s_blocksize - 1) >>
4175 EXT4_BLOCK_SIZE_BITS(sb);
4176 last_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4177
4178 first_block_offset = first_block << EXT4_BLOCK_SIZE_BITS(sb);
4179 last_block_offset = last_block << EXT4_BLOCK_SIZE_BITS(sb);
4180
4181 first_page = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
4182 last_page = (offset + length) >> PAGE_CACHE_SHIFT;
4183
4184 first_page_offset = first_page << PAGE_CACHE_SHIFT;
4185 last_page_offset = last_page << PAGE_CACHE_SHIFT;
4186
4187 /*
4188 * Write out all dirty pages to avoid race conditions
4189 * Then release them.
4190 */
4191 if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
4192 err = filemap_write_and_wait_range(mapping,
4193 first_page_offset == 0 ? 0 : first_page_offset-1,
4194 last_page_offset);
4195
4196 if (err)
4197 return err;
4198 }
4199
4200 /* Now release the pages */
4201 if (last_page_offset > first_page_offset) {
4202 truncate_inode_pages_range(mapping, first_page_offset,
4203 last_page_offset-1);
4204 }
4205
4206 /* finish any pending end_io work */
4207 ext4_flush_completed_IO(inode);
4208
4209 credits = ext4_writepage_trans_blocks(inode);
4210 handle = ext4_journal_start(inode, credits);
4211 if (IS_ERR(handle))
4212 return PTR_ERR(handle);
4213
4214 err = ext4_orphan_add(handle, inode);
4215 if (err)
4216 goto out;
4217
4218 /*
4219 * Now we need to zero out the un block aligned data.
4220 * If the file is smaller than a block, just
4221 * zero out the middle
4222 */
4223 if (first_block > last_block)
4224 ext4_block_zero_page_range(handle, mapping, offset, length);
4225 else {
4226 /* zero out the head of the hole before the first block */
4227 block_len = first_block_offset - offset;
4228 if (block_len > 0)
4229 ext4_block_zero_page_range(handle, mapping,
4230 offset, block_len);
4231
4232 /* zero out the tail of the hole after the last block */
4233 block_len = offset + length - last_block_offset;
4234 if (block_len > 0) {
4235 ext4_block_zero_page_range(handle, mapping,
4236 last_block_offset, block_len);
4237 }
4238 }
4239
4240 /* If there are no blocks to remove, return now */
4241 if (first_block >= last_block)
4242 goto out;
4243
4244 down_write(&EXT4_I(inode)->i_data_sem);
4245 ext4_ext_invalidate_cache(inode);
4246 ext4_discard_preallocations(inode);
4247
4248 /*
4249 * Loop over all the blocks and identify blocks
4250 * that need to be punched out
4251 */
4252 iblock = first_block;
4253 blocks_released = 0;
4254 while (iblock < last_block) {
4255 max_blocks = last_block - iblock;
4256 num_blocks = 1;
4257 memset(&map, 0, sizeof(map));
4258 map.m_lblk = iblock;
4259 map.m_len = max_blocks;
4260 ret = ext4_ext_map_blocks(handle, inode, &map,
4261 EXT4_GET_BLOCKS_PUNCH_OUT_EXT);
4262
4263 if (ret > 0) {
4264 blocks_released += ret;
4265 num_blocks = ret;
4266 } else if (ret == 0) {
4267 /*
4268 * If map blocks could not find the block,
4269 * then it is in a hole. If the hole was
4270 * not already cached, then map blocks should
4271 * put it in the cache. So we can get the hole
4272 * out of the cache
4273 */
4274 memset(&cache_ex, 0, sizeof(cache_ex));
4275 if ((ext4_ext_check_cache(inode, iblock, &cache_ex)) &&
4276 !cache_ex.ec_start) {
4277
4278 /* The hole is cached */
4279 num_blocks = cache_ex.ec_block +
4280 cache_ex.ec_len - iblock;
4281
4282 } else {
4283 /* The block could not be identified */
4284 err = -EIO;
4285 break;
4286 }
4287 } else {
4288 /* Map blocks error */
4289 err = ret;
4290 break;
4291 }
4292
4293 if (num_blocks == 0) {
4294 /* This condition should never happen */
4295 ext_debug("Block lookup failed");
4296 err = -EIO;
4297 break;
4298 }
4299
4300 iblock += num_blocks;
4301 }
4302
4303 if (blocks_released > 0) {
4304 ext4_ext_invalidate_cache(inode);
4305 ext4_discard_preallocations(inode);
4306 }
4307
4308 if (IS_SYNC(inode))
4309 ext4_handle_sync(handle);
4310
4311 up_write(&EXT4_I(inode)->i_data_sem);
4312
4313out:
4314 ext4_orphan_del(handle, inode);
4315 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4316 ext4_mark_inode_dirty(handle, inode);
4317 ext4_journal_stop(handle);
4318 return err;
4319}
Eric Sandeen6873fa02008-10-07 00:46:36 -04004320int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4321 __u64 start, __u64 len)
4322{
4323 ext4_lblk_t start_blk;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004324 int error = 0;
4325
4326 /* fallback to generic here if not in extents fmt */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004327 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Eric Sandeen6873fa02008-10-07 00:46:36 -04004328 return generic_block_fiemap(inode, fieinfo, start, len,
4329 ext4_get_block);
4330
4331 if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS))
4332 return -EBADR;
4333
4334 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
4335 error = ext4_xattr_fiemap(inode, fieinfo);
4336 } else {
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004337 ext4_lblk_t len_blks;
4338 __u64 last_blk;
4339
Eric Sandeen6873fa02008-10-07 00:46:36 -04004340 start_blk = start >> inode->i_sb->s_blocksize_bits;
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004341 last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits;
4342 if (last_blk >= EXT_MAX_BLOCK)
4343 last_blk = EXT_MAX_BLOCK-1;
4344 len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004345
4346 /*
4347 * Walk the extent tree gathering extent information.
4348 * ext4_ext_fiemap_cb will push extents back to user.
4349 */
Eric Sandeen6873fa02008-10-07 00:46:36 -04004350 error = ext4_ext_walk_space(inode, start_blk, len_blks,
4351 ext4_ext_fiemap_cb, fieinfo);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004352 }
4353
4354 return error;
4355}