blob: 743e3feb3e50b86b5783b37363395ac08f91a528 [file] [log] [blame]
Alex Tomasa86c6182006-10-11 01:21:03 -07001/*
2 * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
3 * Written by Alex Tomas <alex@clusterfs.com>
4 *
5 * Architecture independence:
6 * Copyright (c) 2005, Bull S.A.
7 * Written by Pierre Peiffer <pierre.peiffer@bull.net>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public Licens
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
21 */
22
23/*
24 * Extents support for EXT4
25 *
26 * TODO:
27 * - ext4*_error() should be used in some situations
28 * - analyze all BUG()/BUG_ON(), use -EIO where appropriate
29 * - smart tree reduction
30 */
31
32#include <linux/module.h>
33#include <linux/fs.h>
34#include <linux/time.h>
Mingming Caocd02ff02007-10-16 18:38:25 -040035#include <linux/jbd2.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070036#include <linux/highuid.h>
37#include <linux/pagemap.h>
38#include <linux/quotaops.h>
39#include <linux/string.h>
40#include <linux/slab.h>
Amit Aroraa2df2a62007-07-17 21:42:41 -040041#include <linux/falloc.h>
Alex Tomasa86c6182006-10-11 01:21:03 -070042#include <asm/uaccess.h>
Eric Sandeen6873fa02008-10-07 00:46:36 -040043#include <linux/fiemap.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040044#include "ext4_jbd2.h"
45#include "ext4_extents.h"
Alex Tomasa86c6182006-10-11 01:21:03 -070046
47
Randy Dunlapd0d856e2006-10-11 01:21:07 -070048/*
49 * ext_pblock:
50 * combine low and high parts of physical block number into ext4_fsblk_t
51 */
Avantika Mathur09b88252006-12-06 20:41:36 -080052static ext4_fsblk_t ext_pblock(struct ext4_extent *ex)
Alex Tomasf65e6fb2006-10-11 01:21:05 -070053{
54 ext4_fsblk_t block;
55
Aneesh Kumar K.Vb3776112007-10-16 18:38:25 -040056 block = le32_to_cpu(ex->ee_start_lo);
Mingming Cao9b8f1f02006-10-11 01:21:13 -070057 block |= ((ext4_fsblk_t) le16_to_cpu(ex->ee_start_hi) << 31) << 1;
Alex Tomasf65e6fb2006-10-11 01:21:05 -070058 return block;
59}
60
Randy Dunlapd0d856e2006-10-11 01:21:07 -070061/*
62 * idx_pblock:
63 * combine low and high parts of a leaf physical block number into ext4_fsblk_t
64 */
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050065ext4_fsblk_t idx_pblock(struct ext4_extent_idx *ix)
Alex Tomasf65e6fb2006-10-11 01:21:05 -070066{
67 ext4_fsblk_t block;
68
Aneesh Kumar K.Vd8dd0b42007-10-16 18:38:25 -040069 block = le32_to_cpu(ix->ei_leaf_lo);
Mingming Cao9b8f1f02006-10-11 01:21:13 -070070 block |= ((ext4_fsblk_t) le16_to_cpu(ix->ei_leaf_hi) << 31) << 1;
Alex Tomasf65e6fb2006-10-11 01:21:05 -070071 return block;
72}
73
Randy Dunlapd0d856e2006-10-11 01:21:07 -070074/*
75 * ext4_ext_store_pblock:
76 * stores a large physical block number into an extent struct,
77 * breaking it into parts
78 */
Aneesh Kumar K.Vc14c6fd2008-01-28 23:58:26 -050079void ext4_ext_store_pblock(struct ext4_extent *ex, ext4_fsblk_t pb)
Alex Tomasf65e6fb2006-10-11 01:21:05 -070080{
Aneesh Kumar K.Vb3776112007-10-16 18:38:25 -040081 ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
Mingming Cao9b8f1f02006-10-11 01:21:13 -070082 ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff);
Alex Tomasf65e6fb2006-10-11 01:21:05 -070083}
84
Randy Dunlapd0d856e2006-10-11 01:21:07 -070085/*
86 * ext4_idx_store_pblock:
87 * stores a large physical block number into an index struct,
88 * breaking it into parts
89 */
Avantika Mathur09b88252006-12-06 20:41:36 -080090static void ext4_idx_store_pblock(struct ext4_extent_idx *ix, ext4_fsblk_t pb)
Alex Tomasf65e6fb2006-10-11 01:21:05 -070091{
Aneesh Kumar K.Vd8dd0b42007-10-16 18:38:25 -040092 ix->ei_leaf_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
Mingming Cao9b8f1f02006-10-11 01:21:13 -070093 ix->ei_leaf_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & 0xffff);
Alex Tomasf65e6fb2006-10-11 01:21:05 -070094}
95
Shen Feng9102e4f2008-07-11 19:27:31 -040096static int ext4_ext_journal_restart(handle_t *handle, int needed)
Alex Tomasa86c6182006-10-11 01:21:03 -070097{
98 int err;
99
Frank Mayhar03901312009-01-07 00:06:22 -0500100 if (!ext4_handle_valid(handle))
101 return 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700102 if (handle->h_buffer_credits > needed)
Shen Feng9102e4f2008-07-11 19:27:31 -0400103 return 0;
104 err = ext4_journal_extend(handle, needed);
Theodore Ts'o0123c932008-08-01 20:57:54 -0400105 if (err <= 0)
Shen Feng9102e4f2008-07-11 19:27:31 -0400106 return err;
107 return ext4_journal_restart(handle, needed);
Alex Tomasa86c6182006-10-11 01:21:03 -0700108}
109
110/*
111 * could return:
112 * - EROFS
113 * - ENOMEM
114 */
115static int ext4_ext_get_access(handle_t *handle, struct inode *inode,
116 struct ext4_ext_path *path)
117{
118 if (path->p_bh) {
119 /* path points to block */
120 return ext4_journal_get_write_access(handle, path->p_bh);
121 }
122 /* path points to leaf/index in inode body */
123 /* we use in-core data, no need to protect them */
124 return 0;
125}
126
127/*
128 * could return:
129 * - EROFS
130 * - ENOMEM
131 * - EIO
132 */
133static int ext4_ext_dirty(handle_t *handle, struct inode *inode,
134 struct ext4_ext_path *path)
135{
136 int err;
137 if (path->p_bh) {
138 /* path points to block */
Frank Mayhar03901312009-01-07 00:06:22 -0500139 err = ext4_handle_dirty_metadata(handle, inode, path->p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700140 } else {
141 /* path points to leaf/index in inode body */
142 err = ext4_mark_inode_dirty(handle, inode);
143 }
144 return err;
145}
146
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700147static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700148 struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500149 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700150{
151 struct ext4_inode_info *ei = EXT4_I(inode);
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700152 ext4_fsblk_t bg_start;
Valerie Clement74d34872008-02-15 13:43:07 -0500153 ext4_fsblk_t last_block;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700154 ext4_grpblk_t colour;
Alex Tomasa86c6182006-10-11 01:21:03 -0700155 int depth;
156
157 if (path) {
158 struct ext4_extent *ex;
159 depth = path->p_depth;
160
161 /* try to predict block placement */
Avantika Mathur7e028972006-12-06 20:41:33 -0800162 ex = path[depth].p_ext;
163 if (ex)
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700164 return ext_pblock(ex)+(block-le32_to_cpu(ex->ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700165
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700166 /* it looks like index is empty;
167 * try to find starting block from index itself */
Alex Tomasa86c6182006-10-11 01:21:03 -0700168 if (path[depth].p_bh)
169 return path[depth].p_bh->b_blocknr;
170 }
171
172 /* OK. use inode's group */
173 bg_start = (ei->i_block_group * EXT4_BLOCKS_PER_GROUP(inode->i_sb)) +
174 le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_first_data_block);
Valerie Clement74d34872008-02-15 13:43:07 -0500175 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1;
176
177 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block)
178 colour = (current->pid % 16) *
Alex Tomasa86c6182006-10-11 01:21:03 -0700179 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16);
Valerie Clement74d34872008-02-15 13:43:07 -0500180 else
181 colour = (current->pid % 16) * ((last_block - bg_start) / 16);
Alex Tomasa86c6182006-10-11 01:21:03 -0700182 return bg_start + colour + block;
183}
184
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400185/*
186 * Allocation for a meta data block
187 */
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700188static ext4_fsblk_t
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400189ext4_ext_new_meta_block(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -0700190 struct ext4_ext_path *path,
191 struct ext4_extent *ex, int *err)
192{
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700193 ext4_fsblk_t goal, newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700194
195 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block));
Theodore Ts'o97df5d12008-12-12 12:41:28 -0500196 newblock = ext4_new_meta_blocks(handle, inode, goal, NULL, err);
Alex Tomasa86c6182006-10-11 01:21:03 -0700197 return newblock;
198}
199
Avantika Mathur09b88252006-12-06 20:41:36 -0800200static int ext4_ext_space_block(struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -0700201{
202 int size;
203
204 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
205 / sizeof(struct ext4_extent);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100206#ifdef AGGRESSIVE_TEST
Alex Tomasa86c6182006-10-11 01:21:03 -0700207 if (size > 6)
208 size = 6;
209#endif
210 return size;
211}
212
Avantika Mathur09b88252006-12-06 20:41:36 -0800213static int ext4_ext_space_block_idx(struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -0700214{
215 int size;
216
217 size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header))
218 / sizeof(struct ext4_extent_idx);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100219#ifdef AGGRESSIVE_TEST
Alex Tomasa86c6182006-10-11 01:21:03 -0700220 if (size > 5)
221 size = 5;
222#endif
223 return size;
224}
225
Avantika Mathur09b88252006-12-06 20:41:36 -0800226static int ext4_ext_space_root(struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -0700227{
228 int size;
229
230 size = sizeof(EXT4_I(inode)->i_data);
231 size -= sizeof(struct ext4_extent_header);
232 size /= sizeof(struct ext4_extent);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100233#ifdef AGGRESSIVE_TEST
Alex Tomasa86c6182006-10-11 01:21:03 -0700234 if (size > 3)
235 size = 3;
236#endif
237 return size;
238}
239
Avantika Mathur09b88252006-12-06 20:41:36 -0800240static int ext4_ext_space_root_idx(struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -0700241{
242 int size;
243
244 size = sizeof(EXT4_I(inode)->i_data);
245 size -= sizeof(struct ext4_extent_header);
246 size /= sizeof(struct ext4_extent_idx);
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +0100247#ifdef AGGRESSIVE_TEST
Alex Tomasa86c6182006-10-11 01:21:03 -0700248 if (size > 4)
249 size = 4;
250#endif
251 return size;
252}
253
Mingming Caod2a17632008-07-14 17:52:37 -0400254/*
255 * Calculate the number of metadata blocks needed
256 * to allocate @blocks
257 * Worse case is one block per extent
258 */
259int ext4_ext_calc_metadata_amount(struct inode *inode, int blocks)
260{
261 int lcap, icap, rcap, leafs, idxs, num;
262 int newextents = blocks;
263
264 rcap = ext4_ext_space_root_idx(inode);
265 lcap = ext4_ext_space_block(inode);
266 icap = ext4_ext_space_block_idx(inode);
267
268 /* number of new leaf blocks needed */
269 num = leafs = (newextents + lcap - 1) / lcap;
270
271 /*
272 * Worse case, we need separate index block(s)
273 * to link all new leaf blocks
274 */
275 idxs = (leafs + icap - 1) / icap;
276 do {
277 num += idxs;
278 idxs = (idxs + icap - 1) / icap;
279 } while (idxs > rcap);
280
281 return num;
282}
283
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400284static int
285ext4_ext_max_entries(struct inode *inode, int depth)
286{
287 int max;
288
289 if (depth == ext_depth(inode)) {
290 if (depth == 0)
291 max = ext4_ext_space_root(inode);
292 else
293 max = ext4_ext_space_root_idx(inode);
294 } else {
295 if (depth == 0)
296 max = ext4_ext_space_block(inode);
297 else
298 max = ext4_ext_space_block_idx(inode);
299 }
300
301 return max;
302}
303
304static int __ext4_ext_check_header(const char *function, struct inode *inode,
305 struct ext4_extent_header *eh,
306 int depth)
307{
308 const char *error_msg;
309 int max = 0;
310
311 if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) {
312 error_msg = "invalid magic";
313 goto corrupted;
314 }
315 if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) {
316 error_msg = "unexpected eh_depth";
317 goto corrupted;
318 }
319 if (unlikely(eh->eh_max == 0)) {
320 error_msg = "invalid eh_max";
321 goto corrupted;
322 }
323 max = ext4_ext_max_entries(inode, depth);
324 if (unlikely(le16_to_cpu(eh->eh_max) > max)) {
325 error_msg = "too large eh_max";
326 goto corrupted;
327 }
328 if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) {
329 error_msg = "invalid eh_entries";
330 goto corrupted;
331 }
332 return 0;
333
334corrupted:
335 ext4_error(inode->i_sb, function,
336 "bad header in inode #%lu: %s - magic %x, "
337 "entries %u, max %u(%u), depth %u(%u)",
338 inode->i_ino, error_msg, le16_to_cpu(eh->eh_magic),
339 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max),
340 max, le16_to_cpu(eh->eh_depth), depth);
341
342 return -EIO;
343}
344
345#define ext4_ext_check_header(inode, eh, depth) \
Harvey Harrison46e665e2008-04-17 10:38:59 -0400346 __ext4_ext_check_header(__func__, inode, eh, depth)
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400347
Alex Tomasa86c6182006-10-11 01:21:03 -0700348#ifdef EXT_DEBUG
349static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path)
350{
351 int k, l = path->p_depth;
352
353 ext_debug("path:");
354 for (k = 0; k <= l; k++, path++) {
355 if (path->p_idx) {
Mingming Cao2ae02102006-10-11 01:21:11 -0700356 ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block),
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700357 idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700358 } else if (path->p_ext) {
Mingming Cao2ae02102006-10-11 01:21:11 -0700359 ext_debug(" %d:%d:%llu ",
Alex Tomasa86c6182006-10-11 01:21:03 -0700360 le32_to_cpu(path->p_ext->ee_block),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400361 ext4_ext_get_actual_len(path->p_ext),
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700362 ext_pblock(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700363 } else
364 ext_debug(" []");
365 }
366 ext_debug("\n");
367}
368
369static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path)
370{
371 int depth = ext_depth(inode);
372 struct ext4_extent_header *eh;
373 struct ext4_extent *ex;
374 int i;
375
376 if (!path)
377 return;
378
379 eh = path[depth].p_hdr;
380 ex = EXT_FIRST_EXTENT(eh);
381
382 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) {
Mingming Cao2ae02102006-10-11 01:21:11 -0700383 ext_debug("%d:%d:%llu ", le32_to_cpu(ex->ee_block),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400384 ext4_ext_get_actual_len(ex), ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -0700385 }
386 ext_debug("\n");
387}
388#else
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400389#define ext4_ext_show_path(inode, path)
390#define ext4_ext_show_leaf(inode, path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700391#endif
392
Aneesh Kumar K.Vb35905c2008-02-25 16:54:37 -0500393void ext4_ext_drop_refs(struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700394{
395 int depth = path->p_depth;
396 int i;
397
398 for (i = 0; i <= depth; i++, path++)
399 if (path->p_bh) {
400 brelse(path->p_bh);
401 path->p_bh = NULL;
402 }
403}
404
405/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700406 * ext4_ext_binsearch_idx:
407 * binary search for the closest index of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400408 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700409 */
410static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500411ext4_ext_binsearch_idx(struct inode *inode,
412 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700413{
414 struct ext4_extent_header *eh = path->p_hdr;
415 struct ext4_extent_idx *r, *l, *m;
416
Alex Tomasa86c6182006-10-11 01:21:03 -0700417
Eric Sandeenbba90742008-01-28 23:58:27 -0500418 ext_debug("binsearch for %u(idx): ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700419
420 l = EXT_FIRST_INDEX(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400421 r = EXT_LAST_INDEX(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700422 while (l <= r) {
423 m = l + (r - l) / 2;
424 if (block < le32_to_cpu(m->ei_block))
425 r = m - 1;
426 else
427 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400428 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block),
429 m, le32_to_cpu(m->ei_block),
430 r, le32_to_cpu(r->ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700431 }
432
433 path->p_idx = l - 1;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700434 ext_debug(" -> %d->%lld ", le32_to_cpu(path->p_idx->ei_block),
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400435 idx_pblock(path->p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700436
437#ifdef CHECK_BINSEARCH
438 {
439 struct ext4_extent_idx *chix, *ix;
440 int k;
441
442 chix = ix = EXT_FIRST_INDEX(eh);
443 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) {
444 if (k != 0 &&
445 le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400446 printk(KERN_DEBUG "k=%d, ix=0x%p, "
447 "first=0x%p\n", k,
448 ix, EXT_FIRST_INDEX(eh));
449 printk(KERN_DEBUG "%u <= %u\n",
Alex Tomasa86c6182006-10-11 01:21:03 -0700450 le32_to_cpu(ix->ei_block),
451 le32_to_cpu(ix[-1].ei_block));
452 }
453 BUG_ON(k && le32_to_cpu(ix->ei_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400454 <= le32_to_cpu(ix[-1].ei_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700455 if (block < le32_to_cpu(ix->ei_block))
456 break;
457 chix = ix;
458 }
459 BUG_ON(chix != path->p_idx);
460 }
461#endif
462
463}
464
465/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700466 * ext4_ext_binsearch:
467 * binary search for closest extent of the given block
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400468 * the header must be checked before calling this
Alex Tomasa86c6182006-10-11 01:21:03 -0700469 */
470static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500471ext4_ext_binsearch(struct inode *inode,
472 struct ext4_ext_path *path, ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -0700473{
474 struct ext4_extent_header *eh = path->p_hdr;
475 struct ext4_extent *r, *l, *m;
476
Alex Tomasa86c6182006-10-11 01:21:03 -0700477 if (eh->eh_entries == 0) {
478 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700479 * this leaf is empty:
480 * we get such a leaf in split/add case
Alex Tomasa86c6182006-10-11 01:21:03 -0700481 */
482 return;
483 }
484
Eric Sandeenbba90742008-01-28 23:58:27 -0500485 ext_debug("binsearch for %u: ", block);
Alex Tomasa86c6182006-10-11 01:21:03 -0700486
487 l = EXT_FIRST_EXTENT(eh) + 1;
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400488 r = EXT_LAST_EXTENT(eh);
Alex Tomasa86c6182006-10-11 01:21:03 -0700489
490 while (l <= r) {
491 m = l + (r - l) / 2;
492 if (block < le32_to_cpu(m->ee_block))
493 r = m - 1;
494 else
495 l = m + 1;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400496 ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block),
497 m, le32_to_cpu(m->ee_block),
498 r, le32_to_cpu(r->ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700499 }
500
501 path->p_ext = l - 1;
Mingming Cao2ae02102006-10-11 01:21:11 -0700502 ext_debug(" -> %d:%llu:%d ",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400503 le32_to_cpu(path->p_ext->ee_block),
504 ext_pblock(path->p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400505 ext4_ext_get_actual_len(path->p_ext));
Alex Tomasa86c6182006-10-11 01:21:03 -0700506
507#ifdef CHECK_BINSEARCH
508 {
509 struct ext4_extent *chex, *ex;
510 int k;
511
512 chex = ex = EXT_FIRST_EXTENT(eh);
513 for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) {
514 BUG_ON(k && le32_to_cpu(ex->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400515 <= le32_to_cpu(ex[-1].ee_block));
Alex Tomasa86c6182006-10-11 01:21:03 -0700516 if (block < le32_to_cpu(ex->ee_block))
517 break;
518 chex = ex;
519 }
520 BUG_ON(chex != path->p_ext);
521 }
522#endif
523
524}
525
526int ext4_ext_tree_init(handle_t *handle, struct inode *inode)
527{
528 struct ext4_extent_header *eh;
529
530 eh = ext_inode_hdr(inode);
531 eh->eh_depth = 0;
532 eh->eh_entries = 0;
533 eh->eh_magic = EXT4_EXT_MAGIC;
534 eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode));
535 ext4_mark_inode_dirty(handle, inode);
536 ext4_ext_invalidate_cache(inode);
537 return 0;
538}
539
540struct ext4_ext_path *
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500541ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block,
542 struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -0700543{
544 struct ext4_extent_header *eh;
545 struct buffer_head *bh;
546 short int depth, i, ppos = 0, alloc = 0;
547
548 eh = ext_inode_hdr(inode);
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400549 depth = ext_depth(inode);
550 if (ext4_ext_check_header(inode, eh, depth))
Alex Tomasa86c6182006-10-11 01:21:03 -0700551 return ERR_PTR(-EIO);
552
Alex Tomasa86c6182006-10-11 01:21:03 -0700553
554 /* account possible depth increase */
555 if (!path) {
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800556 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2),
Alex Tomasa86c6182006-10-11 01:21:03 -0700557 GFP_NOFS);
558 if (!path)
559 return ERR_PTR(-ENOMEM);
560 alloc = 1;
561 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700562 path[0].p_hdr = eh;
Shen Feng1973adc2008-07-11 19:27:31 -0400563 path[0].p_bh = NULL;
Alex Tomasa86c6182006-10-11 01:21:03 -0700564
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400565 i = depth;
Alex Tomasa86c6182006-10-11 01:21:03 -0700566 /* walk through the tree */
567 while (i) {
568 ext_debug("depth %d: num %d, max %d\n",
569 ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400570
Alex Tomasa86c6182006-10-11 01:21:03 -0700571 ext4_ext_binsearch_idx(inode, path + ppos, block);
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700572 path[ppos].p_block = idx_pblock(path[ppos].p_idx);
Alex Tomasa86c6182006-10-11 01:21:03 -0700573 path[ppos].p_depth = i;
574 path[ppos].p_ext = NULL;
575
576 bh = sb_bread(inode->i_sb, path[ppos].p_block);
577 if (!bh)
578 goto err;
579
580 eh = ext_block_hdr(bh);
581 ppos++;
582 BUG_ON(ppos > depth);
583 path[ppos].p_bh = bh;
584 path[ppos].p_hdr = eh;
585 i--;
586
Alex Tomasc29c0ae2007-07-18 09:19:09 -0400587 if (ext4_ext_check_header(inode, eh, i))
Alex Tomasa86c6182006-10-11 01:21:03 -0700588 goto err;
589 }
590
591 path[ppos].p_depth = i;
Alex Tomasa86c6182006-10-11 01:21:03 -0700592 path[ppos].p_ext = NULL;
593 path[ppos].p_idx = NULL;
594
Alex Tomasa86c6182006-10-11 01:21:03 -0700595 /* find extent */
596 ext4_ext_binsearch(inode, path + ppos, block);
Shen Feng1973adc2008-07-11 19:27:31 -0400597 /* if not an empty leaf */
598 if (path[ppos].p_ext)
599 path[ppos].p_block = ext_pblock(path[ppos].p_ext);
Alex Tomasa86c6182006-10-11 01:21:03 -0700600
601 ext4_ext_show_path(inode, path);
602
603 return path;
604
605err:
606 ext4_ext_drop_refs(path);
607 if (alloc)
608 kfree(path);
609 return ERR_PTR(-EIO);
610}
611
612/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700613 * ext4_ext_insert_index:
614 * insert new index [@logical;@ptr] into the block at @curp;
615 * check where to insert: before @curp or after @curp
Alex Tomasa86c6182006-10-11 01:21:03 -0700616 */
617static int ext4_ext_insert_index(handle_t *handle, struct inode *inode,
618 struct ext4_ext_path *curp,
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700619 int logical, ext4_fsblk_t ptr)
Alex Tomasa86c6182006-10-11 01:21:03 -0700620{
621 struct ext4_extent_idx *ix;
622 int len, err;
623
Avantika Mathur7e028972006-12-06 20:41:33 -0800624 err = ext4_ext_get_access(handle, inode, curp);
625 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700626 return err;
627
628 BUG_ON(logical == le32_to_cpu(curp->p_idx->ei_block));
629 len = EXT_MAX_INDEX(curp->p_hdr) - curp->p_idx;
630 if (logical > le32_to_cpu(curp->p_idx->ei_block)) {
631 /* insert after */
632 if (curp->p_idx != EXT_LAST_INDEX(curp->p_hdr)) {
633 len = (len - 1) * sizeof(struct ext4_extent_idx);
634 len = len < 0 ? 0 : len;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400635 ext_debug("insert new index %d after: %llu. "
Alex Tomasa86c6182006-10-11 01:21:03 -0700636 "move %d from 0x%p to 0x%p\n",
637 logical, ptr, len,
638 (curp->p_idx + 1), (curp->p_idx + 2));
639 memmove(curp->p_idx + 2, curp->p_idx + 1, len);
640 }
641 ix = curp->p_idx + 1;
642 } else {
643 /* insert before */
644 len = len * sizeof(struct ext4_extent_idx);
645 len = len < 0 ? 0 : len;
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400646 ext_debug("insert new index %d before: %llu. "
Alex Tomasa86c6182006-10-11 01:21:03 -0700647 "move %d from 0x%p to 0x%p\n",
648 logical, ptr, len,
649 curp->p_idx, (curp->p_idx + 1));
650 memmove(curp->p_idx + 1, curp->p_idx, len);
651 ix = curp->p_idx;
652 }
653
654 ix->ei_block = cpu_to_le32(logical);
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700655 ext4_idx_store_pblock(ix, ptr);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400656 le16_add_cpu(&curp->p_hdr->eh_entries, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -0700657
658 BUG_ON(le16_to_cpu(curp->p_hdr->eh_entries)
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400659 > le16_to_cpu(curp->p_hdr->eh_max));
Alex Tomasa86c6182006-10-11 01:21:03 -0700660 BUG_ON(ix > EXT_LAST_INDEX(curp->p_hdr));
661
662 err = ext4_ext_dirty(handle, inode, curp);
663 ext4_std_error(inode->i_sb, err);
664
665 return err;
666}
667
668/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700669 * ext4_ext_split:
670 * inserts new subtree into the path, using free index entry
671 * at depth @at:
672 * - allocates all needed blocks (new leaf and all intermediate index blocks)
673 * - makes decision where to split
674 * - moves remaining extents and index entries (right to the split point)
675 * into the newly allocated blocks
676 * - initializes subtree
Alex Tomasa86c6182006-10-11 01:21:03 -0700677 */
678static int ext4_ext_split(handle_t *handle, struct inode *inode,
679 struct ext4_ext_path *path,
680 struct ext4_extent *newext, int at)
681{
682 struct buffer_head *bh = NULL;
683 int depth = ext_depth(inode);
684 struct ext4_extent_header *neh;
685 struct ext4_extent_idx *fidx;
686 struct ext4_extent *ex;
687 int i = at, k, m, a;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700688 ext4_fsblk_t newblock, oldblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700689 __le32 border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700690 ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */
Alex Tomasa86c6182006-10-11 01:21:03 -0700691 int err = 0;
692
693 /* make decision: where to split? */
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700694 /* FIXME: now decision is simplest: at current extent */
Alex Tomasa86c6182006-10-11 01:21:03 -0700695
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700696 /* if current leaf will be split, then we should use
Alex Tomasa86c6182006-10-11 01:21:03 -0700697 * border from split point */
698 BUG_ON(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr));
699 if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) {
700 border = path[depth].p_ext[1].ee_block;
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700701 ext_debug("leaf will be split."
Alex Tomasa86c6182006-10-11 01:21:03 -0700702 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400703 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700704 } else {
705 border = newext->ee_block;
706 ext_debug("leaf will be added."
707 " next leaf starts at %d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400708 le32_to_cpu(border));
Alex Tomasa86c6182006-10-11 01:21:03 -0700709 }
710
711 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700712 * If error occurs, then we break processing
713 * and mark filesystem read-only. index won't
Alex Tomasa86c6182006-10-11 01:21:03 -0700714 * be inserted and tree will be in consistent
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700715 * state. Next mount will repair buffers too.
Alex Tomasa86c6182006-10-11 01:21:03 -0700716 */
717
718 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700719 * Get array to track all allocated blocks.
720 * We need this to handle errors and free blocks
721 * upon them.
Alex Tomasa86c6182006-10-11 01:21:03 -0700722 */
Avantika Mathur5d4958f2006-12-06 20:41:35 -0800723 ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS);
Alex Tomasa86c6182006-10-11 01:21:03 -0700724 if (!ablocks)
725 return -ENOMEM;
Alex Tomasa86c6182006-10-11 01:21:03 -0700726
727 /* allocate all needed blocks */
728 ext_debug("allocate %d blocks for indexes/leaf\n", depth - at);
729 for (a = 0; a < depth - at; a++) {
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400730 newblock = ext4_ext_new_meta_block(handle, inode, path,
731 newext, &err);
Alex Tomasa86c6182006-10-11 01:21:03 -0700732 if (newblock == 0)
733 goto cleanup;
734 ablocks[a] = newblock;
735 }
736
737 /* initialize new leaf */
738 newblock = ablocks[--a];
739 BUG_ON(newblock == 0);
740 bh = sb_getblk(inode->i_sb, newblock);
741 if (!bh) {
742 err = -EIO;
743 goto cleanup;
744 }
745 lock_buffer(bh);
746
Avantika Mathur7e028972006-12-06 20:41:33 -0800747 err = ext4_journal_get_create_access(handle, bh);
748 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700749 goto cleanup;
750
751 neh = ext_block_hdr(bh);
752 neh->eh_entries = 0;
753 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode));
754 neh->eh_magic = EXT4_EXT_MAGIC;
755 neh->eh_depth = 0;
756 ex = EXT_FIRST_EXTENT(neh);
757
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700758 /* move remainder of path[depth] to the new leaf */
Alex Tomasa86c6182006-10-11 01:21:03 -0700759 BUG_ON(path[depth].p_hdr->eh_entries != path[depth].p_hdr->eh_max);
760 /* start copy from next extent */
761 /* TODO: we could do it by single memmove */
762 m = 0;
763 path[depth].p_ext++;
764 while (path[depth].p_ext <=
765 EXT_MAX_EXTENT(path[depth].p_hdr)) {
Mingming Cao2ae02102006-10-11 01:21:11 -0700766 ext_debug("move %d:%llu:%d in new leaf %llu\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400767 le32_to_cpu(path[depth].p_ext->ee_block),
768 ext_pblock(path[depth].p_ext),
Amit Aroraa2df2a62007-07-17 21:42:41 -0400769 ext4_ext_get_actual_len(path[depth].p_ext),
Alex Tomasa86c6182006-10-11 01:21:03 -0700770 newblock);
771 /*memmove(ex++, path[depth].p_ext++,
772 sizeof(struct ext4_extent));
773 neh->eh_entries++;*/
774 path[depth].p_ext++;
775 m++;
776 }
777 if (m) {
778 memmove(ex, path[depth].p_ext-m, sizeof(struct ext4_extent)*m);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400779 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -0700780 }
781
782 set_buffer_uptodate(bh);
783 unlock_buffer(bh);
784
Frank Mayhar03901312009-01-07 00:06:22 -0500785 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -0800786 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700787 goto cleanup;
788 brelse(bh);
789 bh = NULL;
790
791 /* correct old leaf */
792 if (m) {
Avantika Mathur7e028972006-12-06 20:41:33 -0800793 err = ext4_ext_get_access(handle, inode, path + depth);
794 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700795 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -0400796 le16_add_cpu(&path[depth].p_hdr->eh_entries, -m);
Avantika Mathur7e028972006-12-06 20:41:33 -0800797 err = ext4_ext_dirty(handle, inode, path + depth);
798 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700799 goto cleanup;
800
801 }
802
803 /* create intermediate indexes */
804 k = depth - at - 1;
805 BUG_ON(k < 0);
806 if (k)
807 ext_debug("create %d intermediate indices\n", k);
808 /* insert new index into current index block */
809 /* current depth stored in i var */
810 i = depth - 1;
811 while (k--) {
812 oldblock = newblock;
813 newblock = ablocks[--a];
Eric Sandeenbba90742008-01-28 23:58:27 -0500814 bh = sb_getblk(inode->i_sb, newblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700815 if (!bh) {
816 err = -EIO;
817 goto cleanup;
818 }
819 lock_buffer(bh);
820
Avantika Mathur7e028972006-12-06 20:41:33 -0800821 err = ext4_journal_get_create_access(handle, bh);
822 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700823 goto cleanup;
824
825 neh = ext_block_hdr(bh);
826 neh->eh_entries = cpu_to_le16(1);
827 neh->eh_magic = EXT4_EXT_MAGIC;
828 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode));
829 neh->eh_depth = cpu_to_le16(depth - i);
830 fidx = EXT_FIRST_INDEX(neh);
831 fidx->ei_block = border;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700832 ext4_idx_store_pblock(fidx, oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700833
Eric Sandeenbba90742008-01-28 23:58:27 -0500834 ext_debug("int.index at %d (block %llu): %u -> %llu\n",
835 i, newblock, le32_to_cpu(border), oldblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700836 /* copy indexes */
837 m = 0;
838 path[i].p_idx++;
839
840 ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx,
841 EXT_MAX_INDEX(path[i].p_hdr));
842 BUG_ON(EXT_MAX_INDEX(path[i].p_hdr) !=
843 EXT_LAST_INDEX(path[i].p_hdr));
844 while (path[i].p_idx <= EXT_MAX_INDEX(path[i].p_hdr)) {
Dmitry Monakhov26d535e2007-07-18 08:33:37 -0400845 ext_debug("%d: move %d:%llu in new index %llu\n", i,
Dave Kleikamp8c55e202007-05-24 13:04:54 -0400846 le32_to_cpu(path[i].p_idx->ei_block),
847 idx_pblock(path[i].p_idx),
848 newblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700849 /*memmove(++fidx, path[i].p_idx++,
850 sizeof(struct ext4_extent_idx));
851 neh->eh_entries++;
852 BUG_ON(neh->eh_entries > neh->eh_max);*/
853 path[i].p_idx++;
854 m++;
855 }
856 if (m) {
857 memmove(++fidx, path[i].p_idx - m,
858 sizeof(struct ext4_extent_idx) * m);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400859 le16_add_cpu(&neh->eh_entries, m);
Alex Tomasa86c6182006-10-11 01:21:03 -0700860 }
861 set_buffer_uptodate(bh);
862 unlock_buffer(bh);
863
Frank Mayhar03901312009-01-07 00:06:22 -0500864 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -0800865 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700866 goto cleanup;
867 brelse(bh);
868 bh = NULL;
869
870 /* correct old index */
871 if (m) {
872 err = ext4_ext_get_access(handle, inode, path + i);
873 if (err)
874 goto cleanup;
Marcin Slusarze8546d02008-04-17 10:38:59 -0400875 le16_add_cpu(&path[i].p_hdr->eh_entries, -m);
Alex Tomasa86c6182006-10-11 01:21:03 -0700876 err = ext4_ext_dirty(handle, inode, path + i);
877 if (err)
878 goto cleanup;
879 }
880
881 i--;
882 }
883
884 /* insert new index */
Alex Tomasa86c6182006-10-11 01:21:03 -0700885 err = ext4_ext_insert_index(handle, inode, path + at,
886 le32_to_cpu(border), newblock);
887
888cleanup:
889 if (bh) {
890 if (buffer_locked(bh))
891 unlock_buffer(bh);
892 brelse(bh);
893 }
894
895 if (err) {
896 /* free all allocated blocks in error case */
897 for (i = 0; i < depth; i++) {
898 if (!ablocks[i])
899 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -0500900 ext4_free_blocks(handle, inode, ablocks[i], 1, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -0700901 }
902 }
903 kfree(ablocks);
904
905 return err;
906}
907
908/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700909 * ext4_ext_grow_indepth:
910 * implements tree growing procedure:
911 * - allocates new block
912 * - moves top-level data (index block or leaf) into the new block
913 * - initializes new top-level, creating index that points to the
914 * just created block
Alex Tomasa86c6182006-10-11 01:21:03 -0700915 */
916static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
917 struct ext4_ext_path *path,
918 struct ext4_extent *newext)
919{
920 struct ext4_ext_path *curp = path;
921 struct ext4_extent_header *neh;
922 struct ext4_extent_idx *fidx;
923 struct buffer_head *bh;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700924 ext4_fsblk_t newblock;
Alex Tomasa86c6182006-10-11 01:21:03 -0700925 int err = 0;
926
Aneesh Kumar K.V654b4902008-07-11 19:27:31 -0400927 newblock = ext4_ext_new_meta_block(handle, inode, path, newext, &err);
Alex Tomasa86c6182006-10-11 01:21:03 -0700928 if (newblock == 0)
929 return err;
930
931 bh = sb_getblk(inode->i_sb, newblock);
932 if (!bh) {
933 err = -EIO;
934 ext4_std_error(inode->i_sb, err);
935 return err;
936 }
937 lock_buffer(bh);
938
Avantika Mathur7e028972006-12-06 20:41:33 -0800939 err = ext4_journal_get_create_access(handle, bh);
940 if (err) {
Alex Tomasa86c6182006-10-11 01:21:03 -0700941 unlock_buffer(bh);
942 goto out;
943 }
944
945 /* move top-level index/leaf into new block */
946 memmove(bh->b_data, curp->p_hdr, sizeof(EXT4_I(inode)->i_data));
947
948 /* set size of new block */
949 neh = ext_block_hdr(bh);
950 /* old root could have indexes or leaves
951 * so calculate e_max right way */
952 if (ext_depth(inode))
953 neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode));
954 else
955 neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode));
956 neh->eh_magic = EXT4_EXT_MAGIC;
957 set_buffer_uptodate(bh);
958 unlock_buffer(bh);
959
Frank Mayhar03901312009-01-07 00:06:22 -0500960 err = ext4_handle_dirty_metadata(handle, inode, bh);
Avantika Mathur7e028972006-12-06 20:41:33 -0800961 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700962 goto out;
963
964 /* create index in new top-level index: num,max,pointer */
Avantika Mathur7e028972006-12-06 20:41:33 -0800965 err = ext4_ext_get_access(handle, inode, curp);
966 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -0700967 goto out;
968
969 curp->p_hdr->eh_magic = EXT4_EXT_MAGIC;
970 curp->p_hdr->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode));
971 curp->p_hdr->eh_entries = cpu_to_le16(1);
972 curp->p_idx = EXT_FIRST_INDEX(curp->p_hdr);
Dmitry Monakhove9f410b2007-07-18 09:09:15 -0400973
974 if (path[0].p_hdr->eh_depth)
975 curp->p_idx->ei_block =
976 EXT_FIRST_INDEX(path[0].p_hdr)->ei_block;
977 else
978 curp->p_idx->ei_block =
979 EXT_FIRST_EXTENT(path[0].p_hdr)->ee_block;
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700980 ext4_idx_store_pblock(curp->p_idx, newblock);
Alex Tomasa86c6182006-10-11 01:21:03 -0700981
982 neh = ext_inode_hdr(inode);
983 fidx = EXT_FIRST_INDEX(neh);
Mingming Cao2ae02102006-10-11 01:21:11 -0700984 ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n",
Alex Tomasa86c6182006-10-11 01:21:03 -0700985 le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max),
Alex Tomasf65e6fb2006-10-11 01:21:05 -0700986 le32_to_cpu(fidx->ei_block), idx_pblock(fidx));
Alex Tomasa86c6182006-10-11 01:21:03 -0700987
988 neh->eh_depth = cpu_to_le16(path->p_depth + 1);
989 err = ext4_ext_dirty(handle, inode, curp);
990out:
991 brelse(bh);
992
993 return err;
994}
995
996/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -0700997 * ext4_ext_create_new_leaf:
998 * finds empty index and adds new leaf.
999 * if no free index is found, then it requests in-depth growing.
Alex Tomasa86c6182006-10-11 01:21:03 -07001000 */
1001static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode,
1002 struct ext4_ext_path *path,
1003 struct ext4_extent *newext)
1004{
1005 struct ext4_ext_path *curp;
1006 int depth, i, err = 0;
1007
1008repeat:
1009 i = depth = ext_depth(inode);
1010
1011 /* walk up to the tree and look for free index entry */
1012 curp = path + depth;
1013 while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) {
1014 i--;
1015 curp--;
1016 }
1017
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001018 /* we use already allocated block for index block,
1019 * so subsequent data blocks should be contiguous */
Alex Tomasa86c6182006-10-11 01:21:03 -07001020 if (EXT_HAS_FREE_INDEX(curp)) {
1021 /* if we found index with free entry, then use that
1022 * entry: create all needed subtree and add new leaf */
1023 err = ext4_ext_split(handle, inode, path, newext, i);
Shen Feng787e0982008-07-11 19:27:31 -04001024 if (err)
1025 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07001026
1027 /* refill path */
1028 ext4_ext_drop_refs(path);
1029 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001030 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1031 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001032 if (IS_ERR(path))
1033 err = PTR_ERR(path);
1034 } else {
1035 /* tree is full, time to grow in depth */
1036 err = ext4_ext_grow_indepth(handle, inode, path, newext);
1037 if (err)
1038 goto out;
1039
1040 /* refill path */
1041 ext4_ext_drop_refs(path);
1042 path = ext4_ext_find_extent(inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001043 (ext4_lblk_t)le32_to_cpu(newext->ee_block),
1044 path);
Alex Tomasa86c6182006-10-11 01:21:03 -07001045 if (IS_ERR(path)) {
1046 err = PTR_ERR(path);
1047 goto out;
1048 }
1049
1050 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001051 * only first (depth 0 -> 1) produces free space;
1052 * in all other cases we have to split the grown tree
Alex Tomasa86c6182006-10-11 01:21:03 -07001053 */
1054 depth = ext_depth(inode);
1055 if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001056 /* now we need to split */
Alex Tomasa86c6182006-10-11 01:21:03 -07001057 goto repeat;
1058 }
1059 }
1060
1061out:
1062 return err;
1063}
1064
1065/*
Alex Tomas1988b512008-01-28 23:58:27 -05001066 * search the closest allocated block to the left for *logical
1067 * and returns it at @logical + it's physical address at @phys
1068 * if *logical is the smallest allocated block, the function
1069 * returns 0 at @phys
1070 * return value contains 0 (success) or error code
1071 */
1072int
1073ext4_ext_search_left(struct inode *inode, struct ext4_ext_path *path,
1074 ext4_lblk_t *logical, ext4_fsblk_t *phys)
1075{
1076 struct ext4_extent_idx *ix;
1077 struct ext4_extent *ex;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001078 int depth, ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001079
1080 BUG_ON(path == NULL);
1081 depth = path->p_depth;
1082 *phys = 0;
1083
1084 if (depth == 0 && path->p_ext == NULL)
1085 return 0;
1086
1087 /* usually extent in the path covers blocks smaller
1088 * then *logical, but it can be that extent is the
1089 * first one in the file */
1090
1091 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001092 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001093 if (*logical < le32_to_cpu(ex->ee_block)) {
1094 BUG_ON(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex);
1095 while (--depth >= 0) {
1096 ix = path[depth].p_idx;
1097 BUG_ON(ix != EXT_FIRST_INDEX(path[depth].p_hdr));
1098 }
1099 return 0;
1100 }
1101
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001102 BUG_ON(*logical < (le32_to_cpu(ex->ee_block) + ee_len));
Alex Tomas1988b512008-01-28 23:58:27 -05001103
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001104 *logical = le32_to_cpu(ex->ee_block) + ee_len - 1;
1105 *phys = ext_pblock(ex) + ee_len - 1;
Alex Tomas1988b512008-01-28 23:58:27 -05001106 return 0;
1107}
1108
1109/*
1110 * search the closest allocated block to the right for *logical
1111 * and returns it at @logical + it's physical address at @phys
1112 * if *logical is the smallest allocated block, the function
1113 * returns 0 at @phys
1114 * return value contains 0 (success) or error code
1115 */
1116int
1117ext4_ext_search_right(struct inode *inode, struct ext4_ext_path *path,
1118 ext4_lblk_t *logical, ext4_fsblk_t *phys)
1119{
1120 struct buffer_head *bh = NULL;
1121 struct ext4_extent_header *eh;
1122 struct ext4_extent_idx *ix;
1123 struct ext4_extent *ex;
1124 ext4_fsblk_t block;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001125 int depth, ee_len;
Alex Tomas1988b512008-01-28 23:58:27 -05001126
1127 BUG_ON(path == NULL);
1128 depth = path->p_depth;
1129 *phys = 0;
1130
1131 if (depth == 0 && path->p_ext == NULL)
1132 return 0;
1133
1134 /* usually extent in the path covers blocks smaller
1135 * then *logical, but it can be that extent is the
1136 * first one in the file */
1137
1138 ex = path[depth].p_ext;
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001139 ee_len = ext4_ext_get_actual_len(ex);
Alex Tomas1988b512008-01-28 23:58:27 -05001140 if (*logical < le32_to_cpu(ex->ee_block)) {
1141 BUG_ON(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex);
1142 while (--depth >= 0) {
1143 ix = path[depth].p_idx;
1144 BUG_ON(ix != EXT_FIRST_INDEX(path[depth].p_hdr));
1145 }
1146 *logical = le32_to_cpu(ex->ee_block);
1147 *phys = ext_pblock(ex);
1148 return 0;
1149 }
1150
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001151 BUG_ON(*logical < (le32_to_cpu(ex->ee_block) + ee_len));
Alex Tomas1988b512008-01-28 23:58:27 -05001152
1153 if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) {
1154 /* next allocated block in this leaf */
1155 ex++;
1156 *logical = le32_to_cpu(ex->ee_block);
1157 *phys = ext_pblock(ex);
1158 return 0;
1159 }
1160
1161 /* go up and search for index to the right */
1162 while (--depth >= 0) {
1163 ix = path[depth].p_idx;
1164 if (ix != EXT_LAST_INDEX(path[depth].p_hdr))
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001165 goto got_index;
Alex Tomas1988b512008-01-28 23:58:27 -05001166 }
1167
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001168 /* we've gone up to the root and found no index to the right */
1169 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001170
Wu Fengguang25f1ee32008-11-25 17:24:23 -05001171got_index:
Alex Tomas1988b512008-01-28 23:58:27 -05001172 /* we've found index to the right, let's
1173 * follow it and find the closest allocated
1174 * block to the right */
1175 ix++;
1176 block = idx_pblock(ix);
1177 while (++depth < path->p_depth) {
1178 bh = sb_bread(inode->i_sb, block);
1179 if (bh == NULL)
1180 return -EIO;
1181 eh = ext_block_hdr(bh);
1182 if (ext4_ext_check_header(inode, eh, depth)) {
1183 put_bh(bh);
1184 return -EIO;
1185 }
1186 ix = EXT_FIRST_INDEX(eh);
1187 block = idx_pblock(ix);
1188 put_bh(bh);
1189 }
1190
1191 bh = sb_bread(inode->i_sb, block);
1192 if (bh == NULL)
1193 return -EIO;
1194 eh = ext_block_hdr(bh);
1195 if (ext4_ext_check_header(inode, eh, path->p_depth - depth)) {
1196 put_bh(bh);
1197 return -EIO;
1198 }
1199 ex = EXT_FIRST_EXTENT(eh);
1200 *logical = le32_to_cpu(ex->ee_block);
1201 *phys = ext_pblock(ex);
1202 put_bh(bh);
1203 return 0;
Alex Tomas1988b512008-01-28 23:58:27 -05001204}
1205
1206/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001207 * ext4_ext_next_allocated_block:
1208 * returns allocated block in subsequent extent or EXT_MAX_BLOCK.
1209 * NOTE: it considers block number from index entry as
1210 * allocated block. Thus, index entries have to be consistent
1211 * with leaves.
Alex Tomasa86c6182006-10-11 01:21:03 -07001212 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001213static ext4_lblk_t
Alex Tomasa86c6182006-10-11 01:21:03 -07001214ext4_ext_next_allocated_block(struct ext4_ext_path *path)
1215{
1216 int depth;
1217
1218 BUG_ON(path == NULL);
1219 depth = path->p_depth;
1220
1221 if (depth == 0 && path->p_ext == NULL)
1222 return EXT_MAX_BLOCK;
1223
1224 while (depth >= 0) {
1225 if (depth == path->p_depth) {
1226 /* leaf */
1227 if (path[depth].p_ext !=
1228 EXT_LAST_EXTENT(path[depth].p_hdr))
1229 return le32_to_cpu(path[depth].p_ext[1].ee_block);
1230 } else {
1231 /* index */
1232 if (path[depth].p_idx !=
1233 EXT_LAST_INDEX(path[depth].p_hdr))
1234 return le32_to_cpu(path[depth].p_idx[1].ei_block);
1235 }
1236 depth--;
1237 }
1238
1239 return EXT_MAX_BLOCK;
1240}
1241
1242/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001243 * ext4_ext_next_leaf_block:
Alex Tomasa86c6182006-10-11 01:21:03 -07001244 * returns first allocated block from next leaf or EXT_MAX_BLOCK
1245 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001246static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode,
Andrew Morton63f57932006-10-11 01:21:24 -07001247 struct ext4_ext_path *path)
Alex Tomasa86c6182006-10-11 01:21:03 -07001248{
1249 int depth;
1250
1251 BUG_ON(path == NULL);
1252 depth = path->p_depth;
1253
1254 /* zero-tree has no leaf blocks at all */
1255 if (depth == 0)
1256 return EXT_MAX_BLOCK;
1257
1258 /* go to index block */
1259 depth--;
1260
1261 while (depth >= 0) {
1262 if (path[depth].p_idx !=
1263 EXT_LAST_INDEX(path[depth].p_hdr))
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001264 return (ext4_lblk_t)
1265 le32_to_cpu(path[depth].p_idx[1].ei_block);
Alex Tomasa86c6182006-10-11 01:21:03 -07001266 depth--;
1267 }
1268
1269 return EXT_MAX_BLOCK;
1270}
1271
1272/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001273 * ext4_ext_correct_indexes:
1274 * if leaf gets modified and modified extent is first in the leaf,
1275 * then we have to correct all indexes above.
Alex Tomasa86c6182006-10-11 01:21:03 -07001276 * TODO: do we need to correct tree in all cases?
1277 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001278static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -07001279 struct ext4_ext_path *path)
1280{
1281 struct ext4_extent_header *eh;
1282 int depth = ext_depth(inode);
1283 struct ext4_extent *ex;
1284 __le32 border;
1285 int k, err = 0;
1286
1287 eh = path[depth].p_hdr;
1288 ex = path[depth].p_ext;
1289 BUG_ON(ex == NULL);
1290 BUG_ON(eh == NULL);
1291
1292 if (depth == 0) {
1293 /* there is no tree at all */
1294 return 0;
1295 }
1296
1297 if (ex != EXT_FIRST_EXTENT(eh)) {
1298 /* we correct tree if first leaf got modified only */
1299 return 0;
1300 }
1301
1302 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001303 * TODO: we need correction if border is smaller than current one
Alex Tomasa86c6182006-10-11 01:21:03 -07001304 */
1305 k = depth - 1;
1306 border = path[depth].p_ext->ee_block;
Avantika Mathur7e028972006-12-06 20:41:33 -08001307 err = ext4_ext_get_access(handle, inode, path + k);
1308 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001309 return err;
1310 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001311 err = ext4_ext_dirty(handle, inode, path + k);
1312 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001313 return err;
1314
1315 while (k--) {
1316 /* change all left-side indexes */
1317 if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr))
1318 break;
Avantika Mathur7e028972006-12-06 20:41:33 -08001319 err = ext4_ext_get_access(handle, inode, path + k);
1320 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001321 break;
1322 path[k].p_idx->ei_block = border;
Avantika Mathur7e028972006-12-06 20:41:33 -08001323 err = ext4_ext_dirty(handle, inode, path + k);
1324 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001325 break;
1326 }
1327
1328 return err;
1329}
1330
Avantika Mathur09b88252006-12-06 20:41:36 -08001331static int
Alex Tomasa86c6182006-10-11 01:21:03 -07001332ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1,
1333 struct ext4_extent *ex2)
1334{
Amit Arora749269f2007-07-18 09:02:56 -04001335 unsigned short ext1_ee_len, ext2_ee_len, max_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001336
1337 /*
1338 * Make sure that either both extents are uninitialized, or
1339 * both are _not_.
1340 */
1341 if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2))
1342 return 0;
1343
Amit Arora749269f2007-07-18 09:02:56 -04001344 if (ext4_ext_is_uninitialized(ex1))
1345 max_len = EXT_UNINIT_MAX_LEN;
1346 else
1347 max_len = EXT_INIT_MAX_LEN;
1348
Amit Aroraa2df2a62007-07-17 21:42:41 -04001349 ext1_ee_len = ext4_ext_get_actual_len(ex1);
1350 ext2_ee_len = ext4_ext_get_actual_len(ex2);
1351
1352 if (le32_to_cpu(ex1->ee_block) + ext1_ee_len !=
Andrew Morton63f57932006-10-11 01:21:24 -07001353 le32_to_cpu(ex2->ee_block))
Alex Tomasa86c6182006-10-11 01:21:03 -07001354 return 0;
1355
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001356 /*
1357 * To allow future support for preallocated extents to be added
1358 * as an RO_COMPAT feature, refuse to merge to extents if
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001359 * this can result in the top bit of ee_len being set.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001360 */
Amit Arora749269f2007-07-18 09:02:56 -04001361 if (ext1_ee_len + ext2_ee_len > max_len)
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07001362 return 0;
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01001363#ifdef AGGRESSIVE_TEST
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05001364 if (ext1_ee_len >= 4)
Alex Tomasa86c6182006-10-11 01:21:03 -07001365 return 0;
1366#endif
1367
Amit Aroraa2df2a62007-07-17 21:42:41 -04001368 if (ext_pblock(ex1) + ext1_ee_len == ext_pblock(ex2))
Alex Tomasa86c6182006-10-11 01:21:03 -07001369 return 1;
1370 return 0;
1371}
1372
1373/*
Amit Arora56055d32007-07-17 21:42:38 -04001374 * This function tries to merge the "ex" extent to the next extent in the tree.
1375 * It always tries to merge towards right. If you want to merge towards
1376 * left, pass "ex - 1" as argument instead of "ex".
1377 * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns
1378 * 1 if they got merged.
1379 */
1380int ext4_ext_try_to_merge(struct inode *inode,
1381 struct ext4_ext_path *path,
1382 struct ext4_extent *ex)
1383{
1384 struct ext4_extent_header *eh;
1385 unsigned int depth, len;
1386 int merge_done = 0;
1387 int uninitialized = 0;
1388
1389 depth = ext_depth(inode);
1390 BUG_ON(path[depth].p_hdr == NULL);
1391 eh = path[depth].p_hdr;
1392
1393 while (ex < EXT_LAST_EXTENT(eh)) {
1394 if (!ext4_can_extents_be_merged(inode, ex, ex + 1))
1395 break;
1396 /* merge with next extent! */
1397 if (ext4_ext_is_uninitialized(ex))
1398 uninitialized = 1;
1399 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1400 + ext4_ext_get_actual_len(ex + 1));
1401 if (uninitialized)
1402 ext4_ext_mark_uninitialized(ex);
1403
1404 if (ex + 1 < EXT_LAST_EXTENT(eh)) {
1405 len = (EXT_LAST_EXTENT(eh) - ex - 1)
1406 * sizeof(struct ext4_extent);
1407 memmove(ex + 1, ex + 2, len);
1408 }
Marcin Slusarze8546d02008-04-17 10:38:59 -04001409 le16_add_cpu(&eh->eh_entries, -1);
Amit Arora56055d32007-07-17 21:42:38 -04001410 merge_done = 1;
1411 WARN_ON(eh->eh_entries == 0);
1412 if (!eh->eh_entries)
1413 ext4_error(inode->i_sb, "ext4_ext_try_to_merge",
1414 "inode#%lu, eh->eh_entries = 0!", inode->i_ino);
1415 }
1416
1417 return merge_done;
1418}
1419
1420/*
Amit Arora25d14f92007-05-24 13:04:13 -04001421 * check if a portion of the "newext" extent overlaps with an
1422 * existing extent.
1423 *
1424 * If there is an overlap discovered, it updates the length of the newext
1425 * such that there will be no overlap, and then returns 1.
1426 * If there is no overlap found, it returns 0.
1427 */
1428unsigned int ext4_ext_check_overlap(struct inode *inode,
1429 struct ext4_extent *newext,
1430 struct ext4_ext_path *path)
1431{
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001432 ext4_lblk_t b1, b2;
Amit Arora25d14f92007-05-24 13:04:13 -04001433 unsigned int depth, len1;
1434 unsigned int ret = 0;
1435
1436 b1 = le32_to_cpu(newext->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04001437 len1 = ext4_ext_get_actual_len(newext);
Amit Arora25d14f92007-05-24 13:04:13 -04001438 depth = ext_depth(inode);
1439 if (!path[depth].p_ext)
1440 goto out;
1441 b2 = le32_to_cpu(path[depth].p_ext->ee_block);
1442
1443 /*
1444 * get the next allocated block if the extent in the path
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001445 * is before the requested block(s)
Amit Arora25d14f92007-05-24 13:04:13 -04001446 */
1447 if (b2 < b1) {
1448 b2 = ext4_ext_next_allocated_block(path);
1449 if (b2 == EXT_MAX_BLOCK)
1450 goto out;
1451 }
1452
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001453 /* check for wrap through zero on extent logical start block*/
Amit Arora25d14f92007-05-24 13:04:13 -04001454 if (b1 + len1 < b1) {
1455 len1 = EXT_MAX_BLOCK - b1;
1456 newext->ee_len = cpu_to_le16(len1);
1457 ret = 1;
1458 }
1459
1460 /* check for overlap */
1461 if (b1 + len1 > b2) {
1462 newext->ee_len = cpu_to_le16(b2 - b1);
1463 ret = 1;
1464 }
1465out:
1466 return ret;
1467}
1468
1469/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001470 * ext4_ext_insert_extent:
1471 * tries to merge requsted extent into the existing extent or
1472 * inserts requested extent as new one into the tree,
1473 * creating new leaf in the no-space case.
Alex Tomasa86c6182006-10-11 01:21:03 -07001474 */
1475int ext4_ext_insert_extent(handle_t *handle, struct inode *inode,
1476 struct ext4_ext_path *path,
1477 struct ext4_extent *newext)
1478{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001479 struct ext4_extent_header *eh;
Alex Tomasa86c6182006-10-11 01:21:03 -07001480 struct ext4_extent *ex, *fex;
1481 struct ext4_extent *nearex; /* nearest extent */
1482 struct ext4_ext_path *npath = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001483 int depth, len, err;
1484 ext4_lblk_t next;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001485 unsigned uninitialized = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07001486
Amit Aroraa2df2a62007-07-17 21:42:41 -04001487 BUG_ON(ext4_ext_get_actual_len(newext) == 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07001488 depth = ext_depth(inode);
1489 ex = path[depth].p_ext;
1490 BUG_ON(path[depth].p_hdr == NULL);
1491
1492 /* try to insert block into found extent and return */
1493 if (ex && ext4_can_extents_be_merged(inode, ex, newext)) {
Mingming Cao2ae02102006-10-11 01:21:11 -07001494 ext_debug("append %d block to %d:%d (from %llu)\n",
Amit Aroraa2df2a62007-07-17 21:42:41 -04001495 ext4_ext_get_actual_len(newext),
Alex Tomasa86c6182006-10-11 01:21:03 -07001496 le32_to_cpu(ex->ee_block),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001497 ext4_ext_get_actual_len(ex), ext_pblock(ex));
Avantika Mathur7e028972006-12-06 20:41:33 -08001498 err = ext4_ext_get_access(handle, inode, path + depth);
1499 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001500 return err;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001501
1502 /*
1503 * ext4_can_extents_be_merged should have checked that either
1504 * both extents are uninitialized, or both aren't. Thus we
1505 * need to check only one of them here.
1506 */
1507 if (ext4_ext_is_uninitialized(ex))
1508 uninitialized = 1;
1509 ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)
1510 + ext4_ext_get_actual_len(newext));
1511 if (uninitialized)
1512 ext4_ext_mark_uninitialized(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001513 eh = path[depth].p_hdr;
1514 nearex = ex;
1515 goto merge;
1516 }
1517
1518repeat:
1519 depth = ext_depth(inode);
1520 eh = path[depth].p_hdr;
1521 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max))
1522 goto has_space;
1523
1524 /* probably next leaf has space for us? */
1525 fex = EXT_LAST_EXTENT(eh);
1526 next = ext4_ext_next_leaf_block(inode, path);
1527 if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block)
1528 && next != EXT_MAX_BLOCK) {
1529 ext_debug("next leaf block - %d\n", next);
1530 BUG_ON(npath != NULL);
1531 npath = ext4_ext_find_extent(inode, next, NULL);
1532 if (IS_ERR(npath))
1533 return PTR_ERR(npath);
1534 BUG_ON(npath->p_depth != path->p_depth);
1535 eh = npath[depth].p_hdr;
1536 if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) {
1537 ext_debug("next leaf isnt full(%d)\n",
1538 le16_to_cpu(eh->eh_entries));
1539 path = npath;
1540 goto repeat;
1541 }
1542 ext_debug("next leaf has no free space(%d,%d)\n",
1543 le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max));
1544 }
1545
1546 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001547 * There is no free space in the found leaf.
1548 * We're gonna add a new leaf in the tree.
Alex Tomasa86c6182006-10-11 01:21:03 -07001549 */
1550 err = ext4_ext_create_new_leaf(handle, inode, path, newext);
1551 if (err)
1552 goto cleanup;
1553 depth = ext_depth(inode);
1554 eh = path[depth].p_hdr;
1555
1556has_space:
1557 nearex = path[depth].p_ext;
1558
Avantika Mathur7e028972006-12-06 20:41:33 -08001559 err = ext4_ext_get_access(handle, inode, path + depth);
1560 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001561 goto cleanup;
1562
1563 if (!nearex) {
1564 /* there is no extent in this leaf, create first one */
Mingming Cao2ae02102006-10-11 01:21:11 -07001565 ext_debug("first extent in the leaf: %d:%llu:%d\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001566 le32_to_cpu(newext->ee_block),
1567 ext_pblock(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001568 ext4_ext_get_actual_len(newext));
Alex Tomasa86c6182006-10-11 01:21:03 -07001569 path[depth].p_ext = EXT_FIRST_EXTENT(eh);
1570 } else if (le32_to_cpu(newext->ee_block)
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001571 > le32_to_cpu(nearex->ee_block)) {
Alex Tomasa86c6182006-10-11 01:21:03 -07001572/* BUG_ON(newext->ee_block == nearex->ee_block); */
1573 if (nearex != EXT_LAST_EXTENT(eh)) {
1574 len = EXT_MAX_EXTENT(eh) - nearex;
1575 len = (len - 1) * sizeof(struct ext4_extent);
1576 len = len < 0 ? 0 : len;
Mingming Cao2ae02102006-10-11 01:21:11 -07001577 ext_debug("insert %d:%llu:%d after: nearest 0x%p, "
Alex Tomasa86c6182006-10-11 01:21:03 -07001578 "move %d from 0x%p to 0x%p\n",
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001579 le32_to_cpu(newext->ee_block),
1580 ext_pblock(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001581 ext4_ext_get_actual_len(newext),
Alex Tomasa86c6182006-10-11 01:21:03 -07001582 nearex, len, nearex + 1, nearex + 2);
1583 memmove(nearex + 2, nearex + 1, len);
1584 }
1585 path[depth].p_ext = nearex + 1;
1586 } else {
1587 BUG_ON(newext->ee_block == nearex->ee_block);
1588 len = (EXT_MAX_EXTENT(eh) - nearex) * sizeof(struct ext4_extent);
1589 len = len < 0 ? 0 : len;
Mingming Cao2ae02102006-10-11 01:21:11 -07001590 ext_debug("insert %d:%llu:%d before: nearest 0x%p, "
Alex Tomasa86c6182006-10-11 01:21:03 -07001591 "move %d from 0x%p to 0x%p\n",
1592 le32_to_cpu(newext->ee_block),
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001593 ext_pblock(newext),
Amit Aroraa2df2a62007-07-17 21:42:41 -04001594 ext4_ext_get_actual_len(newext),
Alex Tomasa86c6182006-10-11 01:21:03 -07001595 nearex, len, nearex + 1, nearex + 2);
1596 memmove(nearex + 1, nearex, len);
1597 path[depth].p_ext = nearex;
1598 }
1599
Marcin Slusarze8546d02008-04-17 10:38:59 -04001600 le16_add_cpu(&eh->eh_entries, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -07001601 nearex = path[depth].p_ext;
1602 nearex->ee_block = newext->ee_block;
Aneesh Kumar K.Vb3776112007-10-16 18:38:25 -04001603 ext4_ext_store_pblock(nearex, ext_pblock(newext));
Alex Tomasa86c6182006-10-11 01:21:03 -07001604 nearex->ee_len = newext->ee_len;
Alex Tomasa86c6182006-10-11 01:21:03 -07001605
1606merge:
1607 /* try to merge extents to the right */
Amit Arora56055d32007-07-17 21:42:38 -04001608 ext4_ext_try_to_merge(inode, path, nearex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001609
1610 /* try to merge extents to the left */
1611
1612 /* time to correct all indexes above */
1613 err = ext4_ext_correct_indexes(handle, inode, path);
1614 if (err)
1615 goto cleanup;
1616
1617 err = ext4_ext_dirty(handle, inode, path + depth);
1618
1619cleanup:
1620 if (npath) {
1621 ext4_ext_drop_refs(npath);
1622 kfree(npath);
1623 }
1624 ext4_ext_tree_changed(inode);
1625 ext4_ext_invalidate_cache(inode);
1626 return err;
1627}
1628
Eric Sandeen6873fa02008-10-07 00:46:36 -04001629int ext4_ext_walk_space(struct inode *inode, ext4_lblk_t block,
1630 ext4_lblk_t num, ext_prepare_callback func,
1631 void *cbdata)
1632{
1633 struct ext4_ext_path *path = NULL;
1634 struct ext4_ext_cache cbex;
1635 struct ext4_extent *ex;
1636 ext4_lblk_t next, start = 0, end = 0;
1637 ext4_lblk_t last = block + num;
1638 int depth, exists, err = 0;
1639
1640 BUG_ON(func == NULL);
1641 BUG_ON(inode == NULL);
1642
1643 while (block < last && block != EXT_MAX_BLOCK) {
1644 num = last - block;
1645 /* find extent for this block */
1646 path = ext4_ext_find_extent(inode, block, path);
1647 if (IS_ERR(path)) {
1648 err = PTR_ERR(path);
1649 path = NULL;
1650 break;
1651 }
1652
1653 depth = ext_depth(inode);
1654 BUG_ON(path[depth].p_hdr == NULL);
1655 ex = path[depth].p_ext;
1656 next = ext4_ext_next_allocated_block(path);
1657
1658 exists = 0;
1659 if (!ex) {
1660 /* there is no extent yet, so try to allocate
1661 * all requested space */
1662 start = block;
1663 end = block + num;
1664 } else if (le32_to_cpu(ex->ee_block) > block) {
1665 /* need to allocate space before found extent */
1666 start = block;
1667 end = le32_to_cpu(ex->ee_block);
1668 if (block + num < end)
1669 end = block + num;
1670 } else if (block >= le32_to_cpu(ex->ee_block)
1671 + ext4_ext_get_actual_len(ex)) {
1672 /* need to allocate space after found extent */
1673 start = block;
1674 end = block + num;
1675 if (end >= next)
1676 end = next;
1677 } else if (block >= le32_to_cpu(ex->ee_block)) {
1678 /*
1679 * some part of requested space is covered
1680 * by found extent
1681 */
1682 start = block;
1683 end = le32_to_cpu(ex->ee_block)
1684 + ext4_ext_get_actual_len(ex);
1685 if (block + num < end)
1686 end = block + num;
1687 exists = 1;
1688 } else {
1689 BUG();
1690 }
1691 BUG_ON(end <= start);
1692
1693 if (!exists) {
1694 cbex.ec_block = start;
1695 cbex.ec_len = end - start;
1696 cbex.ec_start = 0;
1697 cbex.ec_type = EXT4_EXT_CACHE_GAP;
1698 } else {
1699 cbex.ec_block = le32_to_cpu(ex->ee_block);
1700 cbex.ec_len = ext4_ext_get_actual_len(ex);
1701 cbex.ec_start = ext_pblock(ex);
1702 cbex.ec_type = EXT4_EXT_CACHE_EXTENT;
1703 }
1704
1705 BUG_ON(cbex.ec_len == 0);
1706 err = func(inode, path, &cbex, ex, cbdata);
1707 ext4_ext_drop_refs(path);
1708
1709 if (err < 0)
1710 break;
1711
1712 if (err == EXT_REPEAT)
1713 continue;
1714 else if (err == EXT_BREAK) {
1715 err = 0;
1716 break;
1717 }
1718
1719 if (ext_depth(inode) != depth) {
1720 /* depth was changed. we have to realloc path */
1721 kfree(path);
1722 path = NULL;
1723 }
1724
1725 block = cbex.ec_block + cbex.ec_len;
1726 }
1727
1728 if (path) {
1729 ext4_ext_drop_refs(path);
1730 kfree(path);
1731 }
1732
1733 return err;
1734}
1735
Avantika Mathur09b88252006-12-06 20:41:36 -08001736static void
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001737ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block,
Mingming Caodd545672007-07-31 00:37:46 -07001738 __u32 len, ext4_fsblk_t start, int type)
Alex Tomasa86c6182006-10-11 01:21:03 -07001739{
1740 struct ext4_ext_cache *cex;
1741 BUG_ON(len == 0);
1742 cex = &EXT4_I(inode)->i_cached_extent;
1743 cex->ec_type = type;
1744 cex->ec_block = block;
1745 cex->ec_len = len;
1746 cex->ec_start = start;
1747}
1748
1749/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001750 * ext4_ext_put_gap_in_cache:
1751 * calculate boundaries of the gap that the requested block fits into
Alex Tomasa86c6182006-10-11 01:21:03 -07001752 * and cache this gap
1753 */
Avantika Mathur09b88252006-12-06 20:41:36 -08001754static void
Alex Tomasa86c6182006-10-11 01:21:03 -07001755ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001756 ext4_lblk_t block)
Alex Tomasa86c6182006-10-11 01:21:03 -07001757{
1758 int depth = ext_depth(inode);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001759 unsigned long len;
1760 ext4_lblk_t lblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07001761 struct ext4_extent *ex;
1762
1763 ex = path[depth].p_ext;
1764 if (ex == NULL) {
1765 /* there is no extent yet, so gap is [0;-] */
1766 lblock = 0;
1767 len = EXT_MAX_BLOCK;
1768 ext_debug("cache gap(whole file):");
1769 } else if (block < le32_to_cpu(ex->ee_block)) {
1770 lblock = block;
1771 len = le32_to_cpu(ex->ee_block) - block;
Eric Sandeenbba90742008-01-28 23:58:27 -05001772 ext_debug("cache gap(before): %u [%u:%u]",
1773 block,
1774 le32_to_cpu(ex->ee_block),
1775 ext4_ext_get_actual_len(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -07001776 } else if (block >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04001777 + ext4_ext_get_actual_len(ex)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001778 ext4_lblk_t next;
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001779 lblock = le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04001780 + ext4_ext_get_actual_len(ex);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001781
1782 next = ext4_ext_next_allocated_block(path);
Eric Sandeenbba90742008-01-28 23:58:27 -05001783 ext_debug("cache gap(after): [%u:%u] %u",
1784 le32_to_cpu(ex->ee_block),
1785 ext4_ext_get_actual_len(ex),
1786 block);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001787 BUG_ON(next == lblock);
1788 len = next - lblock;
Alex Tomasa86c6182006-10-11 01:21:03 -07001789 } else {
1790 lblock = len = 0;
1791 BUG();
1792 }
1793
Eric Sandeenbba90742008-01-28 23:58:27 -05001794 ext_debug(" -> %u:%lu\n", lblock, len);
Alex Tomasa86c6182006-10-11 01:21:03 -07001795 ext4_ext_put_in_cache(inode, lblock, len, 0, EXT4_EXT_CACHE_GAP);
1796}
1797
Avantika Mathur09b88252006-12-06 20:41:36 -08001798static int
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001799ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block,
Alex Tomasa86c6182006-10-11 01:21:03 -07001800 struct ext4_extent *ex)
1801{
1802 struct ext4_ext_cache *cex;
1803
1804 cex = &EXT4_I(inode)->i_cached_extent;
1805
1806 /* has cache valid data? */
1807 if (cex->ec_type == EXT4_EXT_CACHE_NO)
1808 return EXT4_EXT_CACHE_NO;
1809
1810 BUG_ON(cex->ec_type != EXT4_EXT_CACHE_GAP &&
1811 cex->ec_type != EXT4_EXT_CACHE_EXTENT);
1812 if (block >= cex->ec_block && block < cex->ec_block + cex->ec_len) {
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001813 ex->ee_block = cpu_to_le32(cex->ec_block);
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001814 ext4_ext_store_pblock(ex, cex->ec_start);
Dave Kleikamp8c55e202007-05-24 13:04:54 -04001815 ex->ee_len = cpu_to_le16(cex->ec_len);
Eric Sandeenbba90742008-01-28 23:58:27 -05001816 ext_debug("%u cached by %u:%u:%llu\n",
1817 block,
1818 cex->ec_block, cex->ec_len, cex->ec_start);
Alex Tomasa86c6182006-10-11 01:21:03 -07001819 return cex->ec_type;
1820 }
1821
1822 /* not in cache */
1823 return EXT4_EXT_CACHE_NO;
1824}
1825
1826/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07001827 * ext4_ext_rm_idx:
1828 * removes index from the index block.
1829 * It's used in truncate case only, thus all requests are for
1830 * last index in the block only.
Alex Tomasa86c6182006-10-11 01:21:03 -07001831 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001832static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode,
Alex Tomasa86c6182006-10-11 01:21:03 -07001833 struct ext4_ext_path *path)
1834{
1835 struct buffer_head *bh;
1836 int err;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001837 ext4_fsblk_t leaf;
Alex Tomasa86c6182006-10-11 01:21:03 -07001838
1839 /* free index block */
1840 path--;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001841 leaf = idx_pblock(path->p_idx);
Alex Tomasa86c6182006-10-11 01:21:03 -07001842 BUG_ON(path->p_hdr->eh_entries == 0);
Avantika Mathur7e028972006-12-06 20:41:33 -08001843 err = ext4_ext_get_access(handle, inode, path);
1844 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001845 return err;
Marcin Slusarze8546d02008-04-17 10:38:59 -04001846 le16_add_cpu(&path->p_hdr->eh_entries, -1);
Avantika Mathur7e028972006-12-06 20:41:33 -08001847 err = ext4_ext_dirty(handle, inode, path);
1848 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07001849 return err;
Mingming Cao2ae02102006-10-11 01:21:11 -07001850 ext_debug("index is empty, remove it, free block %llu\n", leaf);
Alex Tomasa86c6182006-10-11 01:21:03 -07001851 bh = sb_find_get_block(inode->i_sb, leaf);
1852 ext4_forget(handle, 1, inode, bh, leaf);
Alex Tomasc9de5602008-01-29 00:19:52 -05001853 ext4_free_blocks(handle, inode, leaf, 1, 1);
Alex Tomasa86c6182006-10-11 01:21:03 -07001854 return err;
1855}
1856
1857/*
Mingming Caoee12b632008-08-19 22:16:05 -04001858 * ext4_ext_calc_credits_for_single_extent:
1859 * This routine returns max. credits that needed to insert an extent
1860 * to the extent tree.
1861 * When pass the actual path, the caller should calculate credits
1862 * under i_data_sem.
Alex Tomasa86c6182006-10-11 01:21:03 -07001863 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04001864int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks,
Alex Tomasa86c6182006-10-11 01:21:03 -07001865 struct ext4_ext_path *path)
1866{
Alex Tomasa86c6182006-10-11 01:21:03 -07001867 if (path) {
Mingming Caoee12b632008-08-19 22:16:05 -04001868 int depth = ext_depth(inode);
Mingming Caof3bd1f32008-08-19 22:16:03 -04001869 int ret = 0;
Mingming Caoee12b632008-08-19 22:16:05 -04001870
Alex Tomasa86c6182006-10-11 01:21:03 -07001871 /* probably there is space in leaf? */
Alex Tomasa86c6182006-10-11 01:21:03 -07001872 if (le16_to_cpu(path[depth].p_hdr->eh_entries)
Mingming Caoee12b632008-08-19 22:16:05 -04001873 < le16_to_cpu(path[depth].p_hdr->eh_max)) {
1874
1875 /*
1876 * There are some space in the leaf tree, no
1877 * need to account for leaf block credit
1878 *
1879 * bitmaps and block group descriptor blocks
1880 * and other metadat blocks still need to be
1881 * accounted.
1882 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04001883 /* 1 bitmap, 1 block group descriptor */
Mingming Caoee12b632008-08-19 22:16:05 -04001884 ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb);
1885 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001886 }
1887
Mingming Cao525f4ed2008-08-19 22:15:58 -04001888 return ext4_chunk_trans_blocks(inode, nrblocks);
Mingming Caoee12b632008-08-19 22:16:05 -04001889}
Alex Tomasa86c6182006-10-11 01:21:03 -07001890
Mingming Caoee12b632008-08-19 22:16:05 -04001891/*
1892 * How many index/leaf blocks need to change/allocate to modify nrblocks?
1893 *
1894 * if nrblocks are fit in a single extent (chunk flag is 1), then
1895 * in the worse case, each tree level index/leaf need to be changed
1896 * if the tree split due to insert a new extent, then the old tree
1897 * index/leaf need to be updated too
1898 *
1899 * If the nrblocks are discontiguous, they could cause
1900 * the whole tree split more than once, but this is really rare.
1901 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04001902int ext4_ext_index_trans_blocks(struct inode *inode, int nrblocks, int chunk)
Mingming Caoee12b632008-08-19 22:16:05 -04001903{
1904 int index;
1905 int depth = ext_depth(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07001906
Mingming Caoee12b632008-08-19 22:16:05 -04001907 if (chunk)
1908 index = depth * 2;
1909 else
1910 index = depth * 3;
Alex Tomasa86c6182006-10-11 01:21:03 -07001911
Mingming Caoee12b632008-08-19 22:16:05 -04001912 return index;
Alex Tomasa86c6182006-10-11 01:21:03 -07001913}
1914
1915static int ext4_remove_blocks(handle_t *handle, struct inode *inode,
1916 struct ext4_extent *ex,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001917 ext4_lblk_t from, ext4_lblk_t to)
Alex Tomasa86c6182006-10-11 01:21:03 -07001918{
1919 struct buffer_head *bh;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001920 unsigned short ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001921 int i, metadata = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07001922
Alex Tomasc9de5602008-01-29 00:19:52 -05001923 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
1924 metadata = 1;
Alex Tomasa86c6182006-10-11 01:21:03 -07001925#ifdef EXTENTS_STATS
1926 {
1927 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07001928 spin_lock(&sbi->s_ext_stats_lock);
1929 sbi->s_ext_blocks += ee_len;
1930 sbi->s_ext_extents++;
1931 if (ee_len < sbi->s_ext_min)
1932 sbi->s_ext_min = ee_len;
1933 if (ee_len > sbi->s_ext_max)
1934 sbi->s_ext_max = ee_len;
1935 if (ext_depth(inode) > sbi->s_depth_max)
1936 sbi->s_depth_max = ext_depth(inode);
1937 spin_unlock(&sbi->s_ext_stats_lock);
1938 }
1939#endif
1940 if (from >= le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04001941 && to == le32_to_cpu(ex->ee_block) + ee_len - 1) {
Alex Tomasa86c6182006-10-11 01:21:03 -07001942 /* tail removal */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001943 ext4_lblk_t num;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07001944 ext4_fsblk_t start;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001945
Amit Aroraa2df2a62007-07-17 21:42:41 -04001946 num = le32_to_cpu(ex->ee_block) + ee_len - from;
1947 start = ext_pblock(ex) + ee_len - num;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001948 ext_debug("free last %u blocks starting %llu\n", num, start);
Alex Tomasa86c6182006-10-11 01:21:03 -07001949 for (i = 0; i < num; i++) {
1950 bh = sb_find_get_block(inode->i_sb, start + i);
1951 ext4_forget(handle, 0, inode, bh, start + i);
1952 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001953 ext4_free_blocks(handle, inode, start, num, metadata);
Alex Tomasa86c6182006-10-11 01:21:03 -07001954 } else if (from == le32_to_cpu(ex->ee_block)
Amit Aroraa2df2a62007-07-17 21:42:41 -04001955 && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001956 printk(KERN_INFO "strange request: removal %u-%u from %u:%u\n",
Amit Aroraa2df2a62007-07-17 21:42:41 -04001957 from, to, le32_to_cpu(ex->ee_block), ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07001958 } else {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001959 printk(KERN_INFO "strange request: removal(2) "
1960 "%u-%u from %u:%u\n",
1961 from, to, le32_to_cpu(ex->ee_block), ee_len);
Alex Tomasa86c6182006-10-11 01:21:03 -07001962 }
1963 return 0;
1964}
1965
1966static int
1967ext4_ext_rm_leaf(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001968 struct ext4_ext_path *path, ext4_lblk_t start)
Alex Tomasa86c6182006-10-11 01:21:03 -07001969{
1970 int err = 0, correct_index = 0;
1971 int depth = ext_depth(inode), credits;
1972 struct ext4_extent_header *eh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001973 ext4_lblk_t a, b, block;
1974 unsigned num;
1975 ext4_lblk_t ex_ee_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07001976 unsigned short ex_ee_len;
Amit Aroraa2df2a62007-07-17 21:42:41 -04001977 unsigned uninitialized = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -07001978 struct ext4_extent *ex;
1979
Alex Tomasc29c0ae2007-07-18 09:19:09 -04001980 /* the header must be checked already in ext4_ext_remove_space() */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001981 ext_debug("truncate since %u in leaf\n", start);
Alex Tomasa86c6182006-10-11 01:21:03 -07001982 if (!path[depth].p_hdr)
1983 path[depth].p_hdr = ext_block_hdr(path[depth].p_bh);
1984 eh = path[depth].p_hdr;
1985 BUG_ON(eh == NULL);
Alex Tomasa86c6182006-10-11 01:21:03 -07001986
1987 /* find where to start removing */
1988 ex = EXT_LAST_EXTENT(eh);
1989
1990 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04001991 if (ext4_ext_is_uninitialized(ex))
1992 uninitialized = 1;
1993 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07001994
1995 while (ex >= EXT_FIRST_EXTENT(eh) &&
1996 ex_ee_block + ex_ee_len > start) {
1997 ext_debug("remove ext %lu:%u\n", ex_ee_block, ex_ee_len);
1998 path[depth].p_ext = ex;
1999
2000 a = ex_ee_block > start ? ex_ee_block : start;
2001 b = ex_ee_block + ex_ee_len - 1 < EXT_MAX_BLOCK ?
2002 ex_ee_block + ex_ee_len - 1 : EXT_MAX_BLOCK;
2003
2004 ext_debug(" border %u:%u\n", a, b);
2005
2006 if (a != ex_ee_block && b != ex_ee_block + ex_ee_len - 1) {
2007 block = 0;
2008 num = 0;
2009 BUG();
2010 } else if (a != ex_ee_block) {
2011 /* remove tail of the extent */
2012 block = ex_ee_block;
2013 num = a - block;
2014 } else if (b != ex_ee_block + ex_ee_len - 1) {
2015 /* remove head of the extent */
2016 block = a;
2017 num = b - a;
2018 /* there is no "make a hole" API yet */
2019 BUG();
2020 } else {
2021 /* remove whole extent: excellent! */
2022 block = ex_ee_block;
2023 num = 0;
2024 BUG_ON(a != ex_ee_block);
2025 BUG_ON(b != ex_ee_block + ex_ee_len - 1);
2026 }
2027
Theodore Ts'o34071da2008-08-01 21:59:19 -04002028 /*
2029 * 3 for leaf, sb, and inode plus 2 (bmap and group
2030 * descriptor) for each block group; assume two block
2031 * groups plus ex_ee_len/blocks_per_block_group for
2032 * the worst case
2033 */
2034 credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb));
Alex Tomasa86c6182006-10-11 01:21:03 -07002035 if (ex == EXT_FIRST_EXTENT(eh)) {
2036 correct_index = 1;
2037 credits += (ext_depth(inode)) + 1;
2038 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002039 credits += 2 * EXT4_QUOTA_TRANS_BLOCKS(inode->i_sb);
Alex Tomasa86c6182006-10-11 01:21:03 -07002040
Shen Feng9102e4f2008-07-11 19:27:31 -04002041 err = ext4_ext_journal_restart(handle, credits);
2042 if (err)
Alex Tomasa86c6182006-10-11 01:21:03 -07002043 goto out;
Alex Tomasa86c6182006-10-11 01:21:03 -07002044
2045 err = ext4_ext_get_access(handle, inode, path + depth);
2046 if (err)
2047 goto out;
2048
2049 err = ext4_remove_blocks(handle, inode, ex, a, b);
2050 if (err)
2051 goto out;
2052
2053 if (num == 0) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002054 /* this extent is removed; mark slot entirely unused */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002055 ext4_ext_store_pblock(ex, 0);
Marcin Slusarze8546d02008-04-17 10:38:59 -04002056 le16_add_cpu(&eh->eh_entries, -1);
Alex Tomasa86c6182006-10-11 01:21:03 -07002057 }
2058
2059 ex->ee_block = cpu_to_le32(block);
2060 ex->ee_len = cpu_to_le16(num);
Amit Arora749269f2007-07-18 09:02:56 -04002061 /*
2062 * Do not mark uninitialized if all the blocks in the
2063 * extent have been removed.
2064 */
2065 if (uninitialized && num)
Amit Aroraa2df2a62007-07-17 21:42:41 -04002066 ext4_ext_mark_uninitialized(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002067
2068 err = ext4_ext_dirty(handle, inode, path + depth);
2069 if (err)
2070 goto out;
2071
Mingming Cao2ae02102006-10-11 01:21:11 -07002072 ext_debug("new extent: %u:%u:%llu\n", block, num,
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002073 ext_pblock(ex));
Alex Tomasa86c6182006-10-11 01:21:03 -07002074 ex--;
2075 ex_ee_block = le32_to_cpu(ex->ee_block);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002076 ex_ee_len = ext4_ext_get_actual_len(ex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002077 }
2078
2079 if (correct_index && eh->eh_entries)
2080 err = ext4_ext_correct_indexes(handle, inode, path);
2081
2082 /* if this leaf is free, then we should
2083 * remove it from index block above */
2084 if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL)
2085 err = ext4_ext_rm_idx(handle, inode, path + depth);
2086
2087out:
2088 return err;
2089}
2090
2091/*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002092 * ext4_ext_more_to_rm:
2093 * returns 1 if current index has to be freed (even partial)
Alex Tomasa86c6182006-10-11 01:21:03 -07002094 */
Avantika Mathur09b88252006-12-06 20:41:36 -08002095static int
Alex Tomasa86c6182006-10-11 01:21:03 -07002096ext4_ext_more_to_rm(struct ext4_ext_path *path)
2097{
2098 BUG_ON(path->p_idx == NULL);
2099
2100 if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr))
2101 return 0;
2102
2103 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002104 * if truncate on deeper level happened, it wasn't partial,
Alex Tomasa86c6182006-10-11 01:21:03 -07002105 * so we have to consider current index for truncation
2106 */
2107 if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block)
2108 return 0;
2109 return 1;
2110}
2111
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002112static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start)
Alex Tomasa86c6182006-10-11 01:21:03 -07002113{
2114 struct super_block *sb = inode->i_sb;
2115 int depth = ext_depth(inode);
2116 struct ext4_ext_path *path;
2117 handle_t *handle;
2118 int i = 0, err = 0;
2119
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002120 ext_debug("truncate since %u\n", start);
Alex Tomasa86c6182006-10-11 01:21:03 -07002121
2122 /* probably first extent we're gonna free will be last in block */
2123 handle = ext4_journal_start(inode, depth + 1);
2124 if (IS_ERR(handle))
2125 return PTR_ERR(handle);
2126
2127 ext4_ext_invalidate_cache(inode);
2128
2129 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002130 * We start scanning from right side, freeing all the blocks
2131 * after i_size and walking into the tree depth-wise.
Alex Tomasa86c6182006-10-11 01:21:03 -07002132 */
Josef Bacik216553c2008-04-29 22:02:02 -04002133 path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), GFP_NOFS);
Alex Tomasa86c6182006-10-11 01:21:03 -07002134 if (path == NULL) {
2135 ext4_journal_stop(handle);
2136 return -ENOMEM;
2137 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002138 path[0].p_hdr = ext_inode_hdr(inode);
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002139 if (ext4_ext_check_header(inode, path[0].p_hdr, depth)) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002140 err = -EIO;
2141 goto out;
2142 }
2143 path[0].p_depth = depth;
2144
2145 while (i >= 0 && err == 0) {
2146 if (i == depth) {
2147 /* this is leaf block */
2148 err = ext4_ext_rm_leaf(handle, inode, path, start);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002149 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002150 brelse(path[i].p_bh);
2151 path[i].p_bh = NULL;
2152 i--;
2153 continue;
2154 }
2155
2156 /* this is index block */
2157 if (!path[i].p_hdr) {
2158 ext_debug("initialize header\n");
2159 path[i].p_hdr = ext_block_hdr(path[i].p_bh);
Alex Tomasa86c6182006-10-11 01:21:03 -07002160 }
2161
Alex Tomasa86c6182006-10-11 01:21:03 -07002162 if (!path[i].p_idx) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002163 /* this level hasn't been touched yet */
Alex Tomasa86c6182006-10-11 01:21:03 -07002164 path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr);
2165 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1;
2166 ext_debug("init index ptr: hdr 0x%p, num %d\n",
2167 path[i].p_hdr,
2168 le16_to_cpu(path[i].p_hdr->eh_entries));
2169 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002170 /* we were already here, see at next index */
Alex Tomasa86c6182006-10-11 01:21:03 -07002171 path[i].p_idx--;
2172 }
2173
2174 ext_debug("level %d - index, first 0x%p, cur 0x%p\n",
2175 i, EXT_FIRST_INDEX(path[i].p_hdr),
2176 path[i].p_idx);
2177 if (ext4_ext_more_to_rm(path + i)) {
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002178 struct buffer_head *bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002179 /* go to the next level */
Mingming Cao2ae02102006-10-11 01:21:11 -07002180 ext_debug("move to level %d (block %llu)\n",
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002181 i + 1, idx_pblock(path[i].p_idx));
Alex Tomasa86c6182006-10-11 01:21:03 -07002182 memset(path + i + 1, 0, sizeof(*path));
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002183 bh = sb_bread(sb, idx_pblock(path[i].p_idx));
2184 if (!bh) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002185 /* should we reset i_size? */
2186 err = -EIO;
2187 break;
2188 }
Alex Tomasc29c0ae2007-07-18 09:19:09 -04002189 if (WARN_ON(i + 1 > depth)) {
2190 err = -EIO;
2191 break;
2192 }
2193 if (ext4_ext_check_header(inode, ext_block_hdr(bh),
2194 depth - i - 1)) {
2195 err = -EIO;
2196 break;
2197 }
2198 path[i + 1].p_bh = bh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002199
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002200 /* save actual number of indexes since this
2201 * number is changed at the next iteration */
Alex Tomasa86c6182006-10-11 01:21:03 -07002202 path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries);
2203 i++;
2204 } else {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002205 /* we finished processing this index, go up */
Alex Tomasa86c6182006-10-11 01:21:03 -07002206 if (path[i].p_hdr->eh_entries == 0 && i > 0) {
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002207 /* index is empty, remove it;
Alex Tomasa86c6182006-10-11 01:21:03 -07002208 * handle must be already prepared by the
2209 * truncatei_leaf() */
2210 err = ext4_ext_rm_idx(handle, inode, path + i);
2211 }
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002212 /* root level has p_bh == NULL, brelse() eats this */
Alex Tomasa86c6182006-10-11 01:21:03 -07002213 brelse(path[i].p_bh);
2214 path[i].p_bh = NULL;
2215 i--;
2216 ext_debug("return to level %d\n", i);
2217 }
2218 }
2219
2220 /* TODO: flexible tree reduction should be here */
2221 if (path->p_hdr->eh_entries == 0) {
2222 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002223 * truncate to zero freed all the tree,
2224 * so we need to correct eh_depth
Alex Tomasa86c6182006-10-11 01:21:03 -07002225 */
2226 err = ext4_ext_get_access(handle, inode, path);
2227 if (err == 0) {
2228 ext_inode_hdr(inode)->eh_depth = 0;
2229 ext_inode_hdr(inode)->eh_max =
2230 cpu_to_le16(ext4_ext_space_root(inode));
2231 err = ext4_ext_dirty(handle, inode, path);
2232 }
2233 }
2234out:
2235 ext4_ext_tree_changed(inode);
2236 ext4_ext_drop_refs(path);
2237 kfree(path);
2238 ext4_journal_stop(handle);
2239
2240 return err;
2241}
2242
2243/*
2244 * called at mount time
2245 */
2246void ext4_ext_init(struct super_block *sb)
2247{
2248 /*
2249 * possible initialization would be here
2250 */
2251
2252 if (test_opt(sb, EXTENTS)) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002253 printk(KERN_INFO "EXT4-fs: file extents enabled");
Robert P. J. Daybbf2f9f2007-02-17 19:20:16 +01002254#ifdef AGGRESSIVE_TEST
2255 printk(", aggressive tests");
Alex Tomasa86c6182006-10-11 01:21:03 -07002256#endif
2257#ifdef CHECK_BINSEARCH
2258 printk(", check binsearch");
2259#endif
2260#ifdef EXTENTS_STATS
2261 printk(", stats");
2262#endif
2263 printk("\n");
2264#ifdef EXTENTS_STATS
2265 spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock);
2266 EXT4_SB(sb)->s_ext_min = 1 << 30;
2267 EXT4_SB(sb)->s_ext_max = 0;
2268#endif
2269 }
2270}
2271
2272/*
2273 * called at umount time
2274 */
2275void ext4_ext_release(struct super_block *sb)
2276{
2277 if (!test_opt(sb, EXTENTS))
2278 return;
2279
2280#ifdef EXTENTS_STATS
2281 if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) {
2282 struct ext4_sb_info *sbi = EXT4_SB(sb);
2283 printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n",
2284 sbi->s_ext_blocks, sbi->s_ext_extents,
2285 sbi->s_ext_blocks / sbi->s_ext_extents);
2286 printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n",
2287 sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max);
2288 }
2289#endif
2290}
2291
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002292static void bi_complete(struct bio *bio, int error)
2293{
2294 complete((struct completion *)bio->bi_private);
2295}
2296
2297/* FIXME!! we need to try to merge to left or right after zero-out */
2298static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
2299{
2300 int ret = -EIO;
2301 struct bio *bio;
2302 int blkbits, blocksize;
2303 sector_t ee_pblock;
2304 struct completion event;
2305 unsigned int ee_len, len, done, offset;
2306
2307
2308 blkbits = inode->i_blkbits;
2309 blocksize = inode->i_sb->s_blocksize;
2310 ee_len = ext4_ext_get_actual_len(ex);
2311 ee_pblock = ext_pblock(ex);
2312
2313 /* convert ee_pblock to 512 byte sectors */
2314 ee_pblock = ee_pblock << (blkbits - 9);
2315
2316 while (ee_len > 0) {
2317
2318 if (ee_len > BIO_MAX_PAGES)
2319 len = BIO_MAX_PAGES;
2320 else
2321 len = ee_len;
2322
2323 bio = bio_alloc(GFP_NOIO, len);
2324 if (!bio)
2325 return -ENOMEM;
2326 bio->bi_sector = ee_pblock;
2327 bio->bi_bdev = inode->i_sb->s_bdev;
2328
2329 done = 0;
2330 offset = 0;
2331 while (done < len) {
2332 ret = bio_add_page(bio, ZERO_PAGE(0),
2333 blocksize, offset);
2334 if (ret != blocksize) {
2335 /*
2336 * We can't add any more pages because of
2337 * hardware limitations. Start a new bio.
2338 */
2339 break;
2340 }
2341 done++;
2342 offset += blocksize;
2343 if (offset >= PAGE_CACHE_SIZE)
2344 offset = 0;
2345 }
2346
2347 init_completion(&event);
2348 bio->bi_private = &event;
2349 bio->bi_end_io = bi_complete;
2350 submit_bio(WRITE, bio);
2351 wait_for_completion(&event);
2352
2353 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
2354 ret = 0;
2355 else {
2356 ret = -EIO;
2357 break;
2358 }
2359 bio_put(bio);
2360 ee_len -= done;
2361 ee_pblock += done << (blkbits - 9);
2362 }
2363 return ret;
2364}
2365
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002366#define EXT4_EXT_ZERO_LEN 7
2367
Amit Arora56055d32007-07-17 21:42:38 -04002368/*
2369 * This function is called by ext4_ext_get_blocks() if someone tries to write
2370 * to an uninitialized extent. It may result in splitting the uninitialized
2371 * extent into multiple extents (upto three - one initialized and two
2372 * uninitialized).
2373 * There are three possibilities:
2374 * a> There is no split required: Entire extent should be initialized
2375 * b> Splits in two extents: Write is happening at either end of the extent
2376 * c> Splits in three extents: Somone is writing in middle of the extent
2377 */
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002378static int ext4_ext_convert_to_initialized(handle_t *handle,
2379 struct inode *inode,
2380 struct ext4_ext_path *path,
2381 ext4_lblk_t iblock,
2382 unsigned long max_blocks)
Amit Arora56055d32007-07-17 21:42:38 -04002383{
Aneesh Kumar K.V95c38892008-04-17 10:38:59 -04002384 struct ext4_extent *ex, newex, orig_ex;
Amit Arora56055d32007-07-17 21:42:38 -04002385 struct ext4_extent *ex1 = NULL;
2386 struct ext4_extent *ex2 = NULL;
2387 struct ext4_extent *ex3 = NULL;
2388 struct ext4_extent_header *eh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002389 ext4_lblk_t ee_block;
2390 unsigned int allocated, ee_len, depth;
Amit Arora56055d32007-07-17 21:42:38 -04002391 ext4_fsblk_t newblock;
2392 int err = 0;
2393 int ret = 0;
2394
2395 depth = ext_depth(inode);
2396 eh = path[depth].p_hdr;
2397 ex = path[depth].p_ext;
2398 ee_block = le32_to_cpu(ex->ee_block);
2399 ee_len = ext4_ext_get_actual_len(ex);
2400 allocated = ee_len - (iblock - ee_block);
2401 newblock = iblock - ee_block + ext_pblock(ex);
2402 ex2 = ex;
Aneesh Kumar K.V95c38892008-04-17 10:38:59 -04002403 orig_ex.ee_block = ex->ee_block;
2404 orig_ex.ee_len = cpu_to_le16(ee_len);
2405 ext4_ext_store_pblock(&orig_ex, ext_pblock(ex));
Amit Arora56055d32007-07-17 21:42:38 -04002406
Aneesh Kumar K.V9df56432008-02-22 06:17:31 -05002407 err = ext4_ext_get_access(handle, inode, path + depth);
2408 if (err)
2409 goto out;
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002410 /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */
2411 if (ee_len <= 2*EXT4_EXT_ZERO_LEN) {
2412 err = ext4_ext_zeroout(inode, &orig_ex);
2413 if (err)
2414 goto fix_extent_len;
2415 /* update the extent length and mark as initialized */
2416 ex->ee_block = orig_ex.ee_block;
2417 ex->ee_len = orig_ex.ee_len;
2418 ext4_ext_store_pblock(ex, ext_pblock(&orig_ex));
2419 ext4_ext_dirty(handle, inode, path + depth);
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002420 /* zeroed the full extent */
2421 return allocated;
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002422 }
Aneesh Kumar K.V9df56432008-02-22 06:17:31 -05002423
Amit Arora56055d32007-07-17 21:42:38 -04002424 /* ex1: ee_block to iblock - 1 : uninitialized */
2425 if (iblock > ee_block) {
2426 ex1 = ex;
2427 ex1->ee_len = cpu_to_le16(iblock - ee_block);
2428 ext4_ext_mark_uninitialized(ex1);
2429 ex2 = &newex;
2430 }
2431 /*
2432 * for sanity, update the length of the ex2 extent before
2433 * we insert ex3, if ex1 is NULL. This is to avoid temporary
2434 * overlap of blocks.
2435 */
2436 if (!ex1 && allocated > max_blocks)
2437 ex2->ee_len = cpu_to_le16(max_blocks);
2438 /* ex3: to ee_block + ee_len : uninitialised */
2439 if (allocated > max_blocks) {
2440 unsigned int newdepth;
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002441 /* If extent has less than EXT4_EXT_ZERO_LEN zerout directly */
2442 if (allocated <= EXT4_EXT_ZERO_LEN) {
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002443 /*
2444 * iblock == ee_block is handled by the zerouout
2445 * at the beginning.
2446 * Mark first half uninitialized.
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002447 * Mark second half initialized and zero out the
2448 * initialized extent
2449 */
2450 ex->ee_block = orig_ex.ee_block;
2451 ex->ee_len = cpu_to_le16(ee_len - allocated);
2452 ext4_ext_mark_uninitialized(ex);
2453 ext4_ext_store_pblock(ex, ext_pblock(&orig_ex));
2454 ext4_ext_dirty(handle, inode, path + depth);
2455
2456 ex3 = &newex;
2457 ex3->ee_block = cpu_to_le32(iblock);
2458 ext4_ext_store_pblock(ex3, newblock);
2459 ex3->ee_len = cpu_to_le16(allocated);
2460 err = ext4_ext_insert_extent(handle, inode, path, ex3);
2461 if (err == -ENOSPC) {
2462 err = ext4_ext_zeroout(inode, &orig_ex);
2463 if (err)
2464 goto fix_extent_len;
2465 ex->ee_block = orig_ex.ee_block;
2466 ex->ee_len = orig_ex.ee_len;
2467 ext4_ext_store_pblock(ex, ext_pblock(&orig_ex));
2468 ext4_ext_dirty(handle, inode, path + depth);
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002469 /* blocks available from iblock */
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002470 return allocated;
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002471
2472 } else if (err)
2473 goto fix_extent_len;
2474
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002475 /*
2476 * We need to zero out the second half because
2477 * an fallocate request can update file size and
2478 * converting the second half to initialized extent
2479 * implies that we can leak some junk data to user
2480 * space.
2481 */
2482 err = ext4_ext_zeroout(inode, ex3);
2483 if (err) {
2484 /*
2485 * We should actually mark the
2486 * second half as uninit and return error
2487 * Insert would have changed the extent
2488 */
2489 depth = ext_depth(inode);
2490 ext4_ext_drop_refs(path);
2491 path = ext4_ext_find_extent(inode,
2492 iblock, path);
2493 if (IS_ERR(path)) {
2494 err = PTR_ERR(path);
2495 return err;
2496 }
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002497 /* get the second half extent details */
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002498 ex = path[depth].p_ext;
2499 err = ext4_ext_get_access(handle, inode,
2500 path + depth);
2501 if (err)
2502 return err;
2503 ext4_ext_mark_uninitialized(ex);
2504 ext4_ext_dirty(handle, inode, path + depth);
2505 return err;
2506 }
2507
2508 /* zeroed the second half */
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002509 return allocated;
2510 }
Amit Arora56055d32007-07-17 21:42:38 -04002511 ex3 = &newex;
2512 ex3->ee_block = cpu_to_le32(iblock + max_blocks);
2513 ext4_ext_store_pblock(ex3, newblock + max_blocks);
2514 ex3->ee_len = cpu_to_le16(allocated - max_blocks);
2515 ext4_ext_mark_uninitialized(ex3);
2516 err = ext4_ext_insert_extent(handle, inode, path, ex3);
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002517 if (err == -ENOSPC) {
2518 err = ext4_ext_zeroout(inode, &orig_ex);
2519 if (err)
2520 goto fix_extent_len;
2521 /* update the extent length and mark as initialized */
Aneesh Kumar K.V95c38892008-04-17 10:38:59 -04002522 ex->ee_block = orig_ex.ee_block;
2523 ex->ee_len = orig_ex.ee_len;
2524 ext4_ext_store_pblock(ex, ext_pblock(&orig_ex));
Aneesh Kumar K.V95c38892008-04-17 10:38:59 -04002525 ext4_ext_dirty(handle, inode, path + depth);
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002526 /* zeroed the full extent */
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002527 /* blocks available from iblock */
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002528 return allocated;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002529
2530 } else if (err)
2531 goto fix_extent_len;
Amit Arora56055d32007-07-17 21:42:38 -04002532 /*
2533 * The depth, and hence eh & ex might change
2534 * as part of the insert above.
2535 */
2536 newdepth = ext_depth(inode);
Aneesh Kumar K.V95c38892008-04-17 10:38:59 -04002537 /*
2538 * update the extent length after successfull insert of the
2539 * split extent
2540 */
2541 orig_ex.ee_len = cpu_to_le16(ee_len -
2542 ext4_ext_get_actual_len(ex3));
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002543 depth = newdepth;
2544 ext4_ext_drop_refs(path);
2545 path = ext4_ext_find_extent(inode, iblock, path);
2546 if (IS_ERR(path)) {
2547 err = PTR_ERR(path);
2548 goto out;
Amit Arora56055d32007-07-17 21:42:38 -04002549 }
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002550 eh = path[depth].p_hdr;
2551 ex = path[depth].p_ext;
2552 if (ex2 != &newex)
2553 ex2 = ex;
2554
2555 err = ext4_ext_get_access(handle, inode, path + depth);
2556 if (err)
2557 goto out;
2558
Amit Arora56055d32007-07-17 21:42:38 -04002559 allocated = max_blocks;
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002560
2561 /* If extent has less than EXT4_EXT_ZERO_LEN and we are trying
2562 * to insert a extent in the middle zerout directly
2563 * otherwise give the extent a chance to merge to left
2564 */
2565 if (le16_to_cpu(orig_ex.ee_len) <= EXT4_EXT_ZERO_LEN &&
2566 iblock != ee_block) {
2567 err = ext4_ext_zeroout(inode, &orig_ex);
2568 if (err)
2569 goto fix_extent_len;
2570 /* update the extent length and mark as initialized */
2571 ex->ee_block = orig_ex.ee_block;
2572 ex->ee_len = orig_ex.ee_len;
2573 ext4_ext_store_pblock(ex, ext_pblock(&orig_ex));
2574 ext4_ext_dirty(handle, inode, path + depth);
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002575 /* zero out the first half */
Aneesh Kumar K.Vd03856b2008-08-02 18:51:32 -04002576 /* blocks available from iblock */
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002577 return allocated;
Aneesh Kumar K.V3977c962008-04-17 10:38:59 -04002578 }
Amit Arora56055d32007-07-17 21:42:38 -04002579 }
2580 /*
2581 * If there was a change of depth as part of the
2582 * insertion of ex3 above, we need to update the length
2583 * of the ex1 extent again here
2584 */
2585 if (ex1 && ex1 != ex) {
2586 ex1 = ex;
2587 ex1->ee_len = cpu_to_le16(iblock - ee_block);
2588 ext4_ext_mark_uninitialized(ex1);
2589 ex2 = &newex;
2590 }
2591 /* ex2: iblock to iblock + maxblocks-1 : initialised */
2592 ex2->ee_block = cpu_to_le32(iblock);
Amit Arora56055d32007-07-17 21:42:38 -04002593 ext4_ext_store_pblock(ex2, newblock);
2594 ex2->ee_len = cpu_to_le16(allocated);
2595 if (ex2 != ex)
2596 goto insert;
Amit Arora56055d32007-07-17 21:42:38 -04002597 /*
2598 * New (initialized) extent starts from the first block
2599 * in the current extent. i.e., ex2 == ex
2600 * We have to see if it can be merged with the extent
2601 * on the left.
2602 */
2603 if (ex2 > EXT_FIRST_EXTENT(eh)) {
2604 /*
2605 * To merge left, pass "ex2 - 1" to try_to_merge(),
2606 * since it merges towards right _only_.
2607 */
2608 ret = ext4_ext_try_to_merge(inode, path, ex2 - 1);
2609 if (ret) {
2610 err = ext4_ext_correct_indexes(handle, inode, path);
2611 if (err)
2612 goto out;
2613 depth = ext_depth(inode);
2614 ex2--;
2615 }
2616 }
2617 /*
2618 * Try to Merge towards right. This might be required
2619 * only when the whole extent is being written to.
2620 * i.e. ex2 == ex and ex3 == NULL.
2621 */
2622 if (!ex3) {
2623 ret = ext4_ext_try_to_merge(inode, path, ex2);
2624 if (ret) {
2625 err = ext4_ext_correct_indexes(handle, inode, path);
2626 if (err)
2627 goto out;
2628 }
2629 }
2630 /* Mark modified extent as dirty */
2631 err = ext4_ext_dirty(handle, inode, path + depth);
2632 goto out;
2633insert:
2634 err = ext4_ext_insert_extent(handle, inode, path, &newex);
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002635 if (err == -ENOSPC) {
2636 err = ext4_ext_zeroout(inode, &orig_ex);
2637 if (err)
2638 goto fix_extent_len;
2639 /* update the extent length and mark as initialized */
Aneesh Kumar K.V95c38892008-04-17 10:38:59 -04002640 ex->ee_block = orig_ex.ee_block;
2641 ex->ee_len = orig_ex.ee_len;
2642 ext4_ext_store_pblock(ex, ext_pblock(&orig_ex));
Aneesh Kumar K.V95c38892008-04-17 10:38:59 -04002643 ext4_ext_dirty(handle, inode, path + depth);
Aneesh Kumar K.V161e7b72008-04-29 22:03:59 -04002644 /* zero out the first half */
2645 return allocated;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002646 } else if (err)
2647 goto fix_extent_len;
Amit Arora56055d32007-07-17 21:42:38 -04002648out:
2649 return err ? err : allocated;
Aneesh Kumar K.V093a0882008-04-29 08:11:12 -04002650
2651fix_extent_len:
2652 ex->ee_block = orig_ex.ee_block;
2653 ex->ee_len = orig_ex.ee_len;
2654 ext4_ext_store_pblock(ex, ext_pblock(&orig_ex));
2655 ext4_ext_mark_uninitialized(ex);
2656 ext4_ext_dirty(handle, inode, path + depth);
2657 return err;
Amit Arora56055d32007-07-17 21:42:38 -04002658}
2659
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05002660/*
Mingming Caof5ab0d12008-02-25 15:29:55 -05002661 * Block allocation/map/preallocation routine for extents based files
2662 *
2663 *
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05002664 * Need to be called with
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05002665 * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block
2666 * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem)
Mingming Caof5ab0d12008-02-25 15:29:55 -05002667 *
2668 * return > 0, number of of blocks already mapped/allocated
2669 * if create == 0 and these are pre-allocated blocks
2670 * buffer head is unmapped
2671 * otherwise blocks are mapped
2672 *
2673 * return = 0, if plain look up failed (blocks have not been allocated)
2674 * buffer head is unmapped
2675 *
2676 * return < 0, error case.
Aneesh Kumar K.Vc278bfe2008-01-28 23:58:27 -05002677 */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002678int ext4_ext_get_blocks(handle_t *handle, struct inode *inode,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002679 ext4_lblk_t iblock,
Alex Tomasa86c6182006-10-11 01:21:03 -07002680 unsigned long max_blocks, struct buffer_head *bh_result,
2681 int create, int extend_disksize)
2682{
2683 struct ext4_ext_path *path = NULL;
Amit Arora56055d32007-07-17 21:42:38 -04002684 struct ext4_extent_header *eh;
Alex Tomasa86c6182006-10-11 01:21:03 -07002685 struct ext4_extent newex, *ex;
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002686 ext4_fsblk_t goal, newblock;
Amit Arora56055d32007-07-17 21:42:38 -04002687 int err = 0, depth, ret;
Alex Tomasa86c6182006-10-11 01:21:03 -07002688 unsigned long allocated = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002689 struct ext4_allocation_request ar;
Mingming Cao61628a32008-07-11 19:27:31 -04002690 loff_t disksize;
Alex Tomasa86c6182006-10-11 01:21:03 -07002691
2692 __clear_bit(BH_New, &bh_result->b_state);
Eric Sandeenbba90742008-01-28 23:58:27 -05002693 ext_debug("blocks %u/%lu requested for inode %u\n",
2694 iblock, max_blocks, inode->i_ino);
Alex Tomasa86c6182006-10-11 01:21:03 -07002695
2696 /* check in cache */
Avantika Mathur7e028972006-12-06 20:41:33 -08002697 goal = ext4_ext_in_cache(inode, iblock, &newex);
2698 if (goal) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002699 if (goal == EXT4_EXT_CACHE_GAP) {
2700 if (!create) {
Amit Arora56055d32007-07-17 21:42:38 -04002701 /*
2702 * block isn't allocated yet and
2703 * user doesn't want to allocate it
2704 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002705 goto out2;
2706 }
2707 /* we should allocate requested block */
2708 } else if (goal == EXT4_EXT_CACHE_EXTENT) {
2709 /* block is already allocated */
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002710 newblock = iblock
2711 - le32_to_cpu(newex.ee_block)
2712 + ext_pblock(&newex);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002713 /* number of remaining blocks in the extent */
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05002714 allocated = ext4_ext_get_actual_len(&newex) -
Alex Tomasa86c6182006-10-11 01:21:03 -07002715 (iblock - le32_to_cpu(newex.ee_block));
2716 goto out;
2717 } else {
2718 BUG();
2719 }
2720 }
2721
2722 /* find extent for this block */
2723 path = ext4_ext_find_extent(inode, iblock, NULL);
2724 if (IS_ERR(path)) {
2725 err = PTR_ERR(path);
2726 path = NULL;
2727 goto out2;
2728 }
2729
2730 depth = ext_depth(inode);
2731
2732 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002733 * consistent leaf must not be empty;
2734 * this situation is possible, though, _during_ tree modification;
Alex Tomasa86c6182006-10-11 01:21:03 -07002735 * this is why assert can't be put in ext4_ext_find_extent()
2736 */
2737 BUG_ON(path[depth].p_ext == NULL && depth != 0);
Amit Arora56055d32007-07-17 21:42:38 -04002738 eh = path[depth].p_hdr;
Alex Tomasa86c6182006-10-11 01:21:03 -07002739
Avantika Mathur7e028972006-12-06 20:41:33 -08002740 ex = path[depth].p_ext;
2741 if (ex) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002742 ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block);
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002743 ext4_fsblk_t ee_start = ext_pblock(ex);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002744 unsigned short ee_len;
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07002745
2746 /*
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07002747 * Uninitialized extents are treated as holes, except that
Amit Arora56055d32007-07-17 21:42:38 -04002748 * we split out initialized portions during a write.
Suparna Bhattacharya471d4012006-10-11 01:21:06 -07002749 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04002750 ee_len = ext4_ext_get_actual_len(ex);
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002751 /* if found extent covers block, simply return it */
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002752 if (iblock >= ee_block && iblock < ee_block + ee_len) {
Alex Tomasa86c6182006-10-11 01:21:03 -07002753 newblock = iblock - ee_block + ee_start;
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002754 /* number of remaining blocks in the extent */
Alex Tomasa86c6182006-10-11 01:21:03 -07002755 allocated = ee_len - (iblock - ee_block);
Eric Sandeenbba90742008-01-28 23:58:27 -05002756 ext_debug("%u fit into %lu:%d -> %llu\n", iblock,
Alex Tomasa86c6182006-10-11 01:21:03 -07002757 ee_block, ee_len, newblock);
Amit Arora56055d32007-07-17 21:42:38 -04002758
Amit Aroraa2df2a62007-07-17 21:42:41 -04002759 /* Do not put uninitialized extent in the cache */
Amit Arora56055d32007-07-17 21:42:38 -04002760 if (!ext4_ext_is_uninitialized(ex)) {
Amit Aroraa2df2a62007-07-17 21:42:41 -04002761 ext4_ext_put_in_cache(inode, ee_block,
2762 ee_len, ee_start,
2763 EXT4_EXT_CACHE_EXTENT);
Amit Arora56055d32007-07-17 21:42:38 -04002764 goto out;
2765 }
2766 if (create == EXT4_CREATE_UNINITIALIZED_EXT)
2767 goto out;
Aneesh Kumar K.Ve067ba02008-04-29 08:11:12 -04002768 if (!create) {
2769 /*
2770 * We have blocks reserved already. We
2771 * return allocated blocks so that delalloc
2772 * won't do block reservation for us. But
2773 * the buffer head will be unmapped so that
2774 * a read from the block returns 0s.
2775 */
2776 if (allocated > max_blocks)
2777 allocated = max_blocks;
Eric Sandeen953e6222008-07-11 19:27:31 -04002778 set_buffer_unwritten(bh_result);
Amit Arora56055d32007-07-17 21:42:38 -04002779 goto out2;
Aneesh Kumar K.Ve067ba02008-04-29 08:11:12 -04002780 }
Amit Arora56055d32007-07-17 21:42:38 -04002781
2782 ret = ext4_ext_convert_to_initialized(handle, inode,
2783 path, iblock,
2784 max_blocks);
Dmitry Monakhovdbf9d7d2008-01-28 23:58:27 -05002785 if (ret <= 0) {
2786 err = ret;
Amit Arora56055d32007-07-17 21:42:38 -04002787 goto out2;
Dmitry Monakhovdbf9d7d2008-01-28 23:58:27 -05002788 } else
Amit Arora56055d32007-07-17 21:42:38 -04002789 allocated = ret;
2790 goto outnew;
Alex Tomasa86c6182006-10-11 01:21:03 -07002791 }
2792 }
2793
2794 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002795 * requested block isn't allocated yet;
Alex Tomasa86c6182006-10-11 01:21:03 -07002796 * we couldn't try to create block if create flag is zero
2797 */
2798 if (!create) {
Amit Arora56055d32007-07-17 21:42:38 -04002799 /*
2800 * put just found gap into cache to speed up
2801 * subsequent requests
2802 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002803 ext4_ext_put_gap_in_cache(inode, path, iblock);
2804 goto out2;
2805 }
2806 /*
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04002807 * Okay, we need to do block allocation.
Andrew Morton63f57932006-10-11 01:21:24 -07002808 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002809
Alex Tomasc9de5602008-01-29 00:19:52 -05002810 /* find neighbour allocated blocks */
2811 ar.lleft = iblock;
2812 err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft);
2813 if (err)
2814 goto out2;
2815 ar.lright = iblock;
2816 err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright);
2817 if (err)
2818 goto out2;
Amit Arora25d14f92007-05-24 13:04:13 -04002819
Amit Arora749269f2007-07-18 09:02:56 -04002820 /*
2821 * See if request is beyond maximum number of blocks we can have in
2822 * a single extent. For an initialized extent this limit is
2823 * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is
2824 * EXT_UNINIT_MAX_LEN.
2825 */
2826 if (max_blocks > EXT_INIT_MAX_LEN &&
2827 create != EXT4_CREATE_UNINITIALIZED_EXT)
2828 max_blocks = EXT_INIT_MAX_LEN;
2829 else if (max_blocks > EXT_UNINIT_MAX_LEN &&
2830 create == EXT4_CREATE_UNINITIALIZED_EXT)
2831 max_blocks = EXT_UNINIT_MAX_LEN;
2832
Amit Arora25d14f92007-05-24 13:04:13 -04002833 /* Check if we can really insert (iblock)::(iblock+max_blocks) extent */
2834 newex.ee_block = cpu_to_le32(iblock);
2835 newex.ee_len = cpu_to_le16(max_blocks);
2836 err = ext4_ext_check_overlap(inode, &newex, path);
2837 if (err)
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05002838 allocated = ext4_ext_get_actual_len(&newex);
Amit Arora25d14f92007-05-24 13:04:13 -04002839 else
2840 allocated = max_blocks;
Alex Tomasc9de5602008-01-29 00:19:52 -05002841
2842 /* allocate new block */
2843 ar.inode = inode;
2844 ar.goal = ext4_ext_find_goal(inode, path, iblock);
2845 ar.logical = iblock;
2846 ar.len = allocated;
2847 if (S_ISREG(inode->i_mode))
2848 ar.flags = EXT4_MB_HINT_DATA;
2849 else
2850 /* disable in-core preallocation for non-regular files */
2851 ar.flags = 0;
2852 newblock = ext4_mb_new_blocks(handle, &ar, &err);
Alex Tomasa86c6182006-10-11 01:21:03 -07002853 if (!newblock)
2854 goto out2;
Mingming Cao2ae02102006-10-11 01:21:11 -07002855 ext_debug("allocate new block: goal %llu, found %llu/%lu\n",
Alex Tomasa86c6182006-10-11 01:21:03 -07002856 goal, newblock, allocated);
2857
2858 /* try to insert new extent into found leaf and return */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002859 ext4_ext_store_pblock(&newex, newblock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002860 newex.ee_len = cpu_to_le16(ar.len);
Amit Aroraa2df2a62007-07-17 21:42:41 -04002861 if (create == EXT4_CREATE_UNINITIALIZED_EXT) /* Mark uninitialized */
2862 ext4_ext_mark_uninitialized(&newex);
Alex Tomasa86c6182006-10-11 01:21:03 -07002863 err = ext4_ext_insert_extent(handle, inode, path, &newex);
Alex Tomas315054f2007-05-24 13:04:25 -04002864 if (err) {
2865 /* free data blocks we just allocated */
Alex Tomasc9de5602008-01-29 00:19:52 -05002866 /* not a good idea to call discard here directly,
2867 * but otherwise we'd need to call it every free() */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04002868 ext4_discard_preallocations(inode);
Alex Tomas315054f2007-05-24 13:04:25 -04002869 ext4_free_blocks(handle, inode, ext_pblock(&newex),
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05002870 ext4_ext_get_actual_len(&newex), 0);
Alex Tomasa86c6182006-10-11 01:21:03 -07002871 goto out2;
Alex Tomas315054f2007-05-24 13:04:25 -04002872 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002873
Alex Tomasa86c6182006-10-11 01:21:03 -07002874 /* previous routine could use block we allocated */
Alex Tomasf65e6fb2006-10-11 01:21:05 -07002875 newblock = ext_pblock(&newex);
Aneesh Kumar K.Vb939e372008-01-28 23:58:27 -05002876 allocated = ext4_ext_get_actual_len(&newex);
Amit Arora56055d32007-07-17 21:42:38 -04002877outnew:
Mingming Cao61628a32008-07-11 19:27:31 -04002878 if (extend_disksize) {
2879 disksize = ((loff_t) iblock + ar.len) << inode->i_blkbits;
2880 if (disksize > i_size_read(inode))
2881 disksize = i_size_read(inode);
2882 if (disksize > EXT4_I(inode)->i_disksize)
2883 EXT4_I(inode)->i_disksize = disksize;
2884 }
Aneesh Kumar K.Va379cd12008-07-11 19:27:31 -04002885
Eric Sandeen953e6222008-07-11 19:27:31 -04002886 set_buffer_new(bh_result);
Alex Tomasa86c6182006-10-11 01:21:03 -07002887
Amit Aroraa2df2a62007-07-17 21:42:41 -04002888 /* Cache only when it is _not_ an uninitialized extent */
2889 if (create != EXT4_CREATE_UNINITIALIZED_EXT)
2890 ext4_ext_put_in_cache(inode, iblock, allocated, newblock,
2891 EXT4_EXT_CACHE_EXTENT);
Alex Tomasa86c6182006-10-11 01:21:03 -07002892out:
2893 if (allocated > max_blocks)
2894 allocated = max_blocks;
2895 ext4_ext_show_leaf(inode, path);
Eric Sandeen953e6222008-07-11 19:27:31 -04002896 set_buffer_mapped(bh_result);
Alex Tomasa86c6182006-10-11 01:21:03 -07002897 bh_result->b_bdev = inode->i_sb->s_bdev;
2898 bh_result->b_blocknr = newblock;
2899out2:
2900 if (path) {
2901 ext4_ext_drop_refs(path);
2902 kfree(path);
2903 }
Alex Tomasa86c6182006-10-11 01:21:03 -07002904 return err ? err : allocated;
2905}
2906
Jan Karacf108bc2008-07-11 19:27:31 -04002907void ext4_ext_truncate(struct inode *inode)
Alex Tomasa86c6182006-10-11 01:21:03 -07002908{
2909 struct address_space *mapping = inode->i_mapping;
2910 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002911 ext4_lblk_t last_block;
Alex Tomasa86c6182006-10-11 01:21:03 -07002912 handle_t *handle;
2913 int err = 0;
2914
2915 /*
2916 * probably first extent we're gonna free will be last in block
2917 */
Mingming Caof3bd1f32008-08-19 22:16:03 -04002918 err = ext4_writepage_trans_blocks(inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07002919 handle = ext4_journal_start(inode, err);
Jan Karacf108bc2008-07-11 19:27:31 -04002920 if (IS_ERR(handle))
Alex Tomasa86c6182006-10-11 01:21:03 -07002921 return;
Alex Tomasa86c6182006-10-11 01:21:03 -07002922
Jan Karacf108bc2008-07-11 19:27:31 -04002923 if (inode->i_size & (sb->s_blocksize - 1))
2924 ext4_block_truncate_page(handle, mapping, inode->i_size);
Alex Tomasa86c6182006-10-11 01:21:03 -07002925
Jan Kara9ddfc3d2008-07-11 19:27:31 -04002926 if (ext4_orphan_add(handle, inode))
2927 goto out_stop;
2928
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -05002929 down_write(&EXT4_I(inode)->i_data_sem);
Alex Tomasa86c6182006-10-11 01:21:03 -07002930 ext4_ext_invalidate_cache(inode);
2931
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04002932 ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05002933
Alex Tomasa86c6182006-10-11 01:21:03 -07002934 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002935 * TODO: optimization is possible here.
2936 * Probably we need not scan at all,
2937 * because page truncation is enough.
Alex Tomasa86c6182006-10-11 01:21:03 -07002938 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002939
2940 /* we have to know where to truncate from in crash case */
2941 EXT4_I(inode)->i_disksize = inode->i_size;
2942 ext4_mark_inode_dirty(handle, inode);
2943
2944 last_block = (inode->i_size + sb->s_blocksize - 1)
2945 >> EXT4_BLOCK_SIZE_BITS(sb);
2946 err = ext4_ext_remove_space(inode, last_block);
2947
2948 /* In a multi-transaction truncate, we only make the final
Amit Arora56055d32007-07-17 21:42:38 -04002949 * transaction synchronous.
2950 */
Alex Tomasa86c6182006-10-11 01:21:03 -07002951 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05002952 ext4_handle_sync(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07002953
2954out_stop:
Jan Kara9ddfc3d2008-07-11 19:27:31 -04002955 up_write(&EXT4_I(inode)->i_data_sem);
Alex Tomasa86c6182006-10-11 01:21:03 -07002956 /*
Randy Dunlapd0d856e2006-10-11 01:21:07 -07002957 * If this was a simple ftruncate() and the file will remain alive,
Alex Tomasa86c6182006-10-11 01:21:03 -07002958 * then we need to clear up the orphan record which we created above.
2959 * However, if this was a real unlink then we were called by
2960 * ext4_delete_inode(), and we allow that function to clean up the
2961 * orphan info for us.
2962 */
2963 if (inode->i_nlink)
2964 ext4_orphan_del(handle, inode);
2965
Solofo Ramangalahyef737722008-04-29 22:00:41 -04002966 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
2967 ext4_mark_inode_dirty(handle, inode);
Alex Tomasa86c6182006-10-11 01:21:03 -07002968 ext4_journal_stop(handle);
2969}
2970
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04002971static void ext4_falloc_update_inode(struct inode *inode,
2972 int mode, loff_t new_size, int update_ctime)
2973{
2974 struct timespec now;
2975
2976 if (update_ctime) {
2977 now = current_fs_time(inode->i_sb);
2978 if (!timespec_equal(&inode->i_ctime, &now))
2979 inode->i_ctime = now;
2980 }
2981 /*
2982 * Update only when preallocation was requested beyond
2983 * the file size.
2984 */
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04002985 if (!(mode & FALLOC_FL_KEEP_SIZE)) {
2986 if (new_size > i_size_read(inode))
2987 i_size_write(inode, new_size);
2988 if (new_size > EXT4_I(inode)->i_disksize)
2989 ext4_update_i_disksize(inode, new_size);
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04002990 }
2991
2992}
2993
Amit Aroraa2df2a62007-07-17 21:42:41 -04002994/*
2995 * preallocate space for a file. This implements ext4's fallocate inode
2996 * operation, which gets called from sys_fallocate system call.
2997 * For block-mapped files, posix_fallocate should fall back to the method
2998 * of writing zeroes to the required new blocks (the same behavior which is
2999 * expected for file systems which do not support fallocate() system call).
3000 */
3001long ext4_fallocate(struct inode *inode, int mode, loff_t offset, loff_t len)
3002{
3003 handle_t *handle;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003004 ext4_lblk_t block;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003005 loff_t new_size;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003006 unsigned long max_blocks;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003007 int ret = 0;
3008 int ret2 = 0;
3009 int retries = 0;
3010 struct buffer_head map_bh;
3011 unsigned int credits, blkbits = inode->i_blkbits;
3012
3013 /*
3014 * currently supporting (pre)allocate mode for extent-based
3015 * files _only_
3016 */
3017 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL))
3018 return -EOPNOTSUPP;
3019
3020 /* preallocation to directories is currently not supported */
3021 if (S_ISDIR(inode->i_mode))
3022 return -ENODEV;
3023
3024 block = offset >> blkbits;
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003025 /*
3026 * We can't just convert len to max_blocks because
3027 * If blocksize = 4096 offset = 3072 and len = 2048
3028 */
Amit Aroraa2df2a62007-07-17 21:42:41 -04003029 max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits)
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003030 - block;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003031 /*
Mingming Caof3bd1f32008-08-19 22:16:03 -04003032 * credits to insert 1 extent into extent tree
Amit Aroraa2df2a62007-07-17 21:42:41 -04003033 */
Mingming Caof3bd1f32008-08-19 22:16:03 -04003034 credits = ext4_chunk_trans_blocks(inode, max_blocks);
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05003035 mutex_lock(&inode->i_mutex);
Amit Aroraa2df2a62007-07-17 21:42:41 -04003036retry:
3037 while (ret >= 0 && ret < max_blocks) {
3038 block = block + ret;
3039 max_blocks = max_blocks - ret;
3040 handle = ext4_journal_start(inode, credits);
3041 if (IS_ERR(handle)) {
3042 ret = PTR_ERR(handle);
3043 break;
3044 }
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05003045 ret = ext4_get_blocks_wrap(handle, inode, block,
Amit Aroraa2df2a62007-07-17 21:42:41 -04003046 max_blocks, &map_bh,
Mingming Caod2a17632008-07-14 17:52:37 -04003047 EXT4_CREATE_UNINITIALIZED_EXT, 0, 0);
Aneesh Kumar K.V221879c2008-01-28 23:58:27 -05003048 if (ret <= 0) {
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05003049#ifdef EXT4FS_DEBUG
3050 WARN_ON(ret <= 0);
3051 printk(KERN_ERR "%s: ext4_ext_get_blocks "
3052 "returned error inode#%lu, block=%u, "
3053 "max_blocks=%lu", __func__,
Aneesh Kumar K.V221879c2008-01-28 23:58:27 -05003054 inode->i_ino, block, max_blocks);
Aneesh Kumar K.V2c986152008-02-25 15:41:35 -05003055#endif
Amit Aroraa2df2a62007-07-17 21:42:41 -04003056 ext4_mark_inode_dirty(handle, inode);
3057 ret2 = ext4_journal_stop(handle);
3058 break;
3059 }
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003060 if ((block + ret) >= (EXT4_BLOCK_ALIGN(offset + len,
3061 blkbits) >> blkbits))
3062 new_size = offset + len;
3063 else
3064 new_size = (block + ret) << blkbits;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003065
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003066 ext4_falloc_update_inode(inode, mode, new_size,
3067 buffer_new(&map_bh));
Amit Aroraa2df2a62007-07-17 21:42:41 -04003068 ext4_mark_inode_dirty(handle, inode);
3069 ret2 = ext4_journal_stop(handle);
3070 if (ret2)
3071 break;
3072 }
Aneesh Kumar K.Vfd287842008-04-29 08:11:12 -04003073 if (ret == -ENOSPC &&
3074 ext4_should_retry_alloc(inode->i_sb, &retries)) {
3075 ret = 0;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003076 goto retry;
Amit Aroraa2df2a62007-07-17 21:42:41 -04003077 }
Aneesh Kumar K.V55bd7252008-02-15 12:47:21 -05003078 mutex_unlock(&inode->i_mutex);
Amit Aroraa2df2a62007-07-17 21:42:41 -04003079 return ret > 0 ? ret2 : ret;
3080}
Eric Sandeen6873fa02008-10-07 00:46:36 -04003081
3082/*
3083 * Callback function called for each extent to gather FIEMAP information.
3084 */
3085int ext4_ext_fiemap_cb(struct inode *inode, struct ext4_ext_path *path,
3086 struct ext4_ext_cache *newex, struct ext4_extent *ex,
3087 void *data)
3088{
3089 struct fiemap_extent_info *fieinfo = data;
3090 unsigned long blksize_bits = inode->i_sb->s_blocksize_bits;
3091 __u64 logical;
3092 __u64 physical;
3093 __u64 length;
3094 __u32 flags = 0;
3095 int error;
3096
3097 logical = (__u64)newex->ec_block << blksize_bits;
3098
3099 if (newex->ec_type == EXT4_EXT_CACHE_GAP) {
3100 pgoff_t offset;
3101 struct page *page;
3102 struct buffer_head *bh = NULL;
3103
3104 offset = logical >> PAGE_SHIFT;
3105 page = find_get_page(inode->i_mapping, offset);
3106 if (!page || !page_has_buffers(page))
3107 return EXT_CONTINUE;
3108
3109 bh = page_buffers(page);
3110
3111 if (!bh)
3112 return EXT_CONTINUE;
3113
3114 if (buffer_delay(bh)) {
3115 flags |= FIEMAP_EXTENT_DELALLOC;
3116 page_cache_release(page);
3117 } else {
3118 page_cache_release(page);
3119 return EXT_CONTINUE;
3120 }
3121 }
3122
3123 physical = (__u64)newex->ec_start << blksize_bits;
3124 length = (__u64)newex->ec_len << blksize_bits;
3125
3126 if (ex && ext4_ext_is_uninitialized(ex))
3127 flags |= FIEMAP_EXTENT_UNWRITTEN;
3128
3129 /*
3130 * If this extent reaches EXT_MAX_BLOCK, it must be last.
3131 *
3132 * Or if ext4_ext_next_allocated_block is EXT_MAX_BLOCK,
3133 * this also indicates no more allocated blocks.
3134 *
3135 * XXX this might miss a single-block extent at EXT_MAX_BLOCK
3136 */
3137 if (logical + length - 1 == EXT_MAX_BLOCK ||
3138 ext4_ext_next_allocated_block(path) == EXT_MAX_BLOCK)
3139 flags |= FIEMAP_EXTENT_LAST;
3140
3141 error = fiemap_fill_next_extent(fieinfo, logical, physical,
3142 length, flags);
3143 if (error < 0)
3144 return error;
3145 if (error == 1)
3146 return EXT_BREAK;
3147
3148 return EXT_CONTINUE;
3149}
3150
3151/* fiemap flags we can handle specified here */
3152#define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR)
3153
3154int ext4_xattr_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo)
3155{
3156 __u64 physical = 0;
3157 __u64 length;
3158 __u32 flags = FIEMAP_EXTENT_LAST;
3159 int blockbits = inode->i_sb->s_blocksize_bits;
3160 int error = 0;
3161
3162 /* in-inode? */
3163 if (EXT4_I(inode)->i_state & EXT4_STATE_XATTR) {
3164 struct ext4_iloc iloc;
3165 int offset; /* offset of xattr in inode */
3166
3167 error = ext4_get_inode_loc(inode, &iloc);
3168 if (error)
3169 return error;
3170 physical = iloc.bh->b_blocknr << blockbits;
3171 offset = EXT4_GOOD_OLD_INODE_SIZE +
3172 EXT4_I(inode)->i_extra_isize;
3173 physical += offset;
3174 length = EXT4_SB(inode->i_sb)->s_inode_size - offset;
3175 flags |= FIEMAP_EXTENT_DATA_INLINE;
3176 } else { /* external block */
3177 physical = EXT4_I(inode)->i_file_acl << blockbits;
3178 length = inode->i_sb->s_blocksize;
3179 }
3180
3181 if (physical)
3182 error = fiemap_fill_next_extent(fieinfo, 0, physical,
3183 length, flags);
3184 return (error < 0 ? error : 0);
3185}
3186
3187int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3188 __u64 start, __u64 len)
3189{
3190 ext4_lblk_t start_blk;
3191 ext4_lblk_t len_blks;
3192 int error = 0;
3193
3194 /* fallback to generic here if not in extents fmt */
3195 if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL))
3196 return generic_block_fiemap(inode, fieinfo, start, len,
3197 ext4_get_block);
3198
3199 if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS))
3200 return -EBADR;
3201
3202 if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) {
3203 error = ext4_xattr_fiemap(inode, fieinfo);
3204 } else {
3205 start_blk = start >> inode->i_sb->s_blocksize_bits;
3206 len_blks = len >> inode->i_sb->s_blocksize_bits;
3207
3208 /*
3209 * Walk the extent tree gathering extent information.
3210 * ext4_ext_fiemap_cb will push extents back to user.
3211 */
3212 down_write(&EXT4_I(inode)->i_data_sem);
3213 error = ext4_ext_walk_space(inode, start_blk, len_blks,
3214 ext4_ext_fiemap_cb, fieinfo);
3215 up_write(&EXT4_I(inode)->i_data_sem);
3216 }
3217
3218 return error;
3219}
3220