blob: d3dd6182c07af1eee54f8be69149f469febc90c6 [file] [log] [blame]
Alex Tomasa86c6182006-10-11 01:21:03 -07001/*
2 * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
3 * Written by Alex Tomas <alex@clusterfs.com>
4 *
5 * Architecture independence:
6 * Copyright (c) 2005, Bull S.A.
7 * Written by Pierre Peiffer <pierre.peiffer@bull.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public Licens
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
21 */
22
23/*
24 * Extents support for EXT4
25 *
26 * TODO:
27 * - ext4*_error() should be used in some situations
28 * - analyze all BUG()/BUG_ON(), use -EIO where appropriate
29 * - smart tree reduction
30 */
31
Alex Tomasa86c6182006-10-11 01:21:03 -070032#include <linux/fs.h>
33#include <linux/time.h>
Mingming Caocd02ff02007-10-16 18:38:25 -040034#include <linux/jbd2.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070035#include <linux/highuid.h>
36#include <linux/pagemap.h>
37#include <linux/quotaops.h>
38#include <linux/string.h>
39#include <linux/slab.h>
Amit Aroraa2df2a62007-07-17 21:42:41 -040040#include <linux/falloc.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070041#include <asm/uaccess.h>
Eric Sandeen6873fa02008-10-07 00:46:36 -040042#include <linux/fiemap.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040043#include "ext4_jbd2.h"
Alex Tomasa86c6182006-10-11 01:21:03 -070044
Jiaying Zhang0562e0b2011-03-21 21:38:05 -040045#include <trace/events/ext4.h>
46
Lukas Czerner5f95d212012-03-19 23:03:19 -040047/*
48 * used by extent splitting.
49 */
50#define EXT4_EXT_MAY_ZEROOUT 0x1 /* safe to zeroout if split fails \
51 due to ENOSPC */
52#define EXT4_EXT_MARK_UNINIT1 0x2 /* mark first half uninitialized */
53#define EXT4_EXT_MARK_UNINIT2 0x4 /* mark second half uninitialized */
54
Dmitry Monakhovdee1f972012-10-10 01:04:58 -040055#define EXT4_EXT_DATA_VALID1 0x8 /* first half contains valid data */
56#define EXT4_EXT_DATA_VALID2 0x10 /* second half contains valid data */
57
Darrick J. Wong7ac59902012-04-29 18:37:10 -040058static __le32 ext4_extent_block_csum(struct inode *inode,
59 struct ext4_extent_header *eh)
60{
61 struct ext4_inode_info *ei = EXT4_I(inode);
62 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
63 __u32 csum;
64
65 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)eh,
66 EXT4_EXTENT_TAIL_OFFSET(eh));
67 return cpu_to_le32(csum);
68}
69
70static int ext4_extent_block_csum_verify(struct inode *inode,
71 struct ext4_extent_header *eh)
72{
73 struct ext4_extent_tail *et;
74
75 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
76 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
77 return 1;
78
79 et = find_ext4_extent_tail(eh);
80 if (et->et_checksum != ext4_extent_block_csum(inode, eh))
81 return 0;
82 return 1;
83}
84
85static void ext4_extent_block_csum_set(struct inode *inode,
86 struct ext4_extent_header *eh)
87{
88 struct ext4_extent_tail *et;
89
90 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
91 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
92 return;
93
94 et = find_ext4_extent_tail(eh);
95 et->et_checksum = ext4_extent_block_csum(inode, eh);
96}
97
Allison Hendersond583fb82011-05-25 07:41:43 -040098static int ext4_split_extent(handle_t *handle,
99 struct inode *inode,
100 struct ext4_ext_path *path,
101 struct ext4_map_blocks *map,
102 int split_flag,
103 int flags);
104
Lukas Czerner5f95d212012-03-19 23:03:19 -0400105static int ext4_split_extent_at(handle_t *handle,
106 struct inode *inode,
107 struct ext4_ext_path *path,
108 ext4_lblk_t split,
109 int split_flag,
110 int flags);
111
Jan Kara487caee2009-08-17 22:17:20 -0400112static int ext4_ext_truncate_extend_restart(handle_t *handle,
113 struct inode *inode,
114 int needed)
Alex Tomasa86c6182006-10-11 01:21:03 -0700115{
116 int err;
117
Frank Mayhar03901312009-01-07 00:06:22 -0500118 if (!ext4_handle_valid(handle))
119 return 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700120 if (handle->h_buffer_credits > needed)
Shen Feng9102e4f2008-07-11 19:27:31 -0400121 return 0;
122 err = ext4_journal_extend(handle, needed);
Theodore Ts'o0123c932008-08-01 20:57:54 -0400123 if (err <= 0)
Shen Feng9102e4f2008-07-11 19:27:31 -0400124 return err;
Jan Kara487caee2009-08-17 22:17:20 -0400125 err = ext4_truncate_restart_trans(handle, inode, needed);
Dmitry Monakhov0617b832010-05-17 01:00:00 -0400126 if (err == 0)
127 err = -EAGAIN;
Jan Kara487caee2009-08-17 22:17:20 -0400128
129 return err;
Alex Tomasa86c6182006-10-11 01:21:03 -0700130}
131
132/*
133 * could return:
134 * - EROFS
135 * - ENOMEM
136 */
137static int ext4_ext_get_access(handle_t *handle, struct inode *inode,
138 struct ext4_ext_path *path)
139{
140 if (path->p_bh) {
141 /* path points to block */
142 return ext4_journal_get_write_access(handle, path->p_bh);
143 }
144 /* path points to leaf/index in inode body */
145 /* we use in-core data, no need to protect them */
146 return 0;
147}
148
149/*
150 * could return:
151 * - EROFS
152 * - ENOMEM
153 * - EIO
154 */
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -0400155#define ext4_ext_dirty(handle, inode, path) \
156 __ext4_ext_dirty(__func__, __LINE__, (handle), (inode), (path))
157static int __ext4_ext_dirty(const char *where, unsigned int line,
158 handle_t *handle, struct inode *inode,
159 struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700160{
161 int err;
162 if (path->p_bh) {
Darrick J. Wong7ac59902012-04-29 18:37:10 -0400163 ext4_extent_block_csum_set(inode, ext_block_hdr(path->p_bh));
Alex Tomasa86c6182006-10-11 01:21:03 -0700164 /* path points to block */
Theodore Ts'o9ea7a0d2011-09-04 10:18:14 -0400165 err = __ext4_handle_dirty_metadata(where, line, handle,
166 inode, path->p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700167 } else {
168 /* path points to leaf/index in inode body */
169 err = ext4_mark_inode_dirty(handle, inode);
170 }
171 return err;
172}
173
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700174static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700175 struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500176 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700177{
Alex Tomasa86c6182006-10-11 01:21:03 -0700178 if (path) {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400179 int depth = path->p_depth;
Alex Tomasa86c6182006-10-11 01:21:03 -0700180 struct ext4_extent *ex;
Alex Tomasa86c6182006-10-11 01:21:03 -0700181
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500182 /*
183 * Try to predict block placement assuming that we are
184 * filling in a file which will eventually be
185 * non-sparse --- i.e., in the case of libbfd writing
186 * an ELF object sections out-of-order but in a way
187 * the eventually results in a contiguous object or
188 * executable file, or some database extending a table
189 * space file. However, this is actually somewhat
190 * non-ideal if we are writing a sparse file such as
191 * qemu or KVM writing a raw image file that is going
192 * to stay fairly sparse, since it will end up
193 * fragmenting the file system's free space. Maybe we
194 * should have some hueristics or some way to allow
195 * userspace to pass a hint to file system,
Tao Mab8d65682011-01-21 23:21:31 +0800196 * especially if the latter case turns out to be
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500197 * common.
198 */
Avantika Mathur7e028972006-12-06 20:41:33 -0800199 ex = path[depth].p_ext;
Kazuya Mioad4fb9c2011-01-10 12:12:28 -0500200 if (ex) {
201 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex);
202 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block);
203
204 if (block > ext_block)
205 return ext_pblk + (block - ext_block);
206 else
207 return ext_pblk - (ext_block - block);
208 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700209
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700210 /* it looks like index is empty;
211 * try to find starting block from index itself */
Alex Tomasa86c6182006-10-11 01:21:03 -0700212 if (path[depth].p_bh)
213 return path[depth].p_bh->b_blocknr;
214 }
215
216 /* OK. use inode's group */
Eric Sandeenf86186b2011-06-28 10:01:31 -0400217 return ext4_inode_to_goal_block(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -0700218}
219
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400220/*
221 * Allocation for a meta data block
222 */
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700223static ext4_fsblk_t
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400224ext4_ext_new_meta_block(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700225 struct ext4_ext_path *path,
Allison Henderson55f020d2011-05-25 07:41:26 -0400226 struct ext4_extent *ex, int *err, unsigned int flags)
Alex Tomasa86c6182006-10-11 01:21:03 -0700227{
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700228 ext4_fsblk_t goal, newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700229
230 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block));
Allison Henderson55f020d2011-05-25 07:41:26 -0400231 newblock = ext4_new_meta_blocks(handle, inode, goal, flags,
232 NULL, err);
Alex Tomasa86c6182006-10-11 01:21:03 -0700233 return newblock;
234}
235
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400236static inline int ext4_ext_space_block(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700237{
238 int size;
239
240 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
241 / sizeof(struct ext4_extent);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100242#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400243 if (!check && size > 6)
244 size = 6;
Alex Tomasa86c6182006-10-11 01:21:03 -0700245#endif
246 return size;
247}
248
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400249static inline int ext4_ext_space_block_idx(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700250{
251 int size;
252
253 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
254 / sizeof(struct ext4_extent_idx);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100255#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400256 if (!check && size > 5)
257 size = 5;
Alex Tomasa86c6182006-10-11 01:21:03 -0700258#endif
259 return size;
260}
261
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400262static inline int ext4_ext_space_root(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700263{
264 int size;
265
266 size = sizeof(EXT4_I(inode)->i_data);
267 size -= sizeof(struct ext4_extent_header);
268 size /= sizeof(struct ext4_extent);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100269#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400270 if (!check && size > 3)
271 size = 3;
Alex Tomasa86c6182006-10-11 01:21:03 -0700272#endif
273 return size;
274}
275
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400276static inline int ext4_ext_space_root_idx(struct inode *inode, int check)
Alex Tomasa86c6182006-10-11 01:21:03 -0700277{
278 int size;
279
280 size = sizeof(EXT4_I(inode)->i_data);
281 size -= sizeof(struct ext4_extent_header);
282 size /= sizeof(struct ext4_extent_idx);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100283#ifdef AGGRESSIVE_TEST
Yongqiang Yang02dc62fb2011-10-29 09:29:11 -0400284 if (!check && size > 4)
285 size = 4;
Alex Tomasa86c6182006-10-11 01:21:03 -0700286#endif
287 return size;
288}
289
Mingming Caod2a17632008-07-14 17:52:37 -0400290/*
291 * Calculate the number of metadata blocks needed
292 * to allocate @blocks
293 * Worse case is one block per extent
294 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -0500295int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -0400296{
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500297 struct ext4_inode_info *ei = EXT4_I(inode);
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400298 int idxs;
Mingming Caod2a17632008-07-14 17:52:37 -0400299
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500300 idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
301 / sizeof(struct ext4_extent_idx));
Mingming Caod2a17632008-07-14 17:52:37 -0400302
303 /*
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500304 * If the new delayed allocation block is contiguous with the
305 * previous da block, it can share index blocks with the
306 * previous block, so we only need to allocate a new index
307 * block every idxs leaf blocks. At ldxs**2 blocks, we need
308 * an additional index block, and at ldxs**3 blocks, yet
309 * another index blocks.
Mingming Caod2a17632008-07-14 17:52:37 -0400310 */
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500311 if (ei->i_da_metadata_calc_len &&
312 ei->i_da_metadata_calc_last_lblock+1 == lblock) {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400313 int num = 0;
314
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500315 if ((ei->i_da_metadata_calc_len % idxs) == 0)
316 num++;
317 if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0)
318 num++;
319 if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) {
320 num++;
321 ei->i_da_metadata_calc_len = 0;
322 } else
323 ei->i_da_metadata_calc_len++;
324 ei->i_da_metadata_calc_last_lblock++;
325 return num;
326 }
Mingming Caod2a17632008-07-14 17:52:37 -0400327
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500328 /*
329 * In the worst case we need a new set of index blocks at
330 * every level of the inode's extent tree.
331 */
332 ei->i_da_metadata_calc_len = 1;
333 ei->i_da_metadata_calc_last_lblock = lblock;
334 return ext_depth(inode) + 1;
Mingming Caod2a17632008-07-14 17:52:37 -0400335}
336
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400337static int
338ext4_ext_max_entries(struct inode *inode, int depth)
339{
340 int max;
341
342 if (depth == ext_depth(inode)) {
343 if (depth == 0)
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400344 max = ext4_ext_space_root(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400345 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400346 max = ext4_ext_space_root_idx(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400347 } else {
348 if (depth == 0)
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400349 max = ext4_ext_space_block(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400350 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400351 max = ext4_ext_space_block_idx(inode, 1);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400352 }
353
354 return max;
355}
356
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400357static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext)
358{
Theodore Ts'obf89d162010-10-27 21:30:14 -0400359 ext4_fsblk_t block = ext4_ext_pblock(ext);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400360 int len = ext4_ext_get_actual_len(ext);
Theodore Ts'oe84a26c2009-04-22 20:52:25 -0400361
Theodore Ts'o31d4f3a2012-03-11 23:30:16 -0400362 if (len == 0)
363 return 0;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400364 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400365}
366
367static int ext4_valid_extent_idx(struct inode *inode,
368 struct ext4_extent_idx *ext_idx)
369{
Theodore Ts'obf89d162010-10-27 21:30:14 -0400370 ext4_fsblk_t block = ext4_idx_pblock(ext_idx);
Theodore Ts'oe84a26c2009-04-22 20:52:25 -0400371
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400372 return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400373}
374
375static int ext4_valid_extent_entries(struct inode *inode,
376 struct ext4_extent_header *eh,
377 int depth)
378{
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400379 unsigned short entries;
380 if (eh->eh_entries == 0)
381 return 1;
382
383 entries = le16_to_cpu(eh->eh_entries);
384
385 if (depth == 0) {
386 /* leaf entries */
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400387 struct ext4_extent *ext = EXT_FIRST_EXTENT(eh);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400388 while (entries) {
389 if (!ext4_valid_extent(inode, ext))
390 return 0;
391 ext++;
392 entries--;
393 }
394 } else {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -0400395 struct ext4_extent_idx *ext_idx = EXT_FIRST_INDEX(eh);
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400396 while (entries) {
397 if (!ext4_valid_extent_idx(inode, ext_idx))
398 return 0;
399 ext_idx++;
400 entries--;
401 }
402 }
403 return 1;
404}
405
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400406static int __ext4_ext_check(const char *function, unsigned int line,
407 struct inode *inode, struct ext4_extent_header *eh,
408 int depth)
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400409{
410 const char *error_msg;
411 int max = 0;
412
413 if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) {
414 error_msg = "invalid magic";
415 goto corrupted;
416 }
417 if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) {
418 error_msg = "unexpected eh_depth";
419 goto corrupted;
420 }
421 if (unlikely(eh->eh_max == 0)) {
422 error_msg = "invalid eh_max";
423 goto corrupted;
424 }
425 max = ext4_ext_max_entries(inode, depth);
426 if (unlikely(le16_to_cpu(eh->eh_max) > max)) {
427 error_msg = "too large eh_max";
428 goto corrupted;
429 }
430 if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
431 error_msg = "invalid eh_entries";
432 goto corrupted;
433 }
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400434 if (!ext4_valid_extent_entries(inode, eh, depth)) {
435 error_msg = "invalid extent entries";
436 goto corrupted;
437 }
Darrick J. Wong7ac59902012-04-29 18:37:10 -0400438 /* Verify checksum on non-root extent tree nodes */
439 if (ext_depth(inode) != depth &&
440 !ext4_extent_block_csum_verify(inode, eh)) {
441 error_msg = "extent tree corrupted";
442 goto corrupted;
443 }
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400444 return 0;
445
446corrupted:
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400447 ext4_error_inode(inode, function, line, 0,
Theodore Ts'o24676da2010-05-16 21:00:00 -0400448 "bad header/extent: %s - magic %x, "
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400449 "entries %u, max %u(%u), depth %u(%u)",
Theodore Ts'o24676da2010-05-16 21:00:00 -0400450 error_msg, le16_to_cpu(eh->eh_magic),
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400451 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
452 max, le16_to_cpu(eh->eh_depth), depth);
453
454 return -EIO;
455}
456
Aneesh Kumar K.V56b19862009-03-12 09:51:20 -0400457#define ext4_ext_check(inode, eh, depth) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400458 __ext4_ext_check(__func__, __LINE__, inode, eh, depth)
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400459
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400460int ext4_ext_check_inode(struct inode *inode)
461{
462 return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode));
463}
464
Darrick J. Wongf8489122012-04-29 18:21:10 -0400465static int __ext4_ext_check_block(const char *function, unsigned int line,
466 struct inode *inode,
467 struct ext4_extent_header *eh,
468 int depth,
469 struct buffer_head *bh)
470{
471 int ret;
472
473 if (buffer_verified(bh))
474 return 0;
475 ret = ext4_ext_check(inode, eh, depth);
476 if (ret)
477 return ret;
478 set_buffer_verified(bh);
479 return ret;
480}
481
482#define ext4_ext_check_block(inode, eh, depth, bh) \
483 __ext4_ext_check_block(__func__, __LINE__, inode, eh, depth, bh)
484
Alex Tomasa86c6182006-10-11 01:21:03 -0700485#ifdef EXT_DEBUG
486static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path)
487{
488 int k, l = path->p_depth;
489
490 ext_debug("path:");
491 for (k = 0; k <= l; k++, path++) {
492 if (path->p_idx) {
Mingming Cao2ae02102006-10-11 01:21:11 -0700493 ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400494 ext4_idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700495 } else if (path->p_ext) {
Mingming553f9002009-09-18 13:34:55 -0400496 ext_debug(" %d:[%d]%d:%llu ",
Alex Tomasa86c6182006-10-11 01:21:03 -0700497 le32_to_cpu(path->p_ext->ee_block),
Mingming553f9002009-09-18 13:34:55 -0400498 ext4_ext_is_uninitialized(path->p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400499 ext4_ext_get_actual_len(path->p_ext),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400500 ext4_ext_pblock(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700501 } else
502 ext_debug(" []");
503 }
504 ext_debug("\n");
505}
506
507static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path)
508{
509 int depth = ext_depth(inode);
510 struct ext4_extent_header *eh;
511 struct ext4_extent *ex;
512 int i;
513
514 if (!path)
515 return;
516
517 eh = path[depth].p_hdr;
518 ex = EXT_FIRST_EXTENT(eh);
519
Mingming553f9002009-09-18 13:34:55 -0400520 ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino);
521
Alex Tomasa86c6182006-10-11 01:21:03 -0700522 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) {
Mingming553f9002009-09-18 13:34:55 -0400523 ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block),
524 ext4_ext_is_uninitialized(ex),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400525 ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -0700526 }
527 ext_debug("\n");
528}
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400529
530static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path,
531 ext4_fsblk_t newblock, int level)
532{
533 int depth = ext_depth(inode);
534 struct ext4_extent *ex;
535
536 if (depth != level) {
537 struct ext4_extent_idx *idx;
538 idx = path[level].p_idx;
539 while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) {
540 ext_debug("%d: move %d:%llu in new index %llu\n", level,
541 le32_to_cpu(idx->ei_block),
542 ext4_idx_pblock(idx),
543 newblock);
544 idx++;
545 }
546
547 return;
548 }
549
550 ex = path[depth].p_ext;
551 while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) {
552 ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n",
553 le32_to_cpu(ex->ee_block),
554 ext4_ext_pblock(ex),
555 ext4_ext_is_uninitialized(ex),
556 ext4_ext_get_actual_len(ex),
557 newblock);
558 ex++;
559 }
560}
561
Alex Tomasa86c6182006-10-11 01:21:03 -0700562#else
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400563#define ext4_ext_show_path(inode, path)
564#define ext4_ext_show_leaf(inode, path)
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400565#define ext4_ext_show_move(inode, path, newblock, level)
Alex Tomasa86c6182006-10-11 01:21:03 -0700566#endif
567
Aneesh Kumar K.Vb35905c2008-02-25 16:54:37 -0500568void ext4_ext_drop_refs(struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700569{
570 int depth = path->p_depth;
571 int i;
572
573 for (i = 0; i <= depth; i++, path++)
574 if (path->p_bh) {
575 brelse(path->p_bh);
576 path->p_bh = NULL;
577 }
578}
579
580/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700581 * ext4_ext_binsearch_idx:
582 * binary search for the closest index of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400583 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700584 */
585static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500586ext4_ext_binsearch_idx(struct inode *inode,
587 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700588{
589 struct ext4_extent_header *eh = path->p_hdr;
590 struct ext4_extent_idx *r, *l, *m;
591
Alex Tomasa86c6182006-10-11 01:21:03 -0700592
Eric Sandeenbba90742008-01-28 23:58:27 -0500593 ext_debug("binsearch for %u(idx): ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700594
595 l = EXT_FIRST_INDEX(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400596 r = EXT_LAST_INDEX(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700597 while (l <= r) {
598 m = l + (r - l) / 2;
599 if (block < le32_to_cpu(m->ei_block))
600 r = m - 1;
601 else
602 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400603 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block),
604 m, le32_to_cpu(m->ei_block),
605 r, le32_to_cpu(r->ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700606 }
607
608 path->p_idx = l - 1;
Zheng Liu4a3c3a52012-05-28 17:55:16 -0400609 ext_debug(" -> %u->%lld ", le32_to_cpu(path->p_idx->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400610 ext4_idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700611
612#ifdef CHECK_BINSEARCH
613 {
614 struct ext4_extent_idx *chix, *ix;
615 int k;
616
617 chix = ix = EXT_FIRST_INDEX(eh);
618 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) {
619 if (k != 0 &&
620 le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400621 printk(KERN_DEBUG "k=%d, ix=0x%p, "
622 "first=0x%p\n", k,
623 ix, EXT_FIRST_INDEX(eh));
624 printk(KERN_DEBUG "%u <= %u\n",
Alex Tomasa86c6182006-10-11 01:21:03 -0700625 le32_to_cpu(ix->ei_block),
626 le32_to_cpu(ix[-1].ei_block));
627 }
628 BUG_ON(k && le32_to_cpu(ix->ei_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400629 <= le32_to_cpu(ix[-1].ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700630 if (block < le32_to_cpu(ix->ei_block))
631 break;
632 chix = ix;
633 }
634 BUG_ON(chix != path->p_idx);
635 }
636#endif
637
638}
639
640/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700641 * ext4_ext_binsearch:
642 * binary search for closest extent of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400643 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700644 */
645static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500646ext4_ext_binsearch(struct inode *inode,
647 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700648{
649 struct ext4_extent_header *eh = path->p_hdr;
650 struct ext4_extent *r, *l, *m;
651
Alex Tomasa86c6182006-10-11 01:21:03 -0700652 if (eh->eh_entries == 0) {
653 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700654 * this leaf is empty:
655 * we get such a leaf in split/add case
Alex Tomasa86c6182006-10-11 01:21:03 -0700656 */
657 return;
658 }
659
Eric Sandeenbba90742008-01-28 23:58:27 -0500660 ext_debug("binsearch for %u: ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700661
662 l = EXT_FIRST_EXTENT(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400663 r = EXT_LAST_EXTENT(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700664
665 while (l <= r) {
666 m = l + (r - l) / 2;
667 if (block < le32_to_cpu(m->ee_block))
668 r = m - 1;
669 else
670 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400671 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block),
672 m, le32_to_cpu(m->ee_block),
673 r, le32_to_cpu(r->ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700674 }
675
676 path->p_ext = l - 1;
Mingming553f9002009-09-18 13:34:55 -0400677 ext_debug(" -> %d:%llu:[%d]%d ",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400678 le32_to_cpu(path->p_ext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -0400679 ext4_ext_pblock(path->p_ext),
Mingming553f9002009-09-18 13:34:55 -0400680 ext4_ext_is_uninitialized(path->p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400681 ext4_ext_get_actual_len(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700682
683#ifdef CHECK_BINSEARCH
684 {
685 struct ext4_extent *chex, *ex;
686 int k;
687
688 chex = ex = EXT_FIRST_EXTENT(eh);
689 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) {
690 BUG_ON(k && le32_to_cpu(ex->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400691 <= le32_to_cpu(ex[-1].ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700692 if (block < le32_to_cpu(ex->ee_block))
693 break;
694 chex = ex;
695 }
696 BUG_ON(chex != path->p_ext);
697 }
698#endif
699
700}
701
702int ext4_ext_tree_init(handle_t *handle, struct inode *inode)
703{
704 struct ext4_extent_header *eh;
705
706 eh = ext_inode_hdr(inode);
707 eh->eh_depth = 0;
708 eh->eh_entries = 0;
709 eh->eh_magic = EXT4_EXT_MAGIC;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400710 eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -0700711 ext4_mark_inode_dirty(handle, inode);
712 ext4_ext_invalidate_cache(inode);
713 return 0;
714}
715
716struct ext4_ext_path *
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500717ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block,
718 struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700719{
720 struct ext4_extent_header *eh;
721 struct buffer_head *bh;
722 short int depth, i, ppos = 0, alloc = 0;
723
724 eh = ext_inode_hdr(inode);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400725 depth = ext_depth(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -0700726
727 /* account possible depth increase */
728 if (!path) {
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800729 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2),
Alex Tomasa86c6182006-10-11 01:21:03 -0700730 GFP_NOFS);
731 if (!path)
732 return ERR_PTR(-ENOMEM);
733 alloc = 1;
734 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700735 path[0].p_hdr = eh;
Shen Feng1973adc2008-07-11 19:27:31 -0400736 path[0].p_bh = NULL;
Alex Tomasa86c6182006-10-11 01:21:03 -0700737
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400738 i = depth;
Alex Tomasa86c6182006-10-11 01:21:03 -0700739 /* walk through the tree */
740 while (i) {
741 ext_debug("depth %d: num %d, max %d\n",
742 ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400743
Alex Tomasa86c6182006-10-11 01:21:03 -0700744 ext4_ext_binsearch_idx(inode, path + ppos, block);
Theodore Ts'obf89d162010-10-27 21:30:14 -0400745 path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx);
Alex Tomasa86c6182006-10-11 01:21:03 -0700746 path[ppos].p_depth = i;
747 path[ppos].p_ext = NULL;
748
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400749 bh = sb_getblk(inode->i_sb, path[ppos].p_block);
750 if (unlikely(!bh))
Alex Tomasa86c6182006-10-11 01:21:03 -0700751 goto err;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400752 if (!bh_uptodate_or_lock(bh)) {
Jiaying Zhang0562e0b2011-03-21 21:38:05 -0400753 trace_ext4_ext_load_extent(inode, block,
754 path[ppos].p_block);
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400755 if (bh_submit_read(bh) < 0) {
756 put_bh(bh);
757 goto err;
758 }
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -0400759 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700760 eh = ext_block_hdr(bh);
761 ppos++;
Frank Mayhar273df552010-03-02 11:46:09 -0500762 if (unlikely(ppos > depth)) {
763 put_bh(bh);
764 EXT4_ERROR_INODE(inode,
765 "ppos %d > depth %d", ppos, depth);
766 goto err;
767 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700768 path[ppos].p_bh = bh;
769 path[ppos].p_hdr = eh;
770 i--;
771
Darrick J. Wongf8489122012-04-29 18:21:10 -0400772 if (ext4_ext_check_block(inode, eh, i, bh))
Alex Tomasa86c6182006-10-11 01:21:03 -0700773 goto err;
774 }
775
776 path[ppos].p_depth = i;
Alex Tomasa86c6182006-10-11 01:21:03 -0700777 path[ppos].p_ext = NULL;
778 path[ppos].p_idx = NULL;
779
Alex Tomasa86c6182006-10-11 01:21:03 -0700780 /* find extent */
781 ext4_ext_binsearch(inode, path + ppos, block);
Shen Feng1973adc2008-07-11 19:27:31 -0400782 /* if not an empty leaf */
783 if (path[ppos].p_ext)
Theodore Ts'obf89d162010-10-27 21:30:14 -0400784 path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext);
Alex Tomasa86c6182006-10-11 01:21:03 -0700785
786 ext4_ext_show_path(inode, path);
787
788 return path;
789
790err:
791 ext4_ext_drop_refs(path);
792 if (alloc)
793 kfree(path);
794 return ERR_PTR(-EIO);
795}
796
797/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700798 * ext4_ext_insert_index:
799 * insert new index [@logical;@ptr] into the block at @curp;
800 * check where to insert: before @curp or after @curp
Alex Tomasa86c6182006-10-11 01:21:03 -0700801 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400802static int ext4_ext_insert_index(handle_t *handle, struct inode *inode,
803 struct ext4_ext_path *curp,
804 int logical, ext4_fsblk_t ptr)
Alex Tomasa86c6182006-10-11 01:21:03 -0700805{
806 struct ext4_extent_idx *ix;
807 int len, err;
808
Avantika Mathur7e028972006-12-06 20:41:33 -0800809 err = ext4_ext_get_access(handle, inode, curp);
810 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700811 return err;
812
Frank Mayhar273df552010-03-02 11:46:09 -0500813 if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) {
814 EXT4_ERROR_INODE(inode,
815 "logical %d == ei_block %d!",
816 logical, le32_to_cpu(curp->p_idx->ei_block));
817 return -EIO;
818 }
Robin Dongd4620312011-07-17 23:43:42 -0400819
820 if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries)
821 >= le16_to_cpu(curp->p_hdr->eh_max))) {
822 EXT4_ERROR_INODE(inode,
823 "eh_entries %d >= eh_max %d!",
824 le16_to_cpu(curp->p_hdr->eh_entries),
825 le16_to_cpu(curp->p_hdr->eh_max));
826 return -EIO;
827 }
828
Alex Tomasa86c6182006-10-11 01:21:03 -0700829 if (logical > le32_to_cpu(curp->p_idx->ei_block)) {
830 /* insert after */
Eric Gouriou80e675f2011-10-27 11:52:18 -0400831 ext_debug("insert new index %d after: %llu\n", logical, ptr);
Alex Tomasa86c6182006-10-11 01:21:03 -0700832 ix = curp->p_idx + 1;
833 } else {
834 /* insert before */
Eric Gouriou80e675f2011-10-27 11:52:18 -0400835 ext_debug("insert new index %d before: %llu\n", logical, ptr);
Alex Tomasa86c6182006-10-11 01:21:03 -0700836 ix = curp->p_idx;
837 }
838
Eric Gouriou80e675f2011-10-27 11:52:18 -0400839 len = EXT_LAST_INDEX(curp->p_hdr) - ix + 1;
840 BUG_ON(len < 0);
841 if (len > 0) {
842 ext_debug("insert new index %d: "
843 "move %d indices from 0x%p to 0x%p\n",
844 logical, len, ix, ix + 1);
845 memmove(ix + 1, ix, len * sizeof(struct ext4_extent_idx));
846 }
847
Tao Maf472e022011-10-17 10:13:46 -0400848 if (unlikely(ix > EXT_MAX_INDEX(curp->p_hdr))) {
849 EXT4_ERROR_INODE(inode, "ix > EXT_MAX_INDEX!");
850 return -EIO;
851 }
852
Alex Tomasa86c6182006-10-11 01:21:03 -0700853 ix->ei_block = cpu_to_le32(logical);
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700854 ext4_idx_store_pblock(ix, ptr);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400855 le16_add_cpu(&curp->p_hdr->eh_entries, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -0700856
Frank Mayhar273df552010-03-02 11:46:09 -0500857 if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) {
858 EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!");
859 return -EIO;
860 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700861
862 err = ext4_ext_dirty(handle, inode, curp);
863 ext4_std_error(inode->i_sb, err);
864
865 return err;
866}
867
868/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700869 * ext4_ext_split:
870 * inserts new subtree into the path, using free index entry
871 * at depth @at:
872 * - allocates all needed blocks (new leaf and all intermediate index blocks)
873 * - makes decision where to split
874 * - moves remaining extents and index entries (right to the split point)
875 * into the newly allocated blocks
876 * - initializes subtree
Alex Tomasa86c6182006-10-11 01:21:03 -0700877 */
878static int ext4_ext_split(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -0400879 unsigned int flags,
880 struct ext4_ext_path *path,
881 struct ext4_extent *newext, int at)
Alex Tomasa86c6182006-10-11 01:21:03 -0700882{
883 struct buffer_head *bh = NULL;
884 int depth = ext_depth(inode);
885 struct ext4_extent_header *neh;
886 struct ext4_extent_idx *fidx;
Alex Tomasa86c6182006-10-11 01:21:03 -0700887 int i = at, k, m, a;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700888 ext4_fsblk_t newblock, oldblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700889 __le32 border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700890 ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */
Alex Tomasa86c6182006-10-11 01:21:03 -0700891 int err = 0;
892
893 /* make decision: where to split? */
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700894 /* FIXME: now decision is simplest: at current extent */
Alex Tomasa86c6182006-10-11 01:21:03 -0700895
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700896 /* if current leaf will be split, then we should use
Alex Tomasa86c6182006-10-11 01:21:03 -0700897 * border from split point */
Frank Mayhar273df552010-03-02 11:46:09 -0500898 if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) {
899 EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!");
900 return -EIO;
901 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700902 if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) {
903 border = path[depth].p_ext[1].ee_block;
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700904 ext_debug("leaf will be split."
Alex Tomasa86c6182006-10-11 01:21:03 -0700905 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400906 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700907 } else {
908 border = newext->ee_block;
909 ext_debug("leaf will be added."
910 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400911 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700912 }
913
914 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700915 * If error occurs, then we break processing
916 * and mark filesystem read-only. index won't
Alex Tomasa86c6182006-10-11 01:21:03 -0700917 * be inserted and tree will be in consistent
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700918 * state. Next mount will repair buffers too.
Alex Tomasa86c6182006-10-11 01:21:03 -0700919 */
920
921 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700922 * Get array to track all allocated blocks.
923 * We need this to handle errors and free blocks
924 * upon them.
Alex Tomasa86c6182006-10-11 01:21:03 -0700925 */
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800926 ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS);
Alex Tomasa86c6182006-10-11 01:21:03 -0700927 if (!ablocks)
928 return -ENOMEM;
Alex Tomasa86c6182006-10-11 01:21:03 -0700929
930 /* allocate all needed blocks */
931 ext_debug("allocate %d blocks for indexes/leaf\n", depth - at);
932 for (a = 0; a < depth - at; a++) {
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400933 newblock = ext4_ext_new_meta_block(handle, inode, path,
Allison Henderson55f020d2011-05-25 07:41:26 -0400934 newext, &err, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -0700935 if (newblock == 0)
936 goto cleanup;
937 ablocks[a] = newblock;
938 }
939
940 /* initialize new leaf */
941 newblock = ablocks[--a];
Frank Mayhar273df552010-03-02 11:46:09 -0500942 if (unlikely(newblock == 0)) {
943 EXT4_ERROR_INODE(inode, "newblock == 0!");
944 err = -EIO;
945 goto cleanup;
946 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700947 bh = sb_getblk(inode->i_sb, newblock);
948 if (!bh) {
949 err = -EIO;
950 goto cleanup;
951 }
952 lock_buffer(bh);
953
Avantika Mathur7e028972006-12-06 20:41:33 -0800954 err = ext4_journal_get_create_access(handle, bh);
955 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700956 goto cleanup;
957
958 neh = ext_block_hdr(bh);
959 neh->eh_entries = 0;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -0400960 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -0700961 neh->eh_magic = EXT4_EXT_MAGIC;
962 neh->eh_depth = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700963
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700964 /* move remainder of path[depth] to the new leaf */
Frank Mayhar273df552010-03-02 11:46:09 -0500965 if (unlikely(path[depth].p_hdr->eh_entries !=
966 path[depth].p_hdr->eh_max)) {
967 EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!",
968 path[depth].p_hdr->eh_entries,
969 path[depth].p_hdr->eh_max);
970 err = -EIO;
971 goto cleanup;
972 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700973 /* start copy from next extent */
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400974 m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++;
975 ext4_ext_show_move(inode, path, newblock, depth);
Alex Tomasa86c6182006-10-11 01:21:03 -0700976 if (m) {
Yongqiang Yang1b16da72011-05-25 17:41:48 -0400977 struct ext4_extent *ex;
978 ex = EXT_FIRST_EXTENT(neh);
979 memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400980 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -0700981 }
982
Darrick J. Wong7ac59902012-04-29 18:37:10 -0400983 ext4_extent_block_csum_set(inode, neh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700984 set_buffer_uptodate(bh);
985 unlock_buffer(bh);
986
Frank Mayhar03901312009-01-07 00:06:22 -0500987 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -0800988 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700989 goto cleanup;
990 brelse(bh);
991 bh = NULL;
992
993 /* correct old leaf */
994 if (m) {
Avantika Mathur7e028972006-12-06 20:41:33 -0800995 err = ext4_ext_get_access(handle, inode, path + depth);
996 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700997 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -0400998 le16_add_cpu(&path[depth].p_hdr->eh_entries, -m);
Avantika Mathur7e028972006-12-06 20:41:33 -0800999 err = ext4_ext_dirty(handle, inode, path + depth);
1000 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001001 goto cleanup;
1002
1003 }
1004
1005 /* create intermediate indexes */
1006 k = depth - at - 1;
Frank Mayhar273df552010-03-02 11:46:09 -05001007 if (unlikely(k < 0)) {
1008 EXT4_ERROR_INODE(inode, "k %d < 0!", k);
1009 err = -EIO;
1010 goto cleanup;
1011 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001012 if (k)
1013 ext_debug("create %d intermediate indices\n", k);
1014 /* insert new index into current index block */
1015 /* current depth stored in i var */
1016 i = depth - 1;
1017 while (k--) {
1018 oldblock = newblock;
1019 newblock = ablocks[--a];
Eric Sandeenbba90742008-01-28 23:58:27 -05001020 bh = sb_getblk(inode->i_sb, newblock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001021 if (!bh) {
1022 err = -EIO;
1023 goto cleanup;
1024 }
1025 lock_buffer(bh);
1026
Avantika Mathur7e028972006-12-06 20:41:33 -08001027 err = ext4_journal_get_create_access(handle, bh);
1028 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001029 goto cleanup;
1030
1031 neh = ext_block_hdr(bh);
1032 neh->eh_entries = cpu_to_le16(1);
1033 neh->eh_magic = EXT4_EXT_MAGIC;
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001034 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001035 neh->eh_depth = cpu_to_le16(depth - i);
1036 fidx = EXT_FIRST_INDEX(neh);
1037 fidx->ei_block = border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001038 ext4_idx_store_pblock(fidx, oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001039
Eric Sandeenbba90742008-01-28 23:58:27 -05001040 ext_debug("int.index at %d (block %llu): %u -> %llu\n",
1041 i, newblock, le32_to_cpu(border), oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -07001042
Yongqiang Yang1b16da72011-05-25 17:41:48 -04001043 /* move remainder of path[i] to the new index block */
Frank Mayhar273df552010-03-02 11:46:09 -05001044 if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) !=
1045 EXT_LAST_INDEX(path[i].p_hdr))) {
1046 EXT4_ERROR_INODE(inode,
1047 "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!",
1048 le32_to_cpu(path[i].p_ext->ee_block));
1049 err = -EIO;
1050 goto cleanup;
1051 }
Yongqiang Yang1b16da72011-05-25 17:41:48 -04001052 /* start copy indexes */
1053 m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++;
1054 ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx,
1055 EXT_MAX_INDEX(path[i].p_hdr));
1056 ext4_ext_show_move(inode, path, newblock, i);
Alex Tomasa86c6182006-10-11 01:21:03 -07001057 if (m) {
Yongqiang Yang1b16da72011-05-25 17:41:48 -04001058 memmove(++fidx, path[i].p_idx,
Alex Tomasa86c6182006-10-11 01:21:03 -07001059 sizeof(struct ext4_extent_idx) * m);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001060 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -07001061 }
Darrick J. Wong7ac59902012-04-29 18:37:10 -04001062 ext4_extent_block_csum_set(inode, neh);
Alex Tomasa86c6182006-10-11 01:21:03 -07001063 set_buffer_uptodate(bh);
1064 unlock_buffer(bh);
1065
Frank Mayhar03901312009-01-07 00:06:22 -05001066 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -08001067 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001068 goto cleanup;
1069 brelse(bh);
1070 bh = NULL;
1071
1072 /* correct old index */
1073 if (m) {
1074 err = ext4_ext_get_access(handle, inode, path + i);
1075 if (err)
1076 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -04001077 le16_add_cpu(&path[i].p_hdr->eh_entries, -m);
Alex Tomasa86c6182006-10-11 01:21:03 -07001078 err = ext4_ext_dirty(handle, inode, path + i);
1079 if (err)
1080 goto cleanup;
1081 }
1082
1083 i--;
1084 }
1085
1086 /* insert new index */
Alex Tomasa86c6182006-10-11 01:21:03 -07001087 err = ext4_ext_insert_index(handle, inode, path + at,
1088 le32_to_cpu(border), newblock);
1089
1090cleanup:
1091 if (bh) {
1092 if (buffer_locked(bh))
1093 unlock_buffer(bh);
1094 brelse(bh);
1095 }
1096
1097 if (err) {
1098 /* free all allocated blocks in error case */
1099 for (i = 0; i < depth; i++) {
1100 if (!ablocks[i])
1101 continue;
Peter Huewe7dc57612011-02-21 21:01:42 -05001102 ext4_free_blocks(handle, inode, NULL, ablocks[i], 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -05001103 EXT4_FREE_BLOCKS_METADATA);
Alex Tomasa86c6182006-10-11 01:21:03 -07001104 }
1105 }
1106 kfree(ablocks);
1107
1108 return err;
1109}
1110
1111/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001112 * ext4_ext_grow_indepth:
1113 * implements tree growing procedure:
1114 * - allocates new block
1115 * - moves top-level data (index block or leaf) into the new block
1116 * - initializes new top-level, creating index that points to the
1117 * just created block
Alex Tomasa86c6182006-10-11 01:21:03 -07001118 */
1119static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -04001120 unsigned int flags,
Allison Henderson55f020d2011-05-25 07:41:26 -04001121 struct ext4_extent *newext)
Alex Tomasa86c6182006-10-11 01:21:03 -07001122{
Alex Tomasa86c6182006-10-11 01:21:03 -07001123 struct ext4_extent_header *neh;
Alex Tomasa86c6182006-10-11 01:21:03 -07001124 struct buffer_head *bh;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001125 ext4_fsblk_t newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07001126 int err = 0;
1127
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001128 newblock = ext4_ext_new_meta_block(handle, inode, NULL,
Allison Henderson55f020d2011-05-25 07:41:26 -04001129 newext, &err, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07001130 if (newblock == 0)
1131 return err;
1132
1133 bh = sb_getblk(inode->i_sb, newblock);
1134 if (!bh) {
1135 err = -EIO;
1136 ext4_std_error(inode->i_sb, err);
1137 return err;
1138 }
1139 lock_buffer(bh);
1140
Avantika Mathur7e028972006-12-06 20:41:33 -08001141 err = ext4_journal_get_create_access(handle, bh);
1142 if (err) {
Alex Tomasa86c6182006-10-11 01:21:03 -07001143 unlock_buffer(bh);
1144 goto out;
1145 }
1146
1147 /* move top-level index/leaf into new block */
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001148 memmove(bh->b_data, EXT4_I(inode)->i_data,
1149 sizeof(EXT4_I(inode)->i_data));
Alex Tomasa86c6182006-10-11 01:21:03 -07001150
1151 /* set size of new block */
1152 neh = ext_block_hdr(bh);
1153 /* old root could have indexes or leaves
1154 * so calculate e_max right way */
1155 if (ext_depth(inode))
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001156 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001157 else
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04001158 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07001159 neh->eh_magic = EXT4_EXT_MAGIC;
Darrick J. Wong7ac59902012-04-29 18:37:10 -04001160 ext4_extent_block_csum_set(inode, neh);
Alex Tomasa86c6182006-10-11 01:21:03 -07001161 set_buffer_uptodate(bh);
1162 unlock_buffer(bh);
1163
Frank Mayhar03901312009-01-07 00:06:22 -05001164 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -08001165 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001166 goto out;
1167
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001168 /* Update top-level index: num,max,pointer */
Alex Tomasa86c6182006-10-11 01:21:03 -07001169 neh = ext_inode_hdr(inode);
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001170 neh->eh_entries = cpu_to_le16(1);
1171 ext4_idx_store_pblock(EXT_FIRST_INDEX(neh), newblock);
1172 if (neh->eh_depth == 0) {
1173 /* Root extent block becomes index block */
1174 neh->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0));
1175 EXT_FIRST_INDEX(neh)->ei_block =
1176 EXT_FIRST_EXTENT(neh)->ee_block;
1177 }
Mingming Cao2ae02102006-10-11 01:21:11 -07001178 ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
Alex Tomasa86c6182006-10-11 01:21:03 -07001179 le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max),
Andi Kleen5a0790c2010-06-14 13:28:03 -04001180 le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001181 ext4_idx_pblock(EXT_FIRST_INDEX(neh)));
Alex Tomasa86c6182006-10-11 01:21:03 -07001182
Wei Yongjunba39ebb2012-09-27 09:37:53 -04001183 le16_add_cpu(&neh->eh_depth, 1);
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001184 ext4_mark_inode_dirty(handle, inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07001185out:
1186 brelse(bh);
1187
1188 return err;
1189}
1190
1191/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001192 * ext4_ext_create_new_leaf:
1193 * finds empty index and adds new leaf.
1194 * if no free index is found, then it requests in-depth growing.
Alex Tomasa86c6182006-10-11 01:21:03 -07001195 */
1196static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode,
Allison Henderson55f020d2011-05-25 07:41:26 -04001197 unsigned int flags,
1198 struct ext4_ext_path *path,
1199 struct ext4_extent *newext)
Alex Tomasa86c6182006-10-11 01:21:03 -07001200{
1201 struct ext4_ext_path *curp;
1202 int depth, i, err = 0;
1203
1204repeat:
1205 i = depth = ext_depth(inode);
1206
1207 /* walk up to the tree and look for free index entry */
1208 curp = path + depth;
1209 while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) {
1210 i--;
1211 curp--;
1212 }
1213
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001214 /* we use already allocated block for index block,
1215 * so subsequent data blocks should be contiguous */
Alex Tomasa86c6182006-10-11 01:21:03 -07001216 if (EXT_HAS_FREE_INDEX(curp)) {
1217 /* if we found index with free entry, then use that
1218 * entry: create all needed subtree and add new leaf */
Allison Henderson55f020d2011-05-25 07:41:26 -04001219 err = ext4_ext_split(handle, inode, flags, path, newext, i);
Shen Feng787e0982008-07-11 19:27:31 -04001220 if (err)
1221 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07001222
1223 /* refill path */
1224 ext4_ext_drop_refs(path);
1225 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001226 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1227 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001228 if (IS_ERR(path))
1229 err = PTR_ERR(path);
1230 } else {
1231 /* tree is full, time to grow in depth */
Dmitry Monakhov1939dd82011-10-22 01:26:05 -04001232 err = ext4_ext_grow_indepth(handle, inode, flags, newext);
Alex Tomasa86c6182006-10-11 01:21:03 -07001233 if (err)
1234 goto out;
1235
1236 /* refill path */
1237 ext4_ext_drop_refs(path);
1238 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001239 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1240 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001241 if (IS_ERR(path)) {
1242 err = PTR_ERR(path);
1243 goto out;
1244 }
1245
1246 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001247 * only first (depth 0 -> 1) produces free space;
1248 * in all other cases we have to split the grown tree
Alex Tomasa86c6182006-10-11 01:21:03 -07001249 */
1250 depth = ext_depth(inode);
1251 if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001252 /* now we need to split */
Alex Tomasa86c6182006-10-11 01:21:03 -07001253 goto repeat;
1254 }
1255 }
1256
1257out:
1258 return err;
1259}
1260
1261/*
Alex Tomas1988b512008-01-28 23:58:27 -05001262 * search the closest allocated block to the left for *logical
1263 * and returns it at @logical + it's physical address at @phys
1264 * if *logical is the smallest allocated block, the function
1265 * returns 0 at @phys
1266 * return value contains 0 (success) or error code
1267 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001268static int ext4_ext_search_left(struct inode *inode,
1269 struct ext4_ext_path *path,
1270 ext4_lblk_t *logical, ext4_fsblk_t *phys)
Alex Tomas1988b512008-01-28 23:58:27 -05001271{
1272 struct ext4_extent_idx *ix;
1273 struct ext4_extent *ex;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001274 int depth, ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001275
Frank Mayhar273df552010-03-02 11:46:09 -05001276 if (unlikely(path == NULL)) {
1277 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1278 return -EIO;
1279 }
Alex Tomas1988b512008-01-28 23:58:27 -05001280 depth = path->p_depth;
1281 *phys = 0;
1282
1283 if (depth == 0 && path->p_ext == NULL)
1284 return 0;
1285
1286 /* usually extent in the path covers blocks smaller
1287 * then *logical, but it can be that extent is the
1288 * first one in the file */
1289
1290 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001291 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001292 if (*logical < le32_to_cpu(ex->ee_block)) {
Frank Mayhar273df552010-03-02 11:46:09 -05001293 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1294 EXT4_ERROR_INODE(inode,
1295 "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!",
1296 *logical, le32_to_cpu(ex->ee_block));
1297 return -EIO;
1298 }
Alex Tomas1988b512008-01-28 23:58:27 -05001299 while (--depth >= 0) {
1300 ix = path[depth].p_idx;
Frank Mayhar273df552010-03-02 11:46:09 -05001301 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1302 EXT4_ERROR_INODE(inode,
1303 "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!",
Tao Ma6ee3b212011-10-08 16:08:34 -04001304 ix != NULL ? le32_to_cpu(ix->ei_block) : 0,
Frank Mayhar273df552010-03-02 11:46:09 -05001305 EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ?
Tao Ma6ee3b212011-10-08 16:08:34 -04001306 le32_to_cpu(EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block) : 0,
Frank Mayhar273df552010-03-02 11:46:09 -05001307 depth);
1308 return -EIO;
1309 }
Alex Tomas1988b512008-01-28 23:58:27 -05001310 }
1311 return 0;
1312 }
1313
Frank Mayhar273df552010-03-02 11:46:09 -05001314 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1315 EXT4_ERROR_INODE(inode,
1316 "logical %d < ee_block %d + ee_len %d!",
1317 *logical, le32_to_cpu(ex->ee_block), ee_len);
1318 return -EIO;
1319 }
Alex Tomas1988b512008-01-28 23:58:27 -05001320
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001321 *logical = le32_to_cpu(ex->ee_block) + ee_len - 1;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001322 *phys = ext4_ext_pblock(ex) + ee_len - 1;
Alex Tomas1988b512008-01-28 23:58:27 -05001323 return 0;
1324}
1325
1326/*
1327 * search the closest allocated block to the right for *logical
1328 * and returns it at @logical + it's physical address at @phys
Tao Madf3ab172011-10-08 15:53:49 -04001329 * if *logical is the largest allocated block, the function
Alex Tomas1988b512008-01-28 23:58:27 -05001330 * returns 0 at @phys
1331 * return value contains 0 (success) or error code
1332 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001333static int ext4_ext_search_right(struct inode *inode,
1334 struct ext4_ext_path *path,
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001335 ext4_lblk_t *logical, ext4_fsblk_t *phys,
1336 struct ext4_extent **ret_ex)
Alex Tomas1988b512008-01-28 23:58:27 -05001337{
1338 struct buffer_head *bh = NULL;
1339 struct ext4_extent_header *eh;
1340 struct ext4_extent_idx *ix;
1341 struct ext4_extent *ex;
1342 ext4_fsblk_t block;
Eric Sandeen395a87b2009-03-10 18:18:47 -04001343 int depth; /* Note, NOT eh_depth; depth from top of tree */
1344 int ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001345
Frank Mayhar273df552010-03-02 11:46:09 -05001346 if (unlikely(path == NULL)) {
1347 EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical);
1348 return -EIO;
1349 }
Alex Tomas1988b512008-01-28 23:58:27 -05001350 depth = path->p_depth;
1351 *phys = 0;
1352
1353 if (depth == 0 && path->p_ext == NULL)
1354 return 0;
1355
1356 /* usually extent in the path covers blocks smaller
1357 * then *logical, but it can be that extent is the
1358 * first one in the file */
1359
1360 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001361 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001362 if (*logical < le32_to_cpu(ex->ee_block)) {
Frank Mayhar273df552010-03-02 11:46:09 -05001363 if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) {
1364 EXT4_ERROR_INODE(inode,
1365 "first_extent(path[%d].p_hdr) != ex",
1366 depth);
1367 return -EIO;
1368 }
Alex Tomas1988b512008-01-28 23:58:27 -05001369 while (--depth >= 0) {
1370 ix = path[depth].p_idx;
Frank Mayhar273df552010-03-02 11:46:09 -05001371 if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) {
1372 EXT4_ERROR_INODE(inode,
1373 "ix != EXT_FIRST_INDEX *logical %d!",
1374 *logical);
1375 return -EIO;
1376 }
Alex Tomas1988b512008-01-28 23:58:27 -05001377 }
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001378 goto found_extent;
Alex Tomas1988b512008-01-28 23:58:27 -05001379 }
1380
Frank Mayhar273df552010-03-02 11:46:09 -05001381 if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) {
1382 EXT4_ERROR_INODE(inode,
1383 "logical %d < ee_block %d + ee_len %d!",
1384 *logical, le32_to_cpu(ex->ee_block), ee_len);
1385 return -EIO;
1386 }
Alex Tomas1988b512008-01-28 23:58:27 -05001387
1388 if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) {
1389 /* next allocated block in this leaf */
1390 ex++;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001391 goto found_extent;
Alex Tomas1988b512008-01-28 23:58:27 -05001392 }
1393
1394 /* go up and search for index to the right */
1395 while (--depth >= 0) {
1396 ix = path[depth].p_idx;
1397 if (ix != EXT_LAST_INDEX(path[depth].p_hdr))
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001398 goto got_index;
Alex Tomas1988b512008-01-28 23:58:27 -05001399 }
1400
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001401 /* we've gone up to the root and found no index to the right */
1402 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001403
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001404got_index:
Alex Tomas1988b512008-01-28 23:58:27 -05001405 /* we've found index to the right, let's
1406 * follow it and find the closest allocated
1407 * block to the right */
1408 ix++;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001409 block = ext4_idx_pblock(ix);
Alex Tomas1988b512008-01-28 23:58:27 -05001410 while (++depth < path->p_depth) {
1411 bh = sb_bread(inode->i_sb, block);
1412 if (bh == NULL)
1413 return -EIO;
1414 eh = ext_block_hdr(bh);
Eric Sandeen395a87b2009-03-10 18:18:47 -04001415 /* subtract from p_depth to get proper eh_depth */
Darrick J. Wongf8489122012-04-29 18:21:10 -04001416 if (ext4_ext_check_block(inode, eh,
1417 path->p_depth - depth, bh)) {
Alex Tomas1988b512008-01-28 23:58:27 -05001418 put_bh(bh);
1419 return -EIO;
1420 }
1421 ix = EXT_FIRST_INDEX(eh);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001422 block = ext4_idx_pblock(ix);
Alex Tomas1988b512008-01-28 23:58:27 -05001423 put_bh(bh);
1424 }
1425
1426 bh = sb_bread(inode->i_sb, block);
1427 if (bh == NULL)
1428 return -EIO;
1429 eh = ext_block_hdr(bh);
Darrick J. Wongf8489122012-04-29 18:21:10 -04001430 if (ext4_ext_check_block(inode, eh, path->p_depth - depth, bh)) {
Alex Tomas1988b512008-01-28 23:58:27 -05001431 put_bh(bh);
1432 return -EIO;
1433 }
1434 ex = EXT_FIRST_EXTENT(eh);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001435found_extent:
Alex Tomas1988b512008-01-28 23:58:27 -05001436 *logical = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04001437 *phys = ext4_ext_pblock(ex);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001438 *ret_ex = ex;
1439 if (bh)
1440 put_bh(bh);
Alex Tomas1988b512008-01-28 23:58:27 -05001441 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001442}
1443
1444/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001445 * ext4_ext_next_allocated_block:
Lukas Czernerf17722f2011-06-06 00:05:17 -04001446 * returns allocated block in subsequent extent or EXT_MAX_BLOCKS.
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001447 * NOTE: it considers block number from index entry as
1448 * allocated block. Thus, index entries have to be consistent
1449 * with leaves.
Alex Tomasa86c6182006-10-11 01:21:03 -07001450 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001451static ext4_lblk_t
Alex Tomasa86c6182006-10-11 01:21:03 -07001452ext4_ext_next_allocated_block(struct ext4_ext_path *path)
1453{
1454 int depth;
1455
1456 BUG_ON(path == NULL);
1457 depth = path->p_depth;
1458
1459 if (depth == 0 && path->p_ext == NULL)
Lukas Czernerf17722f2011-06-06 00:05:17 -04001460 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001461
1462 while (depth >= 0) {
1463 if (depth == path->p_depth) {
1464 /* leaf */
Curt Wohlgemuth6f8ff532011-10-26 04:38:59 -04001465 if (path[depth].p_ext &&
1466 path[depth].p_ext !=
Alex Tomasa86c6182006-10-11 01:21:03 -07001467 EXT_LAST_EXTENT(path[depth].p_hdr))
1468 return le32_to_cpu(path[depth].p_ext[1].ee_block);
1469 } else {
1470 /* index */
1471 if (path[depth].p_idx !=
1472 EXT_LAST_INDEX(path[depth].p_hdr))
1473 return le32_to_cpu(path[depth].p_idx[1].ei_block);
1474 }
1475 depth--;
1476 }
1477
Lukas Czernerf17722f2011-06-06 00:05:17 -04001478 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001479}
1480
1481/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001482 * ext4_ext_next_leaf_block:
Lukas Czernerf17722f2011-06-06 00:05:17 -04001483 * returns first allocated block from next leaf or EXT_MAX_BLOCKS
Alex Tomasa86c6182006-10-11 01:21:03 -07001484 */
Robin Dong57187892011-07-23 21:49:07 -04001485static ext4_lblk_t ext4_ext_next_leaf_block(struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -07001486{
1487 int depth;
1488
1489 BUG_ON(path == NULL);
1490 depth = path->p_depth;
1491
1492 /* zero-tree has no leaf blocks at all */
1493 if (depth == 0)
Lukas Czernerf17722f2011-06-06 00:05:17 -04001494 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001495
1496 /* go to index block */
1497 depth--;
1498
1499 while (depth >= 0) {
1500 if (path[depth].p_idx !=
1501 EXT_LAST_INDEX(path[depth].p_hdr))
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001502 return (ext4_lblk_t)
1503 le32_to_cpu(path[depth].p_idx[1].ei_block);
Alex Tomasa86c6182006-10-11 01:21:03 -07001504 depth--;
1505 }
1506
Lukas Czernerf17722f2011-06-06 00:05:17 -04001507 return EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07001508}
1509
1510/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001511 * ext4_ext_correct_indexes:
1512 * if leaf gets modified and modified extent is first in the leaf,
1513 * then we have to correct all indexes above.
Alex Tomasa86c6182006-10-11 01:21:03 -07001514 * TODO: do we need to correct tree in all cases?
1515 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001516static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -07001517 struct ext4_ext_path *path)
1518{
1519 struct ext4_extent_header *eh;
1520 int depth = ext_depth(inode);
1521 struct ext4_extent *ex;
1522 __le32 border;
1523 int k, err = 0;
1524
1525 eh = path[depth].p_hdr;
1526 ex = path[depth].p_ext;
Frank Mayhar273df552010-03-02 11:46:09 -05001527
1528 if (unlikely(ex == NULL || eh == NULL)) {
1529 EXT4_ERROR_INODE(inode,
1530 "ex %p == NULL or eh %p == NULL", ex, eh);
1531 return -EIO;
1532 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001533
1534 if (depth == 0) {
1535 /* there is no tree at all */
1536 return 0;
1537 }
1538
1539 if (ex != EXT_FIRST_EXTENT(eh)) {
1540 /* we correct tree if first leaf got modified only */
1541 return 0;
1542 }
1543
1544 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001545 * TODO: we need correction if border is smaller than current one
Alex Tomasa86c6182006-10-11 01:21:03 -07001546 */
1547 k = depth - 1;
1548 border = path[depth].p_ext->ee_block;
Avantika Mathur7e028972006-12-06 20:41:33 -08001549 err = ext4_ext_get_access(handle, inode, path + k);
1550 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001551 return err;
1552 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001553 err = ext4_ext_dirty(handle, inode, path + k);
1554 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001555 return err;
1556
1557 while (k--) {
1558 /* change all left-side indexes */
1559 if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr))
1560 break;
Avantika Mathur7e028972006-12-06 20:41:33 -08001561 err = ext4_ext_get_access(handle, inode, path + k);
1562 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001563 break;
1564 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001565 err = ext4_ext_dirty(handle, inode, path + k);
1566 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001567 break;
1568 }
1569
1570 return err;
1571}
1572
Akira Fujita748de672009-06-17 19:24:03 -04001573int
Alex Tomasa86c6182006-10-11 01:21:03 -07001574ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1,
1575 struct ext4_extent *ex2)
1576{
Amit Arora749269f2007-07-18 09:02:56 -04001577 unsigned short ext1_ee_len, ext2_ee_len, max_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001578
1579 /*
1580 * Make sure that either both extents are uninitialized, or
1581 * both are _not_.
1582 */
1583 if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2))
1584 return 0;
1585
Amit Arora749269f2007-07-18 09:02:56 -04001586 if (ext4_ext_is_uninitialized(ex1))
1587 max_len = EXT_UNINIT_MAX_LEN;
1588 else
1589 max_len = EXT_INIT_MAX_LEN;
1590
Amit Aroraa2df2a62007-07-17 21:42:41 -04001591 ext1_ee_len = ext4_ext_get_actual_len(ex1);
1592 ext2_ee_len = ext4_ext_get_actual_len(ex2);
1593
1594 if (le32_to_cpu(ex1->ee_block) + ext1_ee_len !=
Andrew Morton63f57932006-10-11 01:21:24 -07001595 le32_to_cpu(ex2->ee_block))
Alex Tomasa86c6182006-10-11 01:21:03 -07001596 return 0;
1597
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001598 /*
1599 * To allow future support for preallocated extents to be added
1600 * as an RO_COMPAT feature, refuse to merge to extents if
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001601 * this can result in the top bit of ee_len being set.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001602 */
Amit Arora749269f2007-07-18 09:02:56 -04001603 if (ext1_ee_len + ext2_ee_len > max_len)
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001604 return 0;
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01001605#ifdef AGGRESSIVE_TEST
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001606 if (ext1_ee_len >= 4)
Alex Tomasa86c6182006-10-11 01:21:03 -07001607 return 0;
1608#endif
1609
Theodore Ts'obf89d162010-10-27 21:30:14 -04001610 if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2))
Alex Tomasa86c6182006-10-11 01:21:03 -07001611 return 1;
1612 return 0;
1613}
1614
1615/*
Amit Arora56055d32007-07-17 21:42:38 -04001616 * This function tries to merge the "ex" extent to the next extent in the tree.
1617 * It always tries to merge towards right. If you want to merge towards
1618 * left, pass "ex - 1" as argument instead of "ex".
1619 * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
1620 * 1 if they got merged.
1621 */
Yongqiang Yang197217a2011-05-03 11:45:29 -04001622static int ext4_ext_try_to_merge_right(struct inode *inode,
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001623 struct ext4_ext_path *path,
1624 struct ext4_extent *ex)
Amit Arora56055d32007-07-17 21:42:38 -04001625{
1626 struct ext4_extent_header *eh;
1627 unsigned int depth, len;
1628 int merge_done = 0;
1629 int uninitialized = 0;
1630
1631 depth = ext_depth(inode);
1632 BUG_ON(path[depth].p_hdr == NULL);
1633 eh = path[depth].p_hdr;
1634
1635 while (ex < EXT_LAST_EXTENT(eh)) {
1636 if (!ext4_can_extents_be_merged(inode, ex, ex + 1))
1637 break;
1638 /* merge with next extent! */
1639 if (ext4_ext_is_uninitialized(ex))
1640 uninitialized = 1;
1641 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1642 + ext4_ext_get_actual_len(ex + 1));
1643 if (uninitialized)
1644 ext4_ext_mark_uninitialized(ex);
1645
1646 if (ex + 1 < EXT_LAST_EXTENT(eh)) {
1647 len = (EXT_LAST_EXTENT(eh) - ex - 1)
1648 * sizeof(struct ext4_extent);
1649 memmove(ex + 1, ex + 2, len);
1650 }
Marcin Slusarze8546d02008-04-17 10:38:59 -04001651 le16_add_cpu(&eh->eh_entries, -1);
Amit Arora56055d32007-07-17 21:42:38 -04001652 merge_done = 1;
1653 WARN_ON(eh->eh_entries == 0);
1654 if (!eh->eh_entries)
Theodore Ts'o24676da2010-05-16 21:00:00 -04001655 EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!");
Amit Arora56055d32007-07-17 21:42:38 -04001656 }
1657
1658 return merge_done;
1659}
1660
1661/*
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001662 * This function does a very simple check to see if we can collapse
1663 * an extent tree with a single extent tree leaf block into the inode.
1664 */
1665static void ext4_ext_try_to_merge_up(handle_t *handle,
1666 struct inode *inode,
1667 struct ext4_ext_path *path)
1668{
1669 size_t s;
1670 unsigned max_root = ext4_ext_space_root(inode, 0);
1671 ext4_fsblk_t blk;
1672
1673 if ((path[0].p_depth != 1) ||
1674 (le16_to_cpu(path[0].p_hdr->eh_entries) != 1) ||
1675 (le16_to_cpu(path[1].p_hdr->eh_entries) > max_root))
1676 return;
1677
1678 /*
1679 * We need to modify the block allocation bitmap and the block
1680 * group descriptor to release the extent tree block. If we
1681 * can't get the journal credits, give up.
1682 */
1683 if (ext4_journal_extend(handle, 2))
1684 return;
1685
1686 /*
1687 * Copy the extent data up to the inode
1688 */
1689 blk = ext4_idx_pblock(path[0].p_idx);
1690 s = le16_to_cpu(path[1].p_hdr->eh_entries) *
1691 sizeof(struct ext4_extent_idx);
1692 s += sizeof(struct ext4_extent_header);
1693
1694 memcpy(path[0].p_hdr, path[1].p_hdr, s);
1695 path[0].p_depth = 0;
1696 path[0].p_ext = EXT_FIRST_EXTENT(path[0].p_hdr) +
1697 (path[1].p_ext - EXT_FIRST_EXTENT(path[1].p_hdr));
1698 path[0].p_hdr->eh_max = cpu_to_le16(max_root);
1699
1700 brelse(path[1].p_bh);
1701 ext4_free_blocks(handle, inode, NULL, blk, 1,
1702 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
1703}
1704
1705/*
Yongqiang Yang197217a2011-05-03 11:45:29 -04001706 * This function tries to merge the @ex extent to neighbours in the tree.
1707 * return 1 if merge left else 0.
1708 */
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001709static void ext4_ext_try_to_merge(handle_t *handle,
1710 struct inode *inode,
Yongqiang Yang197217a2011-05-03 11:45:29 -04001711 struct ext4_ext_path *path,
1712 struct ext4_extent *ex) {
1713 struct ext4_extent_header *eh;
1714 unsigned int depth;
1715 int merge_done = 0;
Yongqiang Yang197217a2011-05-03 11:45:29 -04001716
1717 depth = ext_depth(inode);
1718 BUG_ON(path[depth].p_hdr == NULL);
1719 eh = path[depth].p_hdr;
1720
1721 if (ex > EXT_FIRST_EXTENT(eh))
1722 merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1);
1723
1724 if (!merge_done)
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001725 (void) ext4_ext_try_to_merge_right(inode, path, ex);
Yongqiang Yang197217a2011-05-03 11:45:29 -04001726
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001727 ext4_ext_try_to_merge_up(handle, inode, path);
Yongqiang Yang197217a2011-05-03 11:45:29 -04001728}
1729
1730/*
Amit Arora25d14f92007-05-24 13:04:13 -04001731 * check if a portion of the "newext" extent overlaps with an
1732 * existing extent.
1733 *
1734 * If there is an overlap discovered, it updates the length of the newext
1735 * such that there will be no overlap, and then returns 1.
1736 * If there is no overlap found, it returns 0.
1737 */
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001738static unsigned int ext4_ext_check_overlap(struct ext4_sb_info *sbi,
1739 struct inode *inode,
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001740 struct ext4_extent *newext,
1741 struct ext4_ext_path *path)
Amit Arora25d14f92007-05-24 13:04:13 -04001742{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001743 ext4_lblk_t b1, b2;
Amit Arora25d14f92007-05-24 13:04:13 -04001744 unsigned int depth, len1;
1745 unsigned int ret = 0;
1746
1747 b1 = le32_to_cpu(newext->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04001748 len1 = ext4_ext_get_actual_len(newext);
Amit Arora25d14f92007-05-24 13:04:13 -04001749 depth = ext_depth(inode);
1750 if (!path[depth].p_ext)
1751 goto out;
1752 b2 = le32_to_cpu(path[depth].p_ext->ee_block);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001753 b2 &= ~(sbi->s_cluster_ratio - 1);
Amit Arora25d14f92007-05-24 13:04:13 -04001754
1755 /*
1756 * get the next allocated block if the extent in the path
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001757 * is before the requested block(s)
Amit Arora25d14f92007-05-24 13:04:13 -04001758 */
1759 if (b2 < b1) {
1760 b2 = ext4_ext_next_allocated_block(path);
Lukas Czernerf17722f2011-06-06 00:05:17 -04001761 if (b2 == EXT_MAX_BLOCKS)
Amit Arora25d14f92007-05-24 13:04:13 -04001762 goto out;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04001763 b2 &= ~(sbi->s_cluster_ratio - 1);
Amit Arora25d14f92007-05-24 13:04:13 -04001764 }
1765
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001766 /* check for wrap through zero on extent logical start block*/
Amit Arora25d14f92007-05-24 13:04:13 -04001767 if (b1 + len1 < b1) {
Lukas Czernerf17722f2011-06-06 00:05:17 -04001768 len1 = EXT_MAX_BLOCKS - b1;
Amit Arora25d14f92007-05-24 13:04:13 -04001769 newext->ee_len = cpu_to_le16(len1);
1770 ret = 1;
1771 }
1772
1773 /* check for overlap */
1774 if (b1 + len1 > b2) {
1775 newext->ee_len = cpu_to_le16(b2 - b1);
1776 ret = 1;
1777 }
1778out:
1779 return ret;
1780}
1781
1782/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001783 * ext4_ext_insert_extent:
1784 * tries to merge requsted extent into the existing extent or
1785 * inserts requested extent as new one into the tree,
1786 * creating new leaf in the no-space case.
Alex Tomasa86c6182006-10-11 01:21:03 -07001787 */
1788int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
1789 struct ext4_ext_path *path,
Mingming Cao00314622009-09-28 15:49:08 -04001790 struct ext4_extent *newext, int flag)
Alex Tomasa86c6182006-10-11 01:21:03 -07001791{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001792 struct ext4_extent_header *eh;
Alex Tomasa86c6182006-10-11 01:21:03 -07001793 struct ext4_extent *ex, *fex;
1794 struct ext4_extent *nearex; /* nearest extent */
1795 struct ext4_ext_path *npath = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001796 int depth, len, err;
1797 ext4_lblk_t next;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001798 unsigned uninitialized = 0;
Allison Henderson55f020d2011-05-25 07:41:26 -04001799 int flags = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07001800
Frank Mayhar273df552010-03-02 11:46:09 -05001801 if (unlikely(ext4_ext_get_actual_len(newext) == 0)) {
1802 EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0");
1803 return -EIO;
1804 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001805 depth = ext_depth(inode);
1806 ex = path[depth].p_ext;
Frank Mayhar273df552010-03-02 11:46:09 -05001807 if (unlikely(path[depth].p_hdr == NULL)) {
1808 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1809 return -EIO;
1810 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001811
1812 /* try to insert block into found extent and return */
Jiaying Zhang744692d2010-03-04 16:14:02 -05001813 if (ex && !(flag & EXT4_GET_BLOCKS_PRE_IO)
Mingming Cao00314622009-09-28 15:49:08 -04001814 && ext4_can_extents_be_merged(inode, ex, newext)) {
Yongqiang Yang32de6752011-11-01 18:56:41 -04001815 ext_debug("append [%d]%d block to %u:[%d]%d (from %llu)\n",
Theodore Ts'obf89d162010-10-27 21:30:14 -04001816 ext4_ext_is_uninitialized(newext),
1817 ext4_ext_get_actual_len(newext),
1818 le32_to_cpu(ex->ee_block),
1819 ext4_ext_is_uninitialized(ex),
1820 ext4_ext_get_actual_len(ex),
1821 ext4_ext_pblock(ex));
Avantika Mathur7e028972006-12-06 20:41:33 -08001822 err = ext4_ext_get_access(handle, inode, path + depth);
1823 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001824 return err;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001825
1826 /*
1827 * ext4_can_extents_be_merged should have checked that either
1828 * both extents are uninitialized, or both aren't. Thus we
1829 * need to check only one of them here.
1830 */
1831 if (ext4_ext_is_uninitialized(ex))
1832 uninitialized = 1;
1833 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1834 + ext4_ext_get_actual_len(newext));
1835 if (uninitialized)
1836 ext4_ext_mark_uninitialized(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001837 eh = path[depth].p_hdr;
1838 nearex = ex;
1839 goto merge;
1840 }
1841
Alex Tomasa86c6182006-10-11 01:21:03 -07001842 depth = ext_depth(inode);
1843 eh = path[depth].p_hdr;
1844 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max))
1845 goto has_space;
1846
1847 /* probably next leaf has space for us? */
1848 fex = EXT_LAST_EXTENT(eh);
Robin Dong598dbdf2011-07-11 18:24:01 -04001849 next = EXT_MAX_BLOCKS;
1850 if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block))
Robin Dong57187892011-07-23 21:49:07 -04001851 next = ext4_ext_next_leaf_block(path);
Robin Dong598dbdf2011-07-11 18:24:01 -04001852 if (next != EXT_MAX_BLOCKS) {
Yongqiang Yang32de6752011-11-01 18:56:41 -04001853 ext_debug("next leaf block - %u\n", next);
Alex Tomasa86c6182006-10-11 01:21:03 -07001854 BUG_ON(npath != NULL);
1855 npath = ext4_ext_find_extent(inode, next, NULL);
1856 if (IS_ERR(npath))
1857 return PTR_ERR(npath);
1858 BUG_ON(npath->p_depth != path->p_depth);
1859 eh = npath[depth].p_hdr;
1860 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001861 ext_debug("next leaf isn't full(%d)\n",
Alex Tomasa86c6182006-10-11 01:21:03 -07001862 le16_to_cpu(eh->eh_entries));
1863 path = npath;
Robin Dongffb505f2011-07-11 11:43:59 -04001864 goto has_space;
Alex Tomasa86c6182006-10-11 01:21:03 -07001865 }
1866 ext_debug("next leaf has no free space(%d,%d)\n",
1867 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
1868 }
1869
1870 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001871 * There is no free space in the found leaf.
1872 * We're gonna add a new leaf in the tree.
Alex Tomasa86c6182006-10-11 01:21:03 -07001873 */
Allison Henderson55f020d2011-05-25 07:41:26 -04001874 if (flag & EXT4_GET_BLOCKS_PUNCH_OUT_EXT)
1875 flags = EXT4_MB_USE_ROOT_BLOCKS;
1876 err = ext4_ext_create_new_leaf(handle, inode, flags, path, newext);
Alex Tomasa86c6182006-10-11 01:21:03 -07001877 if (err)
1878 goto cleanup;
1879 depth = ext_depth(inode);
1880 eh = path[depth].p_hdr;
1881
1882has_space:
1883 nearex = path[depth].p_ext;
1884
Avantika Mathur7e028972006-12-06 20:41:33 -08001885 err = ext4_ext_get_access(handle, inode, path + depth);
1886 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001887 goto cleanup;
1888
1889 if (!nearex) {
1890 /* there is no extent in this leaf, create first one */
Yongqiang Yang32de6752011-11-01 18:56:41 -04001891 ext_debug("first extent in the leaf: %u:%llu:[%d]%d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001892 le32_to_cpu(newext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001893 ext4_ext_pblock(newext),
Mingming553f9002009-09-18 13:34:55 -04001894 ext4_ext_is_uninitialized(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001895 ext4_ext_get_actual_len(newext));
Eric Gouriou80e675f2011-10-27 11:52:18 -04001896 nearex = EXT_FIRST_EXTENT(eh);
1897 } else {
1898 if (le32_to_cpu(newext->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001899 > le32_to_cpu(nearex->ee_block)) {
Eric Gouriou80e675f2011-10-27 11:52:18 -04001900 /* Insert after */
Yongqiang Yang32de6752011-11-01 18:56:41 -04001901 ext_debug("insert %u:%llu:[%d]%d before: "
1902 "nearest %p\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001903 le32_to_cpu(newext->ee_block),
Theodore Ts'obf89d162010-10-27 21:30:14 -04001904 ext4_ext_pblock(newext),
Mingming553f9002009-09-18 13:34:55 -04001905 ext4_ext_is_uninitialized(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001906 ext4_ext_get_actual_len(newext),
Eric Gouriou80e675f2011-10-27 11:52:18 -04001907 nearex);
1908 nearex++;
1909 } else {
1910 /* Insert before */
1911 BUG_ON(newext->ee_block == nearex->ee_block);
Yongqiang Yang32de6752011-11-01 18:56:41 -04001912 ext_debug("insert %u:%llu:[%d]%d after: "
1913 "nearest %p\n",
Eric Gouriou80e675f2011-10-27 11:52:18 -04001914 le32_to_cpu(newext->ee_block),
1915 ext4_ext_pblock(newext),
1916 ext4_ext_is_uninitialized(newext),
1917 ext4_ext_get_actual_len(newext),
1918 nearex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001919 }
Eric Gouriou80e675f2011-10-27 11:52:18 -04001920 len = EXT_LAST_EXTENT(eh) - nearex + 1;
1921 if (len > 0) {
Yongqiang Yang32de6752011-11-01 18:56:41 -04001922 ext_debug("insert %u:%llu:[%d]%d: "
Eric Gouriou80e675f2011-10-27 11:52:18 -04001923 "move %d extents from 0x%p to 0x%p\n",
1924 le32_to_cpu(newext->ee_block),
1925 ext4_ext_pblock(newext),
1926 ext4_ext_is_uninitialized(newext),
1927 ext4_ext_get_actual_len(newext),
1928 len, nearex, nearex + 1);
1929 memmove(nearex + 1, nearex,
1930 len * sizeof(struct ext4_extent));
1931 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001932 }
1933
Marcin Slusarze8546d02008-04-17 10:38:59 -04001934 le16_add_cpu(&eh->eh_entries, 1);
Eric Gouriou80e675f2011-10-27 11:52:18 -04001935 path[depth].p_ext = nearex;
Alex Tomasa86c6182006-10-11 01:21:03 -07001936 nearex->ee_block = newext->ee_block;
Theodore Ts'obf89d162010-10-27 21:30:14 -04001937 ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext));
Alex Tomasa86c6182006-10-11 01:21:03 -07001938 nearex->ee_len = newext->ee_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07001939
1940merge:
HaiboLiue7bcf822012-07-09 16:29:28 -04001941 /* try to merge extents */
Jiaying Zhang744692d2010-03-04 16:14:02 -05001942 if (!(flag & EXT4_GET_BLOCKS_PRE_IO))
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001943 ext4_ext_try_to_merge(handle, inode, path, nearex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001944
Alex Tomasa86c6182006-10-11 01:21:03 -07001945
1946 /* time to correct all indexes above */
1947 err = ext4_ext_correct_indexes(handle, inode, path);
1948 if (err)
1949 goto cleanup;
1950
Theodore Ts'oecb94f52012-08-17 09:44:17 -04001951 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Alex Tomasa86c6182006-10-11 01:21:03 -07001952
1953cleanup:
1954 if (npath) {
1955 ext4_ext_drop_refs(npath);
1956 kfree(npath);
1957 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001958 ext4_ext_invalidate_cache(inode);
1959 return err;
1960}
1961
Theodore Ts'o1f109d52010-10-27 21:30:14 -04001962static int ext4_ext_walk_space(struct inode *inode, ext4_lblk_t block,
1963 ext4_lblk_t num, ext_prepare_callback func,
1964 void *cbdata)
Eric Sandeen6873fa02008-10-07 00:46:36 -04001965{
1966 struct ext4_ext_path *path = NULL;
1967 struct ext4_ext_cache cbex;
1968 struct ext4_extent *ex;
1969 ext4_lblk_t next, start = 0, end = 0;
1970 ext4_lblk_t last = block + num;
1971 int depth, exists, err = 0;
1972
1973 BUG_ON(func == NULL);
1974 BUG_ON(inode == NULL);
1975
Lukas Czernerf17722f2011-06-06 00:05:17 -04001976 while (block < last && block != EXT_MAX_BLOCKS) {
Eric Sandeen6873fa02008-10-07 00:46:36 -04001977 num = last - block;
1978 /* find extent for this block */
Theodore Ts'ofab3a542009-12-09 21:30:02 -05001979 down_read(&EXT4_I(inode)->i_data_sem);
Eric Sandeen6873fa02008-10-07 00:46:36 -04001980 path = ext4_ext_find_extent(inode, block, path);
Theodore Ts'ofab3a542009-12-09 21:30:02 -05001981 up_read(&EXT4_I(inode)->i_data_sem);
Eric Sandeen6873fa02008-10-07 00:46:36 -04001982 if (IS_ERR(path)) {
1983 err = PTR_ERR(path);
1984 path = NULL;
1985 break;
1986 }
1987
1988 depth = ext_depth(inode);
Frank Mayhar273df552010-03-02 11:46:09 -05001989 if (unlikely(path[depth].p_hdr == NULL)) {
1990 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
1991 err = -EIO;
1992 break;
1993 }
Eric Sandeen6873fa02008-10-07 00:46:36 -04001994 ex = path[depth].p_ext;
1995 next = ext4_ext_next_allocated_block(path);
1996
1997 exists = 0;
1998 if (!ex) {
1999 /* there is no extent yet, so try to allocate
2000 * all requested space */
2001 start = block;
2002 end = block + num;
2003 } else if (le32_to_cpu(ex->ee_block) > block) {
2004 /* need to allocate space before found extent */
2005 start = block;
2006 end = le32_to_cpu(ex->ee_block);
2007 if (block + num < end)
2008 end = block + num;
2009 } else if (block >= le32_to_cpu(ex->ee_block)
2010 + ext4_ext_get_actual_len(ex)) {
2011 /* need to allocate space after found extent */
2012 start = block;
2013 end = block + num;
2014 if (end >= next)
2015 end = next;
2016 } else if (block >= le32_to_cpu(ex->ee_block)) {
2017 /*
2018 * some part of requested space is covered
2019 * by found extent
2020 */
2021 start = block;
2022 end = le32_to_cpu(ex->ee_block)
2023 + ext4_ext_get_actual_len(ex);
2024 if (block + num < end)
2025 end = block + num;
2026 exists = 1;
2027 } else {
2028 BUG();
2029 }
2030 BUG_ON(end <= start);
2031
2032 if (!exists) {
2033 cbex.ec_block = start;
2034 cbex.ec_len = end - start;
2035 cbex.ec_start = 0;
Eric Sandeen6873fa02008-10-07 00:46:36 -04002036 } else {
2037 cbex.ec_block = le32_to_cpu(ex->ee_block);
2038 cbex.ec_len = ext4_ext_get_actual_len(ex);
Theodore Ts'obf89d162010-10-27 21:30:14 -04002039 cbex.ec_start = ext4_ext_pblock(ex);
Eric Sandeen6873fa02008-10-07 00:46:36 -04002040 }
2041
Frank Mayhar273df552010-03-02 11:46:09 -05002042 if (unlikely(cbex.ec_len == 0)) {
2043 EXT4_ERROR_INODE(inode, "cbex.ec_len == 0");
2044 err = -EIO;
2045 break;
2046 }
Lukas Czernerc03f8aa2011-06-06 00:06:52 -04002047 err = func(inode, next, &cbex, ex, cbdata);
Eric Sandeen6873fa02008-10-07 00:46:36 -04002048 ext4_ext_drop_refs(path);
2049
2050 if (err < 0)
2051 break;
2052
2053 if (err == EXT_REPEAT)
2054 continue;
2055 else if (err == EXT_BREAK) {
2056 err = 0;
2057 break;
2058 }
2059
2060 if (ext_depth(inode) != depth) {
2061 /* depth was changed. we have to realloc path */
2062 kfree(path);
2063 path = NULL;
2064 }
2065
2066 block = cbex.ec_block + cbex.ec_len;
2067 }
2068
2069 if (path) {
2070 ext4_ext_drop_refs(path);
2071 kfree(path);
2072 }
2073
2074 return err;
2075}
2076
Avantika Mathur09b88252006-12-06 20:41:36 -08002077static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002078ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block,
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002079 __u32 len, ext4_fsblk_t start)
Alex Tomasa86c6182006-10-11 01:21:03 -07002080{
2081 struct ext4_ext_cache *cex;
2082 BUG_ON(len == 0);
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002083 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -04002084 trace_ext4_ext_put_in_cache(inode, block, len, start);
Alex Tomasa86c6182006-10-11 01:21:03 -07002085 cex = &EXT4_I(inode)->i_cached_extent;
Alex Tomasa86c6182006-10-11 01:21:03 -07002086 cex->ec_block = block;
2087 cex->ec_len = len;
2088 cex->ec_start = start;
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002089 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Alex Tomasa86c6182006-10-11 01:21:03 -07002090}
2091
2092/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002093 * ext4_ext_put_gap_in_cache:
2094 * calculate boundaries of the gap that the requested block fits into
Alex Tomasa86c6182006-10-11 01:21:03 -07002095 * and cache this gap
2096 */
Avantika Mathur09b88252006-12-06 20:41:36 -08002097static void
Alex Tomasa86c6182006-10-11 01:21:03 -07002098ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002099 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -07002100{
2101 int depth = ext_depth(inode);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002102 unsigned long len;
2103 ext4_lblk_t lblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07002104 struct ext4_extent *ex;
2105
2106 ex = path[depth].p_ext;
2107 if (ex == NULL) {
2108 /* there is no extent yet, so gap is [0;-] */
2109 lblock = 0;
Lukas Czernerf17722f2011-06-06 00:05:17 -04002110 len = EXT_MAX_BLOCKS;
Alex Tomasa86c6182006-10-11 01:21:03 -07002111 ext_debug("cache gap(whole file):");
2112 } else if (block < le32_to_cpu(ex->ee_block)) {
2113 lblock = block;
2114 len = le32_to_cpu(ex->ee_block) - block;
Eric Sandeenbba90742008-01-28 23:58:27 -05002115 ext_debug("cache gap(before): %u [%u:%u]",
2116 block,
2117 le32_to_cpu(ex->ee_block),
2118 ext4_ext_get_actual_len(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -07002119 } else if (block >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002120 + ext4_ext_get_actual_len(ex)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002121 ext4_lblk_t next;
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002122 lblock = le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002123 + ext4_ext_get_actual_len(ex);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002124
2125 next = ext4_ext_next_allocated_block(path);
Eric Sandeenbba90742008-01-28 23:58:27 -05002126 ext_debug("cache gap(after): [%u:%u] %u",
2127 le32_to_cpu(ex->ee_block),
2128 ext4_ext_get_actual_len(ex),
2129 block);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002130 BUG_ON(next == lblock);
2131 len = next - lblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07002132 } else {
2133 lblock = len = 0;
2134 BUG();
2135 }
2136
Eric Sandeenbba90742008-01-28 23:58:27 -05002137 ext_debug(" -> %u:%lu\n", lblock, len);
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002138 ext4_ext_put_in_cache(inode, lblock, len, 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07002139}
2140
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002141/*
Lukas Czerner63fedaf2012-09-26 21:09:06 -04002142 * ext4_ext_in_cache()
Allison Hendersona4bb6b62011-05-25 07:41:50 -04002143 * Checks to see if the given block is in the cache.
2144 * If it is, the cached extent is stored in the given
Lukas Czerner63fedaf2012-09-26 21:09:06 -04002145 * cache extent pointer.
Allison Hendersona4bb6b62011-05-25 07:41:50 -04002146 *
2147 * @inode: The files inode
2148 * @block: The block to look for in the cache
2149 * @ex: Pointer where the cached extent will be stored
2150 * if it contains block
2151 *
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002152 * Return 0 if cache is invalid; 1 if the cache is valid
2153 */
Lukas Czerner63fedaf2012-09-26 21:09:06 -04002154static int
2155ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block,
2156 struct ext4_extent *ex)
2157{
Alex Tomasa86c6182006-10-11 01:21:03 -07002158 struct ext4_ext_cache *cex;
Vivek Haldar77f41352011-05-22 21:24:16 -04002159 struct ext4_sb_info *sbi;
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002160 int ret = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002161
Theodore Ts'o60e66792010-05-17 07:00:00 -04002162 /*
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002163 * We borrow i_block_reservation_lock to protect i_cached_extent
2164 */
2165 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Alex Tomasa86c6182006-10-11 01:21:03 -07002166 cex = &EXT4_I(inode)->i_cached_extent;
Vivek Haldar77f41352011-05-22 21:24:16 -04002167 sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002168
2169 /* has cache valid data? */
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002170 if (cex->ec_len == 0)
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002171 goto errout;
Alex Tomasa86c6182006-10-11 01:21:03 -07002172
Akinobu Mita731eb1a2010-03-03 23:55:01 -05002173 if (in_range(block, cex->ec_block, cex->ec_len)) {
Lukas Czerner63fedaf2012-09-26 21:09:06 -04002174 ex->ee_block = cpu_to_le32(cex->ec_block);
2175 ext4_ext_store_pblock(ex, cex->ec_start);
2176 ex->ee_len = cpu_to_le16(cex->ec_len);
Eric Sandeenbba90742008-01-28 23:58:27 -05002177 ext_debug("%u cached by %u:%u:%llu\n",
2178 block,
2179 cex->ec_block, cex->ec_len, cex->ec_start);
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05002180 ret = 1;
Alex Tomasa86c6182006-10-11 01:21:03 -07002181 }
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002182errout:
Aditya Kalid8990242011-09-09 19:18:51 -04002183 trace_ext4_ext_in_cache(inode, block, ret);
Theodore Ts'o2ec0ae32009-05-15 09:07:28 -04002184 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
2185 return ret;
Alex Tomasa86c6182006-10-11 01:21:03 -07002186}
2187
2188/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002189 * ext4_ext_rm_idx:
2190 * removes index from the index block.
Alex Tomasa86c6182006-10-11 01:21:03 -07002191 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002192static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -07002193 struct ext4_ext_path *path)
2194{
Alex Tomasa86c6182006-10-11 01:21:03 -07002195 int err;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002196 ext4_fsblk_t leaf;
Alex Tomasa86c6182006-10-11 01:21:03 -07002197
2198 /* free index block */
2199 path--;
Theodore Ts'obf89d162010-10-27 21:30:14 -04002200 leaf = ext4_idx_pblock(path->p_idx);
Frank Mayhar273df552010-03-02 11:46:09 -05002201 if (unlikely(path->p_hdr->eh_entries == 0)) {
2202 EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0");
2203 return -EIO;
2204 }
Avantika Mathur7e028972006-12-06 20:41:33 -08002205 err = ext4_ext_get_access(handle, inode, path);
2206 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002207 return err;
Robin Dong0e1147b2011-07-27 21:29:33 -04002208
2209 if (path->p_idx != EXT_LAST_INDEX(path->p_hdr)) {
2210 int len = EXT_LAST_INDEX(path->p_hdr) - path->p_idx;
2211 len *= sizeof(struct ext4_extent_idx);
2212 memmove(path->p_idx, path->p_idx + 1, len);
2213 }
2214
Marcin Slusarze8546d02008-04-17 10:38:59 -04002215 le16_add_cpu(&path->p_hdr->eh_entries, -1);
Avantika Mathur7e028972006-12-06 20:41:33 -08002216 err = ext4_ext_dirty(handle, inode, path);
2217 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002218 return err;
Mingming Cao2ae02102006-10-11 01:21:11 -07002219 ext_debug("index is empty, remove it, free block %llu\n", leaf);
Aditya Kalid8990242011-09-09 19:18:51 -04002220 trace_ext4_ext_rm_idx(inode, leaf);
2221
Peter Huewe7dc57612011-02-21 21:01:42 -05002222 ext4_free_blocks(handle, inode, NULL, leaf, 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -05002223 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
Alex Tomasa86c6182006-10-11 01:21:03 -07002224 return err;
2225}
2226
2227/*
Mingming Caoee12b632008-08-19 22:16:05 -04002228 * ext4_ext_calc_credits_for_single_extent:
2229 * This routine returns max. credits that needed to insert an extent
2230 * to the extent tree.
2231 * When pass the actual path, the caller should calculate credits
2232 * under i_data_sem.
Alex Tomasa86c6182006-10-11 01:21:03 -07002233 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002234int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks,
Alex Tomasa86c6182006-10-11 01:21:03 -07002235 struct ext4_ext_path *path)
2236{
Alex Tomasa86c6182006-10-11 01:21:03 -07002237 if (path) {
Mingming Caoee12b632008-08-19 22:16:05 -04002238 int depth = ext_depth(inode);
Mingming Caof3bd1f32008-08-19 22:16:03 -04002239 int ret = 0;
Mingming Caoee12b632008-08-19 22:16:05 -04002240
Alex Tomasa86c6182006-10-11 01:21:03 -07002241 /* probably there is space in leaf? */
Alex Tomasa86c6182006-10-11 01:21:03 -07002242 if (le16_to_cpu(path[depth].p_hdr->eh_entries)
Mingming Caoee12b632008-08-19 22:16:05 -04002243 < le16_to_cpu(path[depth].p_hdr->eh_max)) {
2244
2245 /*
2246 * There are some space in the leaf tree, no
2247 * need to account for leaf block credit
2248 *
2249 * bitmaps and block group descriptor blocks
Tao Madf3ab172011-10-08 15:53:49 -04002250 * and other metadata blocks still need to be
Mingming Caoee12b632008-08-19 22:16:05 -04002251 * accounted.
2252 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002253 /* 1 bitmap, 1 block group descriptor */
Mingming Caoee12b632008-08-19 22:16:05 -04002254 ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb);
Aneesh Kumar K.V5887e982009-07-05 23:12:04 -04002255 return ret;
Mingming Caoee12b632008-08-19 22:16:05 -04002256 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002257 }
2258
Mingming Cao525f4ed2008-08-19 22:15:58 -04002259 return ext4_chunk_trans_blocks(inode, nrblocks);
Mingming Caoee12b632008-08-19 22:16:05 -04002260}
Alex Tomasa86c6182006-10-11 01:21:03 -07002261
Mingming Caoee12b632008-08-19 22:16:05 -04002262/*
2263 * How many index/leaf blocks need to change/allocate to modify nrblocks?
2264 *
2265 * if nrblocks are fit in a single extent (chunk flag is 1), then
2266 * in the worse case, each tree level index/leaf need to be changed
2267 * if the tree split due to insert a new extent, then the old tree
2268 * index/leaf need to be updated too
2269 *
2270 * If the nrblocks are discontiguous, they could cause
2271 * the whole tree split more than once, but this is really rare.
2272 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002273int ext4_ext_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
Mingming Caoee12b632008-08-19 22:16:05 -04002274{
2275 int index;
2276 int depth = ext_depth(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07002277
Mingming Caoee12b632008-08-19 22:16:05 -04002278 if (chunk)
2279 index = depth * 2;
2280 else
2281 index = depth * 3;
Alex Tomasa86c6182006-10-11 01:21:03 -07002282
Mingming Caoee12b632008-08-19 22:16:05 -04002283 return index;
Alex Tomasa86c6182006-10-11 01:21:03 -07002284}
2285
2286static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002287 struct ext4_extent *ex,
2288 ext4_fsblk_t *partial_cluster,
2289 ext4_lblk_t from, ext4_lblk_t to)
Alex Tomasa86c6182006-10-11 01:21:03 -07002290{
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002291 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002292 unsigned short ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002293 ext4_fsblk_t pblk;
Andrey Sidorov18888cf2012-09-19 14:14:53 -04002294 int flags = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002295
Alex Tomasc9de5602008-01-29 00:19:52 -05002296 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
Andrey Sidorov18888cf2012-09-19 14:14:53 -04002297 flags |= EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET;
2298 else if (ext4_should_journal_data(inode))
2299 flags |= EXT4_FREE_BLOCKS_FORGET;
2300
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002301 /*
2302 * For bigalloc file systems, we never free a partial cluster
2303 * at the beginning of the extent. Instead, we make a note
2304 * that we tried freeing the cluster, and check to see if we
2305 * need to free it on a subsequent call to ext4_remove_blocks,
2306 * or at the end of the ext4_truncate() operation.
2307 */
2308 flags |= EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER;
2309
Aditya Kalid8990242011-09-09 19:18:51 -04002310 trace_ext4_remove_blocks(inode, ex, from, to, *partial_cluster);
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002311 /*
2312 * If we have a partial cluster, and it's different from the
2313 * cluster of the last block, we need to explicitly free the
2314 * partial cluster here.
2315 */
2316 pblk = ext4_ext_pblock(ex) + ee_len - 1;
2317 if (*partial_cluster && (EXT4_B2C(sbi, pblk) != *partial_cluster)) {
2318 ext4_free_blocks(handle, inode, NULL,
2319 EXT4_C2B(sbi, *partial_cluster),
2320 sbi->s_cluster_ratio, flags);
2321 *partial_cluster = 0;
2322 }
2323
Alex Tomasa86c6182006-10-11 01:21:03 -07002324#ifdef EXTENTS_STATS
2325 {
2326 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002327 spin_lock(&sbi->s_ext_stats_lock);
2328 sbi->s_ext_blocks += ee_len;
2329 sbi->s_ext_extents++;
2330 if (ee_len < sbi->s_ext_min)
2331 sbi->s_ext_min = ee_len;
2332 if (ee_len > sbi->s_ext_max)
2333 sbi->s_ext_max = ee_len;
2334 if (ext_depth(inode) > sbi->s_depth_max)
2335 sbi->s_depth_max = ext_depth(inode);
2336 spin_unlock(&sbi->s_ext_stats_lock);
2337 }
2338#endif
2339 if (from >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002340 && to == le32_to_cpu(ex->ee_block) + ee_len - 1) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002341 /* tail removal */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002342 ext4_lblk_t num;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002343
Amit Aroraa2df2a62007-07-17 21:42:41 -04002344 num = le32_to_cpu(ex->ee_block) + ee_len - from;
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002345 pblk = ext4_ext_pblock(ex) + ee_len - num;
2346 ext_debug("free last %u blocks starting %llu\n", num, pblk);
2347 ext4_free_blocks(handle, inode, NULL, pblk, num, flags);
2348 /*
2349 * If the block range to be freed didn't start at the
2350 * beginning of a cluster, and we removed the entire
2351 * extent, save the partial cluster here, since we
2352 * might need to delete if we determine that the
2353 * truncate operation has removed all of the blocks in
2354 * the cluster.
2355 */
2356 if (pblk & (sbi->s_cluster_ratio - 1) &&
2357 (ee_len == num))
2358 *partial_cluster = EXT4_B2C(sbi, pblk);
2359 else
2360 *partial_cluster = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002361 } else if (from == le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002362 && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) {
Allison Hendersond583fb82011-05-25 07:41:43 -04002363 /* head removal */
2364 ext4_lblk_t num;
2365 ext4_fsblk_t start;
2366
2367 num = to - from;
2368 start = ext4_ext_pblock(ex);
2369
2370 ext_debug("free first %u blocks starting %llu\n", num, start);
H Hartley Sweetenee90d572011-10-18 11:01:51 -04002371 ext4_free_blocks(handle, inode, NULL, start, num, flags);
Allison Hendersond583fb82011-05-25 07:41:43 -04002372
Alex Tomasa86c6182006-10-11 01:21:03 -07002373 } else {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002374 printk(KERN_INFO "strange request: removal(2) "
2375 "%u-%u from %u:%u\n",
2376 from, to, le32_to_cpu(ex->ee_block), ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07002377 }
2378 return 0;
2379}
2380
Allison Hendersond583fb82011-05-25 07:41:43 -04002381
2382/*
2383 * ext4_ext_rm_leaf() Removes the extents associated with the
2384 * blocks appearing between "start" and "end", and splits the extents
2385 * if "start" and "end" appear in the same extent
2386 *
2387 * @handle: The journal handle
2388 * @inode: The files inode
2389 * @path: The path to the leaf
2390 * @start: The first block to remove
2391 * @end: The last block to remove
2392 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002393static int
2394ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002395 struct ext4_ext_path *path, ext4_fsblk_t *partial_cluster,
2396 ext4_lblk_t start, ext4_lblk_t end)
Alex Tomasa86c6182006-10-11 01:21:03 -07002397{
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002398 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002399 int err = 0, correct_index = 0;
2400 int depth = ext_depth(inode), credits;
2401 struct ext4_extent_header *eh;
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002402 ext4_lblk_t a, b;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002403 unsigned num;
2404 ext4_lblk_t ex_ee_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07002405 unsigned short ex_ee_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04002406 unsigned uninitialized = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002407 struct ext4_extent *ex;
2408
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002409 /* the header must be checked already in ext4_ext_remove_space() */
Lukas Czerner5f95d212012-03-19 23:03:19 -04002410 ext_debug("truncate since %u in leaf to %u\n", start, end);
Alex Tomasa86c6182006-10-11 01:21:03 -07002411 if (!path[depth].p_hdr)
2412 path[depth].p_hdr = ext_block_hdr(path[depth].p_bh);
2413 eh = path[depth].p_hdr;
Frank Mayhar273df552010-03-02 11:46:09 -05002414 if (unlikely(path[depth].p_hdr == NULL)) {
2415 EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth);
2416 return -EIO;
2417 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002418 /* find where to start removing */
2419 ex = EXT_LAST_EXTENT(eh);
2420
2421 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002422 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002423
Aditya Kalid8990242011-09-09 19:18:51 -04002424 trace_ext4_ext_rm_leaf(inode, start, ex, *partial_cluster);
2425
Alex Tomasa86c6182006-10-11 01:21:03 -07002426 while (ex >= EXT_FIRST_EXTENT(eh) &&
2427 ex_ee_block + ex_ee_len > start) {
Aneesh Kumar K.Va41f2072009-06-10 14:22:55 -04002428
2429 if (ext4_ext_is_uninitialized(ex))
2430 uninitialized = 1;
2431 else
2432 uninitialized = 0;
2433
Mingming553f9002009-09-18 13:34:55 -04002434 ext_debug("remove ext %u:[%d]%d\n", ex_ee_block,
2435 uninitialized, ex_ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07002436 path[depth].p_ext = ex;
2437
2438 a = ex_ee_block > start ? ex_ee_block : start;
Allison Hendersond583fb82011-05-25 07:41:43 -04002439 b = ex_ee_block+ex_ee_len - 1 < end ?
2440 ex_ee_block+ex_ee_len - 1 : end;
Alex Tomasa86c6182006-10-11 01:21:03 -07002441
2442 ext_debug(" border %u:%u\n", a, b);
2443
Allison Hendersond583fb82011-05-25 07:41:43 -04002444 /* If this extent is beyond the end of the hole, skip it */
Lukas Czerner5f95d212012-03-19 23:03:19 -04002445 if (end < ex_ee_block) {
Allison Hendersond583fb82011-05-25 07:41:43 -04002446 ex--;
2447 ex_ee_block = le32_to_cpu(ex->ee_block);
2448 ex_ee_len = ext4_ext_get_actual_len(ex);
2449 continue;
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002450 } else if (b != ex_ee_block + ex_ee_len - 1) {
Lukas Czernerdc1841d2012-03-19 23:07:43 -04002451 EXT4_ERROR_INODE(inode,
2452 "can not handle truncate %u:%u "
2453 "on extent %u:%u",
2454 start, end, ex_ee_block,
2455 ex_ee_block + ex_ee_len - 1);
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002456 err = -EIO;
2457 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07002458 } else if (a != ex_ee_block) {
2459 /* remove tail of the extent */
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002460 num = a - ex_ee_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07002461 } else {
2462 /* remove whole extent: excellent! */
Alex Tomasa86c6182006-10-11 01:21:03 -07002463 num = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002464 }
Theodore Ts'o34071da2008-08-01 21:59:19 -04002465 /*
2466 * 3 for leaf, sb, and inode plus 2 (bmap and group
2467 * descriptor) for each block group; assume two block
2468 * groups plus ex_ee_len/blocks_per_block_group for
2469 * the worst case
2470 */
2471 credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb));
Alex Tomasa86c6182006-10-11 01:21:03 -07002472 if (ex == EXT_FIRST_EXTENT(eh)) {
2473 correct_index = 1;
2474 credits += (ext_depth(inode)) + 1;
2475 }
Dmitry Monakhov5aca07e2009-12-08 22:42:15 -05002476 credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002477
Jan Kara487caee2009-08-17 22:17:20 -04002478 err = ext4_ext_truncate_extend_restart(handle, inode, credits);
Shen Feng9102e4f2008-07-11 19:27:31 -04002479 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002480 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07002481
2482 err = ext4_ext_get_access(handle, inode, path + depth);
2483 if (err)
2484 goto out;
2485
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002486 err = ext4_remove_blocks(handle, inode, ex, partial_cluster,
2487 a, b);
Alex Tomasa86c6182006-10-11 01:21:03 -07002488 if (err)
2489 goto out;
2490
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002491 if (num == 0)
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002492 /* this extent is removed; mark slot entirely unused */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002493 ext4_ext_store_pblock(ex, 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07002494
Alex Tomasa86c6182006-10-11 01:21:03 -07002495 ex->ee_len = cpu_to_le16(num);
Amit Arora749269f2007-07-18 09:02:56 -04002496 /*
2497 * Do not mark uninitialized if all the blocks in the
2498 * extent have been removed.
2499 */
2500 if (uninitialized && num)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002501 ext4_ext_mark_uninitialized(ex);
Allison Hendersond583fb82011-05-25 07:41:43 -04002502 /*
2503 * If the extent was completely released,
2504 * we need to remove it from the leaf
2505 */
2506 if (num == 0) {
Lukas Czernerf17722f2011-06-06 00:05:17 -04002507 if (end != EXT_MAX_BLOCKS - 1) {
Allison Hendersond583fb82011-05-25 07:41:43 -04002508 /*
2509 * For hole punching, we need to scoot all the
2510 * extents up when an extent is removed so that
2511 * we dont have blank extents in the middle
2512 */
2513 memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) *
2514 sizeof(struct ext4_extent));
2515
2516 /* Now get rid of the one at the end */
2517 memset(EXT_LAST_EXTENT(eh), 0,
2518 sizeof(struct ext4_extent));
2519 }
2520 le16_add_cpu(&eh->eh_entries, -1);
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002521 } else
2522 *partial_cluster = 0;
Allison Hendersond583fb82011-05-25 07:41:43 -04002523
Dmitry Monakhov750c9c42011-10-25 05:35:05 -04002524 err = ext4_ext_dirty(handle, inode, path + depth);
2525 if (err)
2526 goto out;
2527
Yongqiang Yangbf52c6f2011-11-01 18:59:26 -04002528 ext_debug("new extent: %u:%u:%llu\n", ex_ee_block, num,
Theodore Ts'obf89d162010-10-27 21:30:14 -04002529 ext4_ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -07002530 ex--;
2531 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002532 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002533 }
2534
2535 if (correct_index && eh->eh_entries)
2536 err = ext4_ext_correct_indexes(handle, inode, path);
2537
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002538 /*
2539 * If there is still a entry in the leaf node, check to see if
2540 * it references the partial cluster. This is the only place
2541 * where it could; if it doesn't, we can free the cluster.
2542 */
2543 if (*partial_cluster && ex >= EXT_FIRST_EXTENT(eh) &&
2544 (EXT4_B2C(sbi, ext4_ext_pblock(ex) + ex_ee_len - 1) !=
2545 *partial_cluster)) {
2546 int flags = EXT4_FREE_BLOCKS_FORGET;
2547
2548 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
2549 flags |= EXT4_FREE_BLOCKS_METADATA;
2550
2551 ext4_free_blocks(handle, inode, NULL,
2552 EXT4_C2B(sbi, *partial_cluster),
2553 sbi->s_cluster_ratio, flags);
2554 *partial_cluster = 0;
2555 }
2556
Alex Tomasa86c6182006-10-11 01:21:03 -07002557 /* if this leaf is free, then we should
2558 * remove it from index block above */
2559 if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL)
2560 err = ext4_ext_rm_idx(handle, inode, path + depth);
2561
2562out:
2563 return err;
2564}
2565
2566/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002567 * ext4_ext_more_to_rm:
2568 * returns 1 if current index has to be freed (even partial)
Alex Tomasa86c6182006-10-11 01:21:03 -07002569 */
Avantika Mathur09b88252006-12-06 20:41:36 -08002570static int
Alex Tomasa86c6182006-10-11 01:21:03 -07002571ext4_ext_more_to_rm(struct ext4_ext_path *path)
2572{
2573 BUG_ON(path->p_idx == NULL);
2574
2575 if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr))
2576 return 0;
2577
2578 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002579 * if truncate on deeper level happened, it wasn't partial,
Alex Tomasa86c6182006-10-11 01:21:03 -07002580 * so we have to consider current index for truncation
2581 */
2582 if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block)
2583 return 0;
2584 return 1;
2585}
2586
Lukas Czerner5f95d212012-03-19 23:03:19 -04002587static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
2588 ext4_lblk_t end)
Alex Tomasa86c6182006-10-11 01:21:03 -07002589{
2590 struct super_block *sb = inode->i_sb;
2591 int depth = ext_depth(inode);
Ashish Sangwan968dee72012-07-22 22:49:08 -04002592 struct ext4_ext_path *path = NULL;
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002593 ext4_fsblk_t partial_cluster = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002594 handle_t *handle;
Dmitry Monakhov6f2080e2012-09-30 23:03:50 -04002595 int i = 0, err = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002596
Lukas Czerner5f95d212012-03-19 23:03:19 -04002597 ext_debug("truncate since %u to %u\n", start, end);
Alex Tomasa86c6182006-10-11 01:21:03 -07002598
2599 /* probably first extent we're gonna free will be last in block */
2600 handle = ext4_journal_start(inode, depth + 1);
2601 if (IS_ERR(handle))
2602 return PTR_ERR(handle);
2603
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002604again:
Alex Tomasa86c6182006-10-11 01:21:03 -07002605 ext4_ext_invalidate_cache(inode);
2606
Aditya Kalid8990242011-09-09 19:18:51 -04002607 trace_ext4_ext_remove_space(inode, start, depth);
2608
Alex Tomasa86c6182006-10-11 01:21:03 -07002609 /*
Lukas Czerner5f95d212012-03-19 23:03:19 -04002610 * Check if we are removing extents inside the extent tree. If that
2611 * is the case, we are going to punch a hole inside the extent tree
2612 * so we have to check whether we need to split the extent covering
2613 * the last block to remove so we can easily remove the part of it
2614 * in ext4_ext_rm_leaf().
2615 */
2616 if (end < EXT_MAX_BLOCKS - 1) {
2617 struct ext4_extent *ex;
2618 ext4_lblk_t ee_block;
2619
2620 /* find extent for this block */
2621 path = ext4_ext_find_extent(inode, end, NULL);
2622 if (IS_ERR(path)) {
2623 ext4_journal_stop(handle);
2624 return PTR_ERR(path);
2625 }
2626 depth = ext_depth(inode);
Dmitry Monakhov6f2080e2012-09-30 23:03:50 -04002627 /* Leaf not may not exist only if inode has no blocks at all */
Lukas Czerner5f95d212012-03-19 23:03:19 -04002628 ex = path[depth].p_ext;
Ashish Sangwan968dee72012-07-22 22:49:08 -04002629 if (!ex) {
Dmitry Monakhov6f2080e2012-09-30 23:03:50 -04002630 if (depth) {
2631 EXT4_ERROR_INODE(inode,
2632 "path[%d].p_hdr == NULL",
2633 depth);
2634 err = -EIO;
2635 }
2636 goto out;
Ashish Sangwan968dee72012-07-22 22:49:08 -04002637 }
Lukas Czerner5f95d212012-03-19 23:03:19 -04002638
2639 ee_block = le32_to_cpu(ex->ee_block);
2640
2641 /*
2642 * See if the last block is inside the extent, if so split
2643 * the extent at 'end' block so we can easily remove the
2644 * tail of the first part of the split extent in
2645 * ext4_ext_rm_leaf().
2646 */
2647 if (end >= ee_block &&
2648 end < ee_block + ext4_ext_get_actual_len(ex) - 1) {
2649 int split_flag = 0;
2650
2651 if (ext4_ext_is_uninitialized(ex))
2652 split_flag = EXT4_EXT_MARK_UNINIT1 |
2653 EXT4_EXT_MARK_UNINIT2;
2654
2655 /*
2656 * Split the extent in two so that 'end' is the last
2657 * block in the first new extent
2658 */
2659 err = ext4_split_extent_at(handle, inode, path,
2660 end + 1, split_flag,
2661 EXT4_GET_BLOCKS_PRE_IO |
2662 EXT4_GET_BLOCKS_PUNCH_OUT_EXT);
2663
2664 if (err < 0)
2665 goto out;
2666 }
Lukas Czerner5f95d212012-03-19 23:03:19 -04002667 }
Lukas Czerner5f95d212012-03-19 23:03:19 -04002668 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002669 * We start scanning from right side, freeing all the blocks
2670 * after i_size and walking into the tree depth-wise.
Alex Tomasa86c6182006-10-11 01:21:03 -07002671 */
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002672 depth = ext_depth(inode);
Ashish Sangwan968dee72012-07-22 22:49:08 -04002673 if (path) {
2674 int k = i = depth;
2675 while (--k > 0)
2676 path[k].p_block =
2677 le16_to_cpu(path[k].p_hdr->eh_entries)+1;
2678 } else {
2679 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1),
2680 GFP_NOFS);
2681 if (path == NULL) {
2682 ext4_journal_stop(handle);
2683 return -ENOMEM;
2684 }
2685 path[0].p_depth = depth;
2686 path[0].p_hdr = ext_inode_hdr(inode);
Theodore Ts'o89a4e482012-08-17 08:54:52 -04002687 i = 0;
Lukas Czerner5f95d212012-03-19 23:03:19 -04002688
Ashish Sangwan968dee72012-07-22 22:49:08 -04002689 if (ext4_ext_check(inode, path[0].p_hdr, depth)) {
2690 err = -EIO;
2691 goto out;
2692 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002693 }
Ashish Sangwan968dee72012-07-22 22:49:08 -04002694 err = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07002695
2696 while (i >= 0 && err == 0) {
2697 if (i == depth) {
2698 /* this is leaf block */
Allison Hendersond583fb82011-05-25 07:41:43 -04002699 err = ext4_ext_rm_leaf(handle, inode, path,
Theodore Ts'o0aa06002011-09-09 18:54:51 -04002700 &partial_cluster, start,
Lukas Czerner5f95d212012-03-19 23:03:19 -04002701 end);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002702 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002703 brelse(path[i].p_bh);
2704 path[i].p_bh = NULL;
2705 i--;
2706 continue;
2707 }
2708
2709 /* this is index block */
2710 if (!path[i].p_hdr) {
2711 ext_debug("initialize header\n");
2712 path[i].p_hdr = ext_block_hdr(path[i].p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -07002713 }
2714
Alex Tomasa86c6182006-10-11 01:21:03 -07002715 if (!path[i].p_idx) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002716 /* this level hasn't been touched yet */
Alex Tomasa86c6182006-10-11 01:21:03 -07002717 path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr);
2718 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1;
2719 ext_debug("init index ptr: hdr 0x%p, num %d\n",
2720 path[i].p_hdr,
2721 le16_to_cpu(path[i].p_hdr->eh_entries));
2722 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002723 /* we were already here, see at next index */
Alex Tomasa86c6182006-10-11 01:21:03 -07002724 path[i].p_idx--;
2725 }
2726
2727 ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
2728 i, EXT_FIRST_INDEX(path[i].p_hdr),
2729 path[i].p_idx);
2730 if (ext4_ext_more_to_rm(path + i)) {
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002731 struct buffer_head *bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002732 /* go to the next level */
Mingming Cao2ae02102006-10-11 01:21:11 -07002733 ext_debug("move to level %d (block %llu)\n",
Theodore Ts'obf89d162010-10-27 21:30:14 -04002734 i + 1, ext4_idx_pblock(path[i].p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -07002735 memset(path + i + 1, 0, sizeof(*path));
Theodore Ts'obf89d162010-10-27 21:30:14 -04002736 bh = sb_bread(sb, ext4_idx_pblock(path[i].p_idx));
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002737 if (!bh) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002738 /* should we reset i_size? */
2739 err = -EIO;
2740 break;
2741 }
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002742 if (WARN_ON(i + 1 > depth)) {
2743 err = -EIO;
2744 break;
2745 }
Darrick J. Wongf8489122012-04-29 18:21:10 -04002746 if (ext4_ext_check_block(inode, ext_block_hdr(bh),
2747 depth - i - 1, bh)) {
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002748 err = -EIO;
2749 break;
2750 }
2751 path[i + 1].p_bh = bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002752
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002753 /* save actual number of indexes since this
2754 * number is changed at the next iteration */
Alex Tomasa86c6182006-10-11 01:21:03 -07002755 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries);
2756 i++;
2757 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002758 /* we finished processing this index, go up */
Alex Tomasa86c6182006-10-11 01:21:03 -07002759 if (path[i].p_hdr->eh_entries == 0 && i > 0) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002760 /* index is empty, remove it;
Alex Tomasa86c6182006-10-11 01:21:03 -07002761 * handle must be already prepared by the
2762 * truncatei_leaf() */
2763 err = ext4_ext_rm_idx(handle, inode, path + i);
2764 }
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002765 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002766 brelse(path[i].p_bh);
2767 path[i].p_bh = NULL;
2768 i--;
2769 ext_debug("return to level %d\n", i);
2770 }
2771 }
2772
Aditya Kalid8990242011-09-09 19:18:51 -04002773 trace_ext4_ext_remove_space_done(inode, start, depth, partial_cluster,
2774 path->p_hdr->eh_entries);
2775
Aditya Kali7b415bf2011-09-09 19:04:51 -04002776 /* If we still have something in the partial cluster and we have removed
2777 * even the first extent, then we should free the blocks in the partial
2778 * cluster as well. */
2779 if (partial_cluster && path->p_hdr->eh_entries == 0) {
2780 int flags = EXT4_FREE_BLOCKS_FORGET;
2781
2782 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
2783 flags |= EXT4_FREE_BLOCKS_METADATA;
2784
2785 ext4_free_blocks(handle, inode, NULL,
2786 EXT4_C2B(EXT4_SB(sb), partial_cluster),
2787 EXT4_SB(sb)->s_cluster_ratio, flags);
2788 partial_cluster = 0;
2789 }
2790
Alex Tomasa86c6182006-10-11 01:21:03 -07002791 /* TODO: flexible tree reduction should be here */
2792 if (path->p_hdr->eh_entries == 0) {
2793 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002794 * truncate to zero freed all the tree,
2795 * so we need to correct eh_depth
Alex Tomasa86c6182006-10-11 01:21:03 -07002796 */
2797 err = ext4_ext_get_access(handle, inode, path);
2798 if (err == 0) {
2799 ext_inode_hdr(inode)->eh_depth = 0;
2800 ext_inode_hdr(inode)->eh_max =
Theodore Ts'o55ad63b2009-08-28 10:40:33 -04002801 cpu_to_le16(ext4_ext_space_root(inode, 0));
Alex Tomasa86c6182006-10-11 01:21:03 -07002802 err = ext4_ext_dirty(handle, inode, path);
2803 }
2804 }
2805out:
Alex Tomasa86c6182006-10-11 01:21:03 -07002806 ext4_ext_drop_refs(path);
2807 kfree(path);
Ashish Sangwan968dee72012-07-22 22:49:08 -04002808 if (err == -EAGAIN) {
2809 path = NULL;
Dmitry Monakhov0617b832010-05-17 01:00:00 -04002810 goto again;
Ashish Sangwan968dee72012-07-22 22:49:08 -04002811 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002812 ext4_journal_stop(handle);
2813
2814 return err;
2815}
2816
2817/*
2818 * called at mount time
2819 */
2820void ext4_ext_init(struct super_block *sb)
2821{
2822 /*
2823 * possible initialization would be here
2824 */
2825
Theodore Ts'o83982b62009-01-06 14:53:16 -05002826 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Theodore Ts'o90576c02009-09-29 15:51:30 -04002827#if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS)
Theodore Ts'o92b97812012-03-19 23:41:49 -04002828 printk(KERN_INFO "EXT4-fs: file extents enabled"
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01002829#ifdef AGGRESSIVE_TEST
Theodore Ts'o92b97812012-03-19 23:41:49 -04002830 ", aggressive tests"
Alex Tomasa86c6182006-10-11 01:21:03 -07002831#endif
2832#ifdef CHECK_BINSEARCH
Theodore Ts'o92b97812012-03-19 23:41:49 -04002833 ", check binsearch"
Alex Tomasa86c6182006-10-11 01:21:03 -07002834#endif
2835#ifdef EXTENTS_STATS
Theodore Ts'o92b97812012-03-19 23:41:49 -04002836 ", stats"
Alex Tomasa86c6182006-10-11 01:21:03 -07002837#endif
Theodore Ts'o92b97812012-03-19 23:41:49 -04002838 "\n");
Theodore Ts'o90576c02009-09-29 15:51:30 -04002839#endif
Alex Tomasa86c6182006-10-11 01:21:03 -07002840#ifdef EXTENTS_STATS
2841 spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock);
2842 EXT4_SB(sb)->s_ext_min = 1 << 30;
2843 EXT4_SB(sb)->s_ext_max = 0;
2844#endif
2845 }
2846}
2847
2848/*
2849 * called at umount time
2850 */
2851void ext4_ext_release(struct super_block *sb)
2852{
Theodore Ts'o83982b62009-01-06 14:53:16 -05002853 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
Alex Tomasa86c6182006-10-11 01:21:03 -07002854 return;
2855
2856#ifdef EXTENTS_STATS
2857 if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) {
2858 struct ext4_sb_info *sbi = EXT4_SB(sb);
2859 printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
2860 sbi->s_ext_blocks, sbi->s_ext_extents,
2861 sbi->s_ext_blocks / sbi->s_ext_extents);
2862 printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
2863 sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max);
2864 }
2865#endif
2866}
2867
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002868/* FIXME!! we need to try to merge to left or right after zero-out */
2869static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
2870{
Lukas Czerner24075182010-10-27 21:30:06 -04002871 ext4_fsblk_t ee_pblock;
2872 unsigned int ee_len;
Jing Zhangb7203032010-05-12 00:00:00 -04002873 int ret;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002874
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002875 ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'obf89d162010-10-27 21:30:14 -04002876 ee_pblock = ext4_ext_pblock(ex);
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002877
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04002878 ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS);
Lukas Czerner24075182010-10-27 21:30:06 -04002879 if (ret > 0)
2880 ret = 0;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002881
Lukas Czerner24075182010-10-27 21:30:06 -04002882 return ret;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002883}
2884
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002885/*
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002886 * ext4_split_extent_at() splits an extent at given block.
2887 *
2888 * @handle: the journal handle
2889 * @inode: the file inode
2890 * @path: the path to the extent
2891 * @split: the logical block where the extent is splitted.
2892 * @split_flags: indicates if the extent could be zeroout if split fails, and
2893 * the states(init or uninit) of new extents.
2894 * @flags: flags used to insert new extent to extent tree.
2895 *
2896 *
2897 * Splits extent [a, b] into two extents [a, @split) and [@split, b], states
2898 * of which are deterimined by split_flag.
2899 *
2900 * There are two cases:
2901 * a> the extent are splitted into two extent.
2902 * b> split is not needed, and just mark the extent.
2903 *
2904 * return 0 on success.
2905 */
2906static int ext4_split_extent_at(handle_t *handle,
2907 struct inode *inode,
2908 struct ext4_ext_path *path,
2909 ext4_lblk_t split,
2910 int split_flag,
2911 int flags)
2912{
2913 ext4_fsblk_t newblock;
2914 ext4_lblk_t ee_block;
2915 struct ext4_extent *ex, newex, orig_ex;
2916 struct ext4_extent *ex2 = NULL;
2917 unsigned int ee_len, depth;
2918 int err = 0;
2919
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04002920 BUG_ON((split_flag & (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2)) ==
2921 (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2));
2922
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002923 ext_debug("ext4_split_extents_at: inode %lu, logical"
2924 "block %llu\n", inode->i_ino, (unsigned long long)split);
2925
2926 ext4_ext_show_leaf(inode, path);
2927
2928 depth = ext_depth(inode);
2929 ex = path[depth].p_ext;
2930 ee_block = le32_to_cpu(ex->ee_block);
2931 ee_len = ext4_ext_get_actual_len(ex);
2932 newblock = split - ee_block + ext4_ext_pblock(ex);
2933
2934 BUG_ON(split < ee_block || split >= (ee_block + ee_len));
2935
2936 err = ext4_ext_get_access(handle, inode, path + depth);
2937 if (err)
2938 goto out;
2939
2940 if (split == ee_block) {
2941 /*
2942 * case b: block @split is the block that the extent begins with
2943 * then we just change the state of the extent, and splitting
2944 * is not needed.
2945 */
2946 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2947 ext4_ext_mark_uninitialized(ex);
2948 else
2949 ext4_ext_mark_initialized(ex);
2950
2951 if (!(flags & EXT4_GET_BLOCKS_PRE_IO))
Theodore Ts'oecb94f52012-08-17 09:44:17 -04002952 ext4_ext_try_to_merge(handle, inode, path, ex);
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002953
Theodore Ts'oecb94f52012-08-17 09:44:17 -04002954 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002955 goto out;
2956 }
2957
2958 /* case a */
2959 memcpy(&orig_ex, ex, sizeof(orig_ex));
2960 ex->ee_len = cpu_to_le16(split - ee_block);
2961 if (split_flag & EXT4_EXT_MARK_UNINIT1)
2962 ext4_ext_mark_uninitialized(ex);
2963
2964 /*
2965 * path may lead to new leaf, not to original leaf any more
2966 * after ext4_ext_insert_extent() returns,
2967 */
2968 err = ext4_ext_dirty(handle, inode, path + depth);
2969 if (err)
2970 goto fix_extent_len;
2971
2972 ex2 = &newex;
2973 ex2->ee_block = cpu_to_le32(split);
2974 ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block));
2975 ext4_ext_store_pblock(ex2, newblock);
2976 if (split_flag & EXT4_EXT_MARK_UNINIT2)
2977 ext4_ext_mark_uninitialized(ex2);
2978
2979 err = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
2980 if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04002981 if (split_flag & (EXT4_EXT_DATA_VALID1|EXT4_EXT_DATA_VALID2)) {
2982 if (split_flag & EXT4_EXT_DATA_VALID1)
2983 err = ext4_ext_zeroout(inode, ex2);
2984 else
2985 err = ext4_ext_zeroout(inode, ex);
2986 } else
2987 err = ext4_ext_zeroout(inode, &orig_ex);
2988
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002989 if (err)
2990 goto fix_extent_len;
2991 /* update the extent length and mark as initialized */
Al Viroaf1584f2012-04-12 20:32:25 -04002992 ex->ee_len = cpu_to_le16(ee_len);
Theodore Ts'oecb94f52012-08-17 09:44:17 -04002993 ext4_ext_try_to_merge(handle, inode, path, ex);
2994 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04002995 goto out;
2996 } else if (err)
2997 goto fix_extent_len;
2998
2999out:
3000 ext4_ext_show_leaf(inode, path);
3001 return err;
3002
3003fix_extent_len:
3004 ex->ee_len = orig_ex.ee_len;
3005 ext4_ext_dirty(handle, inode, path + depth);
3006 return err;
3007}
3008
3009/*
3010 * ext4_split_extents() splits an extent and mark extent which is covered
3011 * by @map as split_flags indicates
3012 *
3013 * It may result in splitting the extent into multiple extents (upto three)
3014 * There are three possibilities:
3015 * a> There is no split required
3016 * b> Splits in two extents: Split is happening at either end of the extent
3017 * c> Splits in three extents: Somone is splitting in middle of the extent
3018 *
3019 */
3020static int ext4_split_extent(handle_t *handle,
3021 struct inode *inode,
3022 struct ext4_ext_path *path,
3023 struct ext4_map_blocks *map,
3024 int split_flag,
3025 int flags)
3026{
3027 ext4_lblk_t ee_block;
3028 struct ext4_extent *ex;
3029 unsigned int ee_len, depth;
3030 int err = 0;
3031 int uninitialized;
3032 int split_flag1, flags1;
3033
3034 depth = ext_depth(inode);
3035 ex = path[depth].p_ext;
3036 ee_block = le32_to_cpu(ex->ee_block);
3037 ee_len = ext4_ext_get_actual_len(ex);
3038 uninitialized = ext4_ext_is_uninitialized(ex);
3039
3040 if (map->m_lblk + map->m_len < ee_block + ee_len) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003041 split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003042 flags1 = flags | EXT4_GET_BLOCKS_PRE_IO;
3043 if (uninitialized)
3044 split_flag1 |= EXT4_EXT_MARK_UNINIT1 |
3045 EXT4_EXT_MARK_UNINIT2;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003046 if (split_flag & EXT4_EXT_DATA_VALID2)
3047 split_flag1 |= EXT4_EXT_DATA_VALID1;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003048 err = ext4_split_extent_at(handle, inode, path,
3049 map->m_lblk + map->m_len, split_flag1, flags1);
Yongqiang Yang93917412011-05-22 20:49:12 -04003050 if (err)
3051 goto out;
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003052 }
3053
3054 ext4_ext_drop_refs(path);
3055 path = ext4_ext_find_extent(inode, map->m_lblk, path);
3056 if (IS_ERR(path))
3057 return PTR_ERR(path);
3058
3059 if (map->m_lblk >= ee_block) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003060 split_flag1 = split_flag & (EXT4_EXT_MAY_ZEROOUT |
3061 EXT4_EXT_DATA_VALID2);
Yongqiang Yang47ea3bb2011-05-03 12:23:07 -04003062 if (uninitialized)
3063 split_flag1 |= EXT4_EXT_MARK_UNINIT1;
3064 if (split_flag & EXT4_EXT_MARK_UNINIT2)
3065 split_flag1 |= EXT4_EXT_MARK_UNINIT2;
3066 err = ext4_split_extent_at(handle, inode, path,
3067 map->m_lblk, split_flag1, flags);
3068 if (err)
3069 goto out;
3070 }
3071
3072 ext4_ext_show_leaf(inode, path);
3073out:
3074 return err ? err : map->m_len;
3075}
3076
Amit Arora56055d32007-07-17 21:42:38 -04003077/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003078 * This function is called by ext4_ext_map_blocks() if someone tries to write
Amit Arora56055d32007-07-17 21:42:38 -04003079 * to an uninitialized extent. It may result in splitting the uninitialized
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003080 * extent into multiple extents (up to three - one initialized and two
Amit Arora56055d32007-07-17 21:42:38 -04003081 * uninitialized).
3082 * There are three possibilities:
3083 * a> There is no split required: Entire extent should be initialized
3084 * b> Splits in two extents: Write is happening at either end of the extent
3085 * c> Splits in three extents: Somone is writing in middle of the extent
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003086 *
3087 * Pre-conditions:
3088 * - The extent pointed to by 'path' is uninitialized.
3089 * - The extent pointed to by 'path' contains a superset
3090 * of the logical span [map->m_lblk, map->m_lblk + map->m_len).
3091 *
3092 * Post-conditions on success:
3093 * - the returned value is the number of blocks beyond map->l_lblk
3094 * that are allocated and initialized.
3095 * It is guaranteed to be >= map->m_len.
Amit Arora56055d32007-07-17 21:42:38 -04003096 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003097static int ext4_ext_convert_to_initialized(handle_t *handle,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003098 struct inode *inode,
3099 struct ext4_map_blocks *map,
3100 struct ext4_ext_path *path)
Amit Arora56055d32007-07-17 21:42:38 -04003101{
Zheng Liu67a5da52012-08-17 09:54:17 -04003102 struct ext4_sb_info *sbi;
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003103 struct ext4_extent_header *eh;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003104 struct ext4_map_blocks split_map;
3105 struct ext4_extent zero_ex;
3106 struct ext4_extent *ex;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003107 ext4_lblk_t ee_block, eof_block;
Dan Carpenterf85b2872011-10-26 03:42:36 -04003108 unsigned int ee_len, depth;
Zheng Liu67a5da52012-08-17 09:54:17 -04003109 int allocated, max_zeroout = 0;
Amit Arora56055d32007-07-17 21:42:38 -04003110 int err = 0;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003111 int split_flag = 0;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003112
3113 ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical"
3114 "block %llu, max_blocks %u\n", inode->i_ino,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003115 (unsigned long long)map->m_lblk, map->m_len);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003116
Zheng Liu67a5da52012-08-17 09:54:17 -04003117 sbi = EXT4_SB(inode->i_sb);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003118 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
3119 inode->i_sb->s_blocksize_bits;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003120 if (eof_block < map->m_lblk + map->m_len)
3121 eof_block = map->m_lblk + map->m_len;
Amit Arora56055d32007-07-17 21:42:38 -04003122
3123 depth = ext_depth(inode);
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003124 eh = path[depth].p_hdr;
Amit Arora56055d32007-07-17 21:42:38 -04003125 ex = path[depth].p_ext;
3126 ee_block = le32_to_cpu(ex->ee_block);
3127 ee_len = ext4_ext_get_actual_len(ex);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003128 allocated = ee_len - (map->m_lblk - ee_block);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003129
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003130 trace_ext4_ext_convert_to_initialized_enter(inode, map, ex);
3131
3132 /* Pre-conditions */
3133 BUG_ON(!ext4_ext_is_uninitialized(ex));
3134 BUG_ON(!in_range(map->m_lblk, ee_block, ee_len));
Eric Gouriou6f91bc52011-10-27 11:43:23 -04003135
3136 /*
3137 * Attempt to transfer newly initialized blocks from the currently
3138 * uninitialized extent to its left neighbor. This is much cheaper
3139 * than an insertion followed by a merge as those involve costly
3140 * memmove() calls. This is the common case in steady state for
3141 * workloads doing fallocate(FALLOC_FL_KEEP_SIZE) followed by append
3142 * writes.
3143 *
3144 * Limitations of the current logic:
3145 * - L1: we only deal with writes at the start of the extent.
3146 * The approach could be extended to writes at the end
3147 * of the extent but this scenario was deemed less common.
3148 * - L2: we do not deal with writes covering the whole extent.
3149 * This would require removing the extent if the transfer
3150 * is possible.
3151 * - L3: we only attempt to merge with an extent stored in the
3152 * same extent tree node.
3153 */
3154 if ((map->m_lblk == ee_block) && /*L1*/
3155 (map->m_len < ee_len) && /*L2*/
3156 (ex > EXT_FIRST_EXTENT(eh))) { /*L3*/
3157 struct ext4_extent *prev_ex;
3158 ext4_lblk_t prev_lblk;
3159 ext4_fsblk_t prev_pblk, ee_pblk;
3160 unsigned int prev_len, write_len;
3161
3162 prev_ex = ex - 1;
3163 prev_lblk = le32_to_cpu(prev_ex->ee_block);
3164 prev_len = ext4_ext_get_actual_len(prev_ex);
3165 prev_pblk = ext4_ext_pblock(prev_ex);
3166 ee_pblk = ext4_ext_pblock(ex);
3167 write_len = map->m_len;
3168
3169 /*
3170 * A transfer of blocks from 'ex' to 'prev_ex' is allowed
3171 * upon those conditions:
3172 * - C1: prev_ex is initialized,
3173 * - C2: prev_ex is logically abutting ex,
3174 * - C3: prev_ex is physically abutting ex,
3175 * - C4: prev_ex can receive the additional blocks without
3176 * overflowing the (initialized) length limit.
3177 */
3178 if ((!ext4_ext_is_uninitialized(prev_ex)) && /*C1*/
3179 ((prev_lblk + prev_len) == ee_block) && /*C2*/
3180 ((prev_pblk + prev_len) == ee_pblk) && /*C3*/
3181 (prev_len < (EXT_INIT_MAX_LEN - write_len))) { /*C4*/
3182 err = ext4_ext_get_access(handle, inode, path + depth);
3183 if (err)
3184 goto out;
3185
3186 trace_ext4_ext_convert_to_initialized_fastpath(inode,
3187 map, ex, prev_ex);
3188
3189 /* Shift the start of ex by 'write_len' blocks */
3190 ex->ee_block = cpu_to_le32(ee_block + write_len);
3191 ext4_ext_store_pblock(ex, ee_pblk + write_len);
3192 ex->ee_len = cpu_to_le16(ee_len - write_len);
3193 ext4_ext_mark_uninitialized(ex); /* Restore the flag */
3194
3195 /* Extend prev_ex by 'write_len' blocks */
3196 prev_ex->ee_len = cpu_to_le16(prev_len + write_len);
3197
3198 /* Mark the block containing both extents as dirty */
3199 ext4_ext_dirty(handle, inode, path + depth);
3200
3201 /* Update path to point to the right extent */
3202 path[depth].p_ext = prev_ex;
3203
3204 /* Result: number of initialized blocks past m_lblk */
3205 allocated = write_len;
3206 goto out;
3207 }
3208 }
3209
Yongqiang Yang667eff32011-05-03 12:25:07 -04003210 WARN_ON(map->m_lblk < ee_block);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003211 /*
3212 * It is safe to convert extent to initialized via explicit
3213 * zeroout only if extent is fully insde i_size or new_size.
3214 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04003215 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003216
Zheng Liu67a5da52012-08-17 09:54:17 -04003217 if (EXT4_EXT_MAY_ZEROOUT & split_flag)
3218 max_zeroout = sbi->s_extent_max_zeroout_kb >>
3219 inode->i_sb->s_blocksize_bits;
3220
3221 /* If extent is less than s_max_zeroout_kb, zeroout directly */
3222 if (max_zeroout && (ee_len <= max_zeroout)) {
Yongqiang Yang667eff32011-05-03 12:25:07 -04003223 err = ext4_ext_zeroout(inode, ex);
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04003224 if (err)
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04003225 goto out;
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04003226
3227 err = ext4_ext_get_access(handle, inode, path + depth);
3228 if (err)
3229 goto out;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003230 ext4_ext_mark_initialized(ex);
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003231 ext4_ext_try_to_merge(handle, inode, path, ex);
3232 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Yongqiang Yang667eff32011-05-03 12:25:07 -04003233 goto out;
Amit Arora56055d32007-07-17 21:42:38 -04003234 }
Yongqiang Yang667eff32011-05-03 12:25:07 -04003235
Amit Arora56055d32007-07-17 21:42:38 -04003236 /*
Yongqiang Yang667eff32011-05-03 12:25:07 -04003237 * four cases:
3238 * 1. split the extent into three extents.
3239 * 2. split the extent into two extents, zeroout the first half.
3240 * 3. split the extent into two extents, zeroout the second half.
3241 * 4. split the extent into two extents with out zeroout.
Amit Arora56055d32007-07-17 21:42:38 -04003242 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04003243 split_map.m_lblk = map->m_lblk;
3244 split_map.m_len = map->m_len;
3245
Zheng Liu67a5da52012-08-17 09:54:17 -04003246 if (max_zeroout && (allocated > map->m_len)) {
3247 if (allocated <= max_zeroout) {
Yongqiang Yang667eff32011-05-03 12:25:07 -04003248 /* case 3 */
3249 zero_ex.ee_block =
Allison Henderson9b940f82011-05-16 10:11:09 -04003250 cpu_to_le32(map->m_lblk);
3251 zero_ex.ee_len = cpu_to_le16(allocated);
Yongqiang Yang667eff32011-05-03 12:25:07 -04003252 ext4_ext_store_pblock(&zero_ex,
3253 ext4_ext_pblock(ex) + map->m_lblk - ee_block);
3254 err = ext4_ext_zeroout(inode, &zero_ex);
Amit Arora56055d32007-07-17 21:42:38 -04003255 if (err)
3256 goto out;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003257 split_map.m_lblk = map->m_lblk;
3258 split_map.m_len = allocated;
Zheng Liu67a5da52012-08-17 09:54:17 -04003259 } else if (map->m_lblk - ee_block + map->m_len < max_zeroout) {
Yongqiang Yang667eff32011-05-03 12:25:07 -04003260 /* case 2 */
3261 if (map->m_lblk != ee_block) {
3262 zero_ex.ee_block = ex->ee_block;
3263 zero_ex.ee_len = cpu_to_le16(map->m_lblk -
3264 ee_block);
3265 ext4_ext_store_pblock(&zero_ex,
3266 ext4_ext_pblock(ex));
3267 err = ext4_ext_zeroout(inode, &zero_ex);
3268 if (err)
3269 goto out;
3270 }
3271
Yongqiang Yang667eff32011-05-03 12:25:07 -04003272 split_map.m_lblk = ee_block;
Allison Henderson9b940f82011-05-16 10:11:09 -04003273 split_map.m_len = map->m_lblk - ee_block + map->m_len;
3274 allocated = map->m_len;
Amit Arora56055d32007-07-17 21:42:38 -04003275 }
3276 }
Yongqiang Yang667eff32011-05-03 12:25:07 -04003277
3278 allocated = ext4_split_extent(handle, inode, path,
Zheng Liu67a5da52012-08-17 09:54:17 -04003279 &split_map, split_flag, 0);
Yongqiang Yang667eff32011-05-03 12:25:07 -04003280 if (allocated < 0)
3281 err = allocated;
3282
Amit Arora56055d32007-07-17 21:42:38 -04003283out:
3284 return err ? err : allocated;
3285}
3286
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05003287/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003288 * This function is called by ext4_ext_map_blocks() from
Mingming Cao00314622009-09-28 15:49:08 -04003289 * ext4_get_blocks_dio_write() when DIO to write
3290 * to an uninitialized extent.
3291 *
Paul Bollefd018fe2011-02-15 00:05:43 +01003292 * Writing to an uninitialized extent may result in splitting the uninitialized
Wang Sheng-Hui30cb27d2012-08-18 22:38:07 -04003293 * extent into multiple initialized/uninitialized extents (up to three)
Mingming Cao00314622009-09-28 15:49:08 -04003294 * There are three possibilities:
3295 * a> There is no split required: Entire extent should be uninitialized
3296 * b> Splits in two extents: Write is happening at either end of the extent
3297 * c> Splits in three extents: Somone is writing in middle of the extent
3298 *
3299 * One of more index blocks maybe needed if the extent tree grow after
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04003300 * the uninitialized extent split. To prevent ENOSPC occur at the IO
Mingming Cao00314622009-09-28 15:49:08 -04003301 * complete, we need to split the uninitialized extent before DIO submit
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02003302 * the IO. The uninitialized extent called at this time will be split
Mingming Cao00314622009-09-28 15:49:08 -04003303 * into three uninitialized extent(at most). After IO complete, the part
3304 * being filled will be convert to initialized by the end_io callback function
3305 * via ext4_convert_unwritten_extents().
Mingmingba230c32009-11-06 04:01:23 -05003306 *
3307 * Returns the size of uninitialized extent to be written on success.
Mingming Cao00314622009-09-28 15:49:08 -04003308 */
3309static int ext4_split_unwritten_extents(handle_t *handle,
3310 struct inode *inode,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003311 struct ext4_map_blocks *map,
Mingming Cao00314622009-09-28 15:49:08 -04003312 struct ext4_ext_path *path,
Mingming Cao00314622009-09-28 15:49:08 -04003313 int flags)
3314{
Yongqiang Yang667eff32011-05-03 12:25:07 -04003315 ext4_lblk_t eof_block;
3316 ext4_lblk_t ee_block;
3317 struct ext4_extent *ex;
3318 unsigned int ee_len;
3319 int split_flag = 0, depth;
Mingming Cao00314622009-09-28 15:49:08 -04003320
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003321 ext_debug("ext4_split_unwritten_extents: inode %lu, logical"
3322 "block %llu, max_blocks %u\n", inode->i_ino,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003323 (unsigned long long)map->m_lblk, map->m_len);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003324
3325 eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >>
3326 inode->i_sb->s_blocksize_bits;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003327 if (eof_block < map->m_lblk + map->m_len)
3328 eof_block = map->m_lblk + map->m_len;
Mingming Cao00314622009-09-28 15:49:08 -04003329 /*
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003330 * It is safe to convert extent to initialized via explicit
3331 * zeroout only if extent is fully insde i_size or new_size.
3332 */
Yongqiang Yang667eff32011-05-03 12:25:07 -04003333 depth = ext_depth(inode);
3334 ex = path[depth].p_ext;
3335 ee_block = le32_to_cpu(ex->ee_block);
3336 ee_len = ext4_ext_get_actual_len(ex);
Dmitry Monakhov21ca0872010-05-16 06:00:00 -04003337
Yongqiang Yang667eff32011-05-03 12:25:07 -04003338 split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0;
3339 split_flag |= EXT4_EXT_MARK_UNINIT2;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003340 if (flags & EXT4_GET_BLOCKS_CONVERT)
3341 split_flag |= EXT4_EXT_DATA_VALID2;
Yongqiang Yang667eff32011-05-03 12:25:07 -04003342 flags |= EXT4_GET_BLOCKS_PRE_IO;
3343 return ext4_split_extent(handle, inode, path, map, split_flag, flags);
Mingming Cao00314622009-09-28 15:49:08 -04003344}
Yongqiang Yang197217a2011-05-03 11:45:29 -04003345
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003346static int ext4_convert_unwritten_extents_endio(handle_t *handle,
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003347 struct inode *inode,
3348 struct ext4_map_blocks *map,
3349 struct ext4_ext_path *path)
Mingming Cao00314622009-09-28 15:49:08 -04003350{
3351 struct ext4_extent *ex;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003352 ext4_lblk_t ee_block;
3353 unsigned int ee_len;
Mingming Cao00314622009-09-28 15:49:08 -04003354 int depth;
3355 int err = 0;
Mingming Cao00314622009-09-28 15:49:08 -04003356
3357 depth = ext_depth(inode);
Mingming Cao00314622009-09-28 15:49:08 -04003358 ex = path[depth].p_ext;
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003359 ee_block = le32_to_cpu(ex->ee_block);
3360 ee_len = ext4_ext_get_actual_len(ex);
Mingming Cao00314622009-09-28 15:49:08 -04003361
Yongqiang Yang197217a2011-05-03 11:45:29 -04003362 ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical"
3363 "block %llu, max_blocks %u\n", inode->i_ino,
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003364 (unsigned long long)ee_block, ee_len);
3365
3366 /* If extent is larger than requested then split is required */
3367 if (ee_block != map->m_lblk || ee_len > map->m_len) {
3368 err = ext4_split_unwritten_extents(handle, inode, map, path,
3369 EXT4_GET_BLOCKS_CONVERT);
3370 if (err < 0)
3371 goto out;
3372 ext4_ext_drop_refs(path);
3373 path = ext4_ext_find_extent(inode, map->m_lblk, path);
3374 if (IS_ERR(path)) {
3375 err = PTR_ERR(path);
3376 goto out;
3377 }
3378 depth = ext_depth(inode);
3379 ex = path[depth].p_ext;
3380 }
Yongqiang Yang197217a2011-05-03 11:45:29 -04003381
Mingming Cao00314622009-09-28 15:49:08 -04003382 err = ext4_ext_get_access(handle, inode, path + depth);
3383 if (err)
3384 goto out;
3385 /* first mark the extent as initialized */
3386 ext4_ext_mark_initialized(ex);
3387
Yongqiang Yang197217a2011-05-03 11:45:29 -04003388 /* note: ext4_ext_correct_indexes() isn't needed here because
3389 * borders are not changed
Mingming Cao00314622009-09-28 15:49:08 -04003390 */
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003391 ext4_ext_try_to_merge(handle, inode, path, ex);
Yongqiang Yang197217a2011-05-03 11:45:29 -04003392
Mingming Cao00314622009-09-28 15:49:08 -04003393 /* Mark modified extent as dirty */
Theodore Ts'oecb94f52012-08-17 09:44:17 -04003394 err = ext4_ext_dirty(handle, inode, path + path->p_depth);
Mingming Cao00314622009-09-28 15:49:08 -04003395out:
3396 ext4_ext_show_leaf(inode, path);
3397 return err;
3398}
3399
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003400static void unmap_underlying_metadata_blocks(struct block_device *bdev,
3401 sector_t block, int count)
3402{
3403 int i;
3404 for (i = 0; i < count; i++)
3405 unmap_underlying_metadata(bdev, block + i);
3406}
3407
Theodore Ts'o58590b02010-10-27 21:23:12 -04003408/*
3409 * Handle EOFBLOCKS_FL flag, clearing it if necessary
3410 */
3411static int check_eofblocks_fl(handle_t *handle, struct inode *inode,
Eric Sandeend002ebf2011-01-10 13:03:35 -05003412 ext4_lblk_t lblk,
Theodore Ts'o58590b02010-10-27 21:23:12 -04003413 struct ext4_ext_path *path,
3414 unsigned int len)
3415{
3416 int i, depth;
3417 struct ext4_extent_header *eh;
Sergey Senozhatsky65922cb2011-03-23 14:08:27 -04003418 struct ext4_extent *last_ex;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003419
3420 if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS))
3421 return 0;
3422
3423 depth = ext_depth(inode);
3424 eh = path[depth].p_hdr;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003425
Lukas Czernerafcff5d2012-03-21 21:47:55 -04003426 /*
3427 * We're going to remove EOFBLOCKS_FL entirely in future so we
3428 * do not care for this case anymore. Simply remove the flag
3429 * if there are no extents.
3430 */
3431 if (unlikely(!eh->eh_entries))
3432 goto out;
Theodore Ts'o58590b02010-10-27 21:23:12 -04003433 last_ex = EXT_LAST_EXTENT(eh);
3434 /*
3435 * We should clear the EOFBLOCKS_FL flag if we are writing the
3436 * last block in the last extent in the file. We test this by
3437 * first checking to see if the caller to
3438 * ext4_ext_get_blocks() was interested in the last block (or
3439 * a block beyond the last block) in the current extent. If
3440 * this turns out to be false, we can bail out from this
3441 * function immediately.
3442 */
Eric Sandeend002ebf2011-01-10 13:03:35 -05003443 if (lblk + len < le32_to_cpu(last_ex->ee_block) +
Theodore Ts'o58590b02010-10-27 21:23:12 -04003444 ext4_ext_get_actual_len(last_ex))
3445 return 0;
3446 /*
3447 * If the caller does appear to be planning to write at or
3448 * beyond the end of the current extent, we then test to see
3449 * if the current extent is the last extent in the file, by
3450 * checking to make sure it was reached via the rightmost node
3451 * at each level of the tree.
3452 */
3453 for (i = depth-1; i >= 0; i--)
3454 if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr))
3455 return 0;
Lukas Czernerafcff5d2012-03-21 21:47:55 -04003456out:
Theodore Ts'o58590b02010-10-27 21:23:12 -04003457 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3458 return ext4_mark_inode_dirty(handle, inode);
3459}
3460
Aditya Kali7b415bf2011-09-09 19:04:51 -04003461/**
3462 * ext4_find_delalloc_range: find delayed allocated block in the given range.
3463 *
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003464 * Return 1 if there is a delalloc block in the range, otherwise 0.
Aditya Kali7b415bf2011-09-09 19:04:51 -04003465 */
3466static int ext4_find_delalloc_range(struct inode *inode,
3467 ext4_lblk_t lblk_start,
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003468 ext4_lblk_t lblk_end)
Aditya Kali7b415bf2011-09-09 19:04:51 -04003469{
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003470 struct extent_status es;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003471
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003472 es.start = lblk_start;
3473 ext4_es_find_extent(inode, &es);
3474 if (es.len == 0)
3475 return 0; /* there is no delay extent in this tree */
3476 else if (es.start <= lblk_start && lblk_start < es.start + es.len)
3477 return 1;
3478 else if (lblk_start <= es.start && es.start <= lblk_end)
3479 return 1;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003480 else
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003481 return 0;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003482}
3483
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003484int ext4_find_delalloc_cluster(struct inode *inode, ext4_lblk_t lblk)
Aditya Kali7b415bf2011-09-09 19:04:51 -04003485{
3486 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3487 ext4_lblk_t lblk_start, lblk_end;
3488 lblk_start = lblk & (~(sbi->s_cluster_ratio - 1));
3489 lblk_end = lblk_start + sbi->s_cluster_ratio - 1;
3490
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003491 return ext4_find_delalloc_range(inode, lblk_start, lblk_end);
Aditya Kali7b415bf2011-09-09 19:04:51 -04003492}
3493
3494/**
3495 * Determines how many complete clusters (out of those specified by the 'map')
3496 * are under delalloc and were reserved quota for.
3497 * This function is called when we are writing out the blocks that were
3498 * originally written with their allocation delayed, but then the space was
3499 * allocated using fallocate() before the delayed allocation could be resolved.
3500 * The cases to look for are:
3501 * ('=' indicated delayed allocated blocks
3502 * '-' indicates non-delayed allocated blocks)
3503 * (a) partial clusters towards beginning and/or end outside of allocated range
3504 * are not delalloc'ed.
3505 * Ex:
3506 * |----c---=|====c====|====c====|===-c----|
3507 * |++++++ allocated ++++++|
3508 * ==> 4 complete clusters in above example
3509 *
3510 * (b) partial cluster (outside of allocated range) towards either end is
3511 * marked for delayed allocation. In this case, we will exclude that
3512 * cluster.
3513 * Ex:
3514 * |----====c========|========c========|
3515 * |++++++ allocated ++++++|
3516 * ==> 1 complete clusters in above example
3517 *
3518 * Ex:
3519 * |================c================|
3520 * |++++++ allocated ++++++|
3521 * ==> 0 complete clusters in above example
3522 *
3523 * The ext4_da_update_reserve_space will be called only if we
3524 * determine here that there were some "entire" clusters that span
3525 * this 'allocated' range.
3526 * In the non-bigalloc case, this function will just end up returning num_blks
3527 * without ever calling ext4_find_delalloc_range.
3528 */
3529static unsigned int
3530get_reserved_cluster_alloc(struct inode *inode, ext4_lblk_t lblk_start,
3531 unsigned int num_blks)
3532{
3533 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3534 ext4_lblk_t alloc_cluster_start, alloc_cluster_end;
3535 ext4_lblk_t lblk_from, lblk_to, c_offset;
3536 unsigned int allocated_clusters = 0;
3537
3538 alloc_cluster_start = EXT4_B2C(sbi, lblk_start);
3539 alloc_cluster_end = EXT4_B2C(sbi, lblk_start + num_blks - 1);
3540
3541 /* max possible clusters for this allocation */
3542 allocated_clusters = alloc_cluster_end - alloc_cluster_start + 1;
3543
Aditya Kalid8990242011-09-09 19:18:51 -04003544 trace_ext4_get_reserved_cluster_alloc(inode, lblk_start, num_blks);
3545
Aditya Kali7b415bf2011-09-09 19:04:51 -04003546 /* Check towards left side */
3547 c_offset = lblk_start & (sbi->s_cluster_ratio - 1);
3548 if (c_offset) {
3549 lblk_from = lblk_start & (~(sbi->s_cluster_ratio - 1));
3550 lblk_to = lblk_from + c_offset - 1;
3551
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003552 if (ext4_find_delalloc_range(inode, lblk_from, lblk_to))
Aditya Kali7b415bf2011-09-09 19:04:51 -04003553 allocated_clusters--;
3554 }
3555
3556 /* Now check towards right. */
3557 c_offset = (lblk_start + num_blks) & (sbi->s_cluster_ratio - 1);
3558 if (allocated_clusters && c_offset) {
3559 lblk_from = lblk_start + num_blks;
3560 lblk_to = lblk_from + (sbi->s_cluster_ratio - c_offset) - 1;
3561
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003562 if (ext4_find_delalloc_range(inode, lblk_from, lblk_to))
Aditya Kali7b415bf2011-09-09 19:04:51 -04003563 allocated_clusters--;
3564 }
3565
3566 return allocated_clusters;
3567}
3568
Mingming Cao00314622009-09-28 15:49:08 -04003569static int
3570ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003571 struct ext4_map_blocks *map,
Mingming Cao00314622009-09-28 15:49:08 -04003572 struct ext4_ext_path *path, int flags,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003573 unsigned int allocated, ext4_fsblk_t newblock)
Mingming Cao00314622009-09-28 15:49:08 -04003574{
3575 int ret = 0;
3576 int err = 0;
Dmitry Monakhovf45ee3a2012-09-28 23:21:09 -04003577 ext4_io_end_t *io = ext4_inode_aio(inode);
Mingming Cao00314622009-09-28 15:49:08 -04003578
Zheng Liu88635ca2011-12-28 19:00:25 -05003579 ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical "
3580 "block %llu, max_blocks %u, flags %x, allocated %u\n",
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003581 inode->i_ino, (unsigned long long)map->m_lblk, map->m_len,
Mingming Cao00314622009-09-28 15:49:08 -04003582 flags, allocated);
3583 ext4_ext_show_leaf(inode, path);
3584
Zheng Liub5645532012-11-08 14:33:43 -05003585 trace_ext4_ext_handle_uninitialized_extents(inode, map, flags,
3586 allocated, newblock);
Aditya Kalid8990242011-09-09 19:18:51 -04003587
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003588 /* get_block() before submit the IO, split the extent */
Jiaying Zhang744692d2010-03-04 16:14:02 -05003589 if ((flags & EXT4_GET_BLOCKS_PRE_IO)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003590 ret = ext4_split_unwritten_extents(handle, inode, map,
3591 path, flags);
Dmitry Monakhov82e54222012-09-28 23:36:25 -04003592 if (ret <= 0)
3593 goto out;
Mingming5f524952009-11-10 10:48:04 -05003594 /*
3595 * Flag the inode(non aio case) or end_io struct (aio case)
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003596 * that this IO needs to conversion to written when IO is
Mingming5f524952009-11-10 10:48:04 -05003597 * completed
3598 */
Tao Ma0edeb712011-10-31 17:30:44 -04003599 if (io)
3600 ext4_set_io_unwritten_flag(inode, io);
3601 else
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003602 ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
Jiaying Zhang744692d2010-03-04 16:14:02 -05003603 if (ext4_should_dioread_nolock(inode))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003604 map->m_flags |= EXT4_MAP_UNINIT;
Mingming Cao00314622009-09-28 15:49:08 -04003605 goto out;
3606 }
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003607 /* IO end_io complete, convert the filled extent to written */
Jiaying Zhang744692d2010-03-04 16:14:02 -05003608 if ((flags & EXT4_GET_BLOCKS_CONVERT)) {
Dmitry Monakhovdee1f972012-10-10 01:04:58 -04003609 ret = ext4_convert_unwritten_extents_endio(handle, inode, map,
Mingming Cao00314622009-09-28 15:49:08 -04003610 path);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003611 if (ret >= 0) {
Jan Karab436b9b2009-12-08 23:51:10 -05003612 ext4_update_inode_fsync_trans(handle, inode, 1);
Eric Sandeend002ebf2011-01-10 13:03:35 -05003613 err = check_eofblocks_fl(handle, inode, map->m_lblk,
3614 path, map->m_len);
Theodore Ts'o58590b02010-10-27 21:23:12 -04003615 } else
3616 err = ret;
Mingming Cao00314622009-09-28 15:49:08 -04003617 goto out2;
3618 }
3619 /* buffered IO case */
3620 /*
3621 * repeat fallocate creation request
3622 * we already have an unwritten extent
3623 */
3624 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT)
3625 goto map_out;
3626
3627 /* buffered READ or buffered write_begin() lookup */
3628 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
3629 /*
3630 * We have blocks reserved already. We
3631 * return allocated blocks so that delalloc
3632 * won't do block reservation for us. But
3633 * the buffer head will be unmapped so that
3634 * a read from the block returns 0s.
3635 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003636 map->m_flags |= EXT4_MAP_UNWRITTEN;
Mingming Cao00314622009-09-28 15:49:08 -04003637 goto out1;
3638 }
3639
3640 /* buffered write, writepage time, convert*/
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003641 ret = ext4_ext_convert_to_initialized(handle, inode, map, path);
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04003642 if (ret >= 0)
Jan Karab436b9b2009-12-08 23:51:10 -05003643 ext4_update_inode_fsync_trans(handle, inode, 1);
Mingming Cao00314622009-09-28 15:49:08 -04003644out:
3645 if (ret <= 0) {
3646 err = ret;
3647 goto out2;
3648 } else
3649 allocated = ret;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003650 map->m_flags |= EXT4_MAP_NEW;
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003651 /*
3652 * if we allocated more blocks than requested
3653 * we need to make sure we unmap the extra block
3654 * allocated. The actual needed block will get
3655 * unmapped later when we find the buffer_head marked
3656 * new.
3657 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003658 if (allocated > map->m_len) {
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003659 unmap_underlying_metadata_blocks(inode->i_sb->s_bdev,
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003660 newblock + map->m_len,
3661 allocated - map->m_len);
3662 allocated = map->m_len;
Aneesh Kumar K.V515f41c2009-12-29 23:39:06 -05003663 }
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003664
3665 /*
3666 * If we have done fallocate with the offset that is already
3667 * delayed allocated, we would have block reservation
3668 * and quota reservation done in the delayed write path.
3669 * But fallocate would have already updated quota and block
3670 * count for this offset. So cancel these reservation
3671 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04003672 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) {
3673 unsigned int reserved_clusters;
3674 reserved_clusters = get_reserved_cluster_alloc(inode,
3675 map->m_lblk, map->m_len);
3676 if (reserved_clusters)
3677 ext4_da_update_reserve_space(inode,
3678 reserved_clusters,
3679 0);
3680 }
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05003681
Mingming Cao00314622009-09-28 15:49:08 -04003682map_out:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003683 map->m_flags |= EXT4_MAP_MAPPED;
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04003684 if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0) {
3685 err = check_eofblocks_fl(handle, inode, map->m_lblk, path,
3686 map->m_len);
3687 if (err < 0)
3688 goto out2;
3689 }
Mingming Cao00314622009-09-28 15:49:08 -04003690out1:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003691 if (allocated > map->m_len)
3692 allocated = map->m_len;
Mingming Cao00314622009-09-28 15:49:08 -04003693 ext4_ext_show_leaf(inode, path);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003694 map->m_pblk = newblock;
3695 map->m_len = allocated;
Mingming Cao00314622009-09-28 15:49:08 -04003696out2:
3697 if (path) {
3698 ext4_ext_drop_refs(path);
3699 kfree(path);
3700 }
3701 return err ? err : allocated;
3702}
Theodore Ts'o58590b02010-10-27 21:23:12 -04003703
Mingming Cao00314622009-09-28 15:49:08 -04003704/*
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003705 * get_implied_cluster_alloc - check to see if the requested
3706 * allocation (in the map structure) overlaps with a cluster already
3707 * allocated in an extent.
Aditya Kalid8990242011-09-09 19:18:51 -04003708 * @sb The filesystem superblock structure
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003709 * @map The requested lblk->pblk mapping
3710 * @ex The extent structure which might contain an implied
3711 * cluster allocation
3712 *
3713 * This function is called by ext4_ext_map_blocks() after we failed to
3714 * find blocks that were already in the inode's extent tree. Hence,
3715 * we know that the beginning of the requested region cannot overlap
3716 * the extent from the inode's extent tree. There are three cases we
3717 * want to catch. The first is this case:
3718 *
3719 * |--- cluster # N--|
3720 * |--- extent ---| |---- requested region ---|
3721 * |==========|
3722 *
3723 * The second case that we need to test for is this one:
3724 *
3725 * |--------- cluster # N ----------------|
3726 * |--- requested region --| |------- extent ----|
3727 * |=======================|
3728 *
3729 * The third case is when the requested region lies between two extents
3730 * within the same cluster:
3731 * |------------- cluster # N-------------|
3732 * |----- ex -----| |---- ex_right ----|
3733 * |------ requested region ------|
3734 * |================|
3735 *
3736 * In each of the above cases, we need to set the map->m_pblk and
3737 * map->m_len so it corresponds to the return the extent labelled as
3738 * "|====|" from cluster #N, since it is already in use for data in
3739 * cluster EXT4_B2C(sbi, map->m_lblk). We will then return 1 to
3740 * signal to ext4_ext_map_blocks() that map->m_pblk should be treated
3741 * as a new "allocated" block region. Otherwise, we will return 0 and
3742 * ext4_ext_map_blocks() will then allocate one or more new clusters
3743 * by calling ext4_mb_new_blocks().
3744 */
Aditya Kalid8990242011-09-09 19:18:51 -04003745static int get_implied_cluster_alloc(struct super_block *sb,
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003746 struct ext4_map_blocks *map,
3747 struct ext4_extent *ex,
3748 struct ext4_ext_path *path)
3749{
Aditya Kalid8990242011-09-09 19:18:51 -04003750 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003751 ext4_lblk_t c_offset = map->m_lblk & (sbi->s_cluster_ratio-1);
3752 ext4_lblk_t ex_cluster_start, ex_cluster_end;
Curt Wohlgemuth14d7f3e2011-12-18 17:39:02 -05003753 ext4_lblk_t rr_cluster_start;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003754 ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
3755 ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
3756 unsigned short ee_len = ext4_ext_get_actual_len(ex);
3757
3758 /* The extent passed in that we are trying to match */
3759 ex_cluster_start = EXT4_B2C(sbi, ee_block);
3760 ex_cluster_end = EXT4_B2C(sbi, ee_block + ee_len - 1);
3761
3762 /* The requested region passed into ext4_map_blocks() */
3763 rr_cluster_start = EXT4_B2C(sbi, map->m_lblk);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003764
3765 if ((rr_cluster_start == ex_cluster_end) ||
3766 (rr_cluster_start == ex_cluster_start)) {
3767 if (rr_cluster_start == ex_cluster_end)
3768 ee_start += ee_len - 1;
3769 map->m_pblk = (ee_start & ~(sbi->s_cluster_ratio - 1)) +
3770 c_offset;
3771 map->m_len = min(map->m_len,
3772 (unsigned) sbi->s_cluster_ratio - c_offset);
3773 /*
3774 * Check for and handle this case:
3775 *
3776 * |--------- cluster # N-------------|
3777 * |------- extent ----|
3778 * |--- requested region ---|
3779 * |===========|
3780 */
3781
3782 if (map->m_lblk < ee_block)
3783 map->m_len = min(map->m_len, ee_block - map->m_lblk);
3784
3785 /*
3786 * Check for the case where there is already another allocated
3787 * block to the right of 'ex' but before the end of the cluster.
3788 *
3789 * |------------- cluster # N-------------|
3790 * |----- ex -----| |---- ex_right ----|
3791 * |------ requested region ------|
3792 * |================|
3793 */
3794 if (map->m_lblk > ee_block) {
3795 ext4_lblk_t next = ext4_ext_next_allocated_block(path);
3796 map->m_len = min(map->m_len, next - map->m_lblk);
3797 }
Aditya Kalid8990242011-09-09 19:18:51 -04003798
3799 trace_ext4_get_implied_cluster_alloc_exit(sb, map, 1);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003800 return 1;
3801 }
Aditya Kalid8990242011-09-09 19:18:51 -04003802
3803 trace_ext4_get_implied_cluster_alloc_exit(sb, map, 0);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003804 return 0;
3805}
3806
3807
3808/*
Mingming Caof5ab0d12008-02-25 15:29:55 -05003809 * Block allocation/map/preallocation routine for extents based files
3810 *
3811 *
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05003812 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05003813 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
3814 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
Mingming Caof5ab0d12008-02-25 15:29:55 -05003815 *
3816 * return > 0, number of of blocks already mapped/allocated
3817 * if create == 0 and these are pre-allocated blocks
3818 * buffer head is unmapped
3819 * otherwise blocks are mapped
3820 *
3821 * return = 0, if plain look up failed (blocks have not been allocated)
3822 * buffer head is unmapped
3823 *
3824 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05003825 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003826int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
3827 struct ext4_map_blocks *map, int flags)
Alex Tomasa86c6182006-10-11 01:21:03 -07003828{
3829 struct ext4_ext_path *path = NULL;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003830 struct ext4_extent newex, *ex, *ex2;
3831 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003832 ext4_fsblk_t newblock = 0;
Zheng Liu37794732012-11-08 14:47:52 -05003833 int free_on_err = 0, err = 0, depth;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003834 unsigned int allocated = 0, offset = 0;
Yongqiang Yang81fdbb42011-10-29 09:23:38 -04003835 unsigned int allocated_clusters = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003836 struct ext4_allocation_request ar;
Dmitry Monakhovf45ee3a2012-09-28 23:21:09 -04003837 ext4_io_end_t *io = ext4_inode_aio(inode);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003838 ext4_lblk_t cluster_offset;
Dmitry Monakhov82e54222012-09-28 23:36:25 -04003839 int set_unwritten = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07003840
Mingming84fe3be2009-09-01 08:44:37 -04003841 ext_debug("blocks %u/%u requested for inode %lu\n",
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003842 map->m_lblk, map->m_len, inode->i_ino);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003843 trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07003844
3845 /* check in cache */
Lukas Czerner78771912012-03-19 23:05:43 -04003846 if (ext4_ext_in_cache(inode, map->m_lblk, &newex)) {
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05003847 if (!newex.ee_start_lo && !newex.ee_start_hi) {
Aditya Kali7b415bf2011-09-09 19:04:51 -04003848 if ((sbi->s_cluster_ratio > 1) &&
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003849 ext4_find_delalloc_cluster(inode, map->m_lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04003850 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
3851
Theodore Ts'oc2177052009-05-14 00:58:52 -04003852 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
Amit Arora56055d32007-07-17 21:42:38 -04003853 /*
3854 * block isn't allocated yet and
3855 * user doesn't want to allocate it
3856 */
Alex Tomasa86c6182006-10-11 01:21:03 -07003857 goto out2;
3858 }
3859 /* we should allocate requested block */
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05003860 } else {
Alex Tomasa86c6182006-10-11 01:21:03 -07003861 /* block is already allocated */
Aditya Kali7b415bf2011-09-09 19:04:51 -04003862 if (sbi->s_cluster_ratio > 1)
3863 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003864 newblock = map->m_lblk
Dave Kleikamp8c55e202007-05-24 13:04:54 -04003865 - le32_to_cpu(newex.ee_block)
Theodore Ts'obf89d162010-10-27 21:30:14 -04003866 + ext4_ext_pblock(&newex);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003867 /* number of remaining blocks in the extent */
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05003868 allocated = ext4_ext_get_actual_len(&newex) -
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003869 (map->m_lblk - le32_to_cpu(newex.ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -07003870 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07003871 }
3872 }
3873
3874 /* find extent for this block */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003875 path = ext4_ext_find_extent(inode, map->m_lblk, NULL);
Alex Tomasa86c6182006-10-11 01:21:03 -07003876 if (IS_ERR(path)) {
3877 err = PTR_ERR(path);
3878 path = NULL;
3879 goto out2;
3880 }
3881
3882 depth = ext_depth(inode);
3883
3884 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003885 * consistent leaf must not be empty;
3886 * this situation is possible, though, _during_ tree modification;
Alex Tomasa86c6182006-10-11 01:21:03 -07003887 * this is why assert can't be put in ext4_ext_find_extent()
3888 */
Frank Mayhar273df552010-03-02 11:46:09 -05003889 if (unlikely(path[depth].p_ext == NULL && depth != 0)) {
3890 EXT4_ERROR_INODE(inode, "bad extent address "
Theodore Ts'of70f3622010-05-16 23:00:00 -04003891 "lblock: %lu, depth: %d pblock %lld",
3892 (unsigned long) map->m_lblk, depth,
3893 path[depth].p_block);
Surbhi Palande034fb4c2009-12-14 09:53:52 -05003894 err = -EIO;
3895 goto out2;
3896 }
Alex Tomasa86c6182006-10-11 01:21:03 -07003897
Avantika Mathur7e028972006-12-06 20:41:33 -08003898 ex = path[depth].p_ext;
3899 if (ex) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003900 ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
Theodore Ts'obf89d162010-10-27 21:30:14 -04003901 ext4_fsblk_t ee_start = ext4_ext_pblock(ex);
Amit Aroraa2df2a62007-07-17 21:42:41 -04003902 unsigned short ee_len;
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07003903
3904 /*
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07003905 * Uninitialized extents are treated as holes, except that
Amit Arora56055d32007-07-17 21:42:38 -04003906 * we split out initialized portions during a write.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07003907 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04003908 ee_len = ext4_ext_get_actual_len(ex);
Aditya Kalid8990242011-09-09 19:18:51 -04003909
3910 trace_ext4_ext_show_extent(inode, ee_block, ee_start, ee_len);
3911
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003912 /* if found extent covers block, simply return it */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003913 if (in_range(map->m_lblk, ee_block, ee_len)) {
3914 newblock = map->m_lblk - ee_block + ee_start;
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003915 /* number of remaining blocks in the extent */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003916 allocated = ee_len - (map->m_lblk - ee_block);
3917 ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk,
3918 ee_block, ee_len, newblock);
Amit Arora56055d32007-07-17 21:42:38 -04003919
Allison Hendersone8613042011-05-25 07:41:46 -04003920 /*
Lukas Czerner78771912012-03-19 23:05:43 -04003921 * Do not put uninitialized extent
3922 * in the cache
Allison Hendersone8613042011-05-25 07:41:46 -04003923 */
Lukas Czerner78771912012-03-19 23:05:43 -04003924 if (!ext4_ext_is_uninitialized(ex)) {
3925 ext4_ext_put_in_cache(inode, ee_block,
3926 ee_len, ee_start);
3927 goto out;
Allison Hendersone8613042011-05-25 07:41:46 -04003928 }
Zheng Liu37794732012-11-08 14:47:52 -05003929 allocated = ext4_ext_handle_uninitialized_extents(
Lukas Czerner78771912012-03-19 23:05:43 -04003930 handle, inode, map, path, flags,
3931 allocated, newblock);
Zheng Liu37794732012-11-08 14:47:52 -05003932 goto out3;
Alex Tomasa86c6182006-10-11 01:21:03 -07003933 }
3934 }
3935
Aditya Kali7b415bf2011-09-09 19:04:51 -04003936 if ((sbi->s_cluster_ratio > 1) &&
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05003937 ext4_find_delalloc_cluster(inode, map->m_lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04003938 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
3939
Alex Tomasa86c6182006-10-11 01:21:03 -07003940 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07003941 * requested block isn't allocated yet;
Alex Tomasa86c6182006-10-11 01:21:03 -07003942 * we couldn't try to create block if create flag is zero
3943 */
Theodore Ts'oc2177052009-05-14 00:58:52 -04003944 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) {
Amit Arora56055d32007-07-17 21:42:38 -04003945 /*
3946 * put just found gap into cache to speed up
3947 * subsequent requests
3948 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003949 ext4_ext_put_gap_in_cache(inode, path, map->m_lblk);
Alex Tomasa86c6182006-10-11 01:21:03 -07003950 goto out2;
3951 }
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003952
Alex Tomasa86c6182006-10-11 01:21:03 -07003953 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003954 * Okay, we need to do block allocation.
Andrew Morton63f57932006-10-11 01:21:24 -07003955 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04003956 map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003957 newex.ee_block = cpu_to_le32(map->m_lblk);
3958 cluster_offset = map->m_lblk & (sbi->s_cluster_ratio-1);
3959
3960 /*
3961 * If we are doing bigalloc, check to see if the extent returned
3962 * by ext4_ext_find_extent() implies a cluster we can use.
3963 */
3964 if (cluster_offset && ex &&
Aditya Kalid8990242011-09-09 19:18:51 -04003965 get_implied_cluster_alloc(inode->i_sb, map, ex, path)) {
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003966 ar.len = allocated = map->m_len;
3967 newblock = map->m_pblk;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003968 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003969 goto got_allocated_blocks;
3970 }
Alex Tomasa86c6182006-10-11 01:21:03 -07003971
Alex Tomasc9de5602008-01-29 00:19:52 -05003972 /* find neighbour allocated blocks */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003973 ar.lleft = map->m_lblk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003974 err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
3975 if (err)
3976 goto out2;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003977 ar.lright = map->m_lblk;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003978 ex2 = NULL;
3979 err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright, &ex2);
Alex Tomasc9de5602008-01-29 00:19:52 -05003980 if (err)
3981 goto out2;
Amit Arora25d14f92007-05-24 13:04:13 -04003982
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003983 /* Check if the extent after searching to the right implies a
3984 * cluster we can use. */
3985 if ((sbi->s_cluster_ratio > 1) && ex2 &&
Aditya Kalid8990242011-09-09 19:18:51 -04003986 get_implied_cluster_alloc(inode->i_sb, map, ex2, path)) {
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003987 ar.len = allocated = map->m_len;
3988 newblock = map->m_pblk;
Aditya Kali7b415bf2011-09-09 19:04:51 -04003989 map->m_flags |= EXT4_MAP_FROM_CLUSTER;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04003990 goto got_allocated_blocks;
3991 }
3992
Amit Arora749269f2007-07-18 09:02:56 -04003993 /*
3994 * See if request is beyond maximum number of blocks we can have in
3995 * a single extent. For an initialized extent this limit is
3996 * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
3997 * EXT_UNINIT_MAX_LEN.
3998 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04003999 if (map->m_len > EXT_INIT_MAX_LEN &&
Theodore Ts'oc2177052009-05-14 00:58:52 -04004000 !(flags & EXT4_GET_BLOCKS_UNINIT_EXT))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004001 map->m_len = EXT_INIT_MAX_LEN;
4002 else if (map->m_len > EXT_UNINIT_MAX_LEN &&
Theodore Ts'oc2177052009-05-14 00:58:52 -04004003 (flags & EXT4_GET_BLOCKS_UNINIT_EXT))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004004 map->m_len = EXT_UNINIT_MAX_LEN;
Amit Arora749269f2007-07-18 09:02:56 -04004005
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004006 /* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004007 newex.ee_len = cpu_to_le16(map->m_len);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004008 err = ext4_ext_check_overlap(sbi, inode, &newex, path);
Amit Arora25d14f92007-05-24 13:04:13 -04004009 if (err)
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05004010 allocated = ext4_ext_get_actual_len(&newex);
Amit Arora25d14f92007-05-24 13:04:13 -04004011 else
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004012 allocated = map->m_len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004013
4014 /* allocate new block */
4015 ar.inode = inode;
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004016 ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk);
4017 ar.logical = map->m_lblk;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004018 /*
4019 * We calculate the offset from the beginning of the cluster
4020 * for the logical block number, since when we allocate a
4021 * physical cluster, the physical block should start at the
4022 * same offset from the beginning of the cluster. This is
4023 * needed so that future calls to get_implied_cluster_alloc()
4024 * work correctly.
4025 */
4026 offset = map->m_lblk & (sbi->s_cluster_ratio - 1);
4027 ar.len = EXT4_NUM_B2C(sbi, offset+allocated);
4028 ar.goal -= offset;
4029 ar.logical -= offset;
Alex Tomasc9de5602008-01-29 00:19:52 -05004030 if (S_ISREG(inode->i_mode))
4031 ar.flags = EXT4_MB_HINT_DATA;
4032 else
4033 /* disable in-core preallocation for non-regular files */
4034 ar.flags = 0;
Vivek Haldar556b27a2011-05-25 07:41:54 -04004035 if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE)
4036 ar.flags |= EXT4_MB_HINT_NOPREALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05004037 newblock = ext4_mb_new_blocks(handle, &ar, &err);
Alex Tomasa86c6182006-10-11 01:21:03 -07004038 if (!newblock)
4039 goto out2;
Mingming84fe3be2009-09-01 08:44:37 -04004040 ext_debug("allocate new block: goal %llu, found %llu/%u\n",
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004041 ar.goal, newblock, allocated);
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004042 free_on_err = 1;
Aditya Kali7b415bf2011-09-09 19:04:51 -04004043 allocated_clusters = ar.len;
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004044 ar.len = EXT4_C2B(sbi, ar.len) - offset;
4045 if (ar.len > allocated)
4046 ar.len = allocated;
Alex Tomasa86c6182006-10-11 01:21:03 -07004047
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004048got_allocated_blocks:
Alex Tomasa86c6182006-10-11 01:21:03 -07004049 /* try to insert new extent into found leaf and return */
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004050 ext4_ext_store_pblock(&newex, newblock + offset);
Alex Tomasc9de5602008-01-29 00:19:52 -05004051 newex.ee_len = cpu_to_le16(ar.len);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004052 /* Mark uninitialized */
4053 if (flags & EXT4_GET_BLOCKS_UNINIT_EXT){
Amit Aroraa2df2a62007-07-17 21:42:41 -04004054 ext4_ext_mark_uninitialized(&newex);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004055 /*
Jiaying Zhang744692d2010-03-04 16:14:02 -05004056 * io_end structure was created for every IO write to an
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004057 * uninitialized extent. To avoid unnecessary conversion,
Jiaying Zhang744692d2010-03-04 16:14:02 -05004058 * here we flag the IO that really needs the conversion.
Mingming5f524952009-11-10 10:48:04 -05004059 * For non asycn direct IO case, flag the inode state
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004060 * that we need to perform conversion when IO is done.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004061 */
Dmitry Monakhov82e54222012-09-28 23:36:25 -04004062 if ((flags & EXT4_GET_BLOCKS_PRE_IO))
4063 set_unwritten = 1;
Jiaying Zhang744692d2010-03-04 16:14:02 -05004064 if (ext4_should_dioread_nolock(inode))
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004065 map->m_flags |= EXT4_MAP_UNINIT;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04004066 }
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004067
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004068 err = 0;
4069 if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0)
4070 err = check_eofblocks_fl(handle, inode, map->m_lblk,
4071 path, ar.len);
Jiaying Zhang575a1d42011-07-10 20:07:25 -04004072 if (!err)
4073 err = ext4_ext_insert_extent(handle, inode, path,
4074 &newex, flags);
Dmitry Monakhov82e54222012-09-28 23:36:25 -04004075
4076 if (!err && set_unwritten) {
4077 if (io)
4078 ext4_set_io_unwritten_flag(inode, io);
4079 else
4080 ext4_set_inode_state(inode,
4081 EXT4_STATE_DIO_UNWRITTEN);
4082 }
4083
Theodore Ts'o4d33b1e2011-09-09 18:52:51 -04004084 if (err && free_on_err) {
Maxim Patlasov7132de72011-07-10 19:37:48 -04004085 int fb_flags = flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE ?
4086 EXT4_FREE_BLOCKS_NO_QUOT_UPDATE : 0;
Alex Tomas315054f2007-05-24 13:04:25 -04004087 /* free data blocks we just allocated */
Alex Tomasc9de5602008-01-29 00:19:52 -05004088 /* not a good idea to call discard here directly,
4089 * but otherwise we'd need to call it every free() */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004090 ext4_discard_preallocations(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004091 ext4_free_blocks(handle, inode, NULL, ext4_ext_pblock(&newex),
Maxim Patlasov7132de72011-07-10 19:37:48 -04004092 ext4_ext_get_actual_len(&newex), fb_flags);
Alex Tomasa86c6182006-10-11 01:21:03 -07004093 goto out2;
Alex Tomas315054f2007-05-24 13:04:25 -04004094 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004095
Alex Tomasa86c6182006-10-11 01:21:03 -07004096 /* previous routine could use block we allocated */
Theodore Ts'obf89d162010-10-27 21:30:14 -04004097 newblock = ext4_ext_pblock(&newex);
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05004098 allocated = ext4_ext_get_actual_len(&newex);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004099 if (allocated > map->m_len)
4100 allocated = map->m_len;
4101 map->m_flags |= EXT4_MAP_NEW;
Alex Tomasa86c6182006-10-11 01:21:03 -07004102
Jan Karab436b9b2009-12-08 23:51:10 -05004103 /*
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05004104 * Update reserved blocks/metadata blocks after successful
4105 * block allocation which had been deferred till now.
4106 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04004107 if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) {
Yongqiang Yang81fdbb42011-10-29 09:23:38 -04004108 unsigned int reserved_clusters;
Aditya Kali7b415bf2011-09-09 19:04:51 -04004109 /*
Yongqiang Yang81fdbb42011-10-29 09:23:38 -04004110 * Check how many clusters we had reserved this allocated range
Aditya Kali7b415bf2011-09-09 19:04:51 -04004111 */
4112 reserved_clusters = get_reserved_cluster_alloc(inode,
4113 map->m_lblk, allocated);
4114 if (map->m_flags & EXT4_MAP_FROM_CLUSTER) {
4115 if (reserved_clusters) {
4116 /*
4117 * We have clusters reserved for this range.
4118 * But since we are not doing actual allocation
4119 * and are simply using blocks from previously
4120 * allocated cluster, we should release the
4121 * reservation and not claim quota.
4122 */
4123 ext4_da_update_reserve_space(inode,
4124 reserved_clusters, 0);
4125 }
4126 } else {
4127 BUG_ON(allocated_clusters < reserved_clusters);
4128 /* We will claim quota for all newly allocated blocks.*/
4129 ext4_da_update_reserve_space(inode, allocated_clusters,
4130 1);
4131 if (reserved_clusters < allocated_clusters) {
Aditya Kali5356f262011-09-09 19:20:51 -04004132 struct ext4_inode_info *ei = EXT4_I(inode);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004133 int reservation = allocated_clusters -
4134 reserved_clusters;
4135 /*
4136 * It seems we claimed few clusters outside of
4137 * the range of this allocation. We should give
4138 * it back to the reservation pool. This can
4139 * happen in the following case:
4140 *
4141 * * Suppose s_cluster_ratio is 4 (i.e., each
4142 * cluster has 4 blocks. Thus, the clusters
4143 * are [0-3],[4-7],[8-11]...
4144 * * First comes delayed allocation write for
4145 * logical blocks 10 & 11. Since there were no
4146 * previous delayed allocated blocks in the
4147 * range [8-11], we would reserve 1 cluster
4148 * for this write.
4149 * * Next comes write for logical blocks 3 to 8.
4150 * In this case, we will reserve 2 clusters
4151 * (for [0-3] and [4-7]; and not for [8-11] as
4152 * that range has a delayed allocated blocks.
4153 * Thus total reserved clusters now becomes 3.
4154 * * Now, during the delayed allocation writeout
4155 * time, we will first write blocks [3-8] and
4156 * allocate 3 clusters for writing these
4157 * blocks. Also, we would claim all these
4158 * three clusters above.
4159 * * Now when we come here to writeout the
4160 * blocks [10-11], we would expect to claim
4161 * the reservation of 1 cluster we had made
4162 * (and we would claim it since there are no
4163 * more delayed allocated blocks in the range
4164 * [8-11]. But our reserved cluster count had
4165 * already gone to 0.
4166 *
4167 * Thus, at the step 4 above when we determine
4168 * that there are still some unwritten delayed
4169 * allocated blocks outside of our current
4170 * block range, we should increment the
4171 * reserved clusters count so that when the
4172 * remaining blocks finally gets written, we
4173 * could claim them.
4174 */
Aditya Kali5356f262011-09-09 19:20:51 -04004175 dquot_reserve_block(inode,
4176 EXT4_C2B(sbi, reservation));
4177 spin_lock(&ei->i_block_reservation_lock);
4178 ei->i_reserved_data_blocks += reservation;
4179 spin_unlock(&ei->i_block_reservation_lock);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004180 }
4181 }
4182 }
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -05004183
4184 /*
Jan Karab436b9b2009-12-08 23:51:10 -05004185 * Cache the extent and update transaction to commit on fdatasync only
4186 * when it is _not_ an uninitialized extent.
4187 */
4188 if ((flags & EXT4_GET_BLOCKS_UNINIT_EXT) == 0) {
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05004189 ext4_ext_put_in_cache(inode, map->m_lblk, allocated, newblock);
Jan Karab436b9b2009-12-08 23:51:10 -05004190 ext4_update_inode_fsync_trans(handle, inode, 1);
4191 } else
4192 ext4_update_inode_fsync_trans(handle, inode, 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07004193out:
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004194 if (allocated > map->m_len)
4195 allocated = map->m_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07004196 ext4_ext_show_leaf(inode, path);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004197 map->m_flags |= EXT4_MAP_MAPPED;
4198 map->m_pblk = newblock;
4199 map->m_len = allocated;
Alex Tomasa86c6182006-10-11 01:21:03 -07004200out2:
4201 if (path) {
4202 ext4_ext_drop_refs(path);
4203 kfree(path);
4204 }
Allison Hendersone8613042011-05-25 07:41:46 -04004205
Zheng Liu37794732012-11-08 14:47:52 -05004206out3:
Zheng Liu19b303d2012-11-08 14:34:04 -05004207 trace_ext4_ext_map_blocks_exit(inode, map, err ? err : allocated);
Yongqiang Yange7b319e2011-10-29 09:39:51 -04004208
Lukas Czerner78771912012-03-19 23:05:43 -04004209 return err ? err : allocated;
Alex Tomasa86c6182006-10-11 01:21:03 -07004210}
4211
Jan Karacf108bc2008-07-11 19:27:31 -04004212void ext4_ext_truncate(struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -07004213{
4214 struct address_space *mapping = inode->i_mapping;
4215 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004216 ext4_lblk_t last_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07004217 handle_t *handle;
Allison Henderson189e8682011-09-06 21:49:44 -04004218 loff_t page_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07004219 int err = 0;
4220
4221 /*
Jiaying Zhang3889fd52011-01-10 12:47:05 -05004222 * finish any pending end_io work so we won't run the risk of
4223 * converting any truncated blocks to initialized later
4224 */
Dmitry Monakhovc2785312012-10-05 11:31:55 -04004225 ext4_flush_unwritten_io(inode);
Jiaying Zhang3889fd52011-01-10 12:47:05 -05004226
4227 /*
Alex Tomasa86c6182006-10-11 01:21:03 -07004228 * probably first extent we're gonna free will be last in block
4229 */
Mingming Caof3bd1f32008-08-19 22:16:03 -04004230 err = ext4_writepage_trans_blocks(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07004231 handle = ext4_journal_start(inode, err);
Jan Karacf108bc2008-07-11 19:27:31 -04004232 if (IS_ERR(handle))
Alex Tomasa86c6182006-10-11 01:21:03 -07004233 return;
Alex Tomasa86c6182006-10-11 01:21:03 -07004234
Allison Henderson189e8682011-09-06 21:49:44 -04004235 if (inode->i_size % PAGE_CACHE_SIZE != 0) {
4236 page_len = PAGE_CACHE_SIZE -
4237 (inode->i_size & (PAGE_CACHE_SIZE - 1));
4238
4239 err = ext4_discard_partial_page_buffers(handle,
4240 mapping, inode->i_size, page_len, 0);
4241
4242 if (err)
4243 goto out_stop;
4244 }
Alex Tomasa86c6182006-10-11 01:21:03 -07004245
Jan Kara9ddfc3d2008-07-11 19:27:31 -04004246 if (ext4_orphan_add(handle, inode))
4247 goto out_stop;
4248
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05004249 down_write(&EXT4_I(inode)->i_data_sem);
Alex Tomasa86c6182006-10-11 01:21:03 -07004250 ext4_ext_invalidate_cache(inode);
4251
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004252 ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05004253
Alex Tomasa86c6182006-10-11 01:21:03 -07004254 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07004255 * TODO: optimization is possible here.
4256 * Probably we need not scan at all,
4257 * because page truncation is enough.
Alex Tomasa86c6182006-10-11 01:21:03 -07004258 */
Alex Tomasa86c6182006-10-11 01:21:03 -07004259
4260 /* we have to know where to truncate from in crash case */
4261 EXT4_I(inode)->i_disksize = inode->i_size;
4262 ext4_mark_inode_dirty(handle, inode);
4263
4264 last_block = (inode->i_size + sb->s_blocksize - 1)
4265 >> EXT4_BLOCK_SIZE_BITS(sb);
Zheng Liu51865fd2012-11-08 21:57:32 -05004266 err = ext4_es_remove_extent(inode, last_block,
4267 EXT_MAX_BLOCKS - last_block);
Lukas Czerner5f95d212012-03-19 23:03:19 -04004268 err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCKS - 1);
Alex Tomasa86c6182006-10-11 01:21:03 -07004269
4270 /* In a multi-transaction truncate, we only make the final
Amit Arora56055d32007-07-17 21:42:38 -04004271 * transaction synchronous.
4272 */
Alex Tomasa86c6182006-10-11 01:21:03 -07004273 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05004274 ext4_handle_sync(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004275
Jan Kara9ddfc3d2008-07-11 19:27:31 -04004276 up_write(&EXT4_I(inode)->i_data_sem);
Eric Gouriouf6d2f6b2011-05-22 21:33:00 -04004277
4278out_stop:
Alex Tomasa86c6182006-10-11 01:21:03 -07004279 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07004280 * If this was a simple ftruncate() and the file will remain alive,
Alex Tomasa86c6182006-10-11 01:21:03 -07004281 * then we need to clear up the orphan record which we created above.
4282 * However, if this was a real unlink then we were called by
4283 * ext4_delete_inode(), and we allow that function to clean up the
4284 * orphan info for us.
4285 */
4286 if (inode->i_nlink)
4287 ext4_orphan_del(handle, inode);
4288
Solofo Ramangalahyef737722008-04-29 22:00:41 -04004289 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4290 ext4_mark_inode_dirty(handle, inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07004291 ext4_journal_stop(handle);
4292}
4293
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004294static void ext4_falloc_update_inode(struct inode *inode,
4295 int mode, loff_t new_size, int update_ctime)
4296{
4297 struct timespec now;
4298
4299 if (update_ctime) {
4300 now = current_fs_time(inode->i_sb);
4301 if (!timespec_equal(&inode->i_ctime, &now))
4302 inode->i_ctime = now;
4303 }
4304 /*
4305 * Update only when preallocation was requested beyond
4306 * the file size.
4307 */
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04004308 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
4309 if (new_size > i_size_read(inode))
4310 i_size_write(inode, new_size);
4311 if (new_size > EXT4_I(inode)->i_disksize)
4312 ext4_update_i_disksize(inode, new_size);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004313 } else {
4314 /*
4315 * Mark that we allocate beyond EOF so the subsequent truncate
4316 * can proceed even if the new size is the same as i_size.
4317 */
4318 if (new_size > i_size_read(inode))
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004319 ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004320 }
4321
4322}
4323
Amit Aroraa2df2a62007-07-17 21:42:41 -04004324/*
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01004325 * preallocate space for a file. This implements ext4's fallocate file
Amit Aroraa2df2a62007-07-17 21:42:41 -04004326 * operation, which gets called from sys_fallocate system call.
4327 * For block-mapped files, posix_fallocate should fall back to the method
4328 * of writing zeroes to the required new blocks (the same behavior which is
4329 * expected for file systems which do not support fallocate() system call).
4330 */
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01004331long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
Amit Aroraa2df2a62007-07-17 21:42:41 -04004332{
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01004333 struct inode *inode = file->f_path.dentry->d_inode;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004334 handle_t *handle;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004335 loff_t new_size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004336 unsigned int max_blocks;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004337 int ret = 0;
4338 int ret2 = 0;
4339 int retries = 0;
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004340 int flags;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004341 struct ext4_map_blocks map;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004342 unsigned int credits, blkbits = inode->i_blkbits;
4343
4344 /*
4345 * currently supporting (pre)allocate mode for extent-based
4346 * files _only_
4347 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004348 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Amit Aroraa2df2a62007-07-17 21:42:41 -04004349 return -EOPNOTSUPP;
4350
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004351 /* Return error if mode is not supported */
4352 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
4353 return -EOPNOTSUPP;
4354
4355 if (mode & FALLOC_FL_PUNCH_HOLE)
4356 return ext4_punch_hole(file, offset, len);
4357
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004358 trace_ext4_fallocate_enter(inode, offset, len, mode);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004359 map.m_lblk = offset >> blkbits;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004360 /*
4361 * We can't just convert len to max_blocks because
4362 * If blocksize = 4096 offset = 3072 and len = 2048
4363 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04004364 max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004365 - map.m_lblk;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004366 /*
Mingming Caof3bd1f32008-08-19 22:16:03 -04004367 * credits to insert 1 extent into extent tree
Amit Aroraa2df2a62007-07-17 21:42:41 -04004368 */
Mingming Caof3bd1f32008-08-19 22:16:03 -04004369 credits = ext4_chunk_trans_blocks(inode, max_blocks);
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05004370 mutex_lock(&inode->i_mutex);
Nikanth Karthikesan6d19c422010-05-16 14:00:00 -04004371 ret = inode_newsize_ok(inode, (len + offset));
4372 if (ret) {
4373 mutex_unlock(&inode->i_mutex);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004374 trace_ext4_fallocate_exit(inode, offset, max_blocks, ret);
Nikanth Karthikesan6d19c422010-05-16 14:00:00 -04004375 return ret;
4376 }
Greg Harm3c6fe772011-10-31 18:41:47 -04004377 flags = EXT4_GET_BLOCKS_CREATE_UNINIT_EXT;
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004378 if (mode & FALLOC_FL_KEEP_SIZE)
4379 flags |= EXT4_GET_BLOCKS_KEEP_SIZE;
Greg Harm3c6fe772011-10-31 18:41:47 -04004380 /*
4381 * Don't normalize the request if it can fit in one extent so
4382 * that it doesn't get unnecessarily split into multiple
4383 * extents.
4384 */
4385 if (len <= EXT_UNINIT_MAX_LEN << blkbits)
4386 flags |= EXT4_GET_BLOCKS_NO_NORMALIZE;
Dmitry Monakhov60d46162012-10-05 11:32:02 -04004387
4388 /* Prevent race condition between unwritten */
4389 ext4_flush_unwritten_io(inode);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004390retry:
4391 while (ret >= 0 && ret < max_blocks) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004392 map.m_lblk = map.m_lblk + ret;
4393 map.m_len = max_blocks = max_blocks - ret;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004394 handle = ext4_journal_start(inode, credits);
4395 if (IS_ERR(handle)) {
4396 ret = PTR_ERR(handle);
4397 break;
4398 }
Dmitry Monakhova4e5d882011-10-25 08:15:12 -04004399 ret = ext4_map_blocks(handle, inode, &map, flags);
Aneesh Kumar K.V221879c2008-01-28 23:58:27 -05004400 if (ret <= 0) {
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05004401#ifdef EXT4FS_DEBUG
4402 WARN_ON(ret <= 0);
Theodore Ts'oe35fd662010-05-16 19:00:00 -04004403 printk(KERN_ERR "%s: ext4_ext_map_blocks "
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05004404 "returned error inode#%lu, block=%u, "
Thadeu Lima de Souza Cascardo9fd97842009-01-26 19:26:26 -05004405 "max_blocks=%u", __func__,
Kazuya Mioa6371b62010-10-27 21:30:15 -04004406 inode->i_ino, map.m_lblk, max_blocks);
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05004407#endif
Amit Aroraa2df2a62007-07-17 21:42:41 -04004408 ext4_mark_inode_dirty(handle, inode);
4409 ret2 = ext4_journal_stop(handle);
4410 break;
4411 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004412 if ((map.m_lblk + ret) >= (EXT4_BLOCK_ALIGN(offset + len,
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004413 blkbits) >> blkbits))
4414 new_size = offset + len;
4415 else
Utako Kusaka29ae07b2011-07-27 22:11:20 -04004416 new_size = ((loff_t) map.m_lblk + ret) << blkbits;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004417
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004418 ext4_falloc_update_inode(inode, mode, new_size,
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004419 (map.m_flags & EXT4_MAP_NEW));
Amit Aroraa2df2a62007-07-17 21:42:41 -04004420 ext4_mark_inode_dirty(handle, inode);
Zheng Liuf4e95b32012-06-30 19:12:57 -04004421 if ((file->f_flags & O_SYNC) && ret >= max_blocks)
4422 ext4_handle_sync(handle);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004423 ret2 = ext4_journal_stop(handle);
4424 if (ret2)
4425 break;
4426 }
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04004427 if (ret == -ENOSPC &&
4428 ext4_should_retry_alloc(inode->i_sb, &retries)) {
4429 ret = 0;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004430 goto retry;
Amit Aroraa2df2a62007-07-17 21:42:41 -04004431 }
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05004432 mutex_unlock(&inode->i_mutex);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004433 trace_ext4_fallocate_exit(inode, offset, max_blocks,
4434 ret > 0 ? ret2 : ret);
Amit Aroraa2df2a62007-07-17 21:42:41 -04004435 return ret > 0 ? ret2 : ret;
4436}
Eric Sandeen6873fa02008-10-07 00:46:36 -04004437
4438/*
Mingming Cao00314622009-09-28 15:49:08 -04004439 * This function convert a range of blocks to written extents
4440 * The caller of this function will pass the start offset and the size.
4441 * all unwritten extents within this range will be converted to
4442 * written extents.
4443 *
4444 * This function is called from the direct IO end io call back
4445 * function, to convert the fallocated extents after IO is completed.
Mingming109f5562009-11-10 10:48:08 -05004446 * Returns 0 on success.
Mingming Cao00314622009-09-28 15:49:08 -04004447 */
4448int ext4_convert_unwritten_extents(struct inode *inode, loff_t offset,
Eric Sandeena1de02d2010-02-04 23:58:38 -05004449 ssize_t len)
Mingming Cao00314622009-09-28 15:49:08 -04004450{
4451 handle_t *handle;
Mingming Cao00314622009-09-28 15:49:08 -04004452 unsigned int max_blocks;
4453 int ret = 0;
4454 int ret2 = 0;
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004455 struct ext4_map_blocks map;
Mingming Cao00314622009-09-28 15:49:08 -04004456 unsigned int credits, blkbits = inode->i_blkbits;
4457
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004458 map.m_lblk = offset >> blkbits;
Mingming Cao00314622009-09-28 15:49:08 -04004459 /*
4460 * We can't just convert len to max_blocks because
4461 * If blocksize = 4096 offset = 3072 and len = 2048
4462 */
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004463 max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) -
4464 map.m_lblk);
Mingming Cao00314622009-09-28 15:49:08 -04004465 /*
4466 * credits to insert 1 extent into extent tree
4467 */
4468 credits = ext4_chunk_trans_blocks(inode, max_blocks);
4469 while (ret >= 0 && ret < max_blocks) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004470 map.m_lblk += ret;
4471 map.m_len = (max_blocks -= ret);
Mingming Cao00314622009-09-28 15:49:08 -04004472 handle = ext4_journal_start(inode, credits);
4473 if (IS_ERR(handle)) {
4474 ret = PTR_ERR(handle);
4475 break;
4476 }
Theodore Ts'o2ed88682010-05-16 20:00:00 -04004477 ret = ext4_map_blocks(handle, inode, &map,
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05004478 EXT4_GET_BLOCKS_IO_CONVERT_EXT);
Mingming Cao00314622009-09-28 15:49:08 -04004479 if (ret <= 0) {
4480 WARN_ON(ret <= 0);
Theodore Ts'o92b97812012-03-19 23:41:49 -04004481 ext4_msg(inode->i_sb, KERN_ERR,
4482 "%s:%d: inode #%lu: block %u: len %u: "
4483 "ext4_ext_map_blocks returned %d",
4484 __func__, __LINE__, inode->i_ino, map.m_lblk,
4485 map.m_len, ret);
Mingming Cao00314622009-09-28 15:49:08 -04004486 }
4487 ext4_mark_inode_dirty(handle, inode);
4488 ret2 = ext4_journal_stop(handle);
4489 if (ret <= 0 || ret2 )
4490 break;
4491 }
4492 return ret > 0 ? ret2 : ret;
4493}
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004494
Mingming Cao00314622009-09-28 15:49:08 -04004495/*
Eric Sandeen6873fa02008-10-07 00:46:36 -04004496 * Callback function called for each extent to gather FIEMAP information.
4497 */
Lukas Czernerc03f8aa2011-06-06 00:06:52 -04004498static int ext4_ext_fiemap_cb(struct inode *inode, ext4_lblk_t next,
Eric Sandeen6873fa02008-10-07 00:46:36 -04004499 struct ext4_ext_cache *newex, struct ext4_extent *ex,
4500 void *data)
4501{
Zheng Liub3aff3e2012-11-08 21:57:37 -05004502 struct extent_status es;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004503 __u64 logical;
4504 __u64 physical;
4505 __u64 length;
4506 __u32 flags = 0;
Zheng Liub3aff3e2012-11-08 21:57:37 -05004507 ext4_lblk_t next_del;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004508 int ret = 0;
4509 struct fiemap_extent_info *fieinfo = data;
4510 unsigned char blksize_bits;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004511
Zheng Liub3aff3e2012-11-08 21:57:37 -05004512 es.start = newex->ec_block;
4513 next_del = ext4_es_find_extent(inode, &es);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004514
Zheng Liub3aff3e2012-11-08 21:57:37 -05004515 next = min(next_del, next);
Theodore Ts'ob05e6ae2011-01-10 12:13:26 -05004516 if (newex->ec_start == 0) {
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004517 /*
4518 * No extent in extent-tree contains block @newex->ec_start,
4519 * then the block may stay in 1)a hole or 2)delayed-extent.
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004520 */
Zheng Liub3aff3e2012-11-08 21:57:37 -05004521 if (es.len == 0)
4522 /* A hole found. */
4523 return EXT_CONTINUE;
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004524
Zheng Liub3aff3e2012-11-08 21:57:37 -05004525 if (es.start > newex->ec_block) {
4526 /* A hole found. */
4527 newex->ec_len = min(es.start - newex->ec_block,
4528 newex->ec_len);
4529 return EXT_CONTINUE;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004530 }
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004531
Zheng Liub3aff3e2012-11-08 21:57:37 -05004532 flags |= FIEMAP_EXTENT_DELALLOC;
4533 newex->ec_len = es.start + es.len - newex->ec_block;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004534 }
4535
Eric Sandeen6873fa02008-10-07 00:46:36 -04004536 if (ex && ext4_ext_is_uninitialized(ex))
4537 flags |= FIEMAP_EXTENT_UNWRITTEN;
4538
Lukas Czernerc03f8aa2011-06-06 00:06:52 -04004539 if (next == EXT_MAX_BLOCKS)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004540 flags |= FIEMAP_EXTENT_LAST;
4541
Zheng Liub3aff3e2012-11-08 21:57:37 -05004542 blksize_bits = inode->i_sb->s_blocksize_bits;
4543 logical = (__u64)newex->ec_block << blksize_bits;
4544 physical = (__u64)newex->ec_start << blksize_bits;
4545 length = (__u64)newex->ec_len << blksize_bits;
4546
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004547 ret = fiemap_fill_next_extent(fieinfo, logical, physical,
Eric Sandeen6873fa02008-10-07 00:46:36 -04004548 length, flags);
Yongqiang Yang6d9c85e2011-02-27 17:25:47 -05004549 if (ret < 0)
4550 return ret;
4551 if (ret == 1)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004552 return EXT_BREAK;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004553 return EXT_CONTINUE;
4554}
Eric Sandeen6873fa02008-10-07 00:46:36 -04004555/* fiemap flags we can handle specified here */
4556#define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
4557
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004558static int ext4_xattr_fiemap(struct inode *inode,
4559 struct fiemap_extent_info *fieinfo)
Eric Sandeen6873fa02008-10-07 00:46:36 -04004560{
4561 __u64 physical = 0;
4562 __u64 length;
4563 __u32 flags = FIEMAP_EXTENT_LAST;
4564 int blockbits = inode->i_sb->s_blocksize_bits;
4565 int error = 0;
4566
4567 /* in-inode? */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004568 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Eric Sandeen6873fa02008-10-07 00:46:36 -04004569 struct ext4_iloc iloc;
4570 int offset; /* offset of xattr in inode */
4571
4572 error = ext4_get_inode_loc(inode, &iloc);
4573 if (error)
4574 return error;
4575 physical = iloc.bh->b_blocknr << blockbits;
4576 offset = EXT4_GOOD_OLD_INODE_SIZE +
4577 EXT4_I(inode)->i_extra_isize;
4578 physical += offset;
4579 length = EXT4_SB(inode->i_sb)->s_inode_size - offset;
4580 flags |= FIEMAP_EXTENT_DATA_INLINE;
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004581 brelse(iloc.bh);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004582 } else { /* external block */
4583 physical = EXT4_I(inode)->i_file_acl << blockbits;
4584 length = inode->i_sb->s_blocksize;
4585 }
4586
4587 if (physical)
4588 error = fiemap_fill_next_extent(fieinfo, 0, physical,
4589 length, flags);
4590 return (error < 0 ? error : 0);
4591}
4592
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004593/*
4594 * ext4_ext_punch_hole
4595 *
4596 * Punches a hole of "length" bytes in a file starting
4597 * at byte "offset"
4598 *
4599 * @inode: The inode of the file to punch a hole in
4600 * @offset: The starting byte offset of the hole
4601 * @length: The length of the hole
4602 *
4603 * Returns the number of blocks removed or negative on err
4604 */
4605int ext4_ext_punch_hole(struct file *file, loff_t offset, loff_t length)
4606{
4607 struct inode *inode = file->f_path.dentry->d_inode;
4608 struct super_block *sb = inode->i_sb;
Lukas Czerner5f95d212012-03-19 23:03:19 -04004609 ext4_lblk_t first_block, stop_block;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004610 struct address_space *mapping = inode->i_mapping;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004611 handle_t *handle;
Allison Hendersonba062082011-09-03 11:55:59 -04004612 loff_t first_page, last_page, page_len;
4613 loff_t first_page_offset, last_page_offset;
Lukas Czerner5f95d212012-03-19 23:03:19 -04004614 int credits, err = 0;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004615
Dmitry Monakhov02d262d2012-09-30 23:03:42 -04004616 /*
4617 * Write out all dirty pages to avoid race conditions
4618 * Then release them.
4619 */
4620 if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
4621 err = filemap_write_and_wait_range(mapping,
4622 offset, offset + length - 1);
4623
4624 if (err)
4625 return err;
4626 }
4627
4628 mutex_lock(&inode->i_mutex);
4629 /* It's not possible punch hole on append only file */
4630 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
4631 err = -EPERM;
4632 goto out_mutex;
4633 }
4634 if (IS_SWAPFILE(inode)) {
4635 err = -ETXTBSY;
4636 goto out_mutex;
4637 }
4638
Allison Henderson2be47512011-09-03 11:56:52 -04004639 /* No need to punch hole beyond i_size */
4640 if (offset >= inode->i_size)
Dmitry Monakhov02d262d2012-09-30 23:03:42 -04004641 goto out_mutex;
Allison Henderson2be47512011-09-03 11:56:52 -04004642
4643 /*
4644 * If the hole extends beyond i_size, set the hole
4645 * to end after the page that contains i_size
4646 */
4647 if (offset + length > inode->i_size) {
4648 length = inode->i_size +
4649 PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
4650 offset;
4651 }
4652
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004653 first_page = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
4654 last_page = (offset + length) >> PAGE_CACHE_SHIFT;
4655
4656 first_page_offset = first_page << PAGE_CACHE_SHIFT;
4657 last_page_offset = last_page << PAGE_CACHE_SHIFT;
4658
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004659 /* Now release the pages */
4660 if (last_page_offset > first_page_offset) {
Hugh Dickins5e44f8c2012-06-01 00:15:28 -04004661 truncate_pagecache_range(inode, first_page_offset,
4662 last_page_offset - 1);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004663 }
4664
Dmitry Monakhov02d262d2012-09-30 23:03:42 -04004665 /* Wait all existing dio workers, newcomers will block on i_mutex */
4666 ext4_inode_block_unlocked_dio(inode);
Dmitry Monakhovc2785312012-10-05 11:31:55 -04004667 err = ext4_flush_unwritten_io(inode);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -04004668 if (err)
Dmitry Monakhov02d262d2012-09-30 23:03:42 -04004669 goto out_dio;
Dmitry Monakhovc2785312012-10-05 11:31:55 -04004670 inode_dio_wait(inode);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004671
4672 credits = ext4_writepage_trans_blocks(inode);
4673 handle = ext4_journal_start(inode, credits);
Dmitry Monakhov02d262d2012-09-30 23:03:42 -04004674 if (IS_ERR(handle)) {
4675 err = PTR_ERR(handle);
4676 goto out_dio;
4677 }
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004678
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004679
4680 /*
Allison Hendersonba062082011-09-03 11:55:59 -04004681 * Now we need to zero out the non-page-aligned data in the
4682 * pages at the start and tail of the hole, and unmap the buffer
4683 * heads for the block aligned regions of the page that were
4684 * completely zeroed.
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004685 */
Allison Hendersonba062082011-09-03 11:55:59 -04004686 if (first_page > last_page) {
4687 /*
4688 * If the file space being truncated is contained within a page
4689 * just zero out and unmap the middle of that page
4690 */
4691 err = ext4_discard_partial_page_buffers(handle,
4692 mapping, offset, length, 0);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004693
Allison Hendersonba062082011-09-03 11:55:59 -04004694 if (err)
4695 goto out;
4696 } else {
4697 /*
4698 * zero out and unmap the partial page that contains
4699 * the start of the hole
4700 */
4701 page_len = first_page_offset - offset;
4702 if (page_len > 0) {
4703 err = ext4_discard_partial_page_buffers(handle, mapping,
4704 offset, page_len, 0);
4705 if (err)
4706 goto out;
4707 }
4708
4709 /*
4710 * zero out and unmap the partial page that contains
4711 * the end of the hole
4712 */
4713 page_len = offset + length - last_page_offset;
4714 if (page_len > 0) {
4715 err = ext4_discard_partial_page_buffers(handle, mapping,
4716 last_page_offset, page_len, 0);
4717 if (err)
4718 goto out;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004719 }
4720 }
4721
Allison Henderson2be47512011-09-03 11:56:52 -04004722 /*
4723 * If i_size is contained in the last page, we need to
4724 * unmap and zero the partial page after i_size
4725 */
4726 if (inode->i_size >> PAGE_CACHE_SHIFT == last_page &&
4727 inode->i_size % PAGE_CACHE_SIZE != 0) {
4728
4729 page_len = PAGE_CACHE_SIZE -
4730 (inode->i_size & (PAGE_CACHE_SIZE - 1));
4731
4732 if (page_len > 0) {
4733 err = ext4_discard_partial_page_buffers(handle,
4734 mapping, inode->i_size, page_len, 0);
4735
4736 if (err)
4737 goto out;
4738 }
4739 }
4740
Lukas Czerner5f95d212012-03-19 23:03:19 -04004741 first_block = (offset + sb->s_blocksize - 1) >>
4742 EXT4_BLOCK_SIZE_BITS(sb);
4743 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4744
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004745 /* If there are no blocks to remove, return now */
Lukas Czerner5f95d212012-03-19 23:03:19 -04004746 if (first_block >= stop_block)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004747 goto out;
4748
4749 down_write(&EXT4_I(inode)->i_data_sem);
4750 ext4_ext_invalidate_cache(inode);
4751 ext4_discard_preallocations(inode);
4752
Zheng Liu51865fd2012-11-08 21:57:32 -05004753 err = ext4_es_remove_extent(inode, first_block,
4754 stop_block - first_block);
Lukas Czerner5f95d212012-03-19 23:03:19 -04004755 err = ext4_ext_remove_space(inode, first_block, stop_block - 1);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004756
Lukas Czerner5f95d212012-03-19 23:03:19 -04004757 ext4_ext_invalidate_cache(inode);
4758 ext4_discard_preallocations(inode);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004759
4760 if (IS_SYNC(inode))
4761 ext4_handle_sync(handle);
4762
4763 up_write(&EXT4_I(inode)->i_data_sem);
4764
4765out:
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004766 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4767 ext4_mark_inode_dirty(handle, inode);
4768 ext4_journal_stop(handle);
Dmitry Monakhov02d262d2012-09-30 23:03:42 -04004769out_dio:
4770 ext4_inode_resume_unlocked_dio(inode);
4771out_mutex:
4772 mutex_unlock(&inode->i_mutex);
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004773 return err;
4774}
Eric Sandeen6873fa02008-10-07 00:46:36 -04004775int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
4776 __u64 start, __u64 len)
4777{
4778 ext4_lblk_t start_blk;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004779 int error = 0;
4780
4781 /* fallback to generic here if not in extents fmt */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004782 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Eric Sandeen6873fa02008-10-07 00:46:36 -04004783 return generic_block_fiemap(inode, fieinfo, start, len,
4784 ext4_get_block);
4785
4786 if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS))
4787 return -EBADR;
4788
4789 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
4790 error = ext4_xattr_fiemap(inode, fieinfo);
4791 } else {
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004792 ext4_lblk_t len_blks;
4793 __u64 last_blk;
4794
Eric Sandeen6873fa02008-10-07 00:46:36 -04004795 start_blk = start >> inode->i_sb->s_blocksize_bits;
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004796 last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits;
Lukas Czernerf17722f2011-06-06 00:05:17 -04004797 if (last_blk >= EXT_MAX_BLOCKS)
4798 last_blk = EXT_MAX_BLOCKS-1;
Leonard Michlmayraca92ff2010-03-04 17:07:28 -05004799 len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1;
Eric Sandeen6873fa02008-10-07 00:46:36 -04004800
4801 /*
4802 * Walk the extent tree gathering extent information.
4803 * ext4_ext_fiemap_cb will push extents back to user.
4804 */
Eric Sandeen6873fa02008-10-07 00:46:36 -04004805 error = ext4_ext_walk_space(inode, start_blk, len_blks,
4806 ext4_ext_fiemap_cb, fieinfo);
Eric Sandeen6873fa02008-10-07 00:46:36 -04004807 }
4808
4809 return error;
4810}