]>
Commit | Line | Data |
---|---|---|
a86c6181 AT |
1 | /* |
2 | * Copyright (c) 2003-2006, Cluster File Systems, Inc, [email protected] | |
3 | * Written by Alex Tomas <[email protected]> | |
4 | * | |
5 | * Architecture independence: | |
6 | * Copyright (c) 2005, Bull S.A. | |
7 | * Written by Pierre Peiffer <[email protected]> | |
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 | ||
a86c6181 AT |
32 | #include <linux/fs.h> |
33 | #include <linux/time.h> | |
cd02ff0b | 34 | #include <linux/jbd2.h> |
a86c6181 AT |
35 | #include <linux/highuid.h> |
36 | #include <linux/pagemap.h> | |
37 | #include <linux/quotaops.h> | |
38 | #include <linux/string.h> | |
39 | #include <linux/slab.h> | |
a86c6181 | 40 | #include <asm/uaccess.h> |
6873fa0d | 41 | #include <linux/fiemap.h> |
3dcf5451 | 42 | #include "ext4_jbd2.h" |
4a092d73 | 43 | #include "ext4_extents.h" |
f19d5870 | 44 | #include "xattr.h" |
a86c6181 | 45 | |
0562e0ba JZ |
46 | #include <trace/events/ext4.h> |
47 | ||
5f95d21f LC |
48 | /* |
49 | * used by extent splitting. | |
50 | */ | |
51 | #define EXT4_EXT_MAY_ZEROOUT 0x1 /* safe to zeroout if split fails \ | |
52 | due to ENOSPC */ | |
556615dc LC |
53 | #define EXT4_EXT_MARK_UNWRIT1 0x2 /* mark first half unwritten */ |
54 | #define EXT4_EXT_MARK_UNWRIT2 0x4 /* mark second half unwritten */ | |
5f95d21f | 55 | |
dee1f973 DM |
56 | #define EXT4_EXT_DATA_VALID1 0x8 /* first half contains valid data */ |
57 | #define EXT4_EXT_DATA_VALID2 0x10 /* second half contains valid data */ | |
58 | ||
7ac5990d DW |
59 | static __le32 ext4_extent_block_csum(struct inode *inode, |
60 | struct ext4_extent_header *eh) | |
61 | { | |
62 | struct ext4_inode_info *ei = EXT4_I(inode); | |
63 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); | |
64 | __u32 csum; | |
65 | ||
66 | csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)eh, | |
67 | EXT4_EXTENT_TAIL_OFFSET(eh)); | |
68 | return cpu_to_le32(csum); | |
69 | } | |
70 | ||
71 | static int ext4_extent_block_csum_verify(struct inode *inode, | |
72 | struct ext4_extent_header *eh) | |
73 | { | |
74 | struct ext4_extent_tail *et; | |
75 | ||
76 | if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, | |
77 | EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) | |
78 | return 1; | |
79 | ||
80 | et = find_ext4_extent_tail(eh); | |
81 | if (et->et_checksum != ext4_extent_block_csum(inode, eh)) | |
82 | return 0; | |
83 | return 1; | |
84 | } | |
85 | ||
86 | static void ext4_extent_block_csum_set(struct inode *inode, | |
87 | struct ext4_extent_header *eh) | |
88 | { | |
89 | struct ext4_extent_tail *et; | |
90 | ||
91 | if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, | |
92 | EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) | |
93 | return; | |
94 | ||
95 | et = find_ext4_extent_tail(eh); | |
96 | et->et_checksum = ext4_extent_block_csum(inode, eh); | |
97 | } | |
98 | ||
d583fb87 AH |
99 | static int ext4_split_extent(handle_t *handle, |
100 | struct inode *inode, | |
101 | struct ext4_ext_path *path, | |
102 | struct ext4_map_blocks *map, | |
103 | int split_flag, | |
104 | int flags); | |
105 | ||
5f95d21f LC |
106 | static int ext4_split_extent_at(handle_t *handle, |
107 | struct inode *inode, | |
108 | struct ext4_ext_path *path, | |
109 | ext4_lblk_t split, | |
110 | int split_flag, | |
111 | int flags); | |
112 | ||
91dd8c11 | 113 | static int ext4_find_delayed_extent(struct inode *inode, |
69eb33dc | 114 | struct extent_status *newes); |
91dd8c11 | 115 | |
487caeef JK |
116 | static int ext4_ext_truncate_extend_restart(handle_t *handle, |
117 | struct inode *inode, | |
118 | int needed) | |
a86c6181 AT |
119 | { |
120 | int err; | |
121 | ||
0390131b FM |
122 | if (!ext4_handle_valid(handle)) |
123 | return 0; | |
a86c6181 | 124 | if (handle->h_buffer_credits > needed) |
9102e4fa SF |
125 | return 0; |
126 | err = ext4_journal_extend(handle, needed); | |
0123c939 | 127 | if (err <= 0) |
9102e4fa | 128 | return err; |
487caeef | 129 | err = ext4_truncate_restart_trans(handle, inode, needed); |
0617b83f DM |
130 | if (err == 0) |
131 | err = -EAGAIN; | |
487caeef JK |
132 | |
133 | return err; | |
a86c6181 AT |
134 | } |
135 | ||
136 | /* | |
137 | * could return: | |
138 | * - EROFS | |
139 | * - ENOMEM | |
140 | */ | |
141 | static int ext4_ext_get_access(handle_t *handle, struct inode *inode, | |
142 | struct ext4_ext_path *path) | |
143 | { | |
144 | if (path->p_bh) { | |
145 | /* path points to block */ | |
5d601255 | 146 | BUFFER_TRACE(path->p_bh, "get_write_access"); |
a86c6181 AT |
147 | return ext4_journal_get_write_access(handle, path->p_bh); |
148 | } | |
149 | /* path points to leaf/index in inode body */ | |
150 | /* we use in-core data, no need to protect them */ | |
151 | return 0; | |
152 | } | |
153 | ||
154 | /* | |
155 | * could return: | |
156 | * - EROFS | |
157 | * - ENOMEM | |
158 | * - EIO | |
159 | */ | |
2656497b DW |
160 | int __ext4_ext_dirty(const char *where, unsigned int line, handle_t *handle, |
161 | struct inode *inode, struct ext4_ext_path *path) | |
a86c6181 AT |
162 | { |
163 | int err; | |
4b1f1660 DM |
164 | |
165 | WARN_ON(!rwsem_is_locked(&EXT4_I(inode)->i_data_sem)); | |
a86c6181 | 166 | if (path->p_bh) { |
7ac5990d | 167 | ext4_extent_block_csum_set(inode, ext_block_hdr(path->p_bh)); |
a86c6181 | 168 | /* path points to block */ |
9ea7a0df TT |
169 | err = __ext4_handle_dirty_metadata(where, line, handle, |
170 | inode, path->p_bh); | |
a86c6181 AT |
171 | } else { |
172 | /* path points to leaf/index in inode body */ | |
173 | err = ext4_mark_inode_dirty(handle, inode); | |
174 | } | |
175 | return err; | |
176 | } | |
177 | ||
f65e6fba | 178 | static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode, |
a86c6181 | 179 | struct ext4_ext_path *path, |
725d26d3 | 180 | ext4_lblk_t block) |
a86c6181 | 181 | { |
a86c6181 | 182 | if (path) { |
81fdbb4a | 183 | int depth = path->p_depth; |
a86c6181 | 184 | struct ext4_extent *ex; |
a86c6181 | 185 | |
ad4fb9ca KM |
186 | /* |
187 | * Try to predict block placement assuming that we are | |
188 | * filling in a file which will eventually be | |
189 | * non-sparse --- i.e., in the case of libbfd writing | |
190 | * an ELF object sections out-of-order but in a way | |
191 | * the eventually results in a contiguous object or | |
192 | * executable file, or some database extending a table | |
193 | * space file. However, this is actually somewhat | |
194 | * non-ideal if we are writing a sparse file such as | |
195 | * qemu or KVM writing a raw image file that is going | |
196 | * to stay fairly sparse, since it will end up | |
197 | * fragmenting the file system's free space. Maybe we | |
198 | * should have some hueristics or some way to allow | |
199 | * userspace to pass a hint to file system, | |
b8d6568a | 200 | * especially if the latter case turns out to be |
ad4fb9ca KM |
201 | * common. |
202 | */ | |
7e028976 | 203 | ex = path[depth].p_ext; |
ad4fb9ca KM |
204 | if (ex) { |
205 | ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); | |
206 | ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); | |
207 | ||
208 | if (block > ext_block) | |
209 | return ext_pblk + (block - ext_block); | |
210 | else | |
211 | return ext_pblk - (ext_block - block); | |
212 | } | |
a86c6181 | 213 | |
d0d856e8 RD |
214 | /* it looks like index is empty; |
215 | * try to find starting block from index itself */ | |
a86c6181 AT |
216 | if (path[depth].p_bh) |
217 | return path[depth].p_bh->b_blocknr; | |
218 | } | |
219 | ||
220 | /* OK. use inode's group */ | |
f86186b4 | 221 | return ext4_inode_to_goal_block(inode); |
a86c6181 AT |
222 | } |
223 | ||
654b4908 AK |
224 | /* |
225 | * Allocation for a meta data block | |
226 | */ | |
f65e6fba | 227 | static ext4_fsblk_t |
654b4908 | 228 | ext4_ext_new_meta_block(handle_t *handle, struct inode *inode, |
a86c6181 | 229 | struct ext4_ext_path *path, |
55f020db | 230 | struct ext4_extent *ex, int *err, unsigned int flags) |
a86c6181 | 231 | { |
f65e6fba | 232 | ext4_fsblk_t goal, newblock; |
a86c6181 AT |
233 | |
234 | goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); | |
55f020db AH |
235 | newblock = ext4_new_meta_blocks(handle, inode, goal, flags, |
236 | NULL, err); | |
a86c6181 AT |
237 | return newblock; |
238 | } | |
239 | ||
55ad63bf | 240 | static inline int ext4_ext_space_block(struct inode *inode, int check) |
a86c6181 AT |
241 | { |
242 | int size; | |
243 | ||
244 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) | |
245 | / sizeof(struct ext4_extent); | |
bbf2f9fb | 246 | #ifdef AGGRESSIVE_TEST |
02dc62fb YY |
247 | if (!check && size > 6) |
248 | size = 6; | |
a86c6181 AT |
249 | #endif |
250 | return size; | |
251 | } | |
252 | ||
55ad63bf | 253 | static inline int ext4_ext_space_block_idx(struct inode *inode, int check) |
a86c6181 AT |
254 | { |
255 | int size; | |
256 | ||
257 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) | |
258 | / sizeof(struct ext4_extent_idx); | |
bbf2f9fb | 259 | #ifdef AGGRESSIVE_TEST |
02dc62fb YY |
260 | if (!check && size > 5) |
261 | size = 5; | |
a86c6181 AT |
262 | #endif |
263 | return size; | |
264 | } | |
265 | ||
55ad63bf | 266 | static inline int ext4_ext_space_root(struct inode *inode, int check) |
a86c6181 AT |
267 | { |
268 | int size; | |
269 | ||
270 | size = sizeof(EXT4_I(inode)->i_data); | |
271 | size -= sizeof(struct ext4_extent_header); | |
272 | size /= sizeof(struct ext4_extent); | |
bbf2f9fb | 273 | #ifdef AGGRESSIVE_TEST |
02dc62fb YY |
274 | if (!check && size > 3) |
275 | size = 3; | |
a86c6181 AT |
276 | #endif |
277 | return size; | |
278 | } | |
279 | ||
55ad63bf | 280 | static inline int ext4_ext_space_root_idx(struct inode *inode, int check) |
a86c6181 AT |
281 | { |
282 | int size; | |
283 | ||
284 | size = sizeof(EXT4_I(inode)->i_data); | |
285 | size -= sizeof(struct ext4_extent_header); | |
286 | size /= sizeof(struct ext4_extent_idx); | |
bbf2f9fb | 287 | #ifdef AGGRESSIVE_TEST |
02dc62fb YY |
288 | if (!check && size > 4) |
289 | size = 4; | |
a86c6181 AT |
290 | #endif |
291 | return size; | |
292 | } | |
293 | ||
fcf6b1b7 DM |
294 | static inline int |
295 | ext4_force_split_extent_at(handle_t *handle, struct inode *inode, | |
296 | struct ext4_ext_path *path, ext4_lblk_t lblk, | |
297 | int nofail) | |
298 | { | |
299 | int unwritten = ext4_ext_is_unwritten(path[path->p_depth].p_ext); | |
300 | ||
301 | return ext4_split_extent_at(handle, inode, path, lblk, unwritten ? | |
302 | EXT4_EXT_MARK_UNWRIT1|EXT4_EXT_MARK_UNWRIT2 : 0, | |
303 | EXT4_EX_NOCACHE | EXT4_GET_BLOCKS_PRE_IO | | |
304 | (nofail ? EXT4_GET_BLOCKS_METADATA_NOFAIL:0)); | |
305 | } | |
306 | ||
d2a17637 MC |
307 | /* |
308 | * Calculate the number of metadata blocks needed | |
309 | * to allocate @blocks | |
310 | * Worse case is one block per extent | |
311 | */ | |
01f49d0b | 312 | int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock) |
d2a17637 | 313 | { |
9d0be502 | 314 | struct ext4_inode_info *ei = EXT4_I(inode); |
81fdbb4a | 315 | int idxs; |
d2a17637 | 316 | |
9d0be502 TT |
317 | idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) |
318 | / sizeof(struct ext4_extent_idx)); | |
d2a17637 MC |
319 | |
320 | /* | |
9d0be502 TT |
321 | * If the new delayed allocation block is contiguous with the |
322 | * previous da block, it can share index blocks with the | |
323 | * previous block, so we only need to allocate a new index | |
324 | * block every idxs leaf blocks. At ldxs**2 blocks, we need | |
325 | * an additional index block, and at ldxs**3 blocks, yet | |
326 | * another index blocks. | |
d2a17637 | 327 | */ |
9d0be502 TT |
328 | if (ei->i_da_metadata_calc_len && |
329 | ei->i_da_metadata_calc_last_lblock+1 == lblock) { | |
81fdbb4a YY |
330 | int num = 0; |
331 | ||
9d0be502 TT |
332 | if ((ei->i_da_metadata_calc_len % idxs) == 0) |
333 | num++; | |
334 | if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0) | |
335 | num++; | |
336 | if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) { | |
337 | num++; | |
338 | ei->i_da_metadata_calc_len = 0; | |
339 | } else | |
340 | ei->i_da_metadata_calc_len++; | |
341 | ei->i_da_metadata_calc_last_lblock++; | |
342 | return num; | |
343 | } | |
d2a17637 | 344 | |
9d0be502 TT |
345 | /* |
346 | * In the worst case we need a new set of index blocks at | |
347 | * every level of the inode's extent tree. | |
348 | */ | |
349 | ei->i_da_metadata_calc_len = 1; | |
350 | ei->i_da_metadata_calc_last_lblock = lblock; | |
351 | return ext_depth(inode) + 1; | |
d2a17637 MC |
352 | } |
353 | ||
c29c0ae7 AT |
354 | static int |
355 | ext4_ext_max_entries(struct inode *inode, int depth) | |
356 | { | |
357 | int max; | |
358 | ||
359 | if (depth == ext_depth(inode)) { | |
360 | if (depth == 0) | |
55ad63bf | 361 | max = ext4_ext_space_root(inode, 1); |
c29c0ae7 | 362 | else |
55ad63bf | 363 | max = ext4_ext_space_root_idx(inode, 1); |
c29c0ae7 AT |
364 | } else { |
365 | if (depth == 0) | |
55ad63bf | 366 | max = ext4_ext_space_block(inode, 1); |
c29c0ae7 | 367 | else |
55ad63bf | 368 | max = ext4_ext_space_block_idx(inode, 1); |
c29c0ae7 AT |
369 | } |
370 | ||
371 | return max; | |
372 | } | |
373 | ||
56b19868 AK |
374 | static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) |
375 | { | |
bf89d16f | 376 | ext4_fsblk_t block = ext4_ext_pblock(ext); |
56b19868 | 377 | int len = ext4_ext_get_actual_len(ext); |
5946d089 EG |
378 | ext4_lblk_t lblock = le32_to_cpu(ext->ee_block); |
379 | ext4_lblk_t last = lblock + len - 1; | |
e84a26ce | 380 | |
5946d089 | 381 | if (lblock > last) |
31d4f3a2 | 382 | return 0; |
6fd058f7 | 383 | return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len); |
56b19868 AK |
384 | } |
385 | ||
386 | static int ext4_valid_extent_idx(struct inode *inode, | |
387 | struct ext4_extent_idx *ext_idx) | |
388 | { | |
bf89d16f | 389 | ext4_fsblk_t block = ext4_idx_pblock(ext_idx); |
e84a26ce | 390 | |
6fd058f7 | 391 | return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1); |
56b19868 AK |
392 | } |
393 | ||
394 | static int ext4_valid_extent_entries(struct inode *inode, | |
395 | struct ext4_extent_header *eh, | |
396 | int depth) | |
397 | { | |
56b19868 AK |
398 | unsigned short entries; |
399 | if (eh->eh_entries == 0) | |
400 | return 1; | |
401 | ||
402 | entries = le16_to_cpu(eh->eh_entries); | |
403 | ||
404 | if (depth == 0) { | |
405 | /* leaf entries */ | |
81fdbb4a | 406 | struct ext4_extent *ext = EXT_FIRST_EXTENT(eh); |
5946d089 EG |
407 | struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; |
408 | ext4_fsblk_t pblock = 0; | |
409 | ext4_lblk_t lblock = 0; | |
410 | ext4_lblk_t prev = 0; | |
411 | int len = 0; | |
56b19868 AK |
412 | while (entries) { |
413 | if (!ext4_valid_extent(inode, ext)) | |
414 | return 0; | |
5946d089 EG |
415 | |
416 | /* Check for overlapping extents */ | |
417 | lblock = le32_to_cpu(ext->ee_block); | |
418 | len = ext4_ext_get_actual_len(ext); | |
419 | if ((lblock <= prev) && prev) { | |
420 | pblock = ext4_ext_pblock(ext); | |
421 | es->s_last_error_block = cpu_to_le64(pblock); | |
422 | return 0; | |
423 | } | |
56b19868 AK |
424 | ext++; |
425 | entries--; | |
5946d089 | 426 | prev = lblock + len - 1; |
56b19868 AK |
427 | } |
428 | } else { | |
81fdbb4a | 429 | struct ext4_extent_idx *ext_idx = EXT_FIRST_INDEX(eh); |
56b19868 AK |
430 | while (entries) { |
431 | if (!ext4_valid_extent_idx(inode, ext_idx)) | |
432 | return 0; | |
433 | ext_idx++; | |
434 | entries--; | |
435 | } | |
436 | } | |
437 | return 1; | |
438 | } | |
439 | ||
c398eda0 TT |
440 | static int __ext4_ext_check(const char *function, unsigned int line, |
441 | struct inode *inode, struct ext4_extent_header *eh, | |
c349179b | 442 | int depth, ext4_fsblk_t pblk) |
c29c0ae7 AT |
443 | { |
444 | const char *error_msg; | |
445 | int max = 0; | |
446 | ||
447 | if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) { | |
448 | error_msg = "invalid magic"; | |
449 | goto corrupted; | |
450 | } | |
451 | if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) { | |
452 | error_msg = "unexpected eh_depth"; | |
453 | goto corrupted; | |
454 | } | |
455 | if (unlikely(eh->eh_max == 0)) { | |
456 | error_msg = "invalid eh_max"; | |
457 | goto corrupted; | |
458 | } | |
459 | max = ext4_ext_max_entries(inode, depth); | |
460 | if (unlikely(le16_to_cpu(eh->eh_max) > max)) { | |
461 | error_msg = "too large eh_max"; | |
462 | goto corrupted; | |
463 | } | |
464 | if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) { | |
465 | error_msg = "invalid eh_entries"; | |
466 | goto corrupted; | |
467 | } | |
56b19868 AK |
468 | if (!ext4_valid_extent_entries(inode, eh, depth)) { |
469 | error_msg = "invalid extent entries"; | |
470 | goto corrupted; | |
471 | } | |
7ac5990d DW |
472 | /* Verify checksum on non-root extent tree nodes */ |
473 | if (ext_depth(inode) != depth && | |
474 | !ext4_extent_block_csum_verify(inode, eh)) { | |
475 | error_msg = "extent tree corrupted"; | |
476 | goto corrupted; | |
477 | } | |
c29c0ae7 AT |
478 | return 0; |
479 | ||
480 | corrupted: | |
c398eda0 | 481 | ext4_error_inode(inode, function, line, 0, |
c349179b TT |
482 | "pblk %llu bad header/extent: %s - magic %x, " |
483 | "entries %u, max %u(%u), depth %u(%u)", | |
484 | (unsigned long long) pblk, error_msg, | |
485 | le16_to_cpu(eh->eh_magic), | |
486 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max), | |
487 | max, le16_to_cpu(eh->eh_depth), depth); | |
c29c0ae7 AT |
488 | return -EIO; |
489 | } | |
490 | ||
c349179b TT |
491 | #define ext4_ext_check(inode, eh, depth, pblk) \ |
492 | __ext4_ext_check(__func__, __LINE__, (inode), (eh), (depth), (pblk)) | |
c29c0ae7 | 493 | |
7a262f7c AK |
494 | int ext4_ext_check_inode(struct inode *inode) |
495 | { | |
c349179b | 496 | return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode), 0); |
7a262f7c AK |
497 | } |
498 | ||
7d7ea89e TT |
499 | static struct buffer_head * |
500 | __read_extent_tree_block(const char *function, unsigned int line, | |
107a7bd3 TT |
501 | struct inode *inode, ext4_fsblk_t pblk, int depth, |
502 | int flags) | |
f8489128 | 503 | { |
7d7ea89e TT |
504 | struct buffer_head *bh; |
505 | int err; | |
506 | ||
507 | bh = sb_getblk(inode->i_sb, pblk); | |
508 | if (unlikely(!bh)) | |
509 | return ERR_PTR(-ENOMEM); | |
f8489128 | 510 | |
7d7ea89e TT |
511 | if (!bh_uptodate_or_lock(bh)) { |
512 | trace_ext4_ext_load_extent(inode, pblk, _RET_IP_); | |
513 | err = bh_submit_read(bh); | |
514 | if (err < 0) | |
515 | goto errout; | |
516 | } | |
7869a4a6 | 517 | if (buffer_verified(bh) && !(flags & EXT4_EX_FORCE_CACHE)) |
7d7ea89e TT |
518 | return bh; |
519 | err = __ext4_ext_check(function, line, inode, | |
c349179b | 520 | ext_block_hdr(bh), depth, pblk); |
7d7ea89e TT |
521 | if (err) |
522 | goto errout; | |
f8489128 | 523 | set_buffer_verified(bh); |
107a7bd3 TT |
524 | /* |
525 | * If this is a leaf block, cache all of its entries | |
526 | */ | |
527 | if (!(flags & EXT4_EX_NOCACHE) && depth == 0) { | |
528 | struct ext4_extent_header *eh = ext_block_hdr(bh); | |
529 | struct ext4_extent *ex = EXT_FIRST_EXTENT(eh); | |
530 | ext4_lblk_t prev = 0; | |
531 | int i; | |
532 | ||
533 | for (i = le16_to_cpu(eh->eh_entries); i > 0; i--, ex++) { | |
534 | unsigned int status = EXTENT_STATUS_WRITTEN; | |
535 | ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); | |
536 | int len = ext4_ext_get_actual_len(ex); | |
537 | ||
538 | if (prev && (prev != lblk)) | |
539 | ext4_es_cache_extent(inode, prev, | |
540 | lblk - prev, ~0, | |
541 | EXTENT_STATUS_HOLE); | |
542 | ||
556615dc | 543 | if (ext4_ext_is_unwritten(ex)) |
107a7bd3 TT |
544 | status = EXTENT_STATUS_UNWRITTEN; |
545 | ext4_es_cache_extent(inode, lblk, len, | |
546 | ext4_ext_pblock(ex), status); | |
547 | prev = lblk + len; | |
548 | } | |
549 | } | |
7d7ea89e TT |
550 | return bh; |
551 | errout: | |
552 | put_bh(bh); | |
553 | return ERR_PTR(err); | |
554 | ||
f8489128 DW |
555 | } |
556 | ||
107a7bd3 TT |
557 | #define read_extent_tree_block(inode, pblk, depth, flags) \ |
558 | __read_extent_tree_block(__func__, __LINE__, (inode), (pblk), \ | |
559 | (depth), (flags)) | |
f8489128 | 560 | |
7869a4a6 TT |
561 | /* |
562 | * This function is called to cache a file's extent information in the | |
563 | * extent status tree | |
564 | */ | |
565 | int ext4_ext_precache(struct inode *inode) | |
566 | { | |
567 | struct ext4_inode_info *ei = EXT4_I(inode); | |
568 | struct ext4_ext_path *path = NULL; | |
569 | struct buffer_head *bh; | |
570 | int i = 0, depth, ret = 0; | |
571 | ||
572 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) | |
573 | return 0; /* not an extent-mapped inode */ | |
574 | ||
575 | down_read(&ei->i_data_sem); | |
576 | depth = ext_depth(inode); | |
577 | ||
578 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), | |
579 | GFP_NOFS); | |
580 | if (path == NULL) { | |
581 | up_read(&ei->i_data_sem); | |
582 | return -ENOMEM; | |
583 | } | |
584 | ||
585 | /* Don't cache anything if there are no external extent blocks */ | |
586 | if (depth == 0) | |
587 | goto out; | |
588 | path[0].p_hdr = ext_inode_hdr(inode); | |
589 | ret = ext4_ext_check(inode, path[0].p_hdr, depth, 0); | |
590 | if (ret) | |
591 | goto out; | |
592 | path[0].p_idx = EXT_FIRST_INDEX(path[0].p_hdr); | |
593 | while (i >= 0) { | |
594 | /* | |
595 | * If this is a leaf block or we've reached the end of | |
596 | * the index block, go up | |
597 | */ | |
598 | if ((i == depth) || | |
599 | path[i].p_idx > EXT_LAST_INDEX(path[i].p_hdr)) { | |
600 | brelse(path[i].p_bh); | |
601 | path[i].p_bh = NULL; | |
602 | i--; | |
603 | continue; | |
604 | } | |
605 | bh = read_extent_tree_block(inode, | |
606 | ext4_idx_pblock(path[i].p_idx++), | |
607 | depth - i - 1, | |
608 | EXT4_EX_FORCE_CACHE); | |
609 | if (IS_ERR(bh)) { | |
610 | ret = PTR_ERR(bh); | |
611 | break; | |
612 | } | |
613 | i++; | |
614 | path[i].p_bh = bh; | |
615 | path[i].p_hdr = ext_block_hdr(bh); | |
616 | path[i].p_idx = EXT_FIRST_INDEX(path[i].p_hdr); | |
617 | } | |
618 | ext4_set_inode_state(inode, EXT4_STATE_EXT_PRECACHED); | |
619 | out: | |
620 | up_read(&ei->i_data_sem); | |
621 | ext4_ext_drop_refs(path); | |
622 | kfree(path); | |
623 | return ret; | |
624 | } | |
625 | ||
a86c6181 AT |
626 | #ifdef EXT_DEBUG |
627 | static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path) | |
628 | { | |
629 | int k, l = path->p_depth; | |
630 | ||
631 | ext_debug("path:"); | |
632 | for (k = 0; k <= l; k++, path++) { | |
633 | if (path->p_idx) { | |
2ae02107 | 634 | ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block), |
bf89d16f | 635 | ext4_idx_pblock(path->p_idx)); |
a86c6181 | 636 | } else if (path->p_ext) { |
553f9008 | 637 | ext_debug(" %d:[%d]%d:%llu ", |
a86c6181 | 638 | le32_to_cpu(path->p_ext->ee_block), |
556615dc | 639 | ext4_ext_is_unwritten(path->p_ext), |
a2df2a63 | 640 | ext4_ext_get_actual_len(path->p_ext), |
bf89d16f | 641 | ext4_ext_pblock(path->p_ext)); |
a86c6181 AT |
642 | } else |
643 | ext_debug(" []"); | |
644 | } | |
645 | ext_debug("\n"); | |
646 | } | |
647 | ||
648 | static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path) | |
649 | { | |
650 | int depth = ext_depth(inode); | |
651 | struct ext4_extent_header *eh; | |
652 | struct ext4_extent *ex; | |
653 | int i; | |
654 | ||
655 | if (!path) | |
656 | return; | |
657 | ||
658 | eh = path[depth].p_hdr; | |
659 | ex = EXT_FIRST_EXTENT(eh); | |
660 | ||
553f9008 M |
661 | ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino); |
662 | ||
a86c6181 | 663 | for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) { |
553f9008 | 664 | ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block), |
556615dc | 665 | ext4_ext_is_unwritten(ex), |
bf89d16f | 666 | ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex)); |
a86c6181 AT |
667 | } |
668 | ext_debug("\n"); | |
669 | } | |
1b16da77 YY |
670 | |
671 | static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path, | |
672 | ext4_fsblk_t newblock, int level) | |
673 | { | |
674 | int depth = ext_depth(inode); | |
675 | struct ext4_extent *ex; | |
676 | ||
677 | if (depth != level) { | |
678 | struct ext4_extent_idx *idx; | |
679 | idx = path[level].p_idx; | |
680 | while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) { | |
681 | ext_debug("%d: move %d:%llu in new index %llu\n", level, | |
682 | le32_to_cpu(idx->ei_block), | |
683 | ext4_idx_pblock(idx), | |
684 | newblock); | |
685 | idx++; | |
686 | } | |
687 | ||
688 | return; | |
689 | } | |
690 | ||
691 | ex = path[depth].p_ext; | |
692 | while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) { | |
693 | ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n", | |
694 | le32_to_cpu(ex->ee_block), | |
695 | ext4_ext_pblock(ex), | |
556615dc | 696 | ext4_ext_is_unwritten(ex), |
1b16da77 YY |
697 | ext4_ext_get_actual_len(ex), |
698 | newblock); | |
699 | ex++; | |
700 | } | |
701 | } | |
702 | ||
a86c6181 | 703 | #else |
af5bc92d TT |
704 | #define ext4_ext_show_path(inode, path) |
705 | #define ext4_ext_show_leaf(inode, path) | |
1b16da77 | 706 | #define ext4_ext_show_move(inode, path, newblock, level) |
a86c6181 AT |
707 | #endif |
708 | ||
b35905c1 | 709 | void ext4_ext_drop_refs(struct ext4_ext_path *path) |
a86c6181 AT |
710 | { |
711 | int depth = path->p_depth; | |
712 | int i; | |
713 | ||
714 | for (i = 0; i <= depth; i++, path++) | |
715 | if (path->p_bh) { | |
716 | brelse(path->p_bh); | |
717 | path->p_bh = NULL; | |
718 | } | |
719 | } | |
720 | ||
721 | /* | |
d0d856e8 RD |
722 | * ext4_ext_binsearch_idx: |
723 | * binary search for the closest index of the given block | |
c29c0ae7 | 724 | * the header must be checked before calling this |
a86c6181 AT |
725 | */ |
726 | static void | |
725d26d3 AK |
727 | ext4_ext_binsearch_idx(struct inode *inode, |
728 | struct ext4_ext_path *path, ext4_lblk_t block) | |
a86c6181 AT |
729 | { |
730 | struct ext4_extent_header *eh = path->p_hdr; | |
731 | struct ext4_extent_idx *r, *l, *m; | |
732 | ||
a86c6181 | 733 | |
bba90743 | 734 | ext_debug("binsearch for %u(idx): ", block); |
a86c6181 AT |
735 | |
736 | l = EXT_FIRST_INDEX(eh) + 1; | |
e9f410b1 | 737 | r = EXT_LAST_INDEX(eh); |
a86c6181 AT |
738 | while (l <= r) { |
739 | m = l + (r - l) / 2; | |
740 | if (block < le32_to_cpu(m->ei_block)) | |
741 | r = m - 1; | |
742 | else | |
743 | l = m + 1; | |
26d535ed DM |
744 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block), |
745 | m, le32_to_cpu(m->ei_block), | |
746 | r, le32_to_cpu(r->ei_block)); | |
a86c6181 AT |
747 | } |
748 | ||
749 | path->p_idx = l - 1; | |
4a3c3a51 | 750 | ext_debug(" -> %u->%lld ", le32_to_cpu(path->p_idx->ei_block), |
bf89d16f | 751 | ext4_idx_pblock(path->p_idx)); |
a86c6181 AT |
752 | |
753 | #ifdef CHECK_BINSEARCH | |
754 | { | |
755 | struct ext4_extent_idx *chix, *ix; | |
756 | int k; | |
757 | ||
758 | chix = ix = EXT_FIRST_INDEX(eh); | |
759 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) { | |
760 | if (k != 0 && | |
761 | le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) { | |
4776004f TT |
762 | printk(KERN_DEBUG "k=%d, ix=0x%p, " |
763 | "first=0x%p\n", k, | |
764 | ix, EXT_FIRST_INDEX(eh)); | |
765 | printk(KERN_DEBUG "%u <= %u\n", | |
a86c6181 AT |
766 | le32_to_cpu(ix->ei_block), |
767 | le32_to_cpu(ix[-1].ei_block)); | |
768 | } | |
769 | BUG_ON(k && le32_to_cpu(ix->ei_block) | |
8c55e204 | 770 | <= le32_to_cpu(ix[-1].ei_block)); |
a86c6181 AT |
771 | if (block < le32_to_cpu(ix->ei_block)) |
772 | break; | |
773 | chix = ix; | |
774 | } | |
775 | BUG_ON(chix != path->p_idx); | |
776 | } | |
777 | #endif | |
778 | ||
779 | } | |
780 | ||
781 | /* | |
d0d856e8 RD |
782 | * ext4_ext_binsearch: |
783 | * binary search for closest extent of the given block | |
c29c0ae7 | 784 | * the header must be checked before calling this |
a86c6181 AT |
785 | */ |
786 | static void | |
725d26d3 AK |
787 | ext4_ext_binsearch(struct inode *inode, |
788 | struct ext4_ext_path *path, ext4_lblk_t block) | |
a86c6181 AT |
789 | { |
790 | struct ext4_extent_header *eh = path->p_hdr; | |
791 | struct ext4_extent *r, *l, *m; | |
792 | ||
a86c6181 AT |
793 | if (eh->eh_entries == 0) { |
794 | /* | |
d0d856e8 RD |
795 | * this leaf is empty: |
796 | * we get such a leaf in split/add case | |
a86c6181 AT |
797 | */ |
798 | return; | |
799 | } | |
800 | ||
bba90743 | 801 | ext_debug("binsearch for %u: ", block); |
a86c6181 AT |
802 | |
803 | l = EXT_FIRST_EXTENT(eh) + 1; | |
e9f410b1 | 804 | r = EXT_LAST_EXTENT(eh); |
a86c6181 AT |
805 | |
806 | while (l <= r) { | |
807 | m = l + (r - l) / 2; | |
808 | if (block < le32_to_cpu(m->ee_block)) | |
809 | r = m - 1; | |
810 | else | |
811 | l = m + 1; | |
26d535ed DM |
812 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block), |
813 | m, le32_to_cpu(m->ee_block), | |
814 | r, le32_to_cpu(r->ee_block)); | |
a86c6181 AT |
815 | } |
816 | ||
817 | path->p_ext = l - 1; | |
553f9008 | 818 | ext_debug(" -> %d:%llu:[%d]%d ", |
8c55e204 | 819 | le32_to_cpu(path->p_ext->ee_block), |
bf89d16f | 820 | ext4_ext_pblock(path->p_ext), |
556615dc | 821 | ext4_ext_is_unwritten(path->p_ext), |
a2df2a63 | 822 | ext4_ext_get_actual_len(path->p_ext)); |
a86c6181 AT |
823 | |
824 | #ifdef CHECK_BINSEARCH | |
825 | { | |
826 | struct ext4_extent *chex, *ex; | |
827 | int k; | |
828 | ||
829 | chex = ex = EXT_FIRST_EXTENT(eh); | |
830 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) { | |
831 | BUG_ON(k && le32_to_cpu(ex->ee_block) | |
8c55e204 | 832 | <= le32_to_cpu(ex[-1].ee_block)); |
a86c6181 AT |
833 | if (block < le32_to_cpu(ex->ee_block)) |
834 | break; | |
835 | chex = ex; | |
836 | } | |
837 | BUG_ON(chex != path->p_ext); | |
838 | } | |
839 | #endif | |
840 | ||
841 | } | |
842 | ||
843 | int ext4_ext_tree_init(handle_t *handle, struct inode *inode) | |
844 | { | |
845 | struct ext4_extent_header *eh; | |
846 | ||
847 | eh = ext_inode_hdr(inode); | |
848 | eh->eh_depth = 0; | |
849 | eh->eh_entries = 0; | |
850 | eh->eh_magic = EXT4_EXT_MAGIC; | |
55ad63bf | 851 | eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0)); |
a86c6181 | 852 | ext4_mark_inode_dirty(handle, inode); |
a86c6181 AT |
853 | return 0; |
854 | } | |
855 | ||
856 | struct ext4_ext_path * | |
725d26d3 | 857 | ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block, |
107a7bd3 | 858 | struct ext4_ext_path *path, int flags) |
a86c6181 AT |
859 | { |
860 | struct ext4_extent_header *eh; | |
861 | struct buffer_head *bh; | |
862 | short int depth, i, ppos = 0, alloc = 0; | |
860d21e2 | 863 | int ret; |
a86c6181 AT |
864 | |
865 | eh = ext_inode_hdr(inode); | |
c29c0ae7 | 866 | depth = ext_depth(inode); |
a86c6181 AT |
867 | |
868 | /* account possible depth increase */ | |
869 | if (!path) { | |
5d4958f9 | 870 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2), |
a86c6181 AT |
871 | GFP_NOFS); |
872 | if (!path) | |
873 | return ERR_PTR(-ENOMEM); | |
874 | alloc = 1; | |
875 | } | |
a86c6181 | 876 | path[0].p_hdr = eh; |
1973adcb | 877 | path[0].p_bh = NULL; |
a86c6181 | 878 | |
c29c0ae7 | 879 | i = depth; |
a86c6181 AT |
880 | /* walk through the tree */ |
881 | while (i) { | |
882 | ext_debug("depth %d: num %d, max %d\n", | |
883 | ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max)); | |
c29c0ae7 | 884 | |
a86c6181 | 885 | ext4_ext_binsearch_idx(inode, path + ppos, block); |
bf89d16f | 886 | path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx); |
a86c6181 AT |
887 | path[ppos].p_depth = i; |
888 | path[ppos].p_ext = NULL; | |
889 | ||
107a7bd3 TT |
890 | bh = read_extent_tree_block(inode, path[ppos].p_block, --i, |
891 | flags); | |
7d7ea89e TT |
892 | if (IS_ERR(bh)) { |
893 | ret = PTR_ERR(bh); | |
a86c6181 | 894 | goto err; |
860d21e2 | 895 | } |
7d7ea89e | 896 | |
a86c6181 AT |
897 | eh = ext_block_hdr(bh); |
898 | ppos++; | |
273df556 FM |
899 | if (unlikely(ppos > depth)) { |
900 | put_bh(bh); | |
901 | EXT4_ERROR_INODE(inode, | |
902 | "ppos %d > depth %d", ppos, depth); | |
860d21e2 | 903 | ret = -EIO; |
273df556 FM |
904 | goto err; |
905 | } | |
a86c6181 AT |
906 | path[ppos].p_bh = bh; |
907 | path[ppos].p_hdr = eh; | |
a86c6181 AT |
908 | } |
909 | ||
910 | path[ppos].p_depth = i; | |
a86c6181 AT |
911 | path[ppos].p_ext = NULL; |
912 | path[ppos].p_idx = NULL; | |
913 | ||
a86c6181 AT |
914 | /* find extent */ |
915 | ext4_ext_binsearch(inode, path + ppos, block); | |
1973adcb SF |
916 | /* if not an empty leaf */ |
917 | if (path[ppos].p_ext) | |
bf89d16f | 918 | path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext); |
a86c6181 AT |
919 | |
920 | ext4_ext_show_path(inode, path); | |
921 | ||
922 | return path; | |
923 | ||
924 | err: | |
925 | ext4_ext_drop_refs(path); | |
926 | if (alloc) | |
927 | kfree(path); | |
860d21e2 | 928 | return ERR_PTR(ret); |
a86c6181 AT |
929 | } |
930 | ||
931 | /* | |
d0d856e8 RD |
932 | * ext4_ext_insert_index: |
933 | * insert new index [@logical;@ptr] into the block at @curp; | |
934 | * check where to insert: before @curp or after @curp | |
a86c6181 | 935 | */ |
1f109d5a TT |
936 | static int ext4_ext_insert_index(handle_t *handle, struct inode *inode, |
937 | struct ext4_ext_path *curp, | |
938 | int logical, ext4_fsblk_t ptr) | |
a86c6181 AT |
939 | { |
940 | struct ext4_extent_idx *ix; | |
941 | int len, err; | |
942 | ||
7e028976 AM |
943 | err = ext4_ext_get_access(handle, inode, curp); |
944 | if (err) | |
a86c6181 AT |
945 | return err; |
946 | ||
273df556 FM |
947 | if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) { |
948 | EXT4_ERROR_INODE(inode, | |
949 | "logical %d == ei_block %d!", | |
950 | logical, le32_to_cpu(curp->p_idx->ei_block)); | |
951 | return -EIO; | |
952 | } | |
d4620315 RD |
953 | |
954 | if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries) | |
955 | >= le16_to_cpu(curp->p_hdr->eh_max))) { | |
956 | EXT4_ERROR_INODE(inode, | |
957 | "eh_entries %d >= eh_max %d!", | |
958 | le16_to_cpu(curp->p_hdr->eh_entries), | |
959 | le16_to_cpu(curp->p_hdr->eh_max)); | |
960 | return -EIO; | |
961 | } | |
962 | ||
a86c6181 AT |
963 | if (logical > le32_to_cpu(curp->p_idx->ei_block)) { |
964 | /* insert after */ | |
80e675f9 | 965 | ext_debug("insert new index %d after: %llu\n", logical, ptr); |
a86c6181 AT |
966 | ix = curp->p_idx + 1; |
967 | } else { | |
968 | /* insert before */ | |
80e675f9 | 969 | ext_debug("insert new index %d before: %llu\n", logical, ptr); |
a86c6181 AT |
970 | ix = curp->p_idx; |
971 | } | |
972 | ||
80e675f9 EG |
973 | len = EXT_LAST_INDEX(curp->p_hdr) - ix + 1; |
974 | BUG_ON(len < 0); | |
975 | if (len > 0) { | |
976 | ext_debug("insert new index %d: " | |
977 | "move %d indices from 0x%p to 0x%p\n", | |
978 | logical, len, ix, ix + 1); | |
979 | memmove(ix + 1, ix, len * sizeof(struct ext4_extent_idx)); | |
980 | } | |
981 | ||
f472e026 TM |
982 | if (unlikely(ix > EXT_MAX_INDEX(curp->p_hdr))) { |
983 | EXT4_ERROR_INODE(inode, "ix > EXT_MAX_INDEX!"); | |
984 | return -EIO; | |
985 | } | |
986 | ||
a86c6181 | 987 | ix->ei_block = cpu_to_le32(logical); |
f65e6fba | 988 | ext4_idx_store_pblock(ix, ptr); |
e8546d06 | 989 | le16_add_cpu(&curp->p_hdr->eh_entries, 1); |
a86c6181 | 990 | |
273df556 FM |
991 | if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) { |
992 | EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!"); | |
993 | return -EIO; | |
994 | } | |
a86c6181 AT |
995 | |
996 | err = ext4_ext_dirty(handle, inode, curp); | |
997 | ext4_std_error(inode->i_sb, err); | |
998 | ||
999 | return err; | |
1000 | } | |
1001 | ||
1002 | /* | |
d0d856e8 RD |
1003 | * ext4_ext_split: |
1004 | * inserts new subtree into the path, using free index entry | |
1005 | * at depth @at: | |
1006 | * - allocates all needed blocks (new leaf and all intermediate index blocks) | |
1007 | * - makes decision where to split | |
1008 | * - moves remaining extents and index entries (right to the split point) | |
1009 | * into the newly allocated blocks | |
1010 | * - initializes subtree | |
a86c6181 AT |
1011 | */ |
1012 | static int ext4_ext_split(handle_t *handle, struct inode *inode, | |
55f020db AH |
1013 | unsigned int flags, |
1014 | struct ext4_ext_path *path, | |
1015 | struct ext4_extent *newext, int at) | |
a86c6181 AT |
1016 | { |
1017 | struct buffer_head *bh = NULL; | |
1018 | int depth = ext_depth(inode); | |
1019 | struct ext4_extent_header *neh; | |
1020 | struct ext4_extent_idx *fidx; | |
a86c6181 | 1021 | int i = at, k, m, a; |
f65e6fba | 1022 | ext4_fsblk_t newblock, oldblock; |
a86c6181 | 1023 | __le32 border; |
f65e6fba | 1024 | ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */ |
a86c6181 AT |
1025 | int err = 0; |
1026 | ||
1027 | /* make decision: where to split? */ | |
d0d856e8 | 1028 | /* FIXME: now decision is simplest: at current extent */ |
a86c6181 | 1029 | |
d0d856e8 | 1030 | /* if current leaf will be split, then we should use |
a86c6181 | 1031 | * border from split point */ |
273df556 FM |
1032 | if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) { |
1033 | EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!"); | |
1034 | return -EIO; | |
1035 | } | |
a86c6181 AT |
1036 | if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) { |
1037 | border = path[depth].p_ext[1].ee_block; | |
d0d856e8 | 1038 | ext_debug("leaf will be split." |
a86c6181 | 1039 | " next leaf starts at %d\n", |
8c55e204 | 1040 | le32_to_cpu(border)); |
a86c6181 AT |
1041 | } else { |
1042 | border = newext->ee_block; | |
1043 | ext_debug("leaf will be added." | |
1044 | " next leaf starts at %d\n", | |
8c55e204 | 1045 | le32_to_cpu(border)); |
a86c6181 AT |
1046 | } |
1047 | ||
1048 | /* | |
d0d856e8 RD |
1049 | * If error occurs, then we break processing |
1050 | * and mark filesystem read-only. index won't | |
a86c6181 | 1051 | * be inserted and tree will be in consistent |
d0d856e8 | 1052 | * state. Next mount will repair buffers too. |
a86c6181 AT |
1053 | */ |
1054 | ||
1055 | /* | |
d0d856e8 RD |
1056 | * Get array to track all allocated blocks. |
1057 | * We need this to handle errors and free blocks | |
1058 | * upon them. | |
a86c6181 | 1059 | */ |
5d4958f9 | 1060 | ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS); |
a86c6181 AT |
1061 | if (!ablocks) |
1062 | return -ENOMEM; | |
a86c6181 AT |
1063 | |
1064 | /* allocate all needed blocks */ | |
1065 | ext_debug("allocate %d blocks for indexes/leaf\n", depth - at); | |
1066 | for (a = 0; a < depth - at; a++) { | |
654b4908 | 1067 | newblock = ext4_ext_new_meta_block(handle, inode, path, |
55f020db | 1068 | newext, &err, flags); |
a86c6181 AT |
1069 | if (newblock == 0) |
1070 | goto cleanup; | |
1071 | ablocks[a] = newblock; | |
1072 | } | |
1073 | ||
1074 | /* initialize new leaf */ | |
1075 | newblock = ablocks[--a]; | |
273df556 FM |
1076 | if (unlikely(newblock == 0)) { |
1077 | EXT4_ERROR_INODE(inode, "newblock == 0!"); | |
1078 | err = -EIO; | |
1079 | goto cleanup; | |
1080 | } | |
a86c6181 | 1081 | bh = sb_getblk(inode->i_sb, newblock); |
aebf0243 | 1082 | if (unlikely(!bh)) { |
860d21e2 | 1083 | err = -ENOMEM; |
a86c6181 AT |
1084 | goto cleanup; |
1085 | } | |
1086 | lock_buffer(bh); | |
1087 | ||
7e028976 AM |
1088 | err = ext4_journal_get_create_access(handle, bh); |
1089 | if (err) | |
a86c6181 AT |
1090 | goto cleanup; |
1091 | ||
1092 | neh = ext_block_hdr(bh); | |
1093 | neh->eh_entries = 0; | |
55ad63bf | 1094 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0)); |
a86c6181 AT |
1095 | neh->eh_magic = EXT4_EXT_MAGIC; |
1096 | neh->eh_depth = 0; | |
a86c6181 | 1097 | |
d0d856e8 | 1098 | /* move remainder of path[depth] to the new leaf */ |
273df556 FM |
1099 | if (unlikely(path[depth].p_hdr->eh_entries != |
1100 | path[depth].p_hdr->eh_max)) { | |
1101 | EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!", | |
1102 | path[depth].p_hdr->eh_entries, | |
1103 | path[depth].p_hdr->eh_max); | |
1104 | err = -EIO; | |
1105 | goto cleanup; | |
1106 | } | |
a86c6181 | 1107 | /* start copy from next extent */ |
1b16da77 YY |
1108 | m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++; |
1109 | ext4_ext_show_move(inode, path, newblock, depth); | |
a86c6181 | 1110 | if (m) { |
1b16da77 YY |
1111 | struct ext4_extent *ex; |
1112 | ex = EXT_FIRST_EXTENT(neh); | |
1113 | memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m); | |
e8546d06 | 1114 | le16_add_cpu(&neh->eh_entries, m); |
a86c6181 AT |
1115 | } |
1116 | ||
7ac5990d | 1117 | ext4_extent_block_csum_set(inode, neh); |
a86c6181 AT |
1118 | set_buffer_uptodate(bh); |
1119 | unlock_buffer(bh); | |
1120 | ||
0390131b | 1121 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
7e028976 | 1122 | if (err) |
a86c6181 AT |
1123 | goto cleanup; |
1124 | brelse(bh); | |
1125 | bh = NULL; | |
1126 | ||
1127 | /* correct old leaf */ | |
1128 | if (m) { | |
7e028976 AM |
1129 | err = ext4_ext_get_access(handle, inode, path + depth); |
1130 | if (err) | |
a86c6181 | 1131 | goto cleanup; |
e8546d06 | 1132 | le16_add_cpu(&path[depth].p_hdr->eh_entries, -m); |
7e028976 AM |
1133 | err = ext4_ext_dirty(handle, inode, path + depth); |
1134 | if (err) | |
a86c6181 AT |
1135 | goto cleanup; |
1136 | ||
1137 | } | |
1138 | ||
1139 | /* create intermediate indexes */ | |
1140 | k = depth - at - 1; | |
273df556 FM |
1141 | if (unlikely(k < 0)) { |
1142 | EXT4_ERROR_INODE(inode, "k %d < 0!", k); | |
1143 | err = -EIO; | |
1144 | goto cleanup; | |
1145 | } | |
a86c6181 AT |
1146 | if (k) |
1147 | ext_debug("create %d intermediate indices\n", k); | |
1148 | /* insert new index into current index block */ | |
1149 | /* current depth stored in i var */ | |
1150 | i = depth - 1; | |
1151 | while (k--) { | |
1152 | oldblock = newblock; | |
1153 | newblock = ablocks[--a]; | |
bba90743 | 1154 | bh = sb_getblk(inode->i_sb, newblock); |
aebf0243 | 1155 | if (unlikely(!bh)) { |
860d21e2 | 1156 | err = -ENOMEM; |
a86c6181 AT |
1157 | goto cleanup; |
1158 | } | |
1159 | lock_buffer(bh); | |
1160 | ||
7e028976 AM |
1161 | err = ext4_journal_get_create_access(handle, bh); |
1162 | if (err) | |
a86c6181 AT |
1163 | goto cleanup; |
1164 | ||
1165 | neh = ext_block_hdr(bh); | |
1166 | neh->eh_entries = cpu_to_le16(1); | |
1167 | neh->eh_magic = EXT4_EXT_MAGIC; | |
55ad63bf | 1168 | neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0)); |
a86c6181 AT |
1169 | neh->eh_depth = cpu_to_le16(depth - i); |
1170 | fidx = EXT_FIRST_INDEX(neh); | |
1171 | fidx->ei_block = border; | |
f65e6fba | 1172 | ext4_idx_store_pblock(fidx, oldblock); |
a86c6181 | 1173 | |
bba90743 ES |
1174 | ext_debug("int.index at %d (block %llu): %u -> %llu\n", |
1175 | i, newblock, le32_to_cpu(border), oldblock); | |
a86c6181 | 1176 | |
1b16da77 | 1177 | /* move remainder of path[i] to the new index block */ |
273df556 FM |
1178 | if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) != |
1179 | EXT_LAST_INDEX(path[i].p_hdr))) { | |
1180 | EXT4_ERROR_INODE(inode, | |
1181 | "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!", | |
1182 | le32_to_cpu(path[i].p_ext->ee_block)); | |
1183 | err = -EIO; | |
1184 | goto cleanup; | |
1185 | } | |
1b16da77 YY |
1186 | /* start copy indexes */ |
1187 | m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++; | |
1188 | ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx, | |
1189 | EXT_MAX_INDEX(path[i].p_hdr)); | |
1190 | ext4_ext_show_move(inode, path, newblock, i); | |
a86c6181 | 1191 | if (m) { |
1b16da77 | 1192 | memmove(++fidx, path[i].p_idx, |
a86c6181 | 1193 | sizeof(struct ext4_extent_idx) * m); |
e8546d06 | 1194 | le16_add_cpu(&neh->eh_entries, m); |
a86c6181 | 1195 | } |
7ac5990d | 1196 | ext4_extent_block_csum_set(inode, neh); |
a86c6181 AT |
1197 | set_buffer_uptodate(bh); |
1198 | unlock_buffer(bh); | |
1199 | ||
0390131b | 1200 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
7e028976 | 1201 | if (err) |
a86c6181 AT |
1202 | goto cleanup; |
1203 | brelse(bh); | |
1204 | bh = NULL; | |
1205 | ||
1206 | /* correct old index */ | |
1207 | if (m) { | |
1208 | err = ext4_ext_get_access(handle, inode, path + i); | |
1209 | if (err) | |
1210 | goto cleanup; | |
e8546d06 | 1211 | le16_add_cpu(&path[i].p_hdr->eh_entries, -m); |
a86c6181 AT |
1212 | err = ext4_ext_dirty(handle, inode, path + i); |
1213 | if (err) | |
1214 | goto cleanup; | |
1215 | } | |
1216 | ||
1217 | i--; | |
1218 | } | |
1219 | ||
1220 | /* insert new index */ | |
a86c6181 AT |
1221 | err = ext4_ext_insert_index(handle, inode, path + at, |
1222 | le32_to_cpu(border), newblock); | |
1223 | ||
1224 | cleanup: | |
1225 | if (bh) { | |
1226 | if (buffer_locked(bh)) | |
1227 | unlock_buffer(bh); | |
1228 | brelse(bh); | |
1229 | } | |
1230 | ||
1231 | if (err) { | |
1232 | /* free all allocated blocks in error case */ | |
1233 | for (i = 0; i < depth; i++) { | |
1234 | if (!ablocks[i]) | |
1235 | continue; | |
7dc57615 | 1236 | ext4_free_blocks(handle, inode, NULL, ablocks[i], 1, |
e6362609 | 1237 | EXT4_FREE_BLOCKS_METADATA); |
a86c6181 AT |
1238 | } |
1239 | } | |
1240 | kfree(ablocks); | |
1241 | ||
1242 | return err; | |
1243 | } | |
1244 | ||
1245 | /* | |
d0d856e8 RD |
1246 | * ext4_ext_grow_indepth: |
1247 | * implements tree growing procedure: | |
1248 | * - allocates new block | |
1249 | * - moves top-level data (index block or leaf) into the new block | |
1250 | * - initializes new top-level, creating index that points to the | |
1251 | * just created block | |
a86c6181 AT |
1252 | */ |
1253 | static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode, | |
55f020db | 1254 | unsigned int flags, |
55f020db | 1255 | struct ext4_extent *newext) |
a86c6181 | 1256 | { |
a86c6181 | 1257 | struct ext4_extent_header *neh; |
a86c6181 | 1258 | struct buffer_head *bh; |
f65e6fba | 1259 | ext4_fsblk_t newblock; |
a86c6181 AT |
1260 | int err = 0; |
1261 | ||
1939dd84 | 1262 | newblock = ext4_ext_new_meta_block(handle, inode, NULL, |
55f020db | 1263 | newext, &err, flags); |
a86c6181 AT |
1264 | if (newblock == 0) |
1265 | return err; | |
1266 | ||
1267 | bh = sb_getblk(inode->i_sb, newblock); | |
aebf0243 | 1268 | if (unlikely(!bh)) |
860d21e2 | 1269 | return -ENOMEM; |
a86c6181 AT |
1270 | lock_buffer(bh); |
1271 | ||
7e028976 AM |
1272 | err = ext4_journal_get_create_access(handle, bh); |
1273 | if (err) { | |
a86c6181 AT |
1274 | unlock_buffer(bh); |
1275 | goto out; | |
1276 | } | |
1277 | ||
1278 | /* move top-level index/leaf into new block */ | |
1939dd84 DM |
1279 | memmove(bh->b_data, EXT4_I(inode)->i_data, |
1280 | sizeof(EXT4_I(inode)->i_data)); | |
a86c6181 AT |
1281 | |
1282 | /* set size of new block */ | |
1283 | neh = ext_block_hdr(bh); | |
1284 | /* old root could have indexes or leaves | |
1285 | * so calculate e_max right way */ | |
1286 | if (ext_depth(inode)) | |
55ad63bf | 1287 | neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0)); |
a86c6181 | 1288 | else |
55ad63bf | 1289 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0)); |
a86c6181 | 1290 | neh->eh_magic = EXT4_EXT_MAGIC; |
7ac5990d | 1291 | ext4_extent_block_csum_set(inode, neh); |
a86c6181 AT |
1292 | set_buffer_uptodate(bh); |
1293 | unlock_buffer(bh); | |
1294 | ||
0390131b | 1295 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
7e028976 | 1296 | if (err) |
a86c6181 AT |
1297 | goto out; |
1298 | ||
1939dd84 | 1299 | /* Update top-level index: num,max,pointer */ |
a86c6181 | 1300 | neh = ext_inode_hdr(inode); |
1939dd84 DM |
1301 | neh->eh_entries = cpu_to_le16(1); |
1302 | ext4_idx_store_pblock(EXT_FIRST_INDEX(neh), newblock); | |
1303 | if (neh->eh_depth == 0) { | |
1304 | /* Root extent block becomes index block */ | |
1305 | neh->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0)); | |
1306 | EXT_FIRST_INDEX(neh)->ei_block = | |
1307 | EXT_FIRST_EXTENT(neh)->ee_block; | |
1308 | } | |
2ae02107 | 1309 | ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n", |
a86c6181 | 1310 | le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max), |
5a0790c2 | 1311 | le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block), |
bf89d16f | 1312 | ext4_idx_pblock(EXT_FIRST_INDEX(neh))); |
a86c6181 | 1313 | |
ba39ebb6 | 1314 | le16_add_cpu(&neh->eh_depth, 1); |
1939dd84 | 1315 | ext4_mark_inode_dirty(handle, inode); |
a86c6181 AT |
1316 | out: |
1317 | brelse(bh); | |
1318 | ||
1319 | return err; | |
1320 | } | |
1321 | ||
1322 | /* | |
d0d856e8 RD |
1323 | * ext4_ext_create_new_leaf: |
1324 | * finds empty index and adds new leaf. | |
1325 | * if no free index is found, then it requests in-depth growing. | |
a86c6181 AT |
1326 | */ |
1327 | static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode, | |
107a7bd3 TT |
1328 | unsigned int mb_flags, |
1329 | unsigned int gb_flags, | |
55f020db AH |
1330 | struct ext4_ext_path *path, |
1331 | struct ext4_extent *newext) | |
a86c6181 AT |
1332 | { |
1333 | struct ext4_ext_path *curp; | |
1334 | int depth, i, err = 0; | |
1335 | ||
1336 | repeat: | |
1337 | i = depth = ext_depth(inode); | |
1338 | ||
1339 | /* walk up to the tree and look for free index entry */ | |
1340 | curp = path + depth; | |
1341 | while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) { | |
1342 | i--; | |
1343 | curp--; | |
1344 | } | |
1345 | ||
d0d856e8 RD |
1346 | /* we use already allocated block for index block, |
1347 | * so subsequent data blocks should be contiguous */ | |
a86c6181 AT |
1348 | if (EXT_HAS_FREE_INDEX(curp)) { |
1349 | /* if we found index with free entry, then use that | |
1350 | * entry: create all needed subtree and add new leaf */ | |
107a7bd3 | 1351 | err = ext4_ext_split(handle, inode, mb_flags, path, newext, i); |
787e0981 SF |
1352 | if (err) |
1353 | goto out; | |
a86c6181 AT |
1354 | |
1355 | /* refill path */ | |
1356 | ext4_ext_drop_refs(path); | |
1357 | path = ext4_ext_find_extent(inode, | |
725d26d3 | 1358 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
107a7bd3 | 1359 | path, gb_flags); |
a86c6181 AT |
1360 | if (IS_ERR(path)) |
1361 | err = PTR_ERR(path); | |
1362 | } else { | |
1363 | /* tree is full, time to grow in depth */ | |
107a7bd3 | 1364 | err = ext4_ext_grow_indepth(handle, inode, mb_flags, newext); |
a86c6181 AT |
1365 | if (err) |
1366 | goto out; | |
1367 | ||
1368 | /* refill path */ | |
1369 | ext4_ext_drop_refs(path); | |
1370 | path = ext4_ext_find_extent(inode, | |
725d26d3 | 1371 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
107a7bd3 | 1372 | path, gb_flags); |
a86c6181 AT |
1373 | if (IS_ERR(path)) { |
1374 | err = PTR_ERR(path); | |
1375 | goto out; | |
1376 | } | |
1377 | ||
1378 | /* | |
d0d856e8 RD |
1379 | * only first (depth 0 -> 1) produces free space; |
1380 | * in all other cases we have to split the grown tree | |
a86c6181 AT |
1381 | */ |
1382 | depth = ext_depth(inode); | |
1383 | if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) { | |
d0d856e8 | 1384 | /* now we need to split */ |
a86c6181 AT |
1385 | goto repeat; |
1386 | } | |
1387 | } | |
1388 | ||
1389 | out: | |
1390 | return err; | |
1391 | } | |
1392 | ||
1988b51e AT |
1393 | /* |
1394 | * search the closest allocated block to the left for *logical | |
1395 | * and returns it at @logical + it's physical address at @phys | |
1396 | * if *logical is the smallest allocated block, the function | |
1397 | * returns 0 at @phys | |
1398 | * return value contains 0 (success) or error code | |
1399 | */ | |
1f109d5a TT |
1400 | static int ext4_ext_search_left(struct inode *inode, |
1401 | struct ext4_ext_path *path, | |
1402 | ext4_lblk_t *logical, ext4_fsblk_t *phys) | |
1988b51e AT |
1403 | { |
1404 | struct ext4_extent_idx *ix; | |
1405 | struct ext4_extent *ex; | |
b939e376 | 1406 | int depth, ee_len; |
1988b51e | 1407 | |
273df556 FM |
1408 | if (unlikely(path == NULL)) { |
1409 | EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical); | |
1410 | return -EIO; | |
1411 | } | |
1988b51e AT |
1412 | depth = path->p_depth; |
1413 | *phys = 0; | |
1414 | ||
1415 | if (depth == 0 && path->p_ext == NULL) | |
1416 | return 0; | |
1417 | ||
1418 | /* usually extent in the path covers blocks smaller | |
1419 | * then *logical, but it can be that extent is the | |
1420 | * first one in the file */ | |
1421 | ||
1422 | ex = path[depth].p_ext; | |
b939e376 | 1423 | ee_len = ext4_ext_get_actual_len(ex); |
1988b51e | 1424 | if (*logical < le32_to_cpu(ex->ee_block)) { |
273df556 FM |
1425 | if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) { |
1426 | EXT4_ERROR_INODE(inode, | |
1427 | "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!", | |
1428 | *logical, le32_to_cpu(ex->ee_block)); | |
1429 | return -EIO; | |
1430 | } | |
1988b51e AT |
1431 | while (--depth >= 0) { |
1432 | ix = path[depth].p_idx; | |
273df556 FM |
1433 | if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) { |
1434 | EXT4_ERROR_INODE(inode, | |
1435 | "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!", | |
6ee3b212 | 1436 | ix != NULL ? le32_to_cpu(ix->ei_block) : 0, |
273df556 | 1437 | EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ? |
6ee3b212 | 1438 | le32_to_cpu(EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block) : 0, |
273df556 FM |
1439 | depth); |
1440 | return -EIO; | |
1441 | } | |
1988b51e AT |
1442 | } |
1443 | return 0; | |
1444 | } | |
1445 | ||
273df556 FM |
1446 | if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) { |
1447 | EXT4_ERROR_INODE(inode, | |
1448 | "logical %d < ee_block %d + ee_len %d!", | |
1449 | *logical, le32_to_cpu(ex->ee_block), ee_len); | |
1450 | return -EIO; | |
1451 | } | |
1988b51e | 1452 | |
b939e376 | 1453 | *logical = le32_to_cpu(ex->ee_block) + ee_len - 1; |
bf89d16f | 1454 | *phys = ext4_ext_pblock(ex) + ee_len - 1; |
1988b51e AT |
1455 | return 0; |
1456 | } | |
1457 | ||
1458 | /* | |
1459 | * search the closest allocated block to the right for *logical | |
1460 | * and returns it at @logical + it's physical address at @phys | |
df3ab170 | 1461 | * if *logical is the largest allocated block, the function |
1988b51e AT |
1462 | * returns 0 at @phys |
1463 | * return value contains 0 (success) or error code | |
1464 | */ | |
1f109d5a TT |
1465 | static int ext4_ext_search_right(struct inode *inode, |
1466 | struct ext4_ext_path *path, | |
4d33b1ef TT |
1467 | ext4_lblk_t *logical, ext4_fsblk_t *phys, |
1468 | struct ext4_extent **ret_ex) | |
1988b51e AT |
1469 | { |
1470 | struct buffer_head *bh = NULL; | |
1471 | struct ext4_extent_header *eh; | |
1472 | struct ext4_extent_idx *ix; | |
1473 | struct ext4_extent *ex; | |
1474 | ext4_fsblk_t block; | |
395a87bf ES |
1475 | int depth; /* Note, NOT eh_depth; depth from top of tree */ |
1476 | int ee_len; | |
1988b51e | 1477 | |
273df556 FM |
1478 | if (unlikely(path == NULL)) { |
1479 | EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical); | |
1480 | return -EIO; | |
1481 | } | |
1988b51e AT |
1482 | depth = path->p_depth; |
1483 | *phys = 0; | |
1484 | ||
1485 | if (depth == 0 && path->p_ext == NULL) | |
1486 | return 0; | |
1487 | ||
1488 | /* usually extent in the path covers blocks smaller | |
1489 | * then *logical, but it can be that extent is the | |
1490 | * first one in the file */ | |
1491 | ||
1492 | ex = path[depth].p_ext; | |
b939e376 | 1493 | ee_len = ext4_ext_get_actual_len(ex); |
1988b51e | 1494 | if (*logical < le32_to_cpu(ex->ee_block)) { |
273df556 FM |
1495 | if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) { |
1496 | EXT4_ERROR_INODE(inode, | |
1497 | "first_extent(path[%d].p_hdr) != ex", | |
1498 | depth); | |
1499 | return -EIO; | |
1500 | } | |
1988b51e AT |
1501 | while (--depth >= 0) { |
1502 | ix = path[depth].p_idx; | |
273df556 FM |
1503 | if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) { |
1504 | EXT4_ERROR_INODE(inode, | |
1505 | "ix != EXT_FIRST_INDEX *logical %d!", | |
1506 | *logical); | |
1507 | return -EIO; | |
1508 | } | |
1988b51e | 1509 | } |
4d33b1ef | 1510 | goto found_extent; |
1988b51e AT |
1511 | } |
1512 | ||
273df556 FM |
1513 | if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) { |
1514 | EXT4_ERROR_INODE(inode, | |
1515 | "logical %d < ee_block %d + ee_len %d!", | |
1516 | *logical, le32_to_cpu(ex->ee_block), ee_len); | |
1517 | return -EIO; | |
1518 | } | |
1988b51e AT |
1519 | |
1520 | if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) { | |
1521 | /* next allocated block in this leaf */ | |
1522 | ex++; | |
4d33b1ef | 1523 | goto found_extent; |
1988b51e AT |
1524 | } |
1525 | ||
1526 | /* go up and search for index to the right */ | |
1527 | while (--depth >= 0) { | |
1528 | ix = path[depth].p_idx; | |
1529 | if (ix != EXT_LAST_INDEX(path[depth].p_hdr)) | |
25f1ee3a | 1530 | goto got_index; |
1988b51e AT |
1531 | } |
1532 | ||
25f1ee3a WF |
1533 | /* we've gone up to the root and found no index to the right */ |
1534 | return 0; | |
1988b51e | 1535 | |
25f1ee3a | 1536 | got_index: |
1988b51e AT |
1537 | /* we've found index to the right, let's |
1538 | * follow it and find the closest allocated | |
1539 | * block to the right */ | |
1540 | ix++; | |
bf89d16f | 1541 | block = ext4_idx_pblock(ix); |
1988b51e | 1542 | while (++depth < path->p_depth) { |
395a87bf | 1543 | /* subtract from p_depth to get proper eh_depth */ |
7d7ea89e | 1544 | bh = read_extent_tree_block(inode, block, |
107a7bd3 | 1545 | path->p_depth - depth, 0); |
7d7ea89e TT |
1546 | if (IS_ERR(bh)) |
1547 | return PTR_ERR(bh); | |
1548 | eh = ext_block_hdr(bh); | |
1988b51e | 1549 | ix = EXT_FIRST_INDEX(eh); |
bf89d16f | 1550 | block = ext4_idx_pblock(ix); |
1988b51e AT |
1551 | put_bh(bh); |
1552 | } | |
1553 | ||
107a7bd3 | 1554 | bh = read_extent_tree_block(inode, block, path->p_depth - depth, 0); |
7d7ea89e TT |
1555 | if (IS_ERR(bh)) |
1556 | return PTR_ERR(bh); | |
1988b51e | 1557 | eh = ext_block_hdr(bh); |
1988b51e | 1558 | ex = EXT_FIRST_EXTENT(eh); |
4d33b1ef | 1559 | found_extent: |
1988b51e | 1560 | *logical = le32_to_cpu(ex->ee_block); |
bf89d16f | 1561 | *phys = ext4_ext_pblock(ex); |
4d33b1ef TT |
1562 | *ret_ex = ex; |
1563 | if (bh) | |
1564 | put_bh(bh); | |
1988b51e | 1565 | return 0; |
1988b51e AT |
1566 | } |
1567 | ||
a86c6181 | 1568 | /* |
d0d856e8 | 1569 | * ext4_ext_next_allocated_block: |
f17722f9 | 1570 | * returns allocated block in subsequent extent or EXT_MAX_BLOCKS. |
d0d856e8 RD |
1571 | * NOTE: it considers block number from index entry as |
1572 | * allocated block. Thus, index entries have to be consistent | |
1573 | * with leaves. | |
a86c6181 | 1574 | */ |
fcf6b1b7 | 1575 | ext4_lblk_t |
a86c6181 AT |
1576 | ext4_ext_next_allocated_block(struct ext4_ext_path *path) |
1577 | { | |
1578 | int depth; | |
1579 | ||
1580 | BUG_ON(path == NULL); | |
1581 | depth = path->p_depth; | |
1582 | ||
1583 | if (depth == 0 && path->p_ext == NULL) | |
f17722f9 | 1584 | return EXT_MAX_BLOCKS; |
a86c6181 AT |
1585 | |
1586 | while (depth >= 0) { | |
1587 | if (depth == path->p_depth) { | |
1588 | /* leaf */ | |
6f8ff537 CW |
1589 | if (path[depth].p_ext && |
1590 | path[depth].p_ext != | |
a86c6181 AT |
1591 | EXT_LAST_EXTENT(path[depth].p_hdr)) |
1592 | return le32_to_cpu(path[depth].p_ext[1].ee_block); | |
1593 | } else { | |
1594 | /* index */ | |
1595 | if (path[depth].p_idx != | |
1596 | EXT_LAST_INDEX(path[depth].p_hdr)) | |
1597 | return le32_to_cpu(path[depth].p_idx[1].ei_block); | |
1598 | } | |
1599 | depth--; | |
1600 | } | |
1601 | ||
f17722f9 | 1602 | return EXT_MAX_BLOCKS; |
a86c6181 AT |
1603 | } |
1604 | ||
1605 | /* | |
d0d856e8 | 1606 | * ext4_ext_next_leaf_block: |
f17722f9 | 1607 | * returns first allocated block from next leaf or EXT_MAX_BLOCKS |
a86c6181 | 1608 | */ |
5718789d | 1609 | static ext4_lblk_t ext4_ext_next_leaf_block(struct ext4_ext_path *path) |
a86c6181 AT |
1610 | { |
1611 | int depth; | |
1612 | ||
1613 | BUG_ON(path == NULL); | |
1614 | depth = path->p_depth; | |
1615 | ||
1616 | /* zero-tree has no leaf blocks at all */ | |
1617 | if (depth == 0) | |
f17722f9 | 1618 | return EXT_MAX_BLOCKS; |
a86c6181 AT |
1619 | |
1620 | /* go to index block */ | |
1621 | depth--; | |
1622 | ||
1623 | while (depth >= 0) { | |
1624 | if (path[depth].p_idx != | |
1625 | EXT_LAST_INDEX(path[depth].p_hdr)) | |
725d26d3 AK |
1626 | return (ext4_lblk_t) |
1627 | le32_to_cpu(path[depth].p_idx[1].ei_block); | |
a86c6181 AT |
1628 | depth--; |
1629 | } | |
1630 | ||
f17722f9 | 1631 | return EXT_MAX_BLOCKS; |
a86c6181 AT |
1632 | } |
1633 | ||
1634 | /* | |
d0d856e8 RD |
1635 | * ext4_ext_correct_indexes: |
1636 | * if leaf gets modified and modified extent is first in the leaf, | |
1637 | * then we have to correct all indexes above. | |
a86c6181 AT |
1638 | * TODO: do we need to correct tree in all cases? |
1639 | */ | |
1d03ec98 | 1640 | static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode, |
a86c6181 AT |
1641 | struct ext4_ext_path *path) |
1642 | { | |
1643 | struct ext4_extent_header *eh; | |
1644 | int depth = ext_depth(inode); | |
1645 | struct ext4_extent *ex; | |
1646 | __le32 border; | |
1647 | int k, err = 0; | |
1648 | ||
1649 | eh = path[depth].p_hdr; | |
1650 | ex = path[depth].p_ext; | |
273df556 FM |
1651 | |
1652 | if (unlikely(ex == NULL || eh == NULL)) { | |
1653 | EXT4_ERROR_INODE(inode, | |
1654 | "ex %p == NULL or eh %p == NULL", ex, eh); | |
1655 | return -EIO; | |
1656 | } | |
a86c6181 AT |
1657 | |
1658 | if (depth == 0) { | |
1659 | /* there is no tree at all */ | |
1660 | return 0; | |
1661 | } | |
1662 | ||
1663 | if (ex != EXT_FIRST_EXTENT(eh)) { | |
1664 | /* we correct tree if first leaf got modified only */ | |
1665 | return 0; | |
1666 | } | |
1667 | ||
1668 | /* | |
d0d856e8 | 1669 | * TODO: we need correction if border is smaller than current one |
a86c6181 AT |
1670 | */ |
1671 | k = depth - 1; | |
1672 | border = path[depth].p_ext->ee_block; | |
7e028976 AM |
1673 | err = ext4_ext_get_access(handle, inode, path + k); |
1674 | if (err) | |
a86c6181 AT |
1675 | return err; |
1676 | path[k].p_idx->ei_block = border; | |
7e028976 AM |
1677 | err = ext4_ext_dirty(handle, inode, path + k); |
1678 | if (err) | |
a86c6181 AT |
1679 | return err; |
1680 | ||
1681 | while (k--) { | |
1682 | /* change all left-side indexes */ | |
1683 | if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr)) | |
1684 | break; | |
7e028976 AM |
1685 | err = ext4_ext_get_access(handle, inode, path + k); |
1686 | if (err) | |
a86c6181 AT |
1687 | break; |
1688 | path[k].p_idx->ei_block = border; | |
7e028976 AM |
1689 | err = ext4_ext_dirty(handle, inode, path + k); |
1690 | if (err) | |
a86c6181 AT |
1691 | break; |
1692 | } | |
1693 | ||
1694 | return err; | |
1695 | } | |
1696 | ||
748de673 | 1697 | int |
a86c6181 AT |
1698 | ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1, |
1699 | struct ext4_extent *ex2) | |
1700 | { | |
da0169b3 | 1701 | unsigned short ext1_ee_len, ext2_ee_len; |
a2df2a63 AA |
1702 | |
1703 | /* | |
ec22ba8e | 1704 | * Make sure that both extents are initialized. We don't merge |
556615dc | 1705 | * unwritten extents so that we can be sure that end_io code has |
ec22ba8e DM |
1706 | * the extent that was written properly split out and conversion to |
1707 | * initialized is trivial. | |
a2df2a63 | 1708 | */ |
556615dc | 1709 | if (ext4_ext_is_unwritten(ex1) != ext4_ext_is_unwritten(ex2)) |
a2df2a63 AA |
1710 | return 0; |
1711 | ||
1712 | ext1_ee_len = ext4_ext_get_actual_len(ex1); | |
1713 | ext2_ee_len = ext4_ext_get_actual_len(ex2); | |
1714 | ||
1715 | if (le32_to_cpu(ex1->ee_block) + ext1_ee_len != | |
63f57933 | 1716 | le32_to_cpu(ex2->ee_block)) |
a86c6181 AT |
1717 | return 0; |
1718 | ||
471d4011 SB |
1719 | /* |
1720 | * To allow future support for preallocated extents to be added | |
1721 | * as an RO_COMPAT feature, refuse to merge to extents if | |
d0d856e8 | 1722 | * this can result in the top bit of ee_len being set. |
471d4011 | 1723 | */ |
da0169b3 | 1724 | if (ext1_ee_len + ext2_ee_len > EXT_INIT_MAX_LEN) |
471d4011 | 1725 | return 0; |
556615dc | 1726 | if (ext4_ext_is_unwritten(ex1) && |
a9b82415 DW |
1727 | (ext4_test_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN) || |
1728 | atomic_read(&EXT4_I(inode)->i_unwritten) || | |
556615dc | 1729 | (ext1_ee_len + ext2_ee_len > EXT_UNWRITTEN_MAX_LEN))) |
a9b82415 | 1730 | return 0; |
bbf2f9fb | 1731 | #ifdef AGGRESSIVE_TEST |
b939e376 | 1732 | if (ext1_ee_len >= 4) |
a86c6181 AT |
1733 | return 0; |
1734 | #endif | |
1735 | ||
bf89d16f | 1736 | if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2)) |
a86c6181 AT |
1737 | return 1; |
1738 | return 0; | |
1739 | } | |
1740 | ||
56055d3a AA |
1741 | /* |
1742 | * This function tries to merge the "ex" extent to the next extent in the tree. | |
1743 | * It always tries to merge towards right. If you want to merge towards | |
1744 | * left, pass "ex - 1" as argument instead of "ex". | |
1745 | * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns | |
1746 | * 1 if they got merged. | |
1747 | */ | |
197217a5 | 1748 | static int ext4_ext_try_to_merge_right(struct inode *inode, |
1f109d5a TT |
1749 | struct ext4_ext_path *path, |
1750 | struct ext4_extent *ex) | |
56055d3a AA |
1751 | { |
1752 | struct ext4_extent_header *eh; | |
1753 | unsigned int depth, len; | |
556615dc | 1754 | int merge_done = 0, unwritten; |
56055d3a AA |
1755 | |
1756 | depth = ext_depth(inode); | |
1757 | BUG_ON(path[depth].p_hdr == NULL); | |
1758 | eh = path[depth].p_hdr; | |
1759 | ||
1760 | while (ex < EXT_LAST_EXTENT(eh)) { | |
1761 | if (!ext4_can_extents_be_merged(inode, ex, ex + 1)) | |
1762 | break; | |
1763 | /* merge with next extent! */ | |
556615dc | 1764 | unwritten = ext4_ext_is_unwritten(ex); |
56055d3a AA |
1765 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) |
1766 | + ext4_ext_get_actual_len(ex + 1)); | |
556615dc LC |
1767 | if (unwritten) |
1768 | ext4_ext_mark_unwritten(ex); | |
56055d3a AA |
1769 | |
1770 | if (ex + 1 < EXT_LAST_EXTENT(eh)) { | |
1771 | len = (EXT_LAST_EXTENT(eh) - ex - 1) | |
1772 | * sizeof(struct ext4_extent); | |
1773 | memmove(ex + 1, ex + 2, len); | |
1774 | } | |
e8546d06 | 1775 | le16_add_cpu(&eh->eh_entries, -1); |
56055d3a AA |
1776 | merge_done = 1; |
1777 | WARN_ON(eh->eh_entries == 0); | |
1778 | if (!eh->eh_entries) | |
24676da4 | 1779 | EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!"); |
56055d3a AA |
1780 | } |
1781 | ||
1782 | return merge_done; | |
1783 | } | |
1784 | ||
ecb94f5f TT |
1785 | /* |
1786 | * This function does a very simple check to see if we can collapse | |
1787 | * an extent tree with a single extent tree leaf block into the inode. | |
1788 | */ | |
1789 | static void ext4_ext_try_to_merge_up(handle_t *handle, | |
1790 | struct inode *inode, | |
1791 | struct ext4_ext_path *path) | |
1792 | { | |
1793 | size_t s; | |
1794 | unsigned max_root = ext4_ext_space_root(inode, 0); | |
1795 | ext4_fsblk_t blk; | |
1796 | ||
1797 | if ((path[0].p_depth != 1) || | |
1798 | (le16_to_cpu(path[0].p_hdr->eh_entries) != 1) || | |
1799 | (le16_to_cpu(path[1].p_hdr->eh_entries) > max_root)) | |
1800 | return; | |
1801 | ||
1802 | /* | |
1803 | * We need to modify the block allocation bitmap and the block | |
1804 | * group descriptor to release the extent tree block. If we | |
1805 | * can't get the journal credits, give up. | |
1806 | */ | |
1807 | if (ext4_journal_extend(handle, 2)) | |
1808 | return; | |
1809 | ||
1810 | /* | |
1811 | * Copy the extent data up to the inode | |
1812 | */ | |
1813 | blk = ext4_idx_pblock(path[0].p_idx); | |
1814 | s = le16_to_cpu(path[1].p_hdr->eh_entries) * | |
1815 | sizeof(struct ext4_extent_idx); | |
1816 | s += sizeof(struct ext4_extent_header); | |
1817 | ||
1818 | memcpy(path[0].p_hdr, path[1].p_hdr, s); | |
1819 | path[0].p_depth = 0; | |
1820 | path[0].p_ext = EXT_FIRST_EXTENT(path[0].p_hdr) + | |
1821 | (path[1].p_ext - EXT_FIRST_EXTENT(path[1].p_hdr)); | |
1822 | path[0].p_hdr->eh_max = cpu_to_le16(max_root); | |
1823 | ||
1824 | brelse(path[1].p_bh); | |
1825 | ext4_free_blocks(handle, inode, NULL, blk, 1, | |
71d4f7d0 | 1826 | EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET); |
ecb94f5f TT |
1827 | } |
1828 | ||
197217a5 YY |
1829 | /* |
1830 | * This function tries to merge the @ex extent to neighbours in the tree. | |
1831 | * return 1 if merge left else 0. | |
1832 | */ | |
ecb94f5f TT |
1833 | static void ext4_ext_try_to_merge(handle_t *handle, |
1834 | struct inode *inode, | |
197217a5 YY |
1835 | struct ext4_ext_path *path, |
1836 | struct ext4_extent *ex) { | |
1837 | struct ext4_extent_header *eh; | |
1838 | unsigned int depth; | |
1839 | int merge_done = 0; | |
197217a5 YY |
1840 | |
1841 | depth = ext_depth(inode); | |
1842 | BUG_ON(path[depth].p_hdr == NULL); | |
1843 | eh = path[depth].p_hdr; | |
1844 | ||
1845 | if (ex > EXT_FIRST_EXTENT(eh)) | |
1846 | merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1); | |
1847 | ||
1848 | if (!merge_done) | |
ecb94f5f | 1849 | (void) ext4_ext_try_to_merge_right(inode, path, ex); |
197217a5 | 1850 | |
ecb94f5f | 1851 | ext4_ext_try_to_merge_up(handle, inode, path); |
197217a5 YY |
1852 | } |
1853 | ||
25d14f98 AA |
1854 | /* |
1855 | * check if a portion of the "newext" extent overlaps with an | |
1856 | * existing extent. | |
1857 | * | |
1858 | * If there is an overlap discovered, it updates the length of the newext | |
1859 | * such that there will be no overlap, and then returns 1. | |
1860 | * If there is no overlap found, it returns 0. | |
1861 | */ | |
4d33b1ef TT |
1862 | static unsigned int ext4_ext_check_overlap(struct ext4_sb_info *sbi, |
1863 | struct inode *inode, | |
1f109d5a TT |
1864 | struct ext4_extent *newext, |
1865 | struct ext4_ext_path *path) | |
25d14f98 | 1866 | { |
725d26d3 | 1867 | ext4_lblk_t b1, b2; |
25d14f98 AA |
1868 | unsigned int depth, len1; |
1869 | unsigned int ret = 0; | |
1870 | ||
1871 | b1 = le32_to_cpu(newext->ee_block); | |
a2df2a63 | 1872 | len1 = ext4_ext_get_actual_len(newext); |
25d14f98 AA |
1873 | depth = ext_depth(inode); |
1874 | if (!path[depth].p_ext) | |
1875 | goto out; | |
f5a44db5 | 1876 | b2 = EXT4_LBLK_CMASK(sbi, le32_to_cpu(path[depth].p_ext->ee_block)); |
25d14f98 AA |
1877 | |
1878 | /* | |
1879 | * get the next allocated block if the extent in the path | |
2b2d6d01 | 1880 | * is before the requested block(s) |
25d14f98 AA |
1881 | */ |
1882 | if (b2 < b1) { | |
1883 | b2 = ext4_ext_next_allocated_block(path); | |
f17722f9 | 1884 | if (b2 == EXT_MAX_BLOCKS) |
25d14f98 | 1885 | goto out; |
f5a44db5 | 1886 | b2 = EXT4_LBLK_CMASK(sbi, b2); |
25d14f98 AA |
1887 | } |
1888 | ||
725d26d3 | 1889 | /* check for wrap through zero on extent logical start block*/ |
25d14f98 | 1890 | if (b1 + len1 < b1) { |
f17722f9 | 1891 | len1 = EXT_MAX_BLOCKS - b1; |
25d14f98 AA |
1892 | newext->ee_len = cpu_to_le16(len1); |
1893 | ret = 1; | |
1894 | } | |
1895 | ||
1896 | /* check for overlap */ | |
1897 | if (b1 + len1 > b2) { | |
1898 | newext->ee_len = cpu_to_le16(b2 - b1); | |
1899 | ret = 1; | |
1900 | } | |
1901 | out: | |
1902 | return ret; | |
1903 | } | |
1904 | ||
a86c6181 | 1905 | /* |
d0d856e8 RD |
1906 | * ext4_ext_insert_extent: |
1907 | * tries to merge requsted extent into the existing extent or | |
1908 | * inserts requested extent as new one into the tree, | |
1909 | * creating new leaf in the no-space case. | |
a86c6181 AT |
1910 | */ |
1911 | int ext4_ext_insert_extent(handle_t *handle, struct inode *inode, | |
1912 | struct ext4_ext_path *path, | |
107a7bd3 | 1913 | struct ext4_extent *newext, int gb_flags) |
a86c6181 | 1914 | { |
af5bc92d | 1915 | struct ext4_extent_header *eh; |
a86c6181 AT |
1916 | struct ext4_extent *ex, *fex; |
1917 | struct ext4_extent *nearex; /* nearest extent */ | |
1918 | struct ext4_ext_path *npath = NULL; | |
725d26d3 AK |
1919 | int depth, len, err; |
1920 | ext4_lblk_t next; | |
556615dc | 1921 | int mb_flags = 0, unwritten; |
a86c6181 | 1922 | |
273df556 FM |
1923 | if (unlikely(ext4_ext_get_actual_len(newext) == 0)) { |
1924 | EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0"); | |
1925 | return -EIO; | |
1926 | } | |
a86c6181 AT |
1927 | depth = ext_depth(inode); |
1928 | ex = path[depth].p_ext; | |
be8981be | 1929 | eh = path[depth].p_hdr; |
273df556 FM |
1930 | if (unlikely(path[depth].p_hdr == NULL)) { |
1931 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); | |
1932 | return -EIO; | |
1933 | } | |
a86c6181 AT |
1934 | |
1935 | /* try to insert block into found extent and return */ | |
107a7bd3 | 1936 | if (ex && !(gb_flags & EXT4_GET_BLOCKS_PRE_IO)) { |
a2df2a63 AA |
1937 | |
1938 | /* | |
be8981be LC |
1939 | * Try to see whether we should rather test the extent on |
1940 | * right from ex, or from the left of ex. This is because | |
1941 | * ext4_ext_find_extent() can return either extent on the | |
1942 | * left, or on the right from the searched position. This | |
1943 | * will make merging more effective. | |
a2df2a63 | 1944 | */ |
be8981be LC |
1945 | if (ex < EXT_LAST_EXTENT(eh) && |
1946 | (le32_to_cpu(ex->ee_block) + | |
1947 | ext4_ext_get_actual_len(ex) < | |
1948 | le32_to_cpu(newext->ee_block))) { | |
1949 | ex += 1; | |
1950 | goto prepend; | |
1951 | } else if ((ex > EXT_FIRST_EXTENT(eh)) && | |
1952 | (le32_to_cpu(newext->ee_block) + | |
1953 | ext4_ext_get_actual_len(newext) < | |
1954 | le32_to_cpu(ex->ee_block))) | |
1955 | ex -= 1; | |
1956 | ||
1957 | /* Try to append newex to the ex */ | |
1958 | if (ext4_can_extents_be_merged(inode, ex, newext)) { | |
1959 | ext_debug("append [%d]%d block to %u:[%d]%d" | |
1960 | "(from %llu)\n", | |
556615dc | 1961 | ext4_ext_is_unwritten(newext), |
be8981be LC |
1962 | ext4_ext_get_actual_len(newext), |
1963 | le32_to_cpu(ex->ee_block), | |
556615dc | 1964 | ext4_ext_is_unwritten(ex), |
be8981be LC |
1965 | ext4_ext_get_actual_len(ex), |
1966 | ext4_ext_pblock(ex)); | |
1967 | err = ext4_ext_get_access(handle, inode, | |
1968 | path + depth); | |
1969 | if (err) | |
1970 | return err; | |
556615dc | 1971 | unwritten = ext4_ext_is_unwritten(ex); |
be8981be | 1972 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) |
a2df2a63 | 1973 | + ext4_ext_get_actual_len(newext)); |
556615dc LC |
1974 | if (unwritten) |
1975 | ext4_ext_mark_unwritten(ex); | |
be8981be LC |
1976 | eh = path[depth].p_hdr; |
1977 | nearex = ex; | |
1978 | goto merge; | |
1979 | } | |
1980 | ||
1981 | prepend: | |
1982 | /* Try to prepend newex to the ex */ | |
1983 | if (ext4_can_extents_be_merged(inode, newext, ex)) { | |
1984 | ext_debug("prepend %u[%d]%d block to %u:[%d]%d" | |
1985 | "(from %llu)\n", | |
1986 | le32_to_cpu(newext->ee_block), | |
556615dc | 1987 | ext4_ext_is_unwritten(newext), |
be8981be LC |
1988 | ext4_ext_get_actual_len(newext), |
1989 | le32_to_cpu(ex->ee_block), | |
556615dc | 1990 | ext4_ext_is_unwritten(ex), |
be8981be LC |
1991 | ext4_ext_get_actual_len(ex), |
1992 | ext4_ext_pblock(ex)); | |
1993 | err = ext4_ext_get_access(handle, inode, | |
1994 | path + depth); | |
1995 | if (err) | |
1996 | return err; | |
1997 | ||
556615dc | 1998 | unwritten = ext4_ext_is_unwritten(ex); |
be8981be LC |
1999 | ex->ee_block = newext->ee_block; |
2000 | ext4_ext_store_pblock(ex, ext4_ext_pblock(newext)); | |
2001 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) | |
2002 | + ext4_ext_get_actual_len(newext)); | |
556615dc LC |
2003 | if (unwritten) |
2004 | ext4_ext_mark_unwritten(ex); | |
be8981be LC |
2005 | eh = path[depth].p_hdr; |
2006 | nearex = ex; | |
2007 | goto merge; | |
2008 | } | |
a86c6181 AT |
2009 | } |
2010 | ||
a86c6181 AT |
2011 | depth = ext_depth(inode); |
2012 | eh = path[depth].p_hdr; | |
2013 | if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) | |
2014 | goto has_space; | |
2015 | ||
2016 | /* probably next leaf has space for us? */ | |
2017 | fex = EXT_LAST_EXTENT(eh); | |
598dbdf2 RD |
2018 | next = EXT_MAX_BLOCKS; |
2019 | if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block)) | |
5718789d | 2020 | next = ext4_ext_next_leaf_block(path); |
598dbdf2 | 2021 | if (next != EXT_MAX_BLOCKS) { |
32de6756 | 2022 | ext_debug("next leaf block - %u\n", next); |
a86c6181 | 2023 | BUG_ON(npath != NULL); |
107a7bd3 | 2024 | npath = ext4_ext_find_extent(inode, next, NULL, 0); |
a86c6181 AT |
2025 | if (IS_ERR(npath)) |
2026 | return PTR_ERR(npath); | |
2027 | BUG_ON(npath->p_depth != path->p_depth); | |
2028 | eh = npath[depth].p_hdr; | |
2029 | if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) { | |
25985edc | 2030 | ext_debug("next leaf isn't full(%d)\n", |
a86c6181 AT |
2031 | le16_to_cpu(eh->eh_entries)); |
2032 | path = npath; | |
ffb505ff | 2033 | goto has_space; |
a86c6181 AT |
2034 | } |
2035 | ext_debug("next leaf has no free space(%d,%d)\n", | |
2036 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max)); | |
2037 | } | |
2038 | ||
2039 | /* | |
d0d856e8 RD |
2040 | * There is no free space in the found leaf. |
2041 | * We're gonna add a new leaf in the tree. | |
a86c6181 | 2042 | */ |
107a7bd3 TT |
2043 | if (gb_flags & EXT4_GET_BLOCKS_METADATA_NOFAIL) |
2044 | mb_flags = EXT4_MB_USE_RESERVED; | |
2045 | err = ext4_ext_create_new_leaf(handle, inode, mb_flags, gb_flags, | |
2046 | path, newext); | |
a86c6181 AT |
2047 | if (err) |
2048 | goto cleanup; | |
2049 | depth = ext_depth(inode); | |
2050 | eh = path[depth].p_hdr; | |
2051 | ||
2052 | has_space: | |
2053 | nearex = path[depth].p_ext; | |
2054 | ||
7e028976 AM |
2055 | err = ext4_ext_get_access(handle, inode, path + depth); |
2056 | if (err) | |
a86c6181 AT |
2057 | goto cleanup; |
2058 | ||
2059 | if (!nearex) { | |
2060 | /* there is no extent in this leaf, create first one */ | |
32de6756 | 2061 | ext_debug("first extent in the leaf: %u:%llu:[%d]%d\n", |
8c55e204 | 2062 | le32_to_cpu(newext->ee_block), |
bf89d16f | 2063 | ext4_ext_pblock(newext), |
556615dc | 2064 | ext4_ext_is_unwritten(newext), |
a2df2a63 | 2065 | ext4_ext_get_actual_len(newext)); |
80e675f9 EG |
2066 | nearex = EXT_FIRST_EXTENT(eh); |
2067 | } else { | |
2068 | if (le32_to_cpu(newext->ee_block) | |
8c55e204 | 2069 | > le32_to_cpu(nearex->ee_block)) { |
80e675f9 | 2070 | /* Insert after */ |
32de6756 YY |
2071 | ext_debug("insert %u:%llu:[%d]%d before: " |
2072 | "nearest %p\n", | |
80e675f9 EG |
2073 | le32_to_cpu(newext->ee_block), |
2074 | ext4_ext_pblock(newext), | |
556615dc | 2075 | ext4_ext_is_unwritten(newext), |
80e675f9 EG |
2076 | ext4_ext_get_actual_len(newext), |
2077 | nearex); | |
2078 | nearex++; | |
2079 | } else { | |
2080 | /* Insert before */ | |
2081 | BUG_ON(newext->ee_block == nearex->ee_block); | |
32de6756 YY |
2082 | ext_debug("insert %u:%llu:[%d]%d after: " |
2083 | "nearest %p\n", | |
8c55e204 | 2084 | le32_to_cpu(newext->ee_block), |
bf89d16f | 2085 | ext4_ext_pblock(newext), |
556615dc | 2086 | ext4_ext_is_unwritten(newext), |
a2df2a63 | 2087 | ext4_ext_get_actual_len(newext), |
80e675f9 EG |
2088 | nearex); |
2089 | } | |
2090 | len = EXT_LAST_EXTENT(eh) - nearex + 1; | |
2091 | if (len > 0) { | |
32de6756 | 2092 | ext_debug("insert %u:%llu:[%d]%d: " |
80e675f9 EG |
2093 | "move %d extents from 0x%p to 0x%p\n", |
2094 | le32_to_cpu(newext->ee_block), | |
2095 | ext4_ext_pblock(newext), | |
556615dc | 2096 | ext4_ext_is_unwritten(newext), |
80e675f9 EG |
2097 | ext4_ext_get_actual_len(newext), |
2098 | len, nearex, nearex + 1); | |
2099 | memmove(nearex + 1, nearex, | |
2100 | len * sizeof(struct ext4_extent)); | |
a86c6181 | 2101 | } |
a86c6181 AT |
2102 | } |
2103 | ||
e8546d06 | 2104 | le16_add_cpu(&eh->eh_entries, 1); |
80e675f9 | 2105 | path[depth].p_ext = nearex; |
a86c6181 | 2106 | nearex->ee_block = newext->ee_block; |
bf89d16f | 2107 | ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext)); |
a86c6181 | 2108 | nearex->ee_len = newext->ee_len; |
a86c6181 AT |
2109 | |
2110 | merge: | |
e7bcf823 | 2111 | /* try to merge extents */ |
107a7bd3 | 2112 | if (!(gb_flags & EXT4_GET_BLOCKS_PRE_IO)) |
ecb94f5f | 2113 | ext4_ext_try_to_merge(handle, inode, path, nearex); |
a86c6181 | 2114 | |
a86c6181 AT |
2115 | |
2116 | /* time to correct all indexes above */ | |
2117 | err = ext4_ext_correct_indexes(handle, inode, path); | |
2118 | if (err) | |
2119 | goto cleanup; | |
2120 | ||
ecb94f5f | 2121 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
a86c6181 AT |
2122 | |
2123 | cleanup: | |
2124 | if (npath) { | |
2125 | ext4_ext_drop_refs(npath); | |
2126 | kfree(npath); | |
2127 | } | |
a86c6181 AT |
2128 | return err; |
2129 | } | |
2130 | ||
91dd8c11 LC |
2131 | static int ext4_fill_fiemap_extents(struct inode *inode, |
2132 | ext4_lblk_t block, ext4_lblk_t num, | |
2133 | struct fiemap_extent_info *fieinfo) | |
6873fa0d ES |
2134 | { |
2135 | struct ext4_ext_path *path = NULL; | |
6873fa0d | 2136 | struct ext4_extent *ex; |
69eb33dc | 2137 | struct extent_status es; |
91dd8c11 | 2138 | ext4_lblk_t next, next_del, start = 0, end = 0; |
6873fa0d | 2139 | ext4_lblk_t last = block + num; |
91dd8c11 LC |
2140 | int exists, depth = 0, err = 0; |
2141 | unsigned int flags = 0; | |
2142 | unsigned char blksize_bits = inode->i_sb->s_blocksize_bits; | |
6873fa0d | 2143 | |
f17722f9 | 2144 | while (block < last && block != EXT_MAX_BLOCKS) { |
6873fa0d ES |
2145 | num = last - block; |
2146 | /* find extent for this block */ | |
fab3a549 | 2147 | down_read(&EXT4_I(inode)->i_data_sem); |
91dd8c11 LC |
2148 | |
2149 | if (path && ext_depth(inode) != depth) { | |
2150 | /* depth was changed. we have to realloc path */ | |
2151 | kfree(path); | |
2152 | path = NULL; | |
2153 | } | |
2154 | ||
107a7bd3 | 2155 | path = ext4_ext_find_extent(inode, block, path, 0); |
6873fa0d | 2156 | if (IS_ERR(path)) { |
91dd8c11 | 2157 | up_read(&EXT4_I(inode)->i_data_sem); |
6873fa0d ES |
2158 | err = PTR_ERR(path); |
2159 | path = NULL; | |
2160 | break; | |
2161 | } | |
2162 | ||
2163 | depth = ext_depth(inode); | |
273df556 | 2164 | if (unlikely(path[depth].p_hdr == NULL)) { |
91dd8c11 | 2165 | up_read(&EXT4_I(inode)->i_data_sem); |
273df556 FM |
2166 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); |
2167 | err = -EIO; | |
2168 | break; | |
2169 | } | |
6873fa0d ES |
2170 | ex = path[depth].p_ext; |
2171 | next = ext4_ext_next_allocated_block(path); | |
91dd8c11 | 2172 | ext4_ext_drop_refs(path); |
6873fa0d | 2173 | |
91dd8c11 | 2174 | flags = 0; |
6873fa0d ES |
2175 | exists = 0; |
2176 | if (!ex) { | |
2177 | /* there is no extent yet, so try to allocate | |
2178 | * all requested space */ | |
2179 | start = block; | |
2180 | end = block + num; | |
2181 | } else if (le32_to_cpu(ex->ee_block) > block) { | |
2182 | /* need to allocate space before found extent */ | |
2183 | start = block; | |
2184 | end = le32_to_cpu(ex->ee_block); | |
2185 | if (block + num < end) | |
2186 | end = block + num; | |
2187 | } else if (block >= le32_to_cpu(ex->ee_block) | |
2188 | + ext4_ext_get_actual_len(ex)) { | |
2189 | /* need to allocate space after found extent */ | |
2190 | start = block; | |
2191 | end = block + num; | |
2192 | if (end >= next) | |
2193 | end = next; | |
2194 | } else if (block >= le32_to_cpu(ex->ee_block)) { | |
2195 | /* | |
2196 | * some part of requested space is covered | |
2197 | * by found extent | |
2198 | */ | |
2199 | start = block; | |
2200 | end = le32_to_cpu(ex->ee_block) | |
2201 | + ext4_ext_get_actual_len(ex); | |
2202 | if (block + num < end) | |
2203 | end = block + num; | |
2204 | exists = 1; | |
2205 | } else { | |
2206 | BUG(); | |
2207 | } | |
2208 | BUG_ON(end <= start); | |
2209 | ||
2210 | if (!exists) { | |
69eb33dc ZL |
2211 | es.es_lblk = start; |
2212 | es.es_len = end - start; | |
2213 | es.es_pblk = 0; | |
6873fa0d | 2214 | } else { |
69eb33dc ZL |
2215 | es.es_lblk = le32_to_cpu(ex->ee_block); |
2216 | es.es_len = ext4_ext_get_actual_len(ex); | |
2217 | es.es_pblk = ext4_ext_pblock(ex); | |
556615dc | 2218 | if (ext4_ext_is_unwritten(ex)) |
91dd8c11 | 2219 | flags |= FIEMAP_EXTENT_UNWRITTEN; |
6873fa0d ES |
2220 | } |
2221 | ||
91dd8c11 | 2222 | /* |
69eb33dc ZL |
2223 | * Find delayed extent and update es accordingly. We call |
2224 | * it even in !exists case to find out whether es is the | |
91dd8c11 LC |
2225 | * last existing extent or not. |
2226 | */ | |
69eb33dc | 2227 | next_del = ext4_find_delayed_extent(inode, &es); |
91dd8c11 LC |
2228 | if (!exists && next_del) { |
2229 | exists = 1; | |
72dac95d JL |
2230 | flags |= (FIEMAP_EXTENT_DELALLOC | |
2231 | FIEMAP_EXTENT_UNKNOWN); | |
91dd8c11 LC |
2232 | } |
2233 | up_read(&EXT4_I(inode)->i_data_sem); | |
2234 | ||
69eb33dc ZL |
2235 | if (unlikely(es.es_len == 0)) { |
2236 | EXT4_ERROR_INODE(inode, "es.es_len == 0"); | |
273df556 FM |
2237 | err = -EIO; |
2238 | break; | |
2239 | } | |
6873fa0d | 2240 | |
f7fec032 ZL |
2241 | /* |
2242 | * This is possible iff next == next_del == EXT_MAX_BLOCKS. | |
2243 | * we need to check next == EXT_MAX_BLOCKS because it is | |
2244 | * possible that an extent is with unwritten and delayed | |
2245 | * status due to when an extent is delayed allocated and | |
2246 | * is allocated by fallocate status tree will track both of | |
2247 | * them in a extent. | |
2248 | * | |
2249 | * So we could return a unwritten and delayed extent, and | |
2250 | * its block is equal to 'next'. | |
2251 | */ | |
2252 | if (next == next_del && next == EXT_MAX_BLOCKS) { | |
91dd8c11 LC |
2253 | flags |= FIEMAP_EXTENT_LAST; |
2254 | if (unlikely(next_del != EXT_MAX_BLOCKS || | |
2255 | next != EXT_MAX_BLOCKS)) { | |
2256 | EXT4_ERROR_INODE(inode, | |
2257 | "next extent == %u, next " | |
2258 | "delalloc extent = %u", | |
2259 | next, next_del); | |
2260 | err = -EIO; | |
2261 | break; | |
2262 | } | |
6873fa0d ES |
2263 | } |
2264 | ||
91dd8c11 LC |
2265 | if (exists) { |
2266 | err = fiemap_fill_next_extent(fieinfo, | |
69eb33dc ZL |
2267 | (__u64)es.es_lblk << blksize_bits, |
2268 | (__u64)es.es_pblk << blksize_bits, | |
2269 | (__u64)es.es_len << blksize_bits, | |
91dd8c11 LC |
2270 | flags); |
2271 | if (err < 0) | |
2272 | break; | |
2273 | if (err == 1) { | |
2274 | err = 0; | |
2275 | break; | |
2276 | } | |
6873fa0d ES |
2277 | } |
2278 | ||
69eb33dc | 2279 | block = es.es_lblk + es.es_len; |
6873fa0d ES |
2280 | } |
2281 | ||
2282 | if (path) { | |
2283 | ext4_ext_drop_refs(path); | |
2284 | kfree(path); | |
2285 | } | |
2286 | ||
2287 | return err; | |
2288 | } | |
2289 | ||
a86c6181 | 2290 | /* |
d0d856e8 RD |
2291 | * ext4_ext_put_gap_in_cache: |
2292 | * calculate boundaries of the gap that the requested block fits into | |
a86c6181 AT |
2293 | * and cache this gap |
2294 | */ | |
09b88252 | 2295 | static void |
a86c6181 | 2296 | ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path, |
725d26d3 | 2297 | ext4_lblk_t block) |
a86c6181 AT |
2298 | { |
2299 | int depth = ext_depth(inode); | |
27b1b228 AS |
2300 | unsigned long len = 0; |
2301 | ext4_lblk_t lblock = 0; | |
a86c6181 AT |
2302 | struct ext4_extent *ex; |
2303 | ||
2304 | ex = path[depth].p_ext; | |
2305 | if (ex == NULL) { | |
69eb33dc ZL |
2306 | /* |
2307 | * there is no extent yet, so gap is [0;-] and we | |
2308 | * don't cache it | |
2309 | */ | |
a86c6181 AT |
2310 | ext_debug("cache gap(whole file):"); |
2311 | } else if (block < le32_to_cpu(ex->ee_block)) { | |
2312 | lblock = block; | |
2313 | len = le32_to_cpu(ex->ee_block) - block; | |
bba90743 ES |
2314 | ext_debug("cache gap(before): %u [%u:%u]", |
2315 | block, | |
2316 | le32_to_cpu(ex->ee_block), | |
2317 | ext4_ext_get_actual_len(ex)); | |
d100eef2 ZL |
2318 | if (!ext4_find_delalloc_range(inode, lblock, lblock + len - 1)) |
2319 | ext4_es_insert_extent(inode, lblock, len, ~0, | |
2320 | EXTENT_STATUS_HOLE); | |
a86c6181 | 2321 | } else if (block >= le32_to_cpu(ex->ee_block) |
a2df2a63 | 2322 | + ext4_ext_get_actual_len(ex)) { |
725d26d3 | 2323 | ext4_lblk_t next; |
8c55e204 | 2324 | lblock = le32_to_cpu(ex->ee_block) |
a2df2a63 | 2325 | + ext4_ext_get_actual_len(ex); |
725d26d3 AK |
2326 | |
2327 | next = ext4_ext_next_allocated_block(path); | |
bba90743 ES |
2328 | ext_debug("cache gap(after): [%u:%u] %u", |
2329 | le32_to_cpu(ex->ee_block), | |
2330 | ext4_ext_get_actual_len(ex), | |
2331 | block); | |
725d26d3 AK |
2332 | BUG_ON(next == lblock); |
2333 | len = next - lblock; | |
d100eef2 ZL |
2334 | if (!ext4_find_delalloc_range(inode, lblock, lblock + len - 1)) |
2335 | ext4_es_insert_extent(inode, lblock, len, ~0, | |
2336 | EXTENT_STATUS_HOLE); | |
a86c6181 | 2337 | } else { |
a86c6181 AT |
2338 | BUG(); |
2339 | } | |
2340 | ||
bba90743 | 2341 | ext_debug(" -> %u:%lu\n", lblock, len); |
a86c6181 AT |
2342 | } |
2343 | ||
2344 | /* | |
d0d856e8 RD |
2345 | * ext4_ext_rm_idx: |
2346 | * removes index from the index block. | |
a86c6181 | 2347 | */ |
1d03ec98 | 2348 | static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode, |
c36575e6 | 2349 | struct ext4_ext_path *path, int depth) |
a86c6181 | 2350 | { |
a86c6181 | 2351 | int err; |
f65e6fba | 2352 | ext4_fsblk_t leaf; |
a86c6181 AT |
2353 | |
2354 | /* free index block */ | |
c36575e6 FL |
2355 | depth--; |
2356 | path = path + depth; | |
bf89d16f | 2357 | leaf = ext4_idx_pblock(path->p_idx); |
273df556 FM |
2358 | if (unlikely(path->p_hdr->eh_entries == 0)) { |
2359 | EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0"); | |
2360 | return -EIO; | |
2361 | } | |
7e028976 AM |
2362 | err = ext4_ext_get_access(handle, inode, path); |
2363 | if (err) | |
a86c6181 | 2364 | return err; |
0e1147b0 RD |
2365 | |
2366 | if (path->p_idx != EXT_LAST_INDEX(path->p_hdr)) { | |
2367 | int len = EXT_LAST_INDEX(path->p_hdr) - path->p_idx; | |
2368 | len *= sizeof(struct ext4_extent_idx); | |
2369 | memmove(path->p_idx, path->p_idx + 1, len); | |
2370 | } | |
2371 | ||
e8546d06 | 2372 | le16_add_cpu(&path->p_hdr->eh_entries, -1); |
7e028976 AM |
2373 | err = ext4_ext_dirty(handle, inode, path); |
2374 | if (err) | |
a86c6181 | 2375 | return err; |
2ae02107 | 2376 | ext_debug("index is empty, remove it, free block %llu\n", leaf); |
d8990240 AK |
2377 | trace_ext4_ext_rm_idx(inode, leaf); |
2378 | ||
7dc57615 | 2379 | ext4_free_blocks(handle, inode, NULL, leaf, 1, |
e6362609 | 2380 | EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET); |
c36575e6 FL |
2381 | |
2382 | while (--depth >= 0) { | |
2383 | if (path->p_idx != EXT_FIRST_INDEX(path->p_hdr)) | |
2384 | break; | |
2385 | path--; | |
2386 | err = ext4_ext_get_access(handle, inode, path); | |
2387 | if (err) | |
2388 | break; | |
2389 | path->p_idx->ei_block = (path+1)->p_idx->ei_block; | |
2390 | err = ext4_ext_dirty(handle, inode, path); | |
2391 | if (err) | |
2392 | break; | |
2393 | } | |
a86c6181 AT |
2394 | return err; |
2395 | } | |
2396 | ||
2397 | /* | |
ee12b630 MC |
2398 | * ext4_ext_calc_credits_for_single_extent: |
2399 | * This routine returns max. credits that needed to insert an extent | |
2400 | * to the extent tree. | |
2401 | * When pass the actual path, the caller should calculate credits | |
2402 | * under i_data_sem. | |
a86c6181 | 2403 | */ |
525f4ed8 | 2404 | int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks, |
a86c6181 AT |
2405 | struct ext4_ext_path *path) |
2406 | { | |
a86c6181 | 2407 | if (path) { |
ee12b630 | 2408 | int depth = ext_depth(inode); |
f3bd1f3f | 2409 | int ret = 0; |
ee12b630 | 2410 | |
a86c6181 | 2411 | /* probably there is space in leaf? */ |
a86c6181 | 2412 | if (le16_to_cpu(path[depth].p_hdr->eh_entries) |
ee12b630 | 2413 | < le16_to_cpu(path[depth].p_hdr->eh_max)) { |
a86c6181 | 2414 | |
ee12b630 MC |
2415 | /* |
2416 | * There are some space in the leaf tree, no | |
2417 | * need to account for leaf block credit | |
2418 | * | |
2419 | * bitmaps and block group descriptor blocks | |
df3ab170 | 2420 | * and other metadata blocks still need to be |
ee12b630 MC |
2421 | * accounted. |
2422 | */ | |
525f4ed8 | 2423 | /* 1 bitmap, 1 block group descriptor */ |
ee12b630 | 2424 | ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb); |
5887e98b | 2425 | return ret; |
ee12b630 MC |
2426 | } |
2427 | } | |
a86c6181 | 2428 | |
525f4ed8 | 2429 | return ext4_chunk_trans_blocks(inode, nrblocks); |
ee12b630 | 2430 | } |
a86c6181 | 2431 | |
ee12b630 | 2432 | /* |
fffb2739 | 2433 | * How many index/leaf blocks need to change/allocate to add @extents extents? |
ee12b630 | 2434 | * |
fffb2739 JK |
2435 | * If we add a single extent, then in the worse case, each tree level |
2436 | * index/leaf need to be changed in case of the tree split. | |
ee12b630 | 2437 | * |
fffb2739 JK |
2438 | * If more extents are inserted, they could cause the whole tree split more |
2439 | * than once, but this is really rare. | |
ee12b630 | 2440 | */ |
fffb2739 | 2441 | int ext4_ext_index_trans_blocks(struct inode *inode, int extents) |
ee12b630 MC |
2442 | { |
2443 | int index; | |
f19d5870 TM |
2444 | int depth; |
2445 | ||
2446 | /* If we are converting the inline data, only one is needed here. */ | |
2447 | if (ext4_has_inline_data(inode)) | |
2448 | return 1; | |
2449 | ||
2450 | depth = ext_depth(inode); | |
a86c6181 | 2451 | |
fffb2739 | 2452 | if (extents <= 1) |
ee12b630 MC |
2453 | index = depth * 2; |
2454 | else | |
2455 | index = depth * 3; | |
a86c6181 | 2456 | |
ee12b630 | 2457 | return index; |
a86c6181 AT |
2458 | } |
2459 | ||
981250ca TT |
2460 | static inline int get_default_free_blocks_flags(struct inode *inode) |
2461 | { | |
2462 | if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) | |
2463 | return EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET; | |
2464 | else if (ext4_should_journal_data(inode)) | |
2465 | return EXT4_FREE_BLOCKS_FORGET; | |
2466 | return 0; | |
2467 | } | |
2468 | ||
a86c6181 | 2469 | static int ext4_remove_blocks(handle_t *handle, struct inode *inode, |
0aa06000 | 2470 | struct ext4_extent *ex, |
d23142c6 | 2471 | long long *partial_cluster, |
0aa06000 | 2472 | ext4_lblk_t from, ext4_lblk_t to) |
a86c6181 | 2473 | { |
0aa06000 | 2474 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
a2df2a63 | 2475 | unsigned short ee_len = ext4_ext_get_actual_len(ex); |
0aa06000 | 2476 | ext4_fsblk_t pblk; |
981250ca | 2477 | int flags = get_default_free_blocks_flags(inode); |
18888cf0 | 2478 | |
0aa06000 TT |
2479 | /* |
2480 | * For bigalloc file systems, we never free a partial cluster | |
2481 | * at the beginning of the extent. Instead, we make a note | |
2482 | * that we tried freeing the cluster, and check to see if we | |
2483 | * need to free it on a subsequent call to ext4_remove_blocks, | |
2484 | * or at the end of the ext4_truncate() operation. | |
2485 | */ | |
2486 | flags |= EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER; | |
2487 | ||
d8990240 | 2488 | trace_ext4_remove_blocks(inode, ex, from, to, *partial_cluster); |
0aa06000 TT |
2489 | /* |
2490 | * If we have a partial cluster, and it's different from the | |
2491 | * cluster of the last block, we need to explicitly free the | |
2492 | * partial cluster here. | |
2493 | */ | |
2494 | pblk = ext4_ext_pblock(ex) + ee_len - 1; | |
d23142c6 LC |
2495 | if ((*partial_cluster > 0) && |
2496 | (EXT4_B2C(sbi, pblk) != *partial_cluster)) { | |
0aa06000 TT |
2497 | ext4_free_blocks(handle, inode, NULL, |
2498 | EXT4_C2B(sbi, *partial_cluster), | |
2499 | sbi->s_cluster_ratio, flags); | |
2500 | *partial_cluster = 0; | |
2501 | } | |
2502 | ||
a86c6181 AT |
2503 | #ifdef EXTENTS_STATS |
2504 | { | |
2505 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); | |
a86c6181 AT |
2506 | spin_lock(&sbi->s_ext_stats_lock); |
2507 | sbi->s_ext_blocks += ee_len; | |
2508 | sbi->s_ext_extents++; | |
2509 | if (ee_len < sbi->s_ext_min) | |
2510 | sbi->s_ext_min = ee_len; | |
2511 | if (ee_len > sbi->s_ext_max) | |
2512 | sbi->s_ext_max = ee_len; | |
2513 | if (ext_depth(inode) > sbi->s_depth_max) | |
2514 | sbi->s_depth_max = ext_depth(inode); | |
2515 | spin_unlock(&sbi->s_ext_stats_lock); | |
2516 | } | |
2517 | #endif | |
2518 | if (from >= le32_to_cpu(ex->ee_block) | |
a2df2a63 | 2519 | && to == le32_to_cpu(ex->ee_block) + ee_len - 1) { |
a86c6181 | 2520 | /* tail removal */ |
725d26d3 | 2521 | ext4_lblk_t num; |
d23142c6 | 2522 | unsigned int unaligned; |
725d26d3 | 2523 | |
a2df2a63 | 2524 | num = le32_to_cpu(ex->ee_block) + ee_len - from; |
0aa06000 | 2525 | pblk = ext4_ext_pblock(ex) + ee_len - num; |
d23142c6 LC |
2526 | /* |
2527 | * Usually we want to free partial cluster at the end of the | |
2528 | * extent, except for the situation when the cluster is still | |
2529 | * used by any other extent (partial_cluster is negative). | |
2530 | */ | |
2531 | if (*partial_cluster < 0 && | |
2532 | -(*partial_cluster) == EXT4_B2C(sbi, pblk + num - 1)) | |
2533 | flags |= EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER; | |
2534 | ||
2535 | ext_debug("free last %u blocks starting %llu partial %lld\n", | |
2536 | num, pblk, *partial_cluster); | |
0aa06000 TT |
2537 | ext4_free_blocks(handle, inode, NULL, pblk, num, flags); |
2538 | /* | |
2539 | * If the block range to be freed didn't start at the | |
2540 | * beginning of a cluster, and we removed the entire | |
d23142c6 LC |
2541 | * extent and the cluster is not used by any other extent, |
2542 | * save the partial cluster here, since we might need to | |
2543 | * delete if we determine that the truncate operation has | |
2544 | * removed all of the blocks in the cluster. | |
2545 | * | |
2546 | * On the other hand, if we did not manage to free the whole | |
2547 | * extent, we have to mark the cluster as used (store negative | |
2548 | * cluster number in partial_cluster). | |
0aa06000 | 2549 | */ |
f5a44db5 | 2550 | unaligned = EXT4_PBLK_COFF(sbi, pblk); |
d23142c6 LC |
2551 | if (unaligned && (ee_len == num) && |
2552 | (*partial_cluster != -((long long)EXT4_B2C(sbi, pblk)))) | |
0aa06000 | 2553 | *partial_cluster = EXT4_B2C(sbi, pblk); |
d23142c6 LC |
2554 | else if (unaligned) |
2555 | *partial_cluster = -((long long)EXT4_B2C(sbi, pblk)); | |
2556 | else if (*partial_cluster > 0) | |
0aa06000 | 2557 | *partial_cluster = 0; |
78fb9cdf LC |
2558 | } else |
2559 | ext4_error(sbi->s_sb, "strange request: removal(2) " | |
2560 | "%u-%u from %u:%u\n", | |
2561 | from, to, le32_to_cpu(ex->ee_block), ee_len); | |
a86c6181 AT |
2562 | return 0; |
2563 | } | |
2564 | ||
d583fb87 AH |
2565 | |
2566 | /* | |
2567 | * ext4_ext_rm_leaf() Removes the extents associated with the | |
2568 | * blocks appearing between "start" and "end", and splits the extents | |
2569 | * if "start" and "end" appear in the same extent | |
2570 | * | |
2571 | * @handle: The journal handle | |
2572 | * @inode: The files inode | |
2573 | * @path: The path to the leaf | |
d23142c6 LC |
2574 | * @partial_cluster: The cluster which we'll have to free if all extents |
2575 | * has been released from it. It gets negative in case | |
2576 | * that the cluster is still used. | |
d583fb87 AH |
2577 | * @start: The first block to remove |
2578 | * @end: The last block to remove | |
2579 | */ | |
a86c6181 AT |
2580 | static int |
2581 | ext4_ext_rm_leaf(handle_t *handle, struct inode *inode, | |
d23142c6 LC |
2582 | struct ext4_ext_path *path, |
2583 | long long *partial_cluster, | |
0aa06000 | 2584 | ext4_lblk_t start, ext4_lblk_t end) |
a86c6181 | 2585 | { |
0aa06000 | 2586 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
a86c6181 AT |
2587 | int err = 0, correct_index = 0; |
2588 | int depth = ext_depth(inode), credits; | |
2589 | struct ext4_extent_header *eh; | |
750c9c47 | 2590 | ext4_lblk_t a, b; |
725d26d3 AK |
2591 | unsigned num; |
2592 | ext4_lblk_t ex_ee_block; | |
a86c6181 | 2593 | unsigned short ex_ee_len; |
556615dc | 2594 | unsigned unwritten = 0; |
a86c6181 | 2595 | struct ext4_extent *ex; |
d23142c6 | 2596 | ext4_fsblk_t pblk; |
a86c6181 | 2597 | |
c29c0ae7 | 2598 | /* the header must be checked already in ext4_ext_remove_space() */ |
5f95d21f | 2599 | ext_debug("truncate since %u in leaf to %u\n", start, end); |
a86c6181 AT |
2600 | if (!path[depth].p_hdr) |
2601 | path[depth].p_hdr = ext_block_hdr(path[depth].p_bh); | |
2602 | eh = path[depth].p_hdr; | |
273df556 FM |
2603 | if (unlikely(path[depth].p_hdr == NULL)) { |
2604 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); | |
2605 | return -EIO; | |
2606 | } | |
a86c6181 | 2607 | /* find where to start removing */ |
6ae06ff5 AS |
2608 | ex = path[depth].p_ext; |
2609 | if (!ex) | |
2610 | ex = EXT_LAST_EXTENT(eh); | |
a86c6181 AT |
2611 | |
2612 | ex_ee_block = le32_to_cpu(ex->ee_block); | |
a2df2a63 | 2613 | ex_ee_len = ext4_ext_get_actual_len(ex); |
a86c6181 | 2614 | |
c0634493 EW |
2615 | /* |
2616 | * If we're starting with an extent other than the last one in the | |
2617 | * node, we need to see if it shares a cluster with the extent to | |
2618 | * the right (towards the end of the file). If its leftmost cluster | |
2619 | * is this extent's rightmost cluster and it is not cluster aligned, | |
2620 | * we'll mark it as a partial that is not to be deallocated. | |
2621 | */ | |
2622 | ||
2623 | if (ex != EXT_LAST_EXTENT(eh)) { | |
2624 | ext4_fsblk_t current_pblk, right_pblk; | |
2625 | long long current_cluster, right_cluster; | |
2626 | ||
2627 | current_pblk = ext4_ext_pblock(ex) + ex_ee_len - 1; | |
2628 | current_cluster = (long long)EXT4_B2C(sbi, current_pblk); | |
2629 | right_pblk = ext4_ext_pblock(ex + 1); | |
2630 | right_cluster = (long long)EXT4_B2C(sbi, right_pblk); | |
2631 | if (current_cluster == right_cluster && | |
2632 | EXT4_PBLK_COFF(sbi, right_pblk)) | |
2633 | *partial_cluster = -right_cluster; | |
2634 | } | |
2635 | ||
d8990240 AK |
2636 | trace_ext4_ext_rm_leaf(inode, start, ex, *partial_cluster); |
2637 | ||
a86c6181 AT |
2638 | while (ex >= EXT_FIRST_EXTENT(eh) && |
2639 | ex_ee_block + ex_ee_len > start) { | |
a41f2071 | 2640 | |
556615dc LC |
2641 | if (ext4_ext_is_unwritten(ex)) |
2642 | unwritten = 1; | |
a41f2071 | 2643 | else |
556615dc | 2644 | unwritten = 0; |
a41f2071 | 2645 | |
553f9008 | 2646 | ext_debug("remove ext %u:[%d]%d\n", ex_ee_block, |
556615dc | 2647 | unwritten, ex_ee_len); |
a86c6181 AT |
2648 | path[depth].p_ext = ex; |
2649 | ||
2650 | a = ex_ee_block > start ? ex_ee_block : start; | |
d583fb87 AH |
2651 | b = ex_ee_block+ex_ee_len - 1 < end ? |
2652 | ex_ee_block+ex_ee_len - 1 : end; | |
a86c6181 AT |
2653 | |
2654 | ext_debug(" border %u:%u\n", a, b); | |
2655 | ||
d583fb87 | 2656 | /* If this extent is beyond the end of the hole, skip it */ |
5f95d21f | 2657 | if (end < ex_ee_block) { |
d23142c6 LC |
2658 | /* |
2659 | * We're going to skip this extent and move to another, | |
2660 | * so if this extent is not cluster aligned we have | |
2661 | * to mark the current cluster as used to avoid | |
2662 | * accidentally freeing it later on | |
2663 | */ | |
2664 | pblk = ext4_ext_pblock(ex); | |
f5a44db5 | 2665 | if (EXT4_PBLK_COFF(sbi, pblk)) |
d23142c6 LC |
2666 | *partial_cluster = |
2667 | -((long long)EXT4_B2C(sbi, pblk)); | |
d583fb87 AH |
2668 | ex--; |
2669 | ex_ee_block = le32_to_cpu(ex->ee_block); | |
2670 | ex_ee_len = ext4_ext_get_actual_len(ex); | |
2671 | continue; | |
750c9c47 | 2672 | } else if (b != ex_ee_block + ex_ee_len - 1) { |
dc1841d6 LC |
2673 | EXT4_ERROR_INODE(inode, |
2674 | "can not handle truncate %u:%u " | |
2675 | "on extent %u:%u", | |
2676 | start, end, ex_ee_block, | |
2677 | ex_ee_block + ex_ee_len - 1); | |
750c9c47 DM |
2678 | err = -EIO; |
2679 | goto out; | |
a86c6181 AT |
2680 | } else if (a != ex_ee_block) { |
2681 | /* remove tail of the extent */ | |
750c9c47 | 2682 | num = a - ex_ee_block; |
a86c6181 AT |
2683 | } else { |
2684 | /* remove whole extent: excellent! */ | |
a86c6181 | 2685 | num = 0; |
a86c6181 | 2686 | } |
34071da7 TT |
2687 | /* |
2688 | * 3 for leaf, sb, and inode plus 2 (bmap and group | |
2689 | * descriptor) for each block group; assume two block | |
2690 | * groups plus ex_ee_len/blocks_per_block_group for | |
2691 | * the worst case | |
2692 | */ | |
2693 | credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb)); | |
a86c6181 AT |
2694 | if (ex == EXT_FIRST_EXTENT(eh)) { |
2695 | correct_index = 1; | |
2696 | credits += (ext_depth(inode)) + 1; | |
2697 | } | |
5aca07eb | 2698 | credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb); |
a86c6181 | 2699 | |
487caeef | 2700 | err = ext4_ext_truncate_extend_restart(handle, inode, credits); |
9102e4fa | 2701 | if (err) |
a86c6181 | 2702 | goto out; |
a86c6181 AT |
2703 | |
2704 | err = ext4_ext_get_access(handle, inode, path + depth); | |
2705 | if (err) | |
2706 | goto out; | |
2707 | ||
0aa06000 TT |
2708 | err = ext4_remove_blocks(handle, inode, ex, partial_cluster, |
2709 | a, b); | |
a86c6181 AT |
2710 | if (err) |
2711 | goto out; | |
2712 | ||
750c9c47 | 2713 | if (num == 0) |
d0d856e8 | 2714 | /* this extent is removed; mark slot entirely unused */ |
f65e6fba | 2715 | ext4_ext_store_pblock(ex, 0); |
a86c6181 | 2716 | |
a86c6181 | 2717 | ex->ee_len = cpu_to_le16(num); |
749269fa | 2718 | /* |
556615dc | 2719 | * Do not mark unwritten if all the blocks in the |
749269fa AA |
2720 | * extent have been removed. |
2721 | */ | |
556615dc LC |
2722 | if (unwritten && num) |
2723 | ext4_ext_mark_unwritten(ex); | |
d583fb87 AH |
2724 | /* |
2725 | * If the extent was completely released, | |
2726 | * we need to remove it from the leaf | |
2727 | */ | |
2728 | if (num == 0) { | |
f17722f9 | 2729 | if (end != EXT_MAX_BLOCKS - 1) { |
d583fb87 AH |
2730 | /* |
2731 | * For hole punching, we need to scoot all the | |
2732 | * extents up when an extent is removed so that | |
2733 | * we dont have blank extents in the middle | |
2734 | */ | |
2735 | memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) * | |
2736 | sizeof(struct ext4_extent)); | |
2737 | ||
2738 | /* Now get rid of the one at the end */ | |
2739 | memset(EXT_LAST_EXTENT(eh), 0, | |
2740 | sizeof(struct ext4_extent)); | |
2741 | } | |
2742 | le16_add_cpu(&eh->eh_entries, -1); | |
d23142c6 | 2743 | } else if (*partial_cluster > 0) |
0aa06000 | 2744 | *partial_cluster = 0; |
d583fb87 | 2745 | |
750c9c47 DM |
2746 | err = ext4_ext_dirty(handle, inode, path + depth); |
2747 | if (err) | |
2748 | goto out; | |
2749 | ||
bf52c6f7 | 2750 | ext_debug("new extent: %u:%u:%llu\n", ex_ee_block, num, |
bf89d16f | 2751 | ext4_ext_pblock(ex)); |
a86c6181 AT |
2752 | ex--; |
2753 | ex_ee_block = le32_to_cpu(ex->ee_block); | |
a2df2a63 | 2754 | ex_ee_len = ext4_ext_get_actual_len(ex); |
a86c6181 AT |
2755 | } |
2756 | ||
2757 | if (correct_index && eh->eh_entries) | |
2758 | err = ext4_ext_correct_indexes(handle, inode, path); | |
2759 | ||
0aa06000 | 2760 | /* |
ad6599ab EW |
2761 | * If there's a partial cluster and at least one extent remains in |
2762 | * the leaf, free the partial cluster if it isn't shared with the | |
2763 | * current extent. If there's a partial cluster and no extents | |
2764 | * remain in the leaf, it can't be freed here. It can only be | |
2765 | * freed when it's possible to determine if it's not shared with | |
2766 | * any other extent - when the next leaf is processed or when space | |
2767 | * removal is complete. | |
0aa06000 | 2768 | */ |
ad6599ab | 2769 | if (*partial_cluster > 0 && eh->eh_entries && |
0aa06000 TT |
2770 | (EXT4_B2C(sbi, ext4_ext_pblock(ex) + ex_ee_len - 1) != |
2771 | *partial_cluster)) { | |
981250ca | 2772 | int flags = get_default_free_blocks_flags(inode); |
0aa06000 TT |
2773 | |
2774 | ext4_free_blocks(handle, inode, NULL, | |
2775 | EXT4_C2B(sbi, *partial_cluster), | |
2776 | sbi->s_cluster_ratio, flags); | |
2777 | *partial_cluster = 0; | |
2778 | } | |
2779 | ||
a86c6181 AT |
2780 | /* if this leaf is free, then we should |
2781 | * remove it from index block above */ | |
2782 | if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL) | |
c36575e6 | 2783 | err = ext4_ext_rm_idx(handle, inode, path, depth); |
a86c6181 AT |
2784 | |
2785 | out: | |
2786 | return err; | |
2787 | } | |
2788 | ||
2789 | /* | |
d0d856e8 RD |
2790 | * ext4_ext_more_to_rm: |
2791 | * returns 1 if current index has to be freed (even partial) | |
a86c6181 | 2792 | */ |
09b88252 | 2793 | static int |
a86c6181 AT |
2794 | ext4_ext_more_to_rm(struct ext4_ext_path *path) |
2795 | { | |
2796 | BUG_ON(path->p_idx == NULL); | |
2797 | ||
2798 | if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr)) | |
2799 | return 0; | |
2800 | ||
2801 | /* | |
d0d856e8 | 2802 | * if truncate on deeper level happened, it wasn't partial, |
a86c6181 AT |
2803 | * so we have to consider current index for truncation |
2804 | */ | |
2805 | if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block) | |
2806 | return 0; | |
2807 | return 1; | |
2808 | } | |
2809 | ||
26a4c0c6 TT |
2810 | int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start, |
2811 | ext4_lblk_t end) | |
a86c6181 AT |
2812 | { |
2813 | struct super_block *sb = inode->i_sb; | |
2814 | int depth = ext_depth(inode); | |
968dee77 | 2815 | struct ext4_ext_path *path = NULL; |
d23142c6 | 2816 | long long partial_cluster = 0; |
a86c6181 | 2817 | handle_t *handle; |
6f2080e6 | 2818 | int i = 0, err = 0; |
a86c6181 | 2819 | |
5f95d21f | 2820 | ext_debug("truncate since %u to %u\n", start, end); |
a86c6181 AT |
2821 | |
2822 | /* probably first extent we're gonna free will be last in block */ | |
9924a92a | 2823 | handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, depth + 1); |
a86c6181 AT |
2824 | if (IS_ERR(handle)) |
2825 | return PTR_ERR(handle); | |
2826 | ||
0617b83f | 2827 | again: |
61801325 | 2828 | trace_ext4_ext_remove_space(inode, start, end, depth); |
d8990240 | 2829 | |
5f95d21f LC |
2830 | /* |
2831 | * Check if we are removing extents inside the extent tree. If that | |
2832 | * is the case, we are going to punch a hole inside the extent tree | |
2833 | * so we have to check whether we need to split the extent covering | |
2834 | * the last block to remove so we can easily remove the part of it | |
2835 | * in ext4_ext_rm_leaf(). | |
2836 | */ | |
2837 | if (end < EXT_MAX_BLOCKS - 1) { | |
2838 | struct ext4_extent *ex; | |
2839 | ext4_lblk_t ee_block; | |
2840 | ||
2841 | /* find extent for this block */ | |
107a7bd3 | 2842 | path = ext4_ext_find_extent(inode, end, NULL, EXT4_EX_NOCACHE); |
5f95d21f LC |
2843 | if (IS_ERR(path)) { |
2844 | ext4_journal_stop(handle); | |
2845 | return PTR_ERR(path); | |
2846 | } | |
2847 | depth = ext_depth(inode); | |
6f2080e6 | 2848 | /* Leaf not may not exist only if inode has no blocks at all */ |
5f95d21f | 2849 | ex = path[depth].p_ext; |
968dee77 | 2850 | if (!ex) { |
6f2080e6 DM |
2851 | if (depth) { |
2852 | EXT4_ERROR_INODE(inode, | |
2853 | "path[%d].p_hdr == NULL", | |
2854 | depth); | |
2855 | err = -EIO; | |
2856 | } | |
2857 | goto out; | |
968dee77 | 2858 | } |
5f95d21f LC |
2859 | |
2860 | ee_block = le32_to_cpu(ex->ee_block); | |
2861 | ||
2862 | /* | |
2863 | * See if the last block is inside the extent, if so split | |
2864 | * the extent at 'end' block so we can easily remove the | |
2865 | * tail of the first part of the split extent in | |
2866 | * ext4_ext_rm_leaf(). | |
2867 | */ | |
2868 | if (end >= ee_block && | |
2869 | end < ee_block + ext4_ext_get_actual_len(ex) - 1) { | |
5f95d21f LC |
2870 | /* |
2871 | * Split the extent in two so that 'end' is the last | |
27dd4385 LC |
2872 | * block in the first new extent. Also we should not |
2873 | * fail removing space due to ENOSPC so try to use | |
2874 | * reserved block if that happens. | |
5f95d21f | 2875 | */ |
fcf6b1b7 DM |
2876 | err = ext4_force_split_extent_at(handle, inode, path, |
2877 | end + 1, 1); | |
5f95d21f LC |
2878 | if (err < 0) |
2879 | goto out; | |
2880 | } | |
5f95d21f | 2881 | } |
a86c6181 | 2882 | /* |
d0d856e8 RD |
2883 | * We start scanning from right side, freeing all the blocks |
2884 | * after i_size and walking into the tree depth-wise. | |
a86c6181 | 2885 | */ |
0617b83f | 2886 | depth = ext_depth(inode); |
968dee77 AS |
2887 | if (path) { |
2888 | int k = i = depth; | |
2889 | while (--k > 0) | |
2890 | path[k].p_block = | |
2891 | le16_to_cpu(path[k].p_hdr->eh_entries)+1; | |
2892 | } else { | |
2893 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), | |
2894 | GFP_NOFS); | |
2895 | if (path == NULL) { | |
2896 | ext4_journal_stop(handle); | |
2897 | return -ENOMEM; | |
2898 | } | |
2899 | path[0].p_depth = depth; | |
2900 | path[0].p_hdr = ext_inode_hdr(inode); | |
89a4e48f | 2901 | i = 0; |
5f95d21f | 2902 | |
c349179b | 2903 | if (ext4_ext_check(inode, path[0].p_hdr, depth, 0)) { |
968dee77 AS |
2904 | err = -EIO; |
2905 | goto out; | |
2906 | } | |
a86c6181 | 2907 | } |
968dee77 | 2908 | err = 0; |
a86c6181 AT |
2909 | |
2910 | while (i >= 0 && err == 0) { | |
2911 | if (i == depth) { | |
2912 | /* this is leaf block */ | |
d583fb87 | 2913 | err = ext4_ext_rm_leaf(handle, inode, path, |
0aa06000 | 2914 | &partial_cluster, start, |
5f95d21f | 2915 | end); |
d0d856e8 | 2916 | /* root level has p_bh == NULL, brelse() eats this */ |
a86c6181 AT |
2917 | brelse(path[i].p_bh); |
2918 | path[i].p_bh = NULL; | |
2919 | i--; | |
2920 | continue; | |
2921 | } | |
2922 | ||
2923 | /* this is index block */ | |
2924 | if (!path[i].p_hdr) { | |
2925 | ext_debug("initialize header\n"); | |
2926 | path[i].p_hdr = ext_block_hdr(path[i].p_bh); | |
a86c6181 AT |
2927 | } |
2928 | ||
a86c6181 | 2929 | if (!path[i].p_idx) { |
d0d856e8 | 2930 | /* this level hasn't been touched yet */ |
a86c6181 AT |
2931 | path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr); |
2932 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1; | |
2933 | ext_debug("init index ptr: hdr 0x%p, num %d\n", | |
2934 | path[i].p_hdr, | |
2935 | le16_to_cpu(path[i].p_hdr->eh_entries)); | |
2936 | } else { | |
d0d856e8 | 2937 | /* we were already here, see at next index */ |
a86c6181 AT |
2938 | path[i].p_idx--; |
2939 | } | |
2940 | ||
2941 | ext_debug("level %d - index, first 0x%p, cur 0x%p\n", | |
2942 | i, EXT_FIRST_INDEX(path[i].p_hdr), | |
2943 | path[i].p_idx); | |
2944 | if (ext4_ext_more_to_rm(path + i)) { | |
c29c0ae7 | 2945 | struct buffer_head *bh; |
a86c6181 | 2946 | /* go to the next level */ |
2ae02107 | 2947 | ext_debug("move to level %d (block %llu)\n", |
bf89d16f | 2948 | i + 1, ext4_idx_pblock(path[i].p_idx)); |
a86c6181 | 2949 | memset(path + i + 1, 0, sizeof(*path)); |
7d7ea89e | 2950 | bh = read_extent_tree_block(inode, |
107a7bd3 TT |
2951 | ext4_idx_pblock(path[i].p_idx), depth - i - 1, |
2952 | EXT4_EX_NOCACHE); | |
7d7ea89e | 2953 | if (IS_ERR(bh)) { |
a86c6181 | 2954 | /* should we reset i_size? */ |
7d7ea89e | 2955 | err = PTR_ERR(bh); |
a86c6181 AT |
2956 | break; |
2957 | } | |
76828c88 TT |
2958 | /* Yield here to deal with large extent trees. |
2959 | * Should be a no-op if we did IO above. */ | |
2960 | cond_resched(); | |
c29c0ae7 AT |
2961 | if (WARN_ON(i + 1 > depth)) { |
2962 | err = -EIO; | |
c29c0ae7 AT |
2963 | break; |
2964 | } | |
2965 | path[i + 1].p_bh = bh; | |
a86c6181 | 2966 | |
d0d856e8 RD |
2967 | /* save actual number of indexes since this |
2968 | * number is changed at the next iteration */ | |
a86c6181 AT |
2969 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries); |
2970 | i++; | |
2971 | } else { | |
d0d856e8 | 2972 | /* we finished processing this index, go up */ |
a86c6181 | 2973 | if (path[i].p_hdr->eh_entries == 0 && i > 0) { |
d0d856e8 | 2974 | /* index is empty, remove it; |
a86c6181 AT |
2975 | * handle must be already prepared by the |
2976 | * truncatei_leaf() */ | |
c36575e6 | 2977 | err = ext4_ext_rm_idx(handle, inode, path, i); |
a86c6181 | 2978 | } |
d0d856e8 | 2979 | /* root level has p_bh == NULL, brelse() eats this */ |
a86c6181 AT |
2980 | brelse(path[i].p_bh); |
2981 | path[i].p_bh = NULL; | |
2982 | i--; | |
2983 | ext_debug("return to level %d\n", i); | |
2984 | } | |
2985 | } | |
2986 | ||
61801325 LC |
2987 | trace_ext4_ext_remove_space_done(inode, start, end, depth, |
2988 | partial_cluster, path->p_hdr->eh_entries); | |
d8990240 | 2989 | |
7b415bf6 AK |
2990 | /* If we still have something in the partial cluster and we have removed |
2991 | * even the first extent, then we should free the blocks in the partial | |
2992 | * cluster as well. */ | |
d23142c6 | 2993 | if (partial_cluster > 0 && path->p_hdr->eh_entries == 0) { |
981250ca | 2994 | int flags = get_default_free_blocks_flags(inode); |
7b415bf6 AK |
2995 | |
2996 | ext4_free_blocks(handle, inode, NULL, | |
2997 | EXT4_C2B(EXT4_SB(sb), partial_cluster), | |
2998 | EXT4_SB(sb)->s_cluster_ratio, flags); | |
2999 | partial_cluster = 0; | |
3000 | } | |
3001 | ||
a86c6181 AT |
3002 | /* TODO: flexible tree reduction should be here */ |
3003 | if (path->p_hdr->eh_entries == 0) { | |
3004 | /* | |
d0d856e8 RD |
3005 | * truncate to zero freed all the tree, |
3006 | * so we need to correct eh_depth | |
a86c6181 AT |
3007 | */ |
3008 | err = ext4_ext_get_access(handle, inode, path); | |
3009 | if (err == 0) { | |
3010 | ext_inode_hdr(inode)->eh_depth = 0; | |
3011 | ext_inode_hdr(inode)->eh_max = | |
55ad63bf | 3012 | cpu_to_le16(ext4_ext_space_root(inode, 0)); |
a86c6181 AT |
3013 | err = ext4_ext_dirty(handle, inode, path); |
3014 | } | |
3015 | } | |
3016 | out: | |
a86c6181 AT |
3017 | ext4_ext_drop_refs(path); |
3018 | kfree(path); | |
968dee77 AS |
3019 | if (err == -EAGAIN) { |
3020 | path = NULL; | |
0617b83f | 3021 | goto again; |
968dee77 | 3022 | } |
a86c6181 AT |
3023 | ext4_journal_stop(handle); |
3024 | ||
3025 | return err; | |
3026 | } | |
3027 | ||
3028 | /* | |
3029 | * called at mount time | |
3030 | */ | |
3031 | void ext4_ext_init(struct super_block *sb) | |
3032 | { | |
3033 | /* | |
3034 | * possible initialization would be here | |
3035 | */ | |
3036 | ||
83982b6f | 3037 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) { |
90576c0b | 3038 | #if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS) |
92b97816 | 3039 | printk(KERN_INFO "EXT4-fs: file extents enabled" |
bbf2f9fb | 3040 | #ifdef AGGRESSIVE_TEST |
92b97816 | 3041 | ", aggressive tests" |
a86c6181 AT |
3042 | #endif |
3043 | #ifdef CHECK_BINSEARCH | |
92b97816 | 3044 | ", check binsearch" |
a86c6181 AT |
3045 | #endif |
3046 | #ifdef EXTENTS_STATS | |
92b97816 | 3047 | ", stats" |
a86c6181 | 3048 | #endif |
92b97816 | 3049 | "\n"); |
90576c0b | 3050 | #endif |
a86c6181 AT |
3051 | #ifdef EXTENTS_STATS |
3052 | spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock); | |
3053 | EXT4_SB(sb)->s_ext_min = 1 << 30; | |
3054 | EXT4_SB(sb)->s_ext_max = 0; | |
3055 | #endif | |
3056 | } | |
3057 | } | |
3058 | ||
3059 | /* | |
3060 | * called at umount time | |
3061 | */ | |
3062 | void ext4_ext_release(struct super_block *sb) | |
3063 | { | |
83982b6f | 3064 | if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) |
a86c6181 AT |
3065 | return; |
3066 | ||
3067 | #ifdef EXTENTS_STATS | |
3068 | if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) { | |
3069 | struct ext4_sb_info *sbi = EXT4_SB(sb); | |
3070 | printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n", | |
3071 | sbi->s_ext_blocks, sbi->s_ext_extents, | |
3072 | sbi->s_ext_blocks / sbi->s_ext_extents); | |
3073 | printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n", | |
3074 | sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max); | |
3075 | } | |
3076 | #endif | |
3077 | } | |
3078 | ||
d7b2a00c ZL |
3079 | static int ext4_zeroout_es(struct inode *inode, struct ext4_extent *ex) |
3080 | { | |
3081 | ext4_lblk_t ee_block; | |
3082 | ext4_fsblk_t ee_pblock; | |
3083 | unsigned int ee_len; | |
3084 | ||
3085 | ee_block = le32_to_cpu(ex->ee_block); | |
3086 | ee_len = ext4_ext_get_actual_len(ex); | |
3087 | ee_pblock = ext4_ext_pblock(ex); | |
3088 | ||
3089 | if (ee_len == 0) | |
3090 | return 0; | |
3091 | ||
3092 | return ext4_es_insert_extent(inode, ee_block, ee_len, ee_pblock, | |
3093 | EXTENT_STATUS_WRITTEN); | |
3094 | } | |
3095 | ||
093a088b AK |
3096 | /* FIXME!! we need to try to merge to left or right after zero-out */ |
3097 | static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex) | |
3098 | { | |
2407518d LC |
3099 | ext4_fsblk_t ee_pblock; |
3100 | unsigned int ee_len; | |
b720303d | 3101 | int ret; |
093a088b | 3102 | |
093a088b | 3103 | ee_len = ext4_ext_get_actual_len(ex); |
bf89d16f | 3104 | ee_pblock = ext4_ext_pblock(ex); |
b720303d | 3105 | |
a107e5a3 | 3106 | ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS); |
2407518d LC |
3107 | if (ret > 0) |
3108 | ret = 0; | |
093a088b | 3109 | |
2407518d | 3110 | return ret; |
093a088b AK |
3111 | } |
3112 | ||
47ea3bb5 YY |
3113 | /* |
3114 | * ext4_split_extent_at() splits an extent at given block. | |
3115 | * | |
3116 | * @handle: the journal handle | |
3117 | * @inode: the file inode | |
3118 | * @path: the path to the extent | |
3119 | * @split: the logical block where the extent is splitted. | |
3120 | * @split_flags: indicates if the extent could be zeroout if split fails, and | |
556615dc | 3121 | * the states(init or unwritten) of new extents. |
47ea3bb5 YY |
3122 | * @flags: flags used to insert new extent to extent tree. |
3123 | * | |
3124 | * | |
3125 | * Splits extent [a, b] into two extents [a, @split) and [@split, b], states | |
3126 | * of which are deterimined by split_flag. | |
3127 | * | |
3128 | * There are two cases: | |
3129 | * a> the extent are splitted into two extent. | |
3130 | * b> split is not needed, and just mark the extent. | |
3131 | * | |
3132 | * return 0 on success. | |
3133 | */ | |
3134 | static int ext4_split_extent_at(handle_t *handle, | |
3135 | struct inode *inode, | |
3136 | struct ext4_ext_path *path, | |
3137 | ext4_lblk_t split, | |
3138 | int split_flag, | |
3139 | int flags) | |
3140 | { | |
3141 | ext4_fsblk_t newblock; | |
3142 | ext4_lblk_t ee_block; | |
adb23551 | 3143 | struct ext4_extent *ex, newex, orig_ex, zero_ex; |
47ea3bb5 YY |
3144 | struct ext4_extent *ex2 = NULL; |
3145 | unsigned int ee_len, depth; | |
3146 | int err = 0; | |
3147 | ||
dee1f973 DM |
3148 | BUG_ON((split_flag & (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2)) == |
3149 | (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2)); | |
3150 | ||
47ea3bb5 YY |
3151 | ext_debug("ext4_split_extents_at: inode %lu, logical" |
3152 | "block %llu\n", inode->i_ino, (unsigned long long)split); | |
3153 | ||
3154 | ext4_ext_show_leaf(inode, path); | |
3155 | ||
3156 | depth = ext_depth(inode); | |
3157 | ex = path[depth].p_ext; | |
3158 | ee_block = le32_to_cpu(ex->ee_block); | |
3159 | ee_len = ext4_ext_get_actual_len(ex); | |
3160 | newblock = split - ee_block + ext4_ext_pblock(ex); | |
3161 | ||
3162 | BUG_ON(split < ee_block || split >= (ee_block + ee_len)); | |
556615dc | 3163 | BUG_ON(!ext4_ext_is_unwritten(ex) && |
357b66fd | 3164 | split_flag & (EXT4_EXT_MAY_ZEROOUT | |
556615dc LC |
3165 | EXT4_EXT_MARK_UNWRIT1 | |
3166 | EXT4_EXT_MARK_UNWRIT2)); | |
47ea3bb5 YY |
3167 | |
3168 | err = ext4_ext_get_access(handle, inode, path + depth); | |
3169 | if (err) | |
3170 | goto out; | |
3171 | ||
3172 | if (split == ee_block) { | |
3173 | /* | |
3174 | * case b: block @split is the block that the extent begins with | |
3175 | * then we just change the state of the extent, and splitting | |
3176 | * is not needed. | |
3177 | */ | |
556615dc LC |
3178 | if (split_flag & EXT4_EXT_MARK_UNWRIT2) |
3179 | ext4_ext_mark_unwritten(ex); | |
47ea3bb5 YY |
3180 | else |
3181 | ext4_ext_mark_initialized(ex); | |
3182 | ||
3183 | if (!(flags & EXT4_GET_BLOCKS_PRE_IO)) | |
ecb94f5f | 3184 | ext4_ext_try_to_merge(handle, inode, path, ex); |
47ea3bb5 | 3185 | |
ecb94f5f | 3186 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
47ea3bb5 YY |
3187 | goto out; |
3188 | } | |
3189 | ||
3190 | /* case a */ | |
3191 | memcpy(&orig_ex, ex, sizeof(orig_ex)); | |
3192 | ex->ee_len = cpu_to_le16(split - ee_block); | |
556615dc LC |
3193 | if (split_flag & EXT4_EXT_MARK_UNWRIT1) |
3194 | ext4_ext_mark_unwritten(ex); | |
47ea3bb5 YY |
3195 | |
3196 | /* | |
3197 | * path may lead to new leaf, not to original leaf any more | |
3198 | * after ext4_ext_insert_extent() returns, | |
3199 | */ | |
3200 | err = ext4_ext_dirty(handle, inode, path + depth); | |
3201 | if (err) | |
3202 | goto fix_extent_len; | |
3203 | ||
3204 | ex2 = &newex; | |
3205 | ex2->ee_block = cpu_to_le32(split); | |
3206 | ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block)); | |
3207 | ext4_ext_store_pblock(ex2, newblock); | |
556615dc LC |
3208 | if (split_flag & EXT4_EXT_MARK_UNWRIT2) |
3209 | ext4_ext_mark_unwritten(ex2); | |
47ea3bb5 YY |
3210 | |
3211 | err = ext4_ext_insert_extent(handle, inode, path, &newex, flags); | |
3212 | if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) { | |
dee1f973 | 3213 | if (split_flag & (EXT4_EXT_DATA_VALID1|EXT4_EXT_DATA_VALID2)) { |
adb23551 | 3214 | if (split_flag & EXT4_EXT_DATA_VALID1) { |
dee1f973 | 3215 | err = ext4_ext_zeroout(inode, ex2); |
adb23551 | 3216 | zero_ex.ee_block = ex2->ee_block; |
8cde7ad1 ZL |
3217 | zero_ex.ee_len = cpu_to_le16( |
3218 | ext4_ext_get_actual_len(ex2)); | |
adb23551 ZL |
3219 | ext4_ext_store_pblock(&zero_ex, |
3220 | ext4_ext_pblock(ex2)); | |
3221 | } else { | |
dee1f973 | 3222 | err = ext4_ext_zeroout(inode, ex); |
adb23551 | 3223 | zero_ex.ee_block = ex->ee_block; |
8cde7ad1 ZL |
3224 | zero_ex.ee_len = cpu_to_le16( |
3225 | ext4_ext_get_actual_len(ex)); | |
adb23551 ZL |
3226 | ext4_ext_store_pblock(&zero_ex, |
3227 | ext4_ext_pblock(ex)); | |
3228 | } | |
3229 | } else { | |
dee1f973 | 3230 | err = ext4_ext_zeroout(inode, &orig_ex); |
adb23551 | 3231 | zero_ex.ee_block = orig_ex.ee_block; |
8cde7ad1 ZL |
3232 | zero_ex.ee_len = cpu_to_le16( |
3233 | ext4_ext_get_actual_len(&orig_ex)); | |
adb23551 ZL |
3234 | ext4_ext_store_pblock(&zero_ex, |
3235 | ext4_ext_pblock(&orig_ex)); | |
3236 | } | |
dee1f973 | 3237 | |
47ea3bb5 YY |
3238 | if (err) |
3239 | goto fix_extent_len; | |
3240 | /* update the extent length and mark as initialized */ | |
af1584f5 | 3241 | ex->ee_len = cpu_to_le16(ee_len); |
ecb94f5f TT |
3242 | ext4_ext_try_to_merge(handle, inode, path, ex); |
3243 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); | |
adb23551 ZL |
3244 | if (err) |
3245 | goto fix_extent_len; | |
3246 | ||
3247 | /* update extent status tree */ | |
d7b2a00c | 3248 | err = ext4_zeroout_es(inode, &zero_ex); |
adb23551 | 3249 | |
47ea3bb5 YY |
3250 | goto out; |
3251 | } else if (err) | |
3252 | goto fix_extent_len; | |
3253 | ||
3254 | out: | |
3255 | ext4_ext_show_leaf(inode, path); | |
3256 | return err; | |
3257 | ||
3258 | fix_extent_len: | |
3259 | ex->ee_len = orig_ex.ee_len; | |
29faed16 | 3260 | ext4_ext_dirty(handle, inode, path + path->p_depth); |
47ea3bb5 YY |
3261 | return err; |
3262 | } | |
3263 | ||
3264 | /* | |
3265 | * ext4_split_extents() splits an extent and mark extent which is covered | |
3266 | * by @map as split_flags indicates | |
3267 | * | |
70261f56 | 3268 | * It may result in splitting the extent into multiple extents (up to three) |
47ea3bb5 YY |
3269 | * There are three possibilities: |
3270 | * a> There is no split required | |
3271 | * b> Splits in two extents: Split is happening at either end of the extent | |
3272 | * c> Splits in three extents: Somone is splitting in middle of the extent | |
3273 | * | |
3274 | */ | |
3275 | static int ext4_split_extent(handle_t *handle, | |
3276 | struct inode *inode, | |
3277 | struct ext4_ext_path *path, | |
3278 | struct ext4_map_blocks *map, | |
3279 | int split_flag, | |
3280 | int flags) | |
3281 | { | |
3282 | ext4_lblk_t ee_block; | |
3283 | struct ext4_extent *ex; | |
3284 | unsigned int ee_len, depth; | |
3285 | int err = 0; | |
556615dc | 3286 | int unwritten; |
47ea3bb5 | 3287 | int split_flag1, flags1; |
3a225670 | 3288 | int allocated = map->m_len; |
47ea3bb5 YY |
3289 | |
3290 | depth = ext_depth(inode); | |
3291 | ex = path[depth].p_ext; | |
3292 | ee_block = le32_to_cpu(ex->ee_block); | |
3293 | ee_len = ext4_ext_get_actual_len(ex); | |
556615dc | 3294 | unwritten = ext4_ext_is_unwritten(ex); |
47ea3bb5 YY |
3295 | |
3296 | if (map->m_lblk + map->m_len < ee_block + ee_len) { | |
dee1f973 | 3297 | split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT; |
47ea3bb5 | 3298 | flags1 = flags | EXT4_GET_BLOCKS_PRE_IO; |
556615dc LC |
3299 | if (unwritten) |
3300 | split_flag1 |= EXT4_EXT_MARK_UNWRIT1 | | |
3301 | EXT4_EXT_MARK_UNWRIT2; | |
dee1f973 DM |
3302 | if (split_flag & EXT4_EXT_DATA_VALID2) |
3303 | split_flag1 |= EXT4_EXT_DATA_VALID1; | |
47ea3bb5 YY |
3304 | err = ext4_split_extent_at(handle, inode, path, |
3305 | map->m_lblk + map->m_len, split_flag1, flags1); | |
93917411 YY |
3306 | if (err) |
3307 | goto out; | |
3a225670 ZL |
3308 | } else { |
3309 | allocated = ee_len - (map->m_lblk - ee_block); | |
47ea3bb5 | 3310 | } |
357b66fd DM |
3311 | /* |
3312 | * Update path is required because previous ext4_split_extent_at() may | |
3313 | * result in split of original leaf or extent zeroout. | |
3314 | */ | |
47ea3bb5 | 3315 | ext4_ext_drop_refs(path); |
107a7bd3 | 3316 | path = ext4_ext_find_extent(inode, map->m_lblk, path, 0); |
47ea3bb5 YY |
3317 | if (IS_ERR(path)) |
3318 | return PTR_ERR(path); | |
357b66fd DM |
3319 | depth = ext_depth(inode); |
3320 | ex = path[depth].p_ext; | |
a18ed359 DM |
3321 | if (!ex) { |
3322 | EXT4_ERROR_INODE(inode, "unexpected hole at %lu", | |
3323 | (unsigned long) map->m_lblk); | |
3324 | return -EIO; | |
3325 | } | |
556615dc | 3326 | unwritten = ext4_ext_is_unwritten(ex); |
357b66fd | 3327 | split_flag1 = 0; |
47ea3bb5 YY |
3328 | |
3329 | if (map->m_lblk >= ee_block) { | |
357b66fd | 3330 | split_flag1 = split_flag & EXT4_EXT_DATA_VALID2; |
556615dc LC |
3331 | if (unwritten) { |
3332 | split_flag1 |= EXT4_EXT_MARK_UNWRIT1; | |
357b66fd | 3333 | split_flag1 |= split_flag & (EXT4_EXT_MAY_ZEROOUT | |
556615dc | 3334 | EXT4_EXT_MARK_UNWRIT2); |
357b66fd | 3335 | } |
47ea3bb5 YY |
3336 | err = ext4_split_extent_at(handle, inode, path, |
3337 | map->m_lblk, split_flag1, flags); | |
3338 | if (err) | |
3339 | goto out; | |
3340 | } | |
3341 | ||
3342 | ext4_ext_show_leaf(inode, path); | |
3343 | out: | |
3a225670 | 3344 | return err ? err : allocated; |
47ea3bb5 YY |
3345 | } |
3346 | ||
56055d3a | 3347 | /* |
e35fd660 | 3348 | * This function is called by ext4_ext_map_blocks() if someone tries to write |
556615dc | 3349 | * to an unwritten extent. It may result in splitting the unwritten |
25985edc | 3350 | * extent into multiple extents (up to three - one initialized and two |
556615dc | 3351 | * unwritten). |
56055d3a AA |
3352 | * There are three possibilities: |
3353 | * a> There is no split required: Entire extent should be initialized | |
3354 | * b> Splits in two extents: Write is happening at either end of the extent | |
3355 | * c> Splits in three extents: Somone is writing in middle of the extent | |
6f91bc5f EG |
3356 | * |
3357 | * Pre-conditions: | |
556615dc | 3358 | * - The extent pointed to by 'path' is unwritten. |
6f91bc5f EG |
3359 | * - The extent pointed to by 'path' contains a superset |
3360 | * of the logical span [map->m_lblk, map->m_lblk + map->m_len). | |
3361 | * | |
3362 | * Post-conditions on success: | |
3363 | * - the returned value is the number of blocks beyond map->l_lblk | |
3364 | * that are allocated and initialized. | |
3365 | * It is guaranteed to be >= map->m_len. | |
56055d3a | 3366 | */ |
725d26d3 | 3367 | static int ext4_ext_convert_to_initialized(handle_t *handle, |
e35fd660 TT |
3368 | struct inode *inode, |
3369 | struct ext4_map_blocks *map, | |
27dd4385 LC |
3370 | struct ext4_ext_path *path, |
3371 | int flags) | |
56055d3a | 3372 | { |
67a5da56 | 3373 | struct ext4_sb_info *sbi; |
6f91bc5f | 3374 | struct ext4_extent_header *eh; |
667eff35 YY |
3375 | struct ext4_map_blocks split_map; |
3376 | struct ext4_extent zero_ex; | |
bc2d9db4 | 3377 | struct ext4_extent *ex, *abut_ex; |
21ca087a | 3378 | ext4_lblk_t ee_block, eof_block; |
bc2d9db4 LC |
3379 | unsigned int ee_len, depth, map_len = map->m_len; |
3380 | int allocated = 0, max_zeroout = 0; | |
56055d3a | 3381 | int err = 0; |
667eff35 | 3382 | int split_flag = 0; |
21ca087a DM |
3383 | |
3384 | ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical" | |
3385 | "block %llu, max_blocks %u\n", inode->i_ino, | |
bc2d9db4 | 3386 | (unsigned long long)map->m_lblk, map_len); |
21ca087a | 3387 | |
67a5da56 | 3388 | sbi = EXT4_SB(inode->i_sb); |
21ca087a DM |
3389 | eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >> |
3390 | inode->i_sb->s_blocksize_bits; | |
bc2d9db4 LC |
3391 | if (eof_block < map->m_lblk + map_len) |
3392 | eof_block = map->m_lblk + map_len; | |
56055d3a AA |
3393 | |
3394 | depth = ext_depth(inode); | |
6f91bc5f | 3395 | eh = path[depth].p_hdr; |
56055d3a AA |
3396 | ex = path[depth].p_ext; |
3397 | ee_block = le32_to_cpu(ex->ee_block); | |
3398 | ee_len = ext4_ext_get_actual_len(ex); | |
adb23551 | 3399 | zero_ex.ee_len = 0; |
56055d3a | 3400 | |
6f91bc5f EG |
3401 | trace_ext4_ext_convert_to_initialized_enter(inode, map, ex); |
3402 | ||
3403 | /* Pre-conditions */ | |
556615dc | 3404 | BUG_ON(!ext4_ext_is_unwritten(ex)); |
6f91bc5f | 3405 | BUG_ON(!in_range(map->m_lblk, ee_block, ee_len)); |
6f91bc5f EG |
3406 | |
3407 | /* | |
3408 | * Attempt to transfer newly initialized blocks from the currently | |
556615dc | 3409 | * unwritten extent to its neighbor. This is much cheaper |
6f91bc5f | 3410 | * than an insertion followed by a merge as those involve costly |
bc2d9db4 LC |
3411 | * memmove() calls. Transferring to the left is the common case in |
3412 | * steady state for workloads doing fallocate(FALLOC_FL_KEEP_SIZE) | |
3413 | * followed by append writes. | |
6f91bc5f EG |
3414 | * |
3415 | * Limitations of the current logic: | |
bc2d9db4 | 3416 | * - L1: we do not deal with writes covering the whole extent. |
6f91bc5f EG |
3417 | * This would require removing the extent if the transfer |
3418 | * is possible. | |
bc2d9db4 | 3419 | * - L2: we only attempt to merge with an extent stored in the |
6f91bc5f EG |
3420 | * same extent tree node. |
3421 | */ | |
bc2d9db4 LC |
3422 | if ((map->m_lblk == ee_block) && |
3423 | /* See if we can merge left */ | |
3424 | (map_len < ee_len) && /*L1*/ | |
3425 | (ex > EXT_FIRST_EXTENT(eh))) { /*L2*/ | |
6f91bc5f EG |
3426 | ext4_lblk_t prev_lblk; |
3427 | ext4_fsblk_t prev_pblk, ee_pblk; | |
bc2d9db4 | 3428 | unsigned int prev_len; |
6f91bc5f | 3429 | |
bc2d9db4 LC |
3430 | abut_ex = ex - 1; |
3431 | prev_lblk = le32_to_cpu(abut_ex->ee_block); | |
3432 | prev_len = ext4_ext_get_actual_len(abut_ex); | |
3433 | prev_pblk = ext4_ext_pblock(abut_ex); | |
6f91bc5f | 3434 | ee_pblk = ext4_ext_pblock(ex); |
6f91bc5f EG |
3435 | |
3436 | /* | |
bc2d9db4 | 3437 | * A transfer of blocks from 'ex' to 'abut_ex' is allowed |
6f91bc5f | 3438 | * upon those conditions: |
bc2d9db4 LC |
3439 | * - C1: abut_ex is initialized, |
3440 | * - C2: abut_ex is logically abutting ex, | |
3441 | * - C3: abut_ex is physically abutting ex, | |
3442 | * - C4: abut_ex can receive the additional blocks without | |
6f91bc5f EG |
3443 | * overflowing the (initialized) length limit. |
3444 | */ | |
556615dc | 3445 | if ((!ext4_ext_is_unwritten(abut_ex)) && /*C1*/ |
6f91bc5f EG |
3446 | ((prev_lblk + prev_len) == ee_block) && /*C2*/ |
3447 | ((prev_pblk + prev_len) == ee_pblk) && /*C3*/ | |
bc2d9db4 | 3448 | (prev_len < (EXT_INIT_MAX_LEN - map_len))) { /*C4*/ |
6f91bc5f EG |
3449 | err = ext4_ext_get_access(handle, inode, path + depth); |
3450 | if (err) | |
3451 | goto out; | |
3452 | ||
3453 | trace_ext4_ext_convert_to_initialized_fastpath(inode, | |
bc2d9db4 | 3454 | map, ex, abut_ex); |
6f91bc5f | 3455 | |
bc2d9db4 LC |
3456 | /* Shift the start of ex by 'map_len' blocks */ |
3457 | ex->ee_block = cpu_to_le32(ee_block + map_len); | |
3458 | ext4_ext_store_pblock(ex, ee_pblk + map_len); | |
3459 | ex->ee_len = cpu_to_le16(ee_len - map_len); | |
556615dc | 3460 | ext4_ext_mark_unwritten(ex); /* Restore the flag */ |
6f91bc5f | 3461 | |
bc2d9db4 LC |
3462 | /* Extend abut_ex by 'map_len' blocks */ |
3463 | abut_ex->ee_len = cpu_to_le16(prev_len + map_len); | |
6f91bc5f | 3464 | |
bc2d9db4 LC |
3465 | /* Result: number of initialized blocks past m_lblk */ |
3466 | allocated = map_len; | |
3467 | } | |
3468 | } else if (((map->m_lblk + map_len) == (ee_block + ee_len)) && | |
3469 | (map_len < ee_len) && /*L1*/ | |
3470 | ex < EXT_LAST_EXTENT(eh)) { /*L2*/ | |
3471 | /* See if we can merge right */ | |
3472 | ext4_lblk_t next_lblk; | |
3473 | ext4_fsblk_t next_pblk, ee_pblk; | |
3474 | unsigned int next_len; | |
3475 | ||
3476 | abut_ex = ex + 1; | |
3477 | next_lblk = le32_to_cpu(abut_ex->ee_block); | |
3478 | next_len = ext4_ext_get_actual_len(abut_ex); | |
3479 | next_pblk = ext4_ext_pblock(abut_ex); | |
3480 | ee_pblk = ext4_ext_pblock(ex); | |
6f91bc5f | 3481 | |
bc2d9db4 LC |
3482 | /* |
3483 | * A transfer of blocks from 'ex' to 'abut_ex' is allowed | |
3484 | * upon those conditions: | |
3485 | * - C1: abut_ex is initialized, | |
3486 | * - C2: abut_ex is logically abutting ex, | |
3487 | * - C3: abut_ex is physically abutting ex, | |
3488 | * - C4: abut_ex can receive the additional blocks without | |
3489 | * overflowing the (initialized) length limit. | |
3490 | */ | |
556615dc | 3491 | if ((!ext4_ext_is_unwritten(abut_ex)) && /*C1*/ |
bc2d9db4 LC |
3492 | ((map->m_lblk + map_len) == next_lblk) && /*C2*/ |
3493 | ((ee_pblk + ee_len) == next_pblk) && /*C3*/ | |
3494 | (next_len < (EXT_INIT_MAX_LEN - map_len))) { /*C4*/ | |
3495 | err = ext4_ext_get_access(handle, inode, path + depth); | |
3496 | if (err) | |
3497 | goto out; | |
3498 | ||
3499 | trace_ext4_ext_convert_to_initialized_fastpath(inode, | |
3500 | map, ex, abut_ex); | |
3501 | ||
3502 | /* Shift the start of abut_ex by 'map_len' blocks */ | |
3503 | abut_ex->ee_block = cpu_to_le32(next_lblk - map_len); | |
3504 | ext4_ext_store_pblock(abut_ex, next_pblk - map_len); | |
3505 | ex->ee_len = cpu_to_le16(ee_len - map_len); | |
556615dc | 3506 | ext4_ext_mark_unwritten(ex); /* Restore the flag */ |
bc2d9db4 LC |
3507 | |
3508 | /* Extend abut_ex by 'map_len' blocks */ | |
3509 | abut_ex->ee_len = cpu_to_le16(next_len + map_len); | |
6f91bc5f EG |
3510 | |
3511 | /* Result: number of initialized blocks past m_lblk */ | |
bc2d9db4 | 3512 | allocated = map_len; |
6f91bc5f EG |
3513 | } |
3514 | } | |
bc2d9db4 LC |
3515 | if (allocated) { |
3516 | /* Mark the block containing both extents as dirty */ | |
3517 | ext4_ext_dirty(handle, inode, path + depth); | |
3518 | ||
3519 | /* Update path to point to the right extent */ | |
3520 | path[depth].p_ext = abut_ex; | |
3521 | goto out; | |
3522 | } else | |
3523 | allocated = ee_len - (map->m_lblk - ee_block); | |
6f91bc5f | 3524 | |
667eff35 | 3525 | WARN_ON(map->m_lblk < ee_block); |
21ca087a DM |
3526 | /* |
3527 | * It is safe to convert extent to initialized via explicit | |
9e740568 | 3528 | * zeroout only if extent is fully inside i_size or new_size. |
21ca087a | 3529 | */ |
667eff35 | 3530 | split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0; |
21ca087a | 3531 | |
67a5da56 ZL |
3532 | if (EXT4_EXT_MAY_ZEROOUT & split_flag) |
3533 | max_zeroout = sbi->s_extent_max_zeroout_kb >> | |
4f42f80a | 3534 | (inode->i_sb->s_blocksize_bits - 10); |
67a5da56 ZL |
3535 | |
3536 | /* If extent is less than s_max_zeroout_kb, zeroout directly */ | |
3537 | if (max_zeroout && (ee_len <= max_zeroout)) { | |
667eff35 | 3538 | err = ext4_ext_zeroout(inode, ex); |
3977c965 | 3539 | if (err) |
d03856bd | 3540 | goto out; |
adb23551 | 3541 | zero_ex.ee_block = ex->ee_block; |
8cde7ad1 | 3542 | zero_ex.ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)); |
adb23551 | 3543 | ext4_ext_store_pblock(&zero_ex, ext4_ext_pblock(ex)); |
d03856bd AK |
3544 | |
3545 | err = ext4_ext_get_access(handle, inode, path + depth); | |
3546 | if (err) | |
3547 | goto out; | |
667eff35 | 3548 | ext4_ext_mark_initialized(ex); |
ecb94f5f TT |
3549 | ext4_ext_try_to_merge(handle, inode, path, ex); |
3550 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); | |
667eff35 | 3551 | goto out; |
56055d3a | 3552 | } |
667eff35 | 3553 | |
56055d3a | 3554 | /* |
667eff35 YY |
3555 | * four cases: |
3556 | * 1. split the extent into three extents. | |
3557 | * 2. split the extent into two extents, zeroout the first half. | |
3558 | * 3. split the extent into two extents, zeroout the second half. | |
3559 | * 4. split the extent into two extents with out zeroout. | |
56055d3a | 3560 | */ |
667eff35 YY |
3561 | split_map.m_lblk = map->m_lblk; |
3562 | split_map.m_len = map->m_len; | |
3563 | ||
67a5da56 ZL |
3564 | if (max_zeroout && (allocated > map->m_len)) { |
3565 | if (allocated <= max_zeroout) { | |
667eff35 YY |
3566 | /* case 3 */ |
3567 | zero_ex.ee_block = | |
9b940f8e AH |
3568 | cpu_to_le32(map->m_lblk); |
3569 | zero_ex.ee_len = cpu_to_le16(allocated); | |
667eff35 YY |
3570 | ext4_ext_store_pblock(&zero_ex, |
3571 | ext4_ext_pblock(ex) + map->m_lblk - ee_block); | |
3572 | err = ext4_ext_zeroout(inode, &zero_ex); | |
56055d3a AA |
3573 | if (err) |
3574 | goto out; | |
667eff35 YY |
3575 | split_map.m_lblk = map->m_lblk; |
3576 | split_map.m_len = allocated; | |
67a5da56 | 3577 | } else if (map->m_lblk - ee_block + map->m_len < max_zeroout) { |
667eff35 YY |
3578 | /* case 2 */ |
3579 | if (map->m_lblk != ee_block) { | |
3580 | zero_ex.ee_block = ex->ee_block; | |
3581 | zero_ex.ee_len = cpu_to_le16(map->m_lblk - | |
3582 | ee_block); | |
3583 | ext4_ext_store_pblock(&zero_ex, | |
3584 | ext4_ext_pblock(ex)); | |
3585 | err = ext4_ext_zeroout(inode, &zero_ex); | |
3586 | if (err) | |
3587 | goto out; | |
3588 | } | |
3589 | ||
667eff35 | 3590 | split_map.m_lblk = ee_block; |
9b940f8e AH |
3591 | split_map.m_len = map->m_lblk - ee_block + map->m_len; |
3592 | allocated = map->m_len; | |
56055d3a AA |
3593 | } |
3594 | } | |
667eff35 YY |
3595 | |
3596 | allocated = ext4_split_extent(handle, inode, path, | |
27dd4385 | 3597 | &split_map, split_flag, flags); |
667eff35 YY |
3598 | if (allocated < 0) |
3599 | err = allocated; | |
3600 | ||
56055d3a | 3601 | out: |
adb23551 ZL |
3602 | /* If we have gotten a failure, don't zero out status tree */ |
3603 | if (!err) | |
d7b2a00c | 3604 | err = ext4_zeroout_es(inode, &zero_ex); |
56055d3a AA |
3605 | return err ? err : allocated; |
3606 | } | |
3607 | ||
0031462b | 3608 | /* |
e35fd660 | 3609 | * This function is called by ext4_ext_map_blocks() from |
0031462b | 3610 | * ext4_get_blocks_dio_write() when DIO to write |
556615dc | 3611 | * to an unwritten extent. |
0031462b | 3612 | * |
556615dc LC |
3613 | * Writing to an unwritten extent may result in splitting the unwritten |
3614 | * extent into multiple initialized/unwritten extents (up to three) | |
0031462b | 3615 | * There are three possibilities: |
556615dc | 3616 | * a> There is no split required: Entire extent should be unwritten |
0031462b MC |
3617 | * b> Splits in two extents: Write is happening at either end of the extent |
3618 | * c> Splits in three extents: Somone is writing in middle of the extent | |
3619 | * | |
b8a86845 LC |
3620 | * This works the same way in the case of initialized -> unwritten conversion. |
3621 | * | |
0031462b | 3622 | * One of more index blocks maybe needed if the extent tree grow after |
556615dc LC |
3623 | * the unwritten extent split. To prevent ENOSPC occur at the IO |
3624 | * complete, we need to split the unwritten extent before DIO submit | |
3625 | * the IO. The unwritten extent called at this time will be split | |
3626 | * into three unwritten extent(at most). After IO complete, the part | |
0031462b MC |
3627 | * being filled will be convert to initialized by the end_io callback function |
3628 | * via ext4_convert_unwritten_extents(). | |
ba230c3f | 3629 | * |
556615dc | 3630 | * Returns the size of unwritten extent to be written on success. |
0031462b | 3631 | */ |
b8a86845 | 3632 | static int ext4_split_convert_extents(handle_t *handle, |
0031462b | 3633 | struct inode *inode, |
e35fd660 | 3634 | struct ext4_map_blocks *map, |
0031462b | 3635 | struct ext4_ext_path *path, |
0031462b MC |
3636 | int flags) |
3637 | { | |
667eff35 YY |
3638 | ext4_lblk_t eof_block; |
3639 | ext4_lblk_t ee_block; | |
3640 | struct ext4_extent *ex; | |
3641 | unsigned int ee_len; | |
3642 | int split_flag = 0, depth; | |
21ca087a | 3643 | |
b8a86845 LC |
3644 | ext_debug("%s: inode %lu, logical block %llu, max_blocks %u\n", |
3645 | __func__, inode->i_ino, | |
3646 | (unsigned long long)map->m_lblk, map->m_len); | |
21ca087a DM |
3647 | |
3648 | eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >> | |
3649 | inode->i_sb->s_blocksize_bits; | |
e35fd660 TT |
3650 | if (eof_block < map->m_lblk + map->m_len) |
3651 | eof_block = map->m_lblk + map->m_len; | |
21ca087a DM |
3652 | /* |
3653 | * It is safe to convert extent to initialized via explicit | |
3654 | * zeroout only if extent is fully insde i_size or new_size. | |
3655 | */ | |
667eff35 YY |
3656 | depth = ext_depth(inode); |
3657 | ex = path[depth].p_ext; | |
3658 | ee_block = le32_to_cpu(ex->ee_block); | |
3659 | ee_len = ext4_ext_get_actual_len(ex); | |
0031462b | 3660 | |
b8a86845 LC |
3661 | /* Convert to unwritten */ |
3662 | if (flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN) { | |
3663 | split_flag |= EXT4_EXT_DATA_VALID1; | |
3664 | /* Convert to initialized */ | |
3665 | } else if (flags & EXT4_GET_BLOCKS_CONVERT) { | |
3666 | split_flag |= ee_block + ee_len <= eof_block ? | |
3667 | EXT4_EXT_MAY_ZEROOUT : 0; | |
556615dc | 3668 | split_flag |= (EXT4_EXT_MARK_UNWRIT2 | EXT4_EXT_DATA_VALID2); |
b8a86845 | 3669 | } |
667eff35 YY |
3670 | flags |= EXT4_GET_BLOCKS_PRE_IO; |
3671 | return ext4_split_extent(handle, inode, path, map, split_flag, flags); | |
0031462b | 3672 | } |
197217a5 | 3673 | |
b8a86845 LC |
3674 | static int ext4_convert_initialized_extents(handle_t *handle, |
3675 | struct inode *inode, | |
3676 | struct ext4_map_blocks *map, | |
3677 | struct ext4_ext_path *path) | |
3678 | { | |
3679 | struct ext4_extent *ex; | |
3680 | ext4_lblk_t ee_block; | |
3681 | unsigned int ee_len; | |
3682 | int depth; | |
3683 | int err = 0; | |
3684 | ||
3685 | depth = ext_depth(inode); | |
3686 | ex = path[depth].p_ext; | |
3687 | ee_block = le32_to_cpu(ex->ee_block); | |
3688 | ee_len = ext4_ext_get_actual_len(ex); | |
3689 | ||
3690 | ext_debug("%s: inode %lu, logical" | |
3691 | "block %llu, max_blocks %u\n", __func__, inode->i_ino, | |
3692 | (unsigned long long)ee_block, ee_len); | |
3693 | ||
3694 | if (ee_block != map->m_lblk || ee_len > map->m_len) { | |
3695 | err = ext4_split_convert_extents(handle, inode, map, path, | |
3696 | EXT4_GET_BLOCKS_CONVERT_UNWRITTEN); | |
3697 | if (err < 0) | |
3698 | goto out; | |
3699 | ext4_ext_drop_refs(path); | |
3700 | path = ext4_ext_find_extent(inode, map->m_lblk, path, 0); | |
3701 | if (IS_ERR(path)) { | |
3702 | err = PTR_ERR(path); | |
3703 | goto out; | |
3704 | } | |
3705 | depth = ext_depth(inode); | |
3706 | ex = path[depth].p_ext; | |
a18ed359 DM |
3707 | if (!ex) { |
3708 | EXT4_ERROR_INODE(inode, "unexpected hole at %lu", | |
3709 | (unsigned long) map->m_lblk); | |
3710 | err = -EIO; | |
3711 | goto out; | |
3712 | } | |
b8a86845 LC |
3713 | } |
3714 | ||
3715 | err = ext4_ext_get_access(handle, inode, path + depth); | |
3716 | if (err) | |
3717 | goto out; | |
556615dc LC |
3718 | /* first mark the extent as unwritten */ |
3719 | ext4_ext_mark_unwritten(ex); | |
b8a86845 LC |
3720 | |
3721 | /* note: ext4_ext_correct_indexes() isn't needed here because | |
3722 | * borders are not changed | |
3723 | */ | |
3724 | ext4_ext_try_to_merge(handle, inode, path, ex); | |
3725 | ||
3726 | /* Mark modified extent as dirty */ | |
3727 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); | |
3728 | out: | |
3729 | ext4_ext_show_leaf(inode, path); | |
3730 | return err; | |
3731 | } | |
3732 | ||
3733 | ||
c7064ef1 | 3734 | static int ext4_convert_unwritten_extents_endio(handle_t *handle, |
dee1f973 DM |
3735 | struct inode *inode, |
3736 | struct ext4_map_blocks *map, | |
3737 | struct ext4_ext_path *path) | |
0031462b MC |
3738 | { |
3739 | struct ext4_extent *ex; | |
dee1f973 DM |
3740 | ext4_lblk_t ee_block; |
3741 | unsigned int ee_len; | |
0031462b MC |
3742 | int depth; |
3743 | int err = 0; | |
0031462b MC |
3744 | |
3745 | depth = ext_depth(inode); | |
0031462b | 3746 | ex = path[depth].p_ext; |
dee1f973 DM |
3747 | ee_block = le32_to_cpu(ex->ee_block); |
3748 | ee_len = ext4_ext_get_actual_len(ex); | |
0031462b | 3749 | |
197217a5 YY |
3750 | ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical" |
3751 | "block %llu, max_blocks %u\n", inode->i_ino, | |
dee1f973 DM |
3752 | (unsigned long long)ee_block, ee_len); |
3753 | ||
ff95ec22 DM |
3754 | /* If extent is larger than requested it is a clear sign that we still |
3755 | * have some extent state machine issues left. So extent_split is still | |
3756 | * required. | |
3757 | * TODO: Once all related issues will be fixed this situation should be | |
3758 | * illegal. | |
3759 | */ | |
dee1f973 | 3760 | if (ee_block != map->m_lblk || ee_len > map->m_len) { |
ff95ec22 DM |
3761 | #ifdef EXT4_DEBUG |
3762 | ext4_warning("Inode (%ld) finished: extent logical block %llu," | |
3763 | " len %u; IO logical block %llu, len %u\n", | |
3764 | inode->i_ino, (unsigned long long)ee_block, ee_len, | |
3765 | (unsigned long long)map->m_lblk, map->m_len); | |
3766 | #endif | |
b8a86845 LC |
3767 | err = ext4_split_convert_extents(handle, inode, map, path, |
3768 | EXT4_GET_BLOCKS_CONVERT); | |
dee1f973 DM |
3769 | if (err < 0) |
3770 | goto out; | |
3771 | ext4_ext_drop_refs(path); | |
107a7bd3 | 3772 | path = ext4_ext_find_extent(inode, map->m_lblk, path, 0); |
dee1f973 DM |
3773 | if (IS_ERR(path)) { |
3774 | err = PTR_ERR(path); | |
3775 | goto out; | |
3776 | } | |
3777 | depth = ext_depth(inode); | |
3778 | ex = path[depth].p_ext; | |
3779 | } | |
197217a5 | 3780 | |
0031462b MC |
3781 | err = ext4_ext_get_access(handle, inode, path + depth); |
3782 | if (err) | |
3783 | goto out; | |
3784 | /* first mark the extent as initialized */ | |
3785 | ext4_ext_mark_initialized(ex); | |
3786 | ||
197217a5 YY |
3787 | /* note: ext4_ext_correct_indexes() isn't needed here because |
3788 | * borders are not changed | |
0031462b | 3789 | */ |
ecb94f5f | 3790 | ext4_ext_try_to_merge(handle, inode, path, ex); |
197217a5 | 3791 | |
0031462b | 3792 | /* Mark modified extent as dirty */ |
ecb94f5f | 3793 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
0031462b MC |
3794 | out: |
3795 | ext4_ext_show_leaf(inode, path); | |
3796 | return err; | |
3797 | } | |
3798 | ||
515f41c3 AK |
3799 | static void unmap_underlying_metadata_blocks(struct block_device *bdev, |
3800 | sector_t block, int count) | |
3801 | { | |
3802 | int i; | |
3803 | for (i = 0; i < count; i++) | |
3804 | unmap_underlying_metadata(bdev, block + i); | |
3805 | } | |
3806 | ||
58590b06 TT |
3807 | /* |
3808 | * Handle EOFBLOCKS_FL flag, clearing it if necessary | |
3809 | */ | |
3810 | static int check_eofblocks_fl(handle_t *handle, struct inode *inode, | |
d002ebf1 | 3811 | ext4_lblk_t lblk, |
58590b06 TT |
3812 | struct ext4_ext_path *path, |
3813 | unsigned int len) | |
3814 | { | |
3815 | int i, depth; | |
3816 | struct ext4_extent_header *eh; | |
65922cb5 | 3817 | struct ext4_extent *last_ex; |
58590b06 TT |
3818 | |
3819 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS)) | |
3820 | return 0; | |
3821 | ||
3822 | depth = ext_depth(inode); | |
3823 | eh = path[depth].p_hdr; | |
58590b06 | 3824 | |
afcff5d8 LC |
3825 | /* |
3826 | * We're going to remove EOFBLOCKS_FL entirely in future so we | |
3827 | * do not care for this case anymore. Simply remove the flag | |
3828 | * if there are no extents. | |
3829 | */ | |
3830 | if (unlikely(!eh->eh_entries)) | |
3831 | goto out; | |
58590b06 TT |
3832 | last_ex = EXT_LAST_EXTENT(eh); |
3833 | /* | |
3834 | * We should clear the EOFBLOCKS_FL flag if we are writing the | |
3835 | * last block in the last extent in the file. We test this by | |
3836 | * first checking to see if the caller to | |
3837 | * ext4_ext_get_blocks() was interested in the last block (or | |
3838 | * a block beyond the last block) in the current extent. If | |
3839 | * this turns out to be false, we can bail out from this | |
3840 | * function immediately. | |
3841 | */ | |
d002ebf1 | 3842 | if (lblk + len < le32_to_cpu(last_ex->ee_block) + |
58590b06 TT |
3843 | ext4_ext_get_actual_len(last_ex)) |
3844 | return 0; | |
3845 | /* | |
3846 | * If the caller does appear to be planning to write at or | |
3847 | * beyond the end of the current extent, we then test to see | |
3848 | * if the current extent is the last extent in the file, by | |
3849 | * checking to make sure it was reached via the rightmost node | |
3850 | * at each level of the tree. | |
3851 | */ | |
3852 | for (i = depth-1; i >= 0; i--) | |
3853 | if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr)) | |
3854 | return 0; | |
afcff5d8 | 3855 | out: |
58590b06 TT |
3856 | ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); |
3857 | return ext4_mark_inode_dirty(handle, inode); | |
3858 | } | |
3859 | ||
7b415bf6 AK |
3860 | /** |
3861 | * ext4_find_delalloc_range: find delayed allocated block in the given range. | |
3862 | * | |
7d1b1fbc | 3863 | * Return 1 if there is a delalloc block in the range, otherwise 0. |
7b415bf6 | 3864 | */ |
f7fec032 ZL |
3865 | int ext4_find_delalloc_range(struct inode *inode, |
3866 | ext4_lblk_t lblk_start, | |
3867 | ext4_lblk_t lblk_end) | |
7b415bf6 | 3868 | { |
7d1b1fbc | 3869 | struct extent_status es; |
7b415bf6 | 3870 | |
e30b5dca | 3871 | ext4_es_find_delayed_extent_range(inode, lblk_start, lblk_end, &es); |
06b0c886 | 3872 | if (es.es_len == 0) |
7d1b1fbc | 3873 | return 0; /* there is no delay extent in this tree */ |
06b0c886 ZL |
3874 | else if (es.es_lblk <= lblk_start && |
3875 | lblk_start < es.es_lblk + es.es_len) | |
7d1b1fbc | 3876 | return 1; |
06b0c886 | 3877 | else if (lblk_start <= es.es_lblk && es.es_lblk <= lblk_end) |
7d1b1fbc | 3878 | return 1; |
7b415bf6 | 3879 | else |
7d1b1fbc | 3880 | return 0; |
7b415bf6 AK |
3881 | } |
3882 | ||
7d1b1fbc | 3883 | int ext4_find_delalloc_cluster(struct inode *inode, ext4_lblk_t lblk) |
7b415bf6 AK |
3884 | { |
3885 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); | |
3886 | ext4_lblk_t lblk_start, lblk_end; | |
f5a44db5 | 3887 | lblk_start = EXT4_LBLK_CMASK(sbi, lblk); |
7b415bf6 AK |
3888 | lblk_end = lblk_start + sbi->s_cluster_ratio - 1; |
3889 | ||
7d1b1fbc | 3890 | return ext4_find_delalloc_range(inode, lblk_start, lblk_end); |
7b415bf6 AK |
3891 | } |
3892 | ||
3893 | /** | |
3894 | * Determines how many complete clusters (out of those specified by the 'map') | |
3895 | * are under delalloc and were reserved quota for. | |
3896 | * This function is called when we are writing out the blocks that were | |
3897 | * originally written with their allocation delayed, but then the space was | |
3898 | * allocated using fallocate() before the delayed allocation could be resolved. | |
3899 | * The cases to look for are: | |
3900 | * ('=' indicated delayed allocated blocks | |
3901 | * '-' indicates non-delayed allocated blocks) | |
3902 | * (a) partial clusters towards beginning and/or end outside of allocated range | |
3903 | * are not delalloc'ed. | |
3904 | * Ex: | |
3905 | * |----c---=|====c====|====c====|===-c----| | |
3906 | * |++++++ allocated ++++++| | |
3907 | * ==> 4 complete clusters in above example | |
3908 | * | |
3909 | * (b) partial cluster (outside of allocated range) towards either end is | |
3910 | * marked for delayed allocation. In this case, we will exclude that | |
3911 | * cluster. | |
3912 | * Ex: | |
3913 | * |----====c========|========c========| | |
3914 | * |++++++ allocated ++++++| | |
3915 | * ==> 1 complete clusters in above example | |
3916 | * | |
3917 | * Ex: | |
3918 | * |================c================| | |
3919 | * |++++++ allocated ++++++| | |
3920 | * ==> 0 complete clusters in above example | |
3921 | * | |
3922 | * The ext4_da_update_reserve_space will be called only if we | |
3923 | * determine here that there were some "entire" clusters that span | |
3924 | * this 'allocated' range. | |
3925 | * In the non-bigalloc case, this function will just end up returning num_blks | |
3926 | * without ever calling ext4_find_delalloc_range. | |
3927 | */ | |
3928 | static unsigned int | |
3929 | get_reserved_cluster_alloc(struct inode *inode, ext4_lblk_t lblk_start, | |
3930 | unsigned int num_blks) | |
3931 | { | |
3932 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); | |
3933 | ext4_lblk_t alloc_cluster_start, alloc_cluster_end; | |
3934 | ext4_lblk_t lblk_from, lblk_to, c_offset; | |
3935 | unsigned int allocated_clusters = 0; | |
3936 | ||
3937 | alloc_cluster_start = EXT4_B2C(sbi, lblk_start); | |
3938 | alloc_cluster_end = EXT4_B2C(sbi, lblk_start + num_blks - 1); | |
3939 | ||
3940 | /* max possible clusters for this allocation */ | |
3941 | allocated_clusters = alloc_cluster_end - alloc_cluster_start + 1; | |
3942 | ||
d8990240 AK |
3943 | trace_ext4_get_reserved_cluster_alloc(inode, lblk_start, num_blks); |
3944 | ||
7b415bf6 | 3945 | /* Check towards left side */ |
f5a44db5 | 3946 | c_offset = EXT4_LBLK_COFF(sbi, lblk_start); |
7b415bf6 | 3947 | if (c_offset) { |
f5a44db5 | 3948 | lblk_from = EXT4_LBLK_CMASK(sbi, lblk_start); |
7b415bf6 AK |
3949 | lblk_to = lblk_from + c_offset - 1; |
3950 | ||
7d1b1fbc | 3951 | if (ext4_find_delalloc_range(inode, lblk_from, lblk_to)) |
7b415bf6 AK |
3952 | allocated_clusters--; |
3953 | } | |
3954 | ||
3955 | /* Now check towards right. */ | |
f5a44db5 | 3956 | c_offset = EXT4_LBLK_COFF(sbi, lblk_start + num_blks); |
7b415bf6 AK |
3957 | if (allocated_clusters && c_offset) { |
3958 | lblk_from = lblk_start + num_blks; | |
3959 | lblk_to = lblk_from + (sbi->s_cluster_ratio - c_offset) - 1; | |
3960 | ||
7d1b1fbc | 3961 | if (ext4_find_delalloc_range(inode, lblk_from, lblk_to)) |
7b415bf6 AK |
3962 | allocated_clusters--; |
3963 | } | |
3964 | ||
3965 | return allocated_clusters; | |
3966 | } | |
3967 | ||
b8a86845 LC |
3968 | static int |
3969 | ext4_ext_convert_initialized_extent(handle_t *handle, struct inode *inode, | |
3970 | struct ext4_map_blocks *map, | |
3971 | struct ext4_ext_path *path, int flags, | |
3972 | unsigned int allocated, ext4_fsblk_t newblock) | |
3973 | { | |
3974 | int ret = 0; | |
3975 | int err = 0; | |
3976 | ||
3977 | /* | |
3978 | * Make sure that the extent is no bigger than we support with | |
556615dc | 3979 | * unwritten extent |
b8a86845 | 3980 | */ |
556615dc LC |
3981 | if (map->m_len > EXT_UNWRITTEN_MAX_LEN) |
3982 | map->m_len = EXT_UNWRITTEN_MAX_LEN / 2; | |
b8a86845 LC |
3983 | |
3984 | ret = ext4_convert_initialized_extents(handle, inode, map, | |
3985 | path); | |
3986 | if (ret >= 0) { | |
3987 | ext4_update_inode_fsync_trans(handle, inode, 1); | |
3988 | err = check_eofblocks_fl(handle, inode, map->m_lblk, | |
3989 | path, map->m_len); | |
3990 | } else | |
3991 | err = ret; | |
3992 | map->m_flags |= EXT4_MAP_UNWRITTEN; | |
3993 | if (allocated > map->m_len) | |
3994 | allocated = map->m_len; | |
3995 | map->m_len = allocated; | |
3996 | ||
3997 | return err ? err : allocated; | |
3998 | } | |
3999 | ||
0031462b | 4000 | static int |
556615dc | 4001 | ext4_ext_handle_unwritten_extents(handle_t *handle, struct inode *inode, |
e35fd660 | 4002 | struct ext4_map_blocks *map, |
0031462b | 4003 | struct ext4_ext_path *path, int flags, |
e35fd660 | 4004 | unsigned int allocated, ext4_fsblk_t newblock) |
0031462b MC |
4005 | { |
4006 | int ret = 0; | |
4007 | int err = 0; | |
f45ee3a1 | 4008 | ext4_io_end_t *io = ext4_inode_aio(inode); |
0031462b | 4009 | |
556615dc | 4010 | ext_debug("ext4_ext_handle_unwritten_extents: inode %lu, logical " |
88635ca2 | 4011 | "block %llu, max_blocks %u, flags %x, allocated %u\n", |
e35fd660 | 4012 | inode->i_ino, (unsigned long long)map->m_lblk, map->m_len, |
0031462b MC |
4013 | flags, allocated); |
4014 | ext4_ext_show_leaf(inode, path); | |
4015 | ||
27dd4385 | 4016 | /* |
556615dc | 4017 | * When writing into unwritten space, we should not fail to |
27dd4385 LC |
4018 | * allocate metadata blocks for the new extent block if needed. |
4019 | */ | |
4020 | flags |= EXT4_GET_BLOCKS_METADATA_NOFAIL; | |
4021 | ||
556615dc | 4022 | trace_ext4_ext_handle_unwritten_extents(inode, map, flags, |
b5645534 | 4023 | allocated, newblock); |
d8990240 | 4024 | |
c7064ef1 | 4025 | /* get_block() before submit the IO, split the extent */ |
c8b459f4 | 4026 | if (flags & EXT4_GET_BLOCKS_PRE_IO) { |
b8a86845 LC |
4027 | ret = ext4_split_convert_extents(handle, inode, map, |
4028 | path, flags | EXT4_GET_BLOCKS_CONVERT); | |
82e54229 DM |
4029 | if (ret <= 0) |
4030 | goto out; | |
5f524950 M |
4031 | /* |
4032 | * Flag the inode(non aio case) or end_io struct (aio case) | |
25985edc | 4033 | * that this IO needs to conversion to written when IO is |
5f524950 M |
4034 | * completed |
4035 | */ | |
0edeb71d TM |
4036 | if (io) |
4037 | ext4_set_io_unwritten_flag(inode, io); | |
4038 | else | |
19f5fb7a | 4039 | ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); |
a25a4e1a | 4040 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
0031462b MC |
4041 | goto out; |
4042 | } | |
c7064ef1 | 4043 | /* IO end_io complete, convert the filled extent to written */ |
c8b459f4 | 4044 | if (flags & EXT4_GET_BLOCKS_CONVERT) { |
dee1f973 | 4045 | ret = ext4_convert_unwritten_extents_endio(handle, inode, map, |
0031462b | 4046 | path); |
58590b06 | 4047 | if (ret >= 0) { |
b436b9be | 4048 | ext4_update_inode_fsync_trans(handle, inode, 1); |
d002ebf1 ES |
4049 | err = check_eofblocks_fl(handle, inode, map->m_lblk, |
4050 | path, map->m_len); | |
58590b06 TT |
4051 | } else |
4052 | err = ret; | |
cdee7843 | 4053 | map->m_flags |= EXT4_MAP_MAPPED; |
15cc1767 | 4054 | map->m_pblk = newblock; |
cdee7843 ZL |
4055 | if (allocated > map->m_len) |
4056 | allocated = map->m_len; | |
4057 | map->m_len = allocated; | |
0031462b MC |
4058 | goto out2; |
4059 | } | |
4060 | /* buffered IO case */ | |
4061 | /* | |
4062 | * repeat fallocate creation request | |
4063 | * we already have an unwritten extent | |
4064 | */ | |
556615dc | 4065 | if (flags & EXT4_GET_BLOCKS_UNWRIT_EXT) { |
a25a4e1a | 4066 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
0031462b | 4067 | goto map_out; |
a25a4e1a | 4068 | } |
0031462b MC |
4069 | |
4070 | /* buffered READ or buffered write_begin() lookup */ | |
4071 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) { | |
4072 | /* | |
4073 | * We have blocks reserved already. We | |
4074 | * return allocated blocks so that delalloc | |
4075 | * won't do block reservation for us. But | |
4076 | * the buffer head will be unmapped so that | |
4077 | * a read from the block returns 0s. | |
4078 | */ | |
e35fd660 | 4079 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
0031462b MC |
4080 | goto out1; |
4081 | } | |
4082 | ||
4083 | /* buffered write, writepage time, convert*/ | |
27dd4385 | 4084 | ret = ext4_ext_convert_to_initialized(handle, inode, map, path, flags); |
a4e5d88b | 4085 | if (ret >= 0) |
b436b9be | 4086 | ext4_update_inode_fsync_trans(handle, inode, 1); |
0031462b MC |
4087 | out: |
4088 | if (ret <= 0) { | |
4089 | err = ret; | |
4090 | goto out2; | |
4091 | } else | |
4092 | allocated = ret; | |
e35fd660 | 4093 | map->m_flags |= EXT4_MAP_NEW; |
515f41c3 AK |
4094 | /* |
4095 | * if we allocated more blocks than requested | |
4096 | * we need to make sure we unmap the extra block | |
4097 | * allocated. The actual needed block will get | |
4098 | * unmapped later when we find the buffer_head marked | |
4099 | * new. | |
4100 | */ | |
e35fd660 | 4101 | if (allocated > map->m_len) { |
515f41c3 | 4102 | unmap_underlying_metadata_blocks(inode->i_sb->s_bdev, |
e35fd660 TT |
4103 | newblock + map->m_len, |
4104 | allocated - map->m_len); | |
4105 | allocated = map->m_len; | |
515f41c3 | 4106 | } |
3a225670 | 4107 | map->m_len = allocated; |
5f634d06 AK |
4108 | |
4109 | /* | |
4110 | * If we have done fallocate with the offset that is already | |
4111 | * delayed allocated, we would have block reservation | |
4112 | * and quota reservation done in the delayed write path. | |
4113 | * But fallocate would have already updated quota and block | |
4114 | * count for this offset. So cancel these reservation | |
4115 | */ | |
7b415bf6 AK |
4116 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) { |
4117 | unsigned int reserved_clusters; | |
4118 | reserved_clusters = get_reserved_cluster_alloc(inode, | |
4119 | map->m_lblk, map->m_len); | |
4120 | if (reserved_clusters) | |
4121 | ext4_da_update_reserve_space(inode, | |
4122 | reserved_clusters, | |
4123 | 0); | |
4124 | } | |
5f634d06 | 4125 | |
0031462b | 4126 | map_out: |
e35fd660 | 4127 | map->m_flags |= EXT4_MAP_MAPPED; |
a4e5d88b DM |
4128 | if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0) { |
4129 | err = check_eofblocks_fl(handle, inode, map->m_lblk, path, | |
4130 | map->m_len); | |
4131 | if (err < 0) | |
4132 | goto out2; | |
4133 | } | |
0031462b | 4134 | out1: |
e35fd660 TT |
4135 | if (allocated > map->m_len) |
4136 | allocated = map->m_len; | |
0031462b | 4137 | ext4_ext_show_leaf(inode, path); |
e35fd660 TT |
4138 | map->m_pblk = newblock; |
4139 | map->m_len = allocated; | |
0031462b | 4140 | out2: |
0031462b MC |
4141 | return err ? err : allocated; |
4142 | } | |
58590b06 | 4143 | |
4d33b1ef TT |
4144 | /* |
4145 | * get_implied_cluster_alloc - check to see if the requested | |
4146 | * allocation (in the map structure) overlaps with a cluster already | |
4147 | * allocated in an extent. | |
d8990240 | 4148 | * @sb The filesystem superblock structure |
4d33b1ef TT |
4149 | * @map The requested lblk->pblk mapping |
4150 | * @ex The extent structure which might contain an implied | |
4151 | * cluster allocation | |
4152 | * | |
4153 | * This function is called by ext4_ext_map_blocks() after we failed to | |
4154 | * find blocks that were already in the inode's extent tree. Hence, | |
4155 | * we know that the beginning of the requested region cannot overlap | |
4156 | * the extent from the inode's extent tree. There are three cases we | |
4157 | * want to catch. The first is this case: | |
4158 | * | |
4159 | * |--- cluster # N--| | |
4160 | * |--- extent ---| |---- requested region ---| | |
4161 | * |==========| | |
4162 | * | |
4163 | * The second case that we need to test for is this one: | |
4164 | * | |
4165 | * |--------- cluster # N ----------------| | |
4166 | * |--- requested region --| |------- extent ----| | |
4167 | * |=======================| | |
4168 | * | |
4169 | * The third case is when the requested region lies between two extents | |
4170 | * within the same cluster: | |
4171 | * |------------- cluster # N-------------| | |
4172 | * |----- ex -----| |---- ex_right ----| | |
4173 | * |------ requested region ------| | |
4174 | * |================| | |
4175 | * | |
4176 | * In each of the above cases, we need to set the map->m_pblk and | |
4177 | * map->m_len so it corresponds to the return the extent labelled as | |
4178 | * "|====|" from cluster #N, since it is already in use for data in | |
4179 | * cluster EXT4_B2C(sbi, map->m_lblk). We will then return 1 to | |
4180 | * signal to ext4_ext_map_blocks() that map->m_pblk should be treated | |
4181 | * as a new "allocated" block region. Otherwise, we will return 0 and | |
4182 | * ext4_ext_map_blocks() will then allocate one or more new clusters | |
4183 | * by calling ext4_mb_new_blocks(). | |
4184 | */ | |
d8990240 | 4185 | static int get_implied_cluster_alloc(struct super_block *sb, |
4d33b1ef TT |
4186 | struct ext4_map_blocks *map, |
4187 | struct ext4_extent *ex, | |
4188 | struct ext4_ext_path *path) | |
4189 | { | |
d8990240 | 4190 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
f5a44db5 | 4191 | ext4_lblk_t c_offset = EXT4_LBLK_COFF(sbi, map->m_lblk); |
4d33b1ef | 4192 | ext4_lblk_t ex_cluster_start, ex_cluster_end; |
14d7f3ef | 4193 | ext4_lblk_t rr_cluster_start; |
4d33b1ef TT |
4194 | ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block); |
4195 | ext4_fsblk_t ee_start = ext4_ext_pblock(ex); | |
4196 | unsigned short ee_len = ext4_ext_get_actual_len(ex); | |
4197 | ||
4198 | /* The extent passed in that we are trying to match */ | |
4199 | ex_cluster_start = EXT4_B2C(sbi, ee_block); | |
4200 | ex_cluster_end = EXT4_B2C(sbi, ee_block + ee_len - 1); | |
4201 | ||
4202 | /* The requested region passed into ext4_map_blocks() */ | |
4203 | rr_cluster_start = EXT4_B2C(sbi, map->m_lblk); | |
4d33b1ef TT |
4204 | |
4205 | if ((rr_cluster_start == ex_cluster_end) || | |
4206 | (rr_cluster_start == ex_cluster_start)) { | |
4207 | if (rr_cluster_start == ex_cluster_end) | |
4208 | ee_start += ee_len - 1; | |
f5a44db5 | 4209 | map->m_pblk = EXT4_PBLK_CMASK(sbi, ee_start) + c_offset; |
4d33b1ef TT |
4210 | map->m_len = min(map->m_len, |
4211 | (unsigned) sbi->s_cluster_ratio - c_offset); | |
4212 | /* | |
4213 | * Check for and handle this case: | |
4214 | * | |
4215 | * |--------- cluster # N-------------| | |
4216 | * |------- extent ----| | |
4217 | * |--- requested region ---| | |
4218 | * |===========| | |
4219 | */ | |
4220 | ||
4221 | if (map->m_lblk < ee_block) | |
4222 | map->m_len = min(map->m_len, ee_block - map->m_lblk); | |
4223 | ||
4224 | /* | |
4225 | * Check for the case where there is already another allocated | |
4226 | * block to the right of 'ex' but before the end of the cluster. | |
4227 | * | |
4228 | * |------------- cluster # N-------------| | |
4229 | * |----- ex -----| |---- ex_right ----| | |
4230 | * |------ requested region ------| | |
4231 | * |================| | |
4232 | */ | |
4233 | if (map->m_lblk > ee_block) { | |
4234 | ext4_lblk_t next = ext4_ext_next_allocated_block(path); | |
4235 | map->m_len = min(map->m_len, next - map->m_lblk); | |
4236 | } | |
d8990240 AK |
4237 | |
4238 | trace_ext4_get_implied_cluster_alloc_exit(sb, map, 1); | |
4d33b1ef TT |
4239 | return 1; |
4240 | } | |
d8990240 AK |
4241 | |
4242 | trace_ext4_get_implied_cluster_alloc_exit(sb, map, 0); | |
4d33b1ef TT |
4243 | return 0; |
4244 | } | |
4245 | ||
4246 | ||
c278bfec | 4247 | /* |
f5ab0d1f MC |
4248 | * Block allocation/map/preallocation routine for extents based files |
4249 | * | |
4250 | * | |
c278bfec | 4251 | * Need to be called with |
0e855ac8 AK |
4252 | * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block |
4253 | * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem) | |
f5ab0d1f MC |
4254 | * |
4255 | * return > 0, number of of blocks already mapped/allocated | |
4256 | * if create == 0 and these are pre-allocated blocks | |
4257 | * buffer head is unmapped | |
4258 | * otherwise blocks are mapped | |
4259 | * | |
4260 | * return = 0, if plain look up failed (blocks have not been allocated) | |
4261 | * buffer head is unmapped | |
4262 | * | |
4263 | * return < 0, error case. | |
c278bfec | 4264 | */ |
e35fd660 TT |
4265 | int ext4_ext_map_blocks(handle_t *handle, struct inode *inode, |
4266 | struct ext4_map_blocks *map, int flags) | |
a86c6181 AT |
4267 | { |
4268 | struct ext4_ext_path *path = NULL; | |
4d33b1ef TT |
4269 | struct ext4_extent newex, *ex, *ex2; |
4270 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); | |
0562e0ba | 4271 | ext4_fsblk_t newblock = 0; |
ce37c429 | 4272 | int free_on_err = 0, err = 0, depth, ret; |
4d33b1ef | 4273 | unsigned int allocated = 0, offset = 0; |
81fdbb4a | 4274 | unsigned int allocated_clusters = 0; |
c9de560d | 4275 | struct ext4_allocation_request ar; |
f45ee3a1 | 4276 | ext4_io_end_t *io = ext4_inode_aio(inode); |
4d33b1ef | 4277 | ext4_lblk_t cluster_offset; |
82e54229 | 4278 | int set_unwritten = 0; |
a86c6181 | 4279 | |
84fe3bef | 4280 | ext_debug("blocks %u/%u requested for inode %lu\n", |
e35fd660 | 4281 | map->m_lblk, map->m_len, inode->i_ino); |
0562e0ba | 4282 | trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags); |
a86c6181 | 4283 | |
a86c6181 | 4284 | /* find extent for this block */ |
107a7bd3 | 4285 | path = ext4_ext_find_extent(inode, map->m_lblk, NULL, 0); |
a86c6181 AT |
4286 | if (IS_ERR(path)) { |
4287 | err = PTR_ERR(path); | |
4288 | path = NULL; | |
4289 | goto out2; | |
4290 | } | |
4291 | ||
4292 | depth = ext_depth(inode); | |
4293 | ||
4294 | /* | |
d0d856e8 RD |
4295 | * consistent leaf must not be empty; |
4296 | * this situation is possible, though, _during_ tree modification; | |
a86c6181 AT |
4297 | * this is why assert can't be put in ext4_ext_find_extent() |
4298 | */ | |
273df556 FM |
4299 | if (unlikely(path[depth].p_ext == NULL && depth != 0)) { |
4300 | EXT4_ERROR_INODE(inode, "bad extent address " | |
f70f362b TT |
4301 | "lblock: %lu, depth: %d pblock %lld", |
4302 | (unsigned long) map->m_lblk, depth, | |
4303 | path[depth].p_block); | |
034fb4c9 SP |
4304 | err = -EIO; |
4305 | goto out2; | |
4306 | } | |
a86c6181 | 4307 | |
7e028976 AM |
4308 | ex = path[depth].p_ext; |
4309 | if (ex) { | |
725d26d3 | 4310 | ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block); |
bf89d16f | 4311 | ext4_fsblk_t ee_start = ext4_ext_pblock(ex); |
a2df2a63 | 4312 | unsigned short ee_len; |
471d4011 | 4313 | |
b8a86845 | 4314 | |
471d4011 | 4315 | /* |
556615dc | 4316 | * unwritten extents are treated as holes, except that |
56055d3a | 4317 | * we split out initialized portions during a write. |
471d4011 | 4318 | */ |
a2df2a63 | 4319 | ee_len = ext4_ext_get_actual_len(ex); |
d8990240 AK |
4320 | |
4321 | trace_ext4_ext_show_extent(inode, ee_block, ee_start, ee_len); | |
4322 | ||
d0d856e8 | 4323 | /* if found extent covers block, simply return it */ |
e35fd660 TT |
4324 | if (in_range(map->m_lblk, ee_block, ee_len)) { |
4325 | newblock = map->m_lblk - ee_block + ee_start; | |
d0d856e8 | 4326 | /* number of remaining blocks in the extent */ |
e35fd660 TT |
4327 | allocated = ee_len - (map->m_lblk - ee_block); |
4328 | ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk, | |
4329 | ee_block, ee_len, newblock); | |
56055d3a | 4330 | |
b8a86845 LC |
4331 | /* |
4332 | * If the extent is initialized check whether the | |
4333 | * caller wants to convert it to unwritten. | |
4334 | */ | |
556615dc | 4335 | if ((!ext4_ext_is_unwritten(ex)) && |
b8a86845 LC |
4336 | (flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) { |
4337 | allocated = ext4_ext_convert_initialized_extent( | |
4338 | handle, inode, map, path, flags, | |
4339 | allocated, newblock); | |
4340 | goto out2; | |
556615dc | 4341 | } else if (!ext4_ext_is_unwritten(ex)) |
7877191c | 4342 | goto out; |
69eb33dc | 4343 | |
556615dc | 4344 | ret = ext4_ext_handle_unwritten_extents( |
7877191c LC |
4345 | handle, inode, map, path, flags, |
4346 | allocated, newblock); | |
ce37c429 EW |
4347 | if (ret < 0) |
4348 | err = ret; | |
4349 | else | |
4350 | allocated = ret; | |
31cf0f2c | 4351 | goto out2; |
a86c6181 AT |
4352 | } |
4353 | } | |
4354 | ||
7b415bf6 | 4355 | if ((sbi->s_cluster_ratio > 1) && |
7d1b1fbc | 4356 | ext4_find_delalloc_cluster(inode, map->m_lblk)) |
7b415bf6 AK |
4357 | map->m_flags |= EXT4_MAP_FROM_CLUSTER; |
4358 | ||
a86c6181 | 4359 | /* |
d0d856e8 | 4360 | * requested block isn't allocated yet; |
a86c6181 AT |
4361 | * we couldn't try to create block if create flag is zero |
4362 | */ | |
c2177057 | 4363 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) { |
56055d3a AA |
4364 | /* |
4365 | * put just found gap into cache to speed up | |
4366 | * subsequent requests | |
4367 | */ | |
d100eef2 ZL |
4368 | if ((flags & EXT4_GET_BLOCKS_NO_PUT_HOLE) == 0) |
4369 | ext4_ext_put_gap_in_cache(inode, path, map->m_lblk); | |
a86c6181 AT |
4370 | goto out2; |
4371 | } | |
4d33b1ef | 4372 | |
a86c6181 | 4373 | /* |
c2ea3fde | 4374 | * Okay, we need to do block allocation. |
63f57933 | 4375 | */ |
7b415bf6 | 4376 | map->m_flags &= ~EXT4_MAP_FROM_CLUSTER; |
4d33b1ef | 4377 | newex.ee_block = cpu_to_le32(map->m_lblk); |
d0abafac | 4378 | cluster_offset = EXT4_LBLK_COFF(sbi, map->m_lblk); |
4d33b1ef TT |
4379 | |
4380 | /* | |
4381 | * If we are doing bigalloc, check to see if the extent returned | |
4382 | * by ext4_ext_find_extent() implies a cluster we can use. | |
4383 | */ | |
4384 | if (cluster_offset && ex && | |
d8990240 | 4385 | get_implied_cluster_alloc(inode->i_sb, map, ex, path)) { |
4d33b1ef TT |
4386 | ar.len = allocated = map->m_len; |
4387 | newblock = map->m_pblk; | |
7b415bf6 | 4388 | map->m_flags |= EXT4_MAP_FROM_CLUSTER; |
4d33b1ef TT |
4389 | goto got_allocated_blocks; |
4390 | } | |
a86c6181 | 4391 | |
c9de560d | 4392 | /* find neighbour allocated blocks */ |
e35fd660 | 4393 | ar.lleft = map->m_lblk; |
c9de560d AT |
4394 | err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft); |
4395 | if (err) | |
4396 | goto out2; | |
e35fd660 | 4397 | ar.lright = map->m_lblk; |
4d33b1ef TT |
4398 | ex2 = NULL; |
4399 | err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright, &ex2); | |
c9de560d AT |
4400 | if (err) |
4401 | goto out2; | |
25d14f98 | 4402 | |
4d33b1ef TT |
4403 | /* Check if the extent after searching to the right implies a |
4404 | * cluster we can use. */ | |
4405 | if ((sbi->s_cluster_ratio > 1) && ex2 && | |
d8990240 | 4406 | get_implied_cluster_alloc(inode->i_sb, map, ex2, path)) { |
4d33b1ef TT |
4407 | ar.len = allocated = map->m_len; |
4408 | newblock = map->m_pblk; | |
7b415bf6 | 4409 | map->m_flags |= EXT4_MAP_FROM_CLUSTER; |
4d33b1ef TT |
4410 | goto got_allocated_blocks; |
4411 | } | |
4412 | ||
749269fa AA |
4413 | /* |
4414 | * See if request is beyond maximum number of blocks we can have in | |
4415 | * a single extent. For an initialized extent this limit is | |
556615dc LC |
4416 | * EXT_INIT_MAX_LEN and for an unwritten extent this limit is |
4417 | * EXT_UNWRITTEN_MAX_LEN. | |
749269fa | 4418 | */ |
e35fd660 | 4419 | if (map->m_len > EXT_INIT_MAX_LEN && |
556615dc | 4420 | !(flags & EXT4_GET_BLOCKS_UNWRIT_EXT)) |
e35fd660 | 4421 | map->m_len = EXT_INIT_MAX_LEN; |
556615dc LC |
4422 | else if (map->m_len > EXT_UNWRITTEN_MAX_LEN && |
4423 | (flags & EXT4_GET_BLOCKS_UNWRIT_EXT)) | |
4424 | map->m_len = EXT_UNWRITTEN_MAX_LEN; | |
749269fa | 4425 | |
e35fd660 | 4426 | /* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */ |
e35fd660 | 4427 | newex.ee_len = cpu_to_le16(map->m_len); |
4d33b1ef | 4428 | err = ext4_ext_check_overlap(sbi, inode, &newex, path); |
25d14f98 | 4429 | if (err) |
b939e376 | 4430 | allocated = ext4_ext_get_actual_len(&newex); |
25d14f98 | 4431 | else |
e35fd660 | 4432 | allocated = map->m_len; |
c9de560d AT |
4433 | |
4434 | /* allocate new block */ | |
4435 | ar.inode = inode; | |
e35fd660 TT |
4436 | ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk); |
4437 | ar.logical = map->m_lblk; | |
4d33b1ef TT |
4438 | /* |
4439 | * We calculate the offset from the beginning of the cluster | |
4440 | * for the logical block number, since when we allocate a | |
4441 | * physical cluster, the physical block should start at the | |
4442 | * same offset from the beginning of the cluster. This is | |
4443 | * needed so that future calls to get_implied_cluster_alloc() | |
4444 | * work correctly. | |
4445 | */ | |
f5a44db5 | 4446 | offset = EXT4_LBLK_COFF(sbi, map->m_lblk); |
4d33b1ef TT |
4447 | ar.len = EXT4_NUM_B2C(sbi, offset+allocated); |
4448 | ar.goal -= offset; | |
4449 | ar.logical -= offset; | |
c9de560d AT |
4450 | if (S_ISREG(inode->i_mode)) |
4451 | ar.flags = EXT4_MB_HINT_DATA; | |
4452 | else | |
4453 | /* disable in-core preallocation for non-regular files */ | |
4454 | ar.flags = 0; | |
556b27ab VH |
4455 | if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE) |
4456 | ar.flags |= EXT4_MB_HINT_NOPREALLOC; | |
c9de560d | 4457 | newblock = ext4_mb_new_blocks(handle, &ar, &err); |
a86c6181 AT |
4458 | if (!newblock) |
4459 | goto out2; | |
84fe3bef | 4460 | ext_debug("allocate new block: goal %llu, found %llu/%u\n", |
498e5f24 | 4461 | ar.goal, newblock, allocated); |
4d33b1ef | 4462 | free_on_err = 1; |
7b415bf6 | 4463 | allocated_clusters = ar.len; |
4d33b1ef TT |
4464 | ar.len = EXT4_C2B(sbi, ar.len) - offset; |
4465 | if (ar.len > allocated) | |
4466 | ar.len = allocated; | |
a86c6181 | 4467 | |
4d33b1ef | 4468 | got_allocated_blocks: |
a86c6181 | 4469 | /* try to insert new extent into found leaf and return */ |
4d33b1ef | 4470 | ext4_ext_store_pblock(&newex, newblock + offset); |
c9de560d | 4471 | newex.ee_len = cpu_to_le16(ar.len); |
556615dc LC |
4472 | /* Mark unwritten */ |
4473 | if (flags & EXT4_GET_BLOCKS_UNWRIT_EXT){ | |
4474 | ext4_ext_mark_unwritten(&newex); | |
a25a4e1a | 4475 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
8d5d02e6 | 4476 | /* |
744692dc | 4477 | * io_end structure was created for every IO write to an |
556615dc | 4478 | * unwritten extent. To avoid unnecessary conversion, |
744692dc | 4479 | * here we flag the IO that really needs the conversion. |
5f524950 | 4480 | * For non asycn direct IO case, flag the inode state |
25985edc | 4481 | * that we need to perform conversion when IO is done. |
8d5d02e6 | 4482 | */ |
c8b459f4 | 4483 | if (flags & EXT4_GET_BLOCKS_PRE_IO) |
82e54229 | 4484 | set_unwritten = 1; |
8d5d02e6 | 4485 | } |
c8d46e41 | 4486 | |
a4e5d88b DM |
4487 | err = 0; |
4488 | if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0) | |
4489 | err = check_eofblocks_fl(handle, inode, map->m_lblk, | |
4490 | path, ar.len); | |
575a1d4b JZ |
4491 | if (!err) |
4492 | err = ext4_ext_insert_extent(handle, inode, path, | |
4493 | &newex, flags); | |
82e54229 DM |
4494 | |
4495 | if (!err && set_unwritten) { | |
4496 | if (io) | |
4497 | ext4_set_io_unwritten_flag(inode, io); | |
4498 | else | |
4499 | ext4_set_inode_state(inode, | |
4500 | EXT4_STATE_DIO_UNWRITTEN); | |
4501 | } | |
4502 | ||
4d33b1ef | 4503 | if (err && free_on_err) { |
7132de74 MP |
4504 | int fb_flags = flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE ? |
4505 | EXT4_FREE_BLOCKS_NO_QUOT_UPDATE : 0; | |
315054f0 | 4506 | /* free data blocks we just allocated */ |
c9de560d AT |
4507 | /* not a good idea to call discard here directly, |
4508 | * but otherwise we'd need to call it every free() */ | |
c2ea3fde | 4509 | ext4_discard_preallocations(inode); |
c8e15130 TT |
4510 | ext4_free_blocks(handle, inode, NULL, newblock, |
4511 | EXT4_C2B(sbi, allocated_clusters), fb_flags); | |
a86c6181 | 4512 | goto out2; |
315054f0 | 4513 | } |
a86c6181 | 4514 | |
a86c6181 | 4515 | /* previous routine could use block we allocated */ |
bf89d16f | 4516 | newblock = ext4_ext_pblock(&newex); |
b939e376 | 4517 | allocated = ext4_ext_get_actual_len(&newex); |
e35fd660 TT |
4518 | if (allocated > map->m_len) |
4519 | allocated = map->m_len; | |
4520 | map->m_flags |= EXT4_MAP_NEW; | |
a86c6181 | 4521 | |
5f634d06 AK |
4522 | /* |
4523 | * Update reserved blocks/metadata blocks after successful | |
4524 | * block allocation which had been deferred till now. | |
4525 | */ | |
7b415bf6 | 4526 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) { |
81fdbb4a | 4527 | unsigned int reserved_clusters; |
7b415bf6 | 4528 | /* |
81fdbb4a | 4529 | * Check how many clusters we had reserved this allocated range |
7b415bf6 AK |
4530 | */ |
4531 | reserved_clusters = get_reserved_cluster_alloc(inode, | |
4532 | map->m_lblk, allocated); | |
4533 | if (map->m_flags & EXT4_MAP_FROM_CLUSTER) { | |
4534 | if (reserved_clusters) { | |
4535 | /* | |
4536 | * We have clusters reserved for this range. | |
4537 | * But since we are not doing actual allocation | |
4538 | * and are simply using blocks from previously | |
4539 | * allocated cluster, we should release the | |
4540 | * reservation and not claim quota. | |
4541 | */ | |
4542 | ext4_da_update_reserve_space(inode, | |
4543 | reserved_clusters, 0); | |
4544 | } | |
4545 | } else { | |
4546 | BUG_ON(allocated_clusters < reserved_clusters); | |
7b415bf6 | 4547 | if (reserved_clusters < allocated_clusters) { |
5356f261 | 4548 | struct ext4_inode_info *ei = EXT4_I(inode); |
7b415bf6 AK |
4549 | int reservation = allocated_clusters - |
4550 | reserved_clusters; | |
4551 | /* | |
4552 | * It seems we claimed few clusters outside of | |
4553 | * the range of this allocation. We should give | |
4554 | * it back to the reservation pool. This can | |
4555 | * happen in the following case: | |
4556 | * | |
4557 | * * Suppose s_cluster_ratio is 4 (i.e., each | |
4558 | * cluster has 4 blocks. Thus, the clusters | |
4559 | * are [0-3],[4-7],[8-11]... | |
4560 | * * First comes delayed allocation write for | |
4561 | * logical blocks 10 & 11. Since there were no | |
4562 | * previous delayed allocated blocks in the | |
4563 | * range [8-11], we would reserve 1 cluster | |
4564 | * for this write. | |
4565 | * * Next comes write for logical blocks 3 to 8. | |
4566 | * In this case, we will reserve 2 clusters | |
4567 | * (for [0-3] and [4-7]; and not for [8-11] as | |
4568 | * that range has a delayed allocated blocks. | |
4569 | * Thus total reserved clusters now becomes 3. | |
4570 | * * Now, during the delayed allocation writeout | |
4571 | * time, we will first write blocks [3-8] and | |
4572 | * allocate 3 clusters for writing these | |
4573 | * blocks. Also, we would claim all these | |
4574 | * three clusters above. | |
4575 | * * Now when we come here to writeout the | |
4576 | * blocks [10-11], we would expect to claim | |
4577 | * the reservation of 1 cluster we had made | |
4578 | * (and we would claim it since there are no | |
4579 | * more delayed allocated blocks in the range | |
4580 | * [8-11]. But our reserved cluster count had | |
4581 | * already gone to 0. | |
4582 | * | |
4583 | * Thus, at the step 4 above when we determine | |
4584 | * that there are still some unwritten delayed | |
4585 | * allocated blocks outside of our current | |
4586 | * block range, we should increment the | |
4587 | * reserved clusters count so that when the | |
4588 | * remaining blocks finally gets written, we | |
4589 | * could claim them. | |
4590 | */ | |
5356f261 AK |
4591 | dquot_reserve_block(inode, |
4592 | EXT4_C2B(sbi, reservation)); | |
4593 | spin_lock(&ei->i_block_reservation_lock); | |
4594 | ei->i_reserved_data_blocks += reservation; | |
4595 | spin_unlock(&ei->i_block_reservation_lock); | |
7b415bf6 | 4596 | } |
232ec872 LC |
4597 | /* |
4598 | * We will claim quota for all newly allocated blocks. | |
4599 | * We're updating the reserved space *after* the | |
4600 | * correction above so we do not accidentally free | |
4601 | * all the metadata reservation because we might | |
4602 | * actually need it later on. | |
4603 | */ | |
4604 | ext4_da_update_reserve_space(inode, allocated_clusters, | |
4605 | 1); | |
7b415bf6 AK |
4606 | } |
4607 | } | |
5f634d06 | 4608 | |
b436b9be JK |
4609 | /* |
4610 | * Cache the extent and update transaction to commit on fdatasync only | |
556615dc | 4611 | * when it is _not_ an unwritten extent. |
b436b9be | 4612 | */ |
556615dc | 4613 | if ((flags & EXT4_GET_BLOCKS_UNWRIT_EXT) == 0) |
b436b9be | 4614 | ext4_update_inode_fsync_trans(handle, inode, 1); |
69eb33dc | 4615 | else |
b436b9be | 4616 | ext4_update_inode_fsync_trans(handle, inode, 0); |
a86c6181 | 4617 | out: |
e35fd660 TT |
4618 | if (allocated > map->m_len) |
4619 | allocated = map->m_len; | |
a86c6181 | 4620 | ext4_ext_show_leaf(inode, path); |
e35fd660 TT |
4621 | map->m_flags |= EXT4_MAP_MAPPED; |
4622 | map->m_pblk = newblock; | |
4623 | map->m_len = allocated; | |
a86c6181 AT |
4624 | out2: |
4625 | if (path) { | |
4626 | ext4_ext_drop_refs(path); | |
4627 | kfree(path); | |
4628 | } | |
e861304b | 4629 | |
63b99968 TT |
4630 | trace_ext4_ext_map_blocks_exit(inode, flags, map, |
4631 | err ? err : allocated); | |
4632 | ext4_es_lru_add(inode); | |
7877191c | 4633 | return err ? err : allocated; |
a86c6181 AT |
4634 | } |
4635 | ||
819c4920 | 4636 | void ext4_ext_truncate(handle_t *handle, struct inode *inode) |
a86c6181 | 4637 | { |
a86c6181 | 4638 | struct super_block *sb = inode->i_sb; |
725d26d3 | 4639 | ext4_lblk_t last_block; |
a86c6181 AT |
4640 | int err = 0; |
4641 | ||
a86c6181 | 4642 | /* |
d0d856e8 RD |
4643 | * TODO: optimization is possible here. |
4644 | * Probably we need not scan at all, | |
4645 | * because page truncation is enough. | |
a86c6181 | 4646 | */ |
a86c6181 AT |
4647 | |
4648 | /* we have to know where to truncate from in crash case */ | |
4649 | EXT4_I(inode)->i_disksize = inode->i_size; | |
4650 | ext4_mark_inode_dirty(handle, inode); | |
4651 | ||
4652 | last_block = (inode->i_size + sb->s_blocksize - 1) | |
4653 | >> EXT4_BLOCK_SIZE_BITS(sb); | |
8acd5e9b | 4654 | retry: |
51865fda ZL |
4655 | err = ext4_es_remove_extent(inode, last_block, |
4656 | EXT_MAX_BLOCKS - last_block); | |
94eec0fc | 4657 | if (err == -ENOMEM) { |
8acd5e9b TT |
4658 | cond_resched(); |
4659 | congestion_wait(BLK_RW_ASYNC, HZ/50); | |
4660 | goto retry; | |
4661 | } | |
4662 | if (err) { | |
4663 | ext4_std_error(inode->i_sb, err); | |
4664 | return; | |
4665 | } | |
5f95d21f | 4666 | err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCKS - 1); |
8acd5e9b | 4667 | ext4_std_error(inode->i_sb, err); |
a86c6181 AT |
4668 | } |
4669 | ||
0e8b6879 | 4670 | static int ext4_alloc_file_blocks(struct file *file, ext4_lblk_t offset, |
c174e6d6 DM |
4671 | ext4_lblk_t len, loff_t new_size, |
4672 | int flags, int mode) | |
0e8b6879 LC |
4673 | { |
4674 | struct inode *inode = file_inode(file); | |
4675 | handle_t *handle; | |
4676 | int ret = 0; | |
4677 | int ret2 = 0; | |
4678 | int retries = 0; | |
4679 | struct ext4_map_blocks map; | |
4680 | unsigned int credits; | |
c174e6d6 | 4681 | loff_t epos; |
0e8b6879 LC |
4682 | |
4683 | map.m_lblk = offset; | |
c174e6d6 | 4684 | map.m_len = len; |
0e8b6879 LC |
4685 | /* |
4686 | * Don't normalize the request if it can fit in one extent so | |
4687 | * that it doesn't get unnecessarily split into multiple | |
4688 | * extents. | |
4689 | */ | |
556615dc | 4690 | if (len <= EXT_UNWRITTEN_MAX_LEN) |
0e8b6879 LC |
4691 | flags |= EXT4_GET_BLOCKS_NO_NORMALIZE; |
4692 | ||
4693 | /* | |
4694 | * credits to insert 1 extent into extent tree | |
4695 | */ | |
4696 | credits = ext4_chunk_trans_blocks(inode, len); | |
4697 | ||
4698 | retry: | |
c174e6d6 | 4699 | while (ret >= 0 && len) { |
0e8b6879 LC |
4700 | handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, |
4701 | credits); | |
4702 | if (IS_ERR(handle)) { | |
4703 | ret = PTR_ERR(handle); | |
4704 | break; | |
4705 | } | |
4706 | ret = ext4_map_blocks(handle, inode, &map, flags); | |
4707 | if (ret <= 0) { | |
4708 | ext4_debug("inode #%lu: block %u: len %u: " | |
4709 | "ext4_ext_map_blocks returned %d", | |
4710 | inode->i_ino, map.m_lblk, | |
4711 | map.m_len, ret); | |
4712 | ext4_mark_inode_dirty(handle, inode); | |
4713 | ret2 = ext4_journal_stop(handle); | |
4714 | break; | |
4715 | } | |
c174e6d6 DM |
4716 | map.m_lblk += ret; |
4717 | map.m_len = len = len - ret; | |
4718 | epos = (loff_t)map.m_lblk << inode->i_blkbits; | |
4719 | inode->i_ctime = ext4_current_time(inode); | |
4720 | if (new_size) { | |
4721 | if (epos > new_size) | |
4722 | epos = new_size; | |
4723 | if (ext4_update_inode_size(inode, epos) & 0x1) | |
4724 | inode->i_mtime = inode->i_ctime; | |
4725 | } else { | |
4726 | if (epos > inode->i_size) | |
4727 | ext4_set_inode_flag(inode, | |
4728 | EXT4_INODE_EOFBLOCKS); | |
4729 | } | |
4730 | ext4_mark_inode_dirty(handle, inode); | |
0e8b6879 LC |
4731 | ret2 = ext4_journal_stop(handle); |
4732 | if (ret2) | |
4733 | break; | |
4734 | } | |
4735 | if (ret == -ENOSPC && | |
4736 | ext4_should_retry_alloc(inode->i_sb, &retries)) { | |
4737 | ret = 0; | |
4738 | goto retry; | |
4739 | } | |
4740 | ||
4741 | return ret > 0 ? ret2 : ret; | |
4742 | } | |
4743 | ||
b8a86845 LC |
4744 | static long ext4_zero_range(struct file *file, loff_t offset, |
4745 | loff_t len, int mode) | |
4746 | { | |
4747 | struct inode *inode = file_inode(file); | |
4748 | handle_t *handle = NULL; | |
4749 | unsigned int max_blocks; | |
4750 | loff_t new_size = 0; | |
4751 | int ret = 0; | |
4752 | int flags; | |
69dc9536 | 4753 | int credits; |
c174e6d6 | 4754 | int partial_begin, partial_end; |
b8a86845 LC |
4755 | loff_t start, end; |
4756 | ext4_lblk_t lblk; | |
4757 | struct address_space *mapping = inode->i_mapping; | |
4758 | unsigned int blkbits = inode->i_blkbits; | |
4759 | ||
4760 | trace_ext4_zero_range(inode, offset, len, mode); | |
4761 | ||
6c5e73d3 | 4762 | if (!S_ISREG(inode->i_mode)) |
4763 | return -EINVAL; | |
4764 | ||
e1ee60fd NJ |
4765 | /* Call ext4_force_commit to flush all data in case of data=journal. */ |
4766 | if (ext4_should_journal_data(inode)) { | |
4767 | ret = ext4_force_commit(inode->i_sb); | |
4768 | if (ret) | |
4769 | return ret; | |
4770 | } | |
4771 | ||
b8a86845 LC |
4772 | /* |
4773 | * Write out all dirty pages to avoid race conditions | |
4774 | * Then release them. | |
4775 | */ | |
4776 | if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { | |
4777 | ret = filemap_write_and_wait_range(mapping, offset, | |
4778 | offset + len - 1); | |
4779 | if (ret) | |
4780 | return ret; | |
4781 | } | |
4782 | ||
4783 | /* | |
4784 | * Round up offset. This is not fallocate, we neet to zero out | |
4785 | * blocks, so convert interior block aligned part of the range to | |
4786 | * unwritten and possibly manually zero out unaligned parts of the | |
4787 | * range. | |
4788 | */ | |
4789 | start = round_up(offset, 1 << blkbits); | |
4790 | end = round_down((offset + len), 1 << blkbits); | |
4791 | ||
4792 | if (start < offset || end > offset + len) | |
4793 | return -EINVAL; | |
c174e6d6 DM |
4794 | partial_begin = offset & ((1 << blkbits) - 1); |
4795 | partial_end = (offset + len) & ((1 << blkbits) - 1); | |
b8a86845 LC |
4796 | |
4797 | lblk = start >> blkbits; | |
4798 | max_blocks = (end >> blkbits); | |
4799 | if (max_blocks < lblk) | |
4800 | max_blocks = 0; | |
4801 | else | |
4802 | max_blocks -= lblk; | |
4803 | ||
556615dc | 4804 | flags = EXT4_GET_BLOCKS_CREATE_UNWRIT_EXT | |
b8a86845 LC |
4805 | EXT4_GET_BLOCKS_CONVERT_UNWRITTEN; |
4806 | if (mode & FALLOC_FL_KEEP_SIZE) | |
4807 | flags |= EXT4_GET_BLOCKS_KEEP_SIZE; | |
4808 | ||
4809 | mutex_lock(&inode->i_mutex); | |
4810 | ||
4811 | /* | |
4812 | * Indirect files do not support unwritten extnets | |
4813 | */ | |
4814 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { | |
4815 | ret = -EOPNOTSUPP; | |
4816 | goto out_mutex; | |
4817 | } | |
4818 | ||
4819 | if (!(mode & FALLOC_FL_KEEP_SIZE) && | |
4820 | offset + len > i_size_read(inode)) { | |
4821 | new_size = offset + len; | |
4822 | ret = inode_newsize_ok(inode, new_size); | |
4823 | if (ret) | |
4824 | goto out_mutex; | |
4825 | /* | |
4826 | * If we have a partial block after EOF we have to allocate | |
4827 | * the entire block. | |
4828 | */ | |
c174e6d6 | 4829 | if (partial_end) |
b8a86845 LC |
4830 | max_blocks += 1; |
4831 | } | |
4832 | ||
4833 | if (max_blocks > 0) { | |
4834 | ||
4835 | /* Now release the pages and zero block aligned part of pages*/ | |
4836 | truncate_pagecache_range(inode, start, end - 1); | |
c174e6d6 | 4837 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
b8a86845 LC |
4838 | |
4839 | /* Wait all existing dio workers, newcomers will block on i_mutex */ | |
4840 | ext4_inode_block_unlocked_dio(inode); | |
4841 | inode_dio_wait(inode); | |
4842 | ||
4843 | /* | |
4844 | * Remove entire range from the extent status tree. | |
4845 | */ | |
4846 | ret = ext4_es_remove_extent(inode, lblk, max_blocks); | |
4847 | if (ret) | |
4848 | goto out_dio; | |
4849 | ||
c174e6d6 DM |
4850 | ret = ext4_alloc_file_blocks(file, lblk, max_blocks, new_size, |
4851 | flags, mode); | |
b8a86845 LC |
4852 | if (ret) |
4853 | goto out_dio; | |
4854 | } | |
c174e6d6 DM |
4855 | if (!partial_begin && !partial_end) |
4856 | goto out_dio; | |
4857 | ||
69dc9536 DM |
4858 | /* |
4859 | * In worst case we have to writeout two nonadjacent unwritten | |
4860 | * blocks and update the inode | |
4861 | */ | |
4862 | credits = (2 * ext4_ext_index_trans_blocks(inode, 2)) + 1; | |
4863 | if (ext4_should_journal_data(inode)) | |
4864 | credits += 2; | |
4865 | handle = ext4_journal_start(inode, EXT4_HT_MISC, credits); | |
b8a86845 LC |
4866 | if (IS_ERR(handle)) { |
4867 | ret = PTR_ERR(handle); | |
4868 | ext4_std_error(inode->i_sb, ret); | |
4869 | goto out_dio; | |
4870 | } | |
4871 | ||
4872 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); | |
e5b30416 | 4873 | if (new_size) { |
4631dbf6 | 4874 | ext4_update_inode_size(inode, new_size); |
e5b30416 | 4875 | } else { |
b8a86845 LC |
4876 | /* |
4877 | * Mark that we allocate beyond EOF so the subsequent truncate | |
4878 | * can proceed even if the new size is the same as i_size. | |
4879 | */ | |
4880 | if ((offset + len) > i_size_read(inode)) | |
4881 | ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS); | |
4882 | } | |
b8a86845 LC |
4883 | ext4_mark_inode_dirty(handle, inode); |
4884 | ||
4885 | /* Zero out partial block at the edges of the range */ | |
4886 | ret = ext4_zero_partial_blocks(handle, inode, offset, len); | |
4887 | ||
4888 | if (file->f_flags & O_SYNC) | |
4889 | ext4_handle_sync(handle); | |
4890 | ||
4891 | ext4_journal_stop(handle); | |
4892 | out_dio: | |
4893 | ext4_inode_resume_unlocked_dio(inode); | |
4894 | out_mutex: | |
4895 | mutex_unlock(&inode->i_mutex); | |
4896 | return ret; | |
4897 | } | |
4898 | ||
a2df2a63 | 4899 | /* |
2fe17c10 | 4900 | * preallocate space for a file. This implements ext4's fallocate file |
a2df2a63 AA |
4901 | * operation, which gets called from sys_fallocate system call. |
4902 | * For block-mapped files, posix_fallocate should fall back to the method | |
4903 | * of writing zeroes to the required new blocks (the same behavior which is | |
4904 | * expected for file systems which do not support fallocate() system call). | |
4905 | */ | |
2fe17c10 | 4906 | long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len) |
a2df2a63 | 4907 | { |
496ad9aa | 4908 | struct inode *inode = file_inode(file); |
f282ac19 | 4909 | loff_t new_size = 0; |
498e5f24 | 4910 | unsigned int max_blocks; |
a2df2a63 | 4911 | int ret = 0; |
a4e5d88b | 4912 | int flags; |
0e8b6879 | 4913 | ext4_lblk_t lblk; |
0e8b6879 | 4914 | unsigned int blkbits = inode->i_blkbits; |
a2df2a63 | 4915 | |
a4bb6b64 | 4916 | /* Return error if mode is not supported */ |
9eb79482 | 4917 | if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | |
b8a86845 | 4918 | FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE)) |
a4bb6b64 AH |
4919 | return -EOPNOTSUPP; |
4920 | ||
4921 | if (mode & FALLOC_FL_PUNCH_HOLE) | |
aeb2817a | 4922 | return ext4_punch_hole(inode, offset, len); |
a4bb6b64 | 4923 | |
0c8d414f TM |
4924 | ret = ext4_convert_inline_data(inode); |
4925 | if (ret) | |
4926 | return ret; | |
4927 | ||
8bad6fc8 ZL |
4928 | /* |
4929 | * currently supporting (pre)allocate mode for extent-based | |
4930 | * files _only_ | |
4931 | */ | |
4932 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) | |
4933 | return -EOPNOTSUPP; | |
4934 | ||
40c406c7 TT |
4935 | if (mode & FALLOC_FL_COLLAPSE_RANGE) |
4936 | return ext4_collapse_range(inode, offset, len); | |
4937 | ||
b8a86845 LC |
4938 | if (mode & FALLOC_FL_ZERO_RANGE) |
4939 | return ext4_zero_range(file, offset, len, mode); | |
4940 | ||
0562e0ba | 4941 | trace_ext4_fallocate_enter(inode, offset, len, mode); |
0e8b6879 | 4942 | lblk = offset >> blkbits; |
fd28784a AK |
4943 | /* |
4944 | * We can't just convert len to max_blocks because | |
4945 | * If blocksize = 4096 offset = 3072 and len = 2048 | |
4946 | */ | |
a2df2a63 | 4947 | max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) |
0e8b6879 LC |
4948 | - lblk; |
4949 | ||
556615dc | 4950 | flags = EXT4_GET_BLOCKS_CREATE_UNWRIT_EXT; |
0e8b6879 LC |
4951 | if (mode & FALLOC_FL_KEEP_SIZE) |
4952 | flags |= EXT4_GET_BLOCKS_KEEP_SIZE; | |
4953 | ||
55bd725a | 4954 | mutex_lock(&inode->i_mutex); |
f282ac19 LC |
4955 | |
4956 | if (!(mode & FALLOC_FL_KEEP_SIZE) && | |
4957 | offset + len > i_size_read(inode)) { | |
4958 | new_size = offset + len; | |
4959 | ret = inode_newsize_ok(inode, new_size); | |
4960 | if (ret) | |
4961 | goto out; | |
6d19c42b | 4962 | } |
f282ac19 | 4963 | |
c174e6d6 DM |
4964 | ret = ext4_alloc_file_blocks(file, lblk, max_blocks, new_size, |
4965 | flags, mode); | |
0e8b6879 LC |
4966 | if (ret) |
4967 | goto out; | |
f282ac19 | 4968 | |
c174e6d6 DM |
4969 | if (file->f_flags & O_SYNC && EXT4_SB(inode->i_sb)->s_journal) { |
4970 | ret = jbd2_complete_transaction(EXT4_SB(inode->i_sb)->s_journal, | |
4971 | EXT4_I(inode)->i_sync_tid); | |
f282ac19 | 4972 | } |
f282ac19 | 4973 | out: |
55bd725a | 4974 | mutex_unlock(&inode->i_mutex); |
0e8b6879 LC |
4975 | trace_ext4_fallocate_exit(inode, offset, max_blocks, ret); |
4976 | return ret; | |
a2df2a63 | 4977 | } |
6873fa0d | 4978 | |
0031462b MC |
4979 | /* |
4980 | * This function convert a range of blocks to written extents | |
4981 | * The caller of this function will pass the start offset and the size. | |
4982 | * all unwritten extents within this range will be converted to | |
4983 | * written extents. | |
4984 | * | |
4985 | * This function is called from the direct IO end io call back | |
4986 | * function, to convert the fallocated extents after IO is completed. | |
109f5565 | 4987 | * Returns 0 on success. |
0031462b | 4988 | */ |
6b523df4 JK |
4989 | int ext4_convert_unwritten_extents(handle_t *handle, struct inode *inode, |
4990 | loff_t offset, ssize_t len) | |
0031462b | 4991 | { |
0031462b MC |
4992 | unsigned int max_blocks; |
4993 | int ret = 0; | |
4994 | int ret2 = 0; | |
2ed88685 | 4995 | struct ext4_map_blocks map; |
0031462b MC |
4996 | unsigned int credits, blkbits = inode->i_blkbits; |
4997 | ||
2ed88685 | 4998 | map.m_lblk = offset >> blkbits; |
0031462b MC |
4999 | /* |
5000 | * We can't just convert len to max_blocks because | |
5001 | * If blocksize = 4096 offset = 3072 and len = 2048 | |
5002 | */ | |
2ed88685 TT |
5003 | max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) - |
5004 | map.m_lblk); | |
0031462b | 5005 | /* |
6b523df4 JK |
5006 | * This is somewhat ugly but the idea is clear: When transaction is |
5007 | * reserved, everything goes into it. Otherwise we rather start several | |
5008 | * smaller transactions for conversion of each extent separately. | |
0031462b | 5009 | */ |
6b523df4 JK |
5010 | if (handle) { |
5011 | handle = ext4_journal_start_reserved(handle, | |
5012 | EXT4_HT_EXT_CONVERT); | |
5013 | if (IS_ERR(handle)) | |
5014 | return PTR_ERR(handle); | |
5015 | credits = 0; | |
5016 | } else { | |
5017 | /* | |
5018 | * credits to insert 1 extent into extent tree | |
5019 | */ | |
5020 | credits = ext4_chunk_trans_blocks(inode, max_blocks); | |
5021 | } | |
0031462b | 5022 | while (ret >= 0 && ret < max_blocks) { |
2ed88685 TT |
5023 | map.m_lblk += ret; |
5024 | map.m_len = (max_blocks -= ret); | |
6b523df4 JK |
5025 | if (credits) { |
5026 | handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, | |
5027 | credits); | |
5028 | if (IS_ERR(handle)) { | |
5029 | ret = PTR_ERR(handle); | |
5030 | break; | |
5031 | } | |
0031462b | 5032 | } |
2ed88685 | 5033 | ret = ext4_map_blocks(handle, inode, &map, |
c7064ef1 | 5034 | EXT4_GET_BLOCKS_IO_CONVERT_EXT); |
b06acd38 LC |
5035 | if (ret <= 0) |
5036 | ext4_warning(inode->i_sb, | |
5037 | "inode #%lu: block %u: len %u: " | |
5038 | "ext4_ext_map_blocks returned %d", | |
5039 | inode->i_ino, map.m_lblk, | |
5040 | map.m_len, ret); | |
0031462b | 5041 | ext4_mark_inode_dirty(handle, inode); |
6b523df4 JK |
5042 | if (credits) |
5043 | ret2 = ext4_journal_stop(handle); | |
5044 | if (ret <= 0 || ret2) | |
0031462b MC |
5045 | break; |
5046 | } | |
6b523df4 JK |
5047 | if (!credits) |
5048 | ret2 = ext4_journal_stop(handle); | |
0031462b MC |
5049 | return ret > 0 ? ret2 : ret; |
5050 | } | |
6d9c85eb | 5051 | |
6873fa0d | 5052 | /* |
69eb33dc ZL |
5053 | * If newes is not existing extent (newes->ec_pblk equals zero) find |
5054 | * delayed extent at start of newes and update newes accordingly and | |
91dd8c11 LC |
5055 | * return start of the next delayed extent. |
5056 | * | |
69eb33dc | 5057 | * If newes is existing extent (newes->ec_pblk is not equal zero) |
91dd8c11 | 5058 | * return start of next delayed extent or EXT_MAX_BLOCKS if no delayed |
69eb33dc | 5059 | * extent found. Leave newes unmodified. |
6873fa0d | 5060 | */ |
91dd8c11 | 5061 | static int ext4_find_delayed_extent(struct inode *inode, |
69eb33dc | 5062 | struct extent_status *newes) |
6873fa0d | 5063 | { |
b3aff3e3 | 5064 | struct extent_status es; |
be401363 | 5065 | ext4_lblk_t block, next_del; |
6873fa0d | 5066 | |
69eb33dc | 5067 | if (newes->es_pblk == 0) { |
e30b5dca YZ |
5068 | ext4_es_find_delayed_extent_range(inode, newes->es_lblk, |
5069 | newes->es_lblk + newes->es_len - 1, &es); | |
5070 | ||
6d9c85eb | 5071 | /* |
69eb33dc | 5072 | * No extent in extent-tree contains block @newes->es_pblk, |
6d9c85eb | 5073 | * then the block may stay in 1)a hole or 2)delayed-extent. |
6d9c85eb | 5074 | */ |
06b0c886 | 5075 | if (es.es_len == 0) |
b3aff3e3 | 5076 | /* A hole found. */ |
91dd8c11 | 5077 | return 0; |
b3aff3e3 | 5078 | |
69eb33dc | 5079 | if (es.es_lblk > newes->es_lblk) { |
b3aff3e3 | 5080 | /* A hole found. */ |
69eb33dc ZL |
5081 | newes->es_len = min(es.es_lblk - newes->es_lblk, |
5082 | newes->es_len); | |
91dd8c11 | 5083 | return 0; |
6873fa0d | 5084 | } |
6d9c85eb | 5085 | |
69eb33dc | 5086 | newes->es_len = es.es_lblk + es.es_len - newes->es_lblk; |
6873fa0d ES |
5087 | } |
5088 | ||
69eb33dc | 5089 | block = newes->es_lblk + newes->es_len; |
e30b5dca | 5090 | ext4_es_find_delayed_extent_range(inode, block, EXT_MAX_BLOCKS, &es); |
be401363 ZL |
5091 | if (es.es_len == 0) |
5092 | next_del = EXT_MAX_BLOCKS; | |
5093 | else | |
5094 | next_del = es.es_lblk; | |
5095 | ||
91dd8c11 | 5096 | return next_del; |
6873fa0d | 5097 | } |
6873fa0d ES |
5098 | /* fiemap flags we can handle specified here */ |
5099 | #define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR) | |
5100 | ||
3a06d778 AK |
5101 | static int ext4_xattr_fiemap(struct inode *inode, |
5102 | struct fiemap_extent_info *fieinfo) | |
6873fa0d ES |
5103 | { |
5104 | __u64 physical = 0; | |
5105 | __u64 length; | |
5106 | __u32 flags = FIEMAP_EXTENT_LAST; | |
5107 | int blockbits = inode->i_sb->s_blocksize_bits; | |
5108 | int error = 0; | |
5109 | ||
5110 | /* in-inode? */ | |
19f5fb7a | 5111 | if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) { |
6873fa0d ES |
5112 | struct ext4_iloc iloc; |
5113 | int offset; /* offset of xattr in inode */ | |
5114 | ||
5115 | error = ext4_get_inode_loc(inode, &iloc); | |
5116 | if (error) | |
5117 | return error; | |
a60697f4 | 5118 | physical = (__u64)iloc.bh->b_blocknr << blockbits; |
6873fa0d ES |
5119 | offset = EXT4_GOOD_OLD_INODE_SIZE + |
5120 | EXT4_I(inode)->i_extra_isize; | |
5121 | physical += offset; | |
5122 | length = EXT4_SB(inode->i_sb)->s_inode_size - offset; | |
5123 | flags |= FIEMAP_EXTENT_DATA_INLINE; | |
fd2dd9fb | 5124 | brelse(iloc.bh); |
6873fa0d | 5125 | } else { /* external block */ |
a60697f4 | 5126 | physical = (__u64)EXT4_I(inode)->i_file_acl << blockbits; |
6873fa0d ES |
5127 | length = inode->i_sb->s_blocksize; |
5128 | } | |
5129 | ||
5130 | if (physical) | |
5131 | error = fiemap_fill_next_extent(fieinfo, 0, physical, | |
5132 | length, flags); | |
5133 | return (error < 0 ? error : 0); | |
5134 | } | |
5135 | ||
5136 | int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, | |
5137 | __u64 start, __u64 len) | |
5138 | { | |
5139 | ext4_lblk_t start_blk; | |
6873fa0d ES |
5140 | int error = 0; |
5141 | ||
94191985 TM |
5142 | if (ext4_has_inline_data(inode)) { |
5143 | int has_inline = 1; | |
5144 | ||
5145 | error = ext4_inline_data_fiemap(inode, fieinfo, &has_inline); | |
5146 | ||
5147 | if (has_inline) | |
5148 | return error; | |
5149 | } | |
5150 | ||
7869a4a6 TT |
5151 | if (fieinfo->fi_flags & FIEMAP_FLAG_CACHE) { |
5152 | error = ext4_ext_precache(inode); | |
5153 | if (error) | |
5154 | return error; | |
5155 | } | |
5156 | ||
6873fa0d | 5157 | /* fallback to generic here if not in extents fmt */ |
12e9b892 | 5158 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) |
6873fa0d ES |
5159 | return generic_block_fiemap(inode, fieinfo, start, len, |
5160 | ext4_get_block); | |
5161 | ||
5162 | if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS)) | |
5163 | return -EBADR; | |
5164 | ||
5165 | if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) { | |
5166 | error = ext4_xattr_fiemap(inode, fieinfo); | |
5167 | } else { | |
aca92ff6 LM |
5168 | ext4_lblk_t len_blks; |
5169 | __u64 last_blk; | |
5170 | ||
6873fa0d | 5171 | start_blk = start >> inode->i_sb->s_blocksize_bits; |
aca92ff6 | 5172 | last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits; |
f17722f9 LC |
5173 | if (last_blk >= EXT_MAX_BLOCKS) |
5174 | last_blk = EXT_MAX_BLOCKS-1; | |
aca92ff6 | 5175 | len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1; |
6873fa0d ES |
5176 | |
5177 | /* | |
91dd8c11 LC |
5178 | * Walk the extent tree gathering extent information |
5179 | * and pushing extents back to the user. | |
6873fa0d | 5180 | */ |
91dd8c11 LC |
5181 | error = ext4_fill_fiemap_extents(inode, start_blk, |
5182 | len_blks, fieinfo); | |
6873fa0d | 5183 | } |
107a7bd3 | 5184 | ext4_es_lru_add(inode); |
6873fa0d ES |
5185 | return error; |
5186 | } | |
9eb79482 NJ |
5187 | |
5188 | /* | |
5189 | * ext4_access_path: | |
5190 | * Function to access the path buffer for marking it dirty. | |
5191 | * It also checks if there are sufficient credits left in the journal handle | |
5192 | * to update path. | |
5193 | */ | |
5194 | static int | |
5195 | ext4_access_path(handle_t *handle, struct inode *inode, | |
5196 | struct ext4_ext_path *path) | |
5197 | { | |
5198 | int credits, err; | |
5199 | ||
5200 | if (!ext4_handle_valid(handle)) | |
5201 | return 0; | |
5202 | ||
5203 | /* | |
5204 | * Check if need to extend journal credits | |
5205 | * 3 for leaf, sb, and inode plus 2 (bmap and group | |
5206 | * descriptor) for each block group; assume two block | |
5207 | * groups | |
5208 | */ | |
5209 | if (handle->h_buffer_credits < 7) { | |
5210 | credits = ext4_writepage_trans_blocks(inode); | |
5211 | err = ext4_ext_truncate_extend_restart(handle, inode, credits); | |
5212 | /* EAGAIN is success */ | |
5213 | if (err && err != -EAGAIN) | |
5214 | return err; | |
5215 | } | |
5216 | ||
5217 | err = ext4_ext_get_access(handle, inode, path); | |
5218 | return err; | |
5219 | } | |
5220 | ||
5221 | /* | |
5222 | * ext4_ext_shift_path_extents: | |
5223 | * Shift the extents of a path structure lying between path[depth].p_ext | |
5224 | * and EXT_LAST_EXTENT(path[depth].p_hdr) downwards, by subtracting shift | |
5225 | * from starting block for each extent. | |
5226 | */ | |
5227 | static int | |
5228 | ext4_ext_shift_path_extents(struct ext4_ext_path *path, ext4_lblk_t shift, | |
5229 | struct inode *inode, handle_t *handle, | |
5230 | ext4_lblk_t *start) | |
5231 | { | |
5232 | int depth, err = 0; | |
5233 | struct ext4_extent *ex_start, *ex_last; | |
5234 | bool update = 0; | |
5235 | depth = path->p_depth; | |
5236 | ||
5237 | while (depth >= 0) { | |
5238 | if (depth == path->p_depth) { | |
5239 | ex_start = path[depth].p_ext; | |
5240 | if (!ex_start) | |
5241 | return -EIO; | |
5242 | ||
5243 | ex_last = EXT_LAST_EXTENT(path[depth].p_hdr); | |
5244 | if (!ex_last) | |
5245 | return -EIO; | |
5246 | ||
5247 | err = ext4_access_path(handle, inode, path + depth); | |
5248 | if (err) | |
5249 | goto out; | |
5250 | ||
5251 | if (ex_start == EXT_FIRST_EXTENT(path[depth].p_hdr)) | |
5252 | update = 1; | |
5253 | ||
847c6c42 | 5254 | *start = le32_to_cpu(ex_last->ee_block) + |
9eb79482 NJ |
5255 | ext4_ext_get_actual_len(ex_last); |
5256 | ||
5257 | while (ex_start <= ex_last) { | |
847c6c42 | 5258 | le32_add_cpu(&ex_start->ee_block, -shift); |
6dd834ef LC |
5259 | /* Try to merge to the left. */ |
5260 | if ((ex_start > | |
5261 | EXT_FIRST_EXTENT(path[depth].p_hdr)) && | |
5262 | ext4_ext_try_to_merge_right(inode, | |
5263 | path, ex_start - 1)) | |
5264 | ex_last--; | |
5265 | else | |
5266 | ex_start++; | |
9eb79482 NJ |
5267 | } |
5268 | err = ext4_ext_dirty(handle, inode, path + depth); | |
5269 | if (err) | |
5270 | goto out; | |
5271 | ||
5272 | if (--depth < 0 || !update) | |
5273 | break; | |
5274 | } | |
5275 | ||
5276 | /* Update index too */ | |
5277 | err = ext4_access_path(handle, inode, path + depth); | |
5278 | if (err) | |
5279 | goto out; | |
5280 | ||
847c6c42 | 5281 | le32_add_cpu(&path[depth].p_idx->ei_block, -shift); |
9eb79482 NJ |
5282 | err = ext4_ext_dirty(handle, inode, path + depth); |
5283 | if (err) | |
5284 | goto out; | |
5285 | ||
5286 | /* we are done if current index is not a starting index */ | |
5287 | if (path[depth].p_idx != EXT_FIRST_INDEX(path[depth].p_hdr)) | |
5288 | break; | |
5289 | ||
5290 | depth--; | |
5291 | } | |
5292 | ||
5293 | out: | |
5294 | return err; | |
5295 | } | |
5296 | ||
5297 | /* | |
5298 | * ext4_ext_shift_extents: | |
5299 | * All the extents which lies in the range from start to the last allocated | |
5300 | * block for the file are shifted downwards by shift blocks. | |
5301 | * On success, 0 is returned, error otherwise. | |
5302 | */ | |
5303 | static int | |
5304 | ext4_ext_shift_extents(struct inode *inode, handle_t *handle, | |
5305 | ext4_lblk_t start, ext4_lblk_t shift) | |
5306 | { | |
5307 | struct ext4_ext_path *path; | |
5308 | int ret = 0, depth; | |
5309 | struct ext4_extent *extent; | |
f8fb4f41 | 5310 | ext4_lblk_t stop_block; |
9eb79482 NJ |
5311 | ext4_lblk_t ex_start, ex_end; |
5312 | ||
5313 | /* Let path point to the last extent */ | |
5314 | path = ext4_ext_find_extent(inode, EXT_MAX_BLOCKS - 1, NULL, 0); | |
5315 | if (IS_ERR(path)) | |
5316 | return PTR_ERR(path); | |
5317 | ||
5318 | depth = path->p_depth; | |
5319 | extent = path[depth].p_ext; | |
5320 | if (!extent) { | |
5321 | ext4_ext_drop_refs(path); | |
5322 | kfree(path); | |
5323 | return ret; | |
5324 | } | |
5325 | ||
847c6c42 ZL |
5326 | stop_block = le32_to_cpu(extent->ee_block) + |
5327 | ext4_ext_get_actual_len(extent); | |
9eb79482 NJ |
5328 | ext4_ext_drop_refs(path); |
5329 | kfree(path); | |
5330 | ||
5331 | /* Nothing to shift, if hole is at the end of file */ | |
5332 | if (start >= stop_block) | |
5333 | return ret; | |
5334 | ||
5335 | /* | |
5336 | * Don't start shifting extents until we make sure the hole is big | |
5337 | * enough to accomodate the shift. | |
5338 | */ | |
5339 | path = ext4_ext_find_extent(inode, start - 1, NULL, 0); | |
8dc79ec4 DM |
5340 | if (IS_ERR(path)) |
5341 | return PTR_ERR(path); | |
9eb79482 NJ |
5342 | depth = path->p_depth; |
5343 | extent = path[depth].p_ext; | |
8dc79ec4 DM |
5344 | if (extent) { |
5345 | ex_start = le32_to_cpu(extent->ee_block); | |
5346 | ex_end = le32_to_cpu(extent->ee_block) + | |
847c6c42 | 5347 | ext4_ext_get_actual_len(extent); |
8dc79ec4 DM |
5348 | } else { |
5349 | ex_start = 0; | |
5350 | ex_end = 0; | |
5351 | } | |
9eb79482 NJ |
5352 | ext4_ext_drop_refs(path); |
5353 | kfree(path); | |
5354 | ||
5355 | if ((start == ex_start && shift > ex_start) || | |
5356 | (shift > start - ex_end)) | |
5357 | return -EINVAL; | |
5358 | ||
5359 | /* Its safe to start updating extents */ | |
5360 | while (start < stop_block) { | |
5361 | path = ext4_ext_find_extent(inode, start, NULL, 0); | |
5362 | if (IS_ERR(path)) | |
5363 | return PTR_ERR(path); | |
5364 | depth = path->p_depth; | |
5365 | extent = path[depth].p_ext; | |
a18ed359 DM |
5366 | if (!extent) { |
5367 | EXT4_ERROR_INODE(inode, "unexpected hole at %lu", | |
5368 | (unsigned long) start); | |
5369 | return -EIO; | |
5370 | } | |
f8fb4f41 | 5371 | if (start > le32_to_cpu(extent->ee_block)) { |
9eb79482 | 5372 | /* Hole, move to the next extent */ |
f8fb4f41 DM |
5373 | if (extent < EXT_LAST_EXTENT(path[depth].p_hdr)) { |
5374 | path[depth].p_ext++; | |
5375 | } else { | |
5376 | start = ext4_ext_next_allocated_block(path); | |
9eb79482 NJ |
5377 | ext4_ext_drop_refs(path); |
5378 | kfree(path); | |
f8fb4f41 | 5379 | continue; |
9eb79482 NJ |
5380 | } |
5381 | } | |
5382 | ret = ext4_ext_shift_path_extents(path, shift, inode, | |
5383 | handle, &start); | |
5384 | ext4_ext_drop_refs(path); | |
5385 | kfree(path); | |
5386 | if (ret) | |
5387 | break; | |
5388 | } | |
5389 | ||
5390 | return ret; | |
5391 | } | |
5392 | ||
5393 | /* | |
5394 | * ext4_collapse_range: | |
5395 | * This implements the fallocate's collapse range functionality for ext4 | |
5396 | * Returns: 0 and non-zero on error. | |
5397 | */ | |
5398 | int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len) | |
5399 | { | |
5400 | struct super_block *sb = inode->i_sb; | |
5401 | ext4_lblk_t punch_start, punch_stop; | |
5402 | handle_t *handle; | |
5403 | unsigned int credits; | |
a8680e0d | 5404 | loff_t new_size, ioffset; |
9eb79482 NJ |
5405 | int ret; |
5406 | ||
9eb79482 | 5407 | /* Collapse range works only on fs block size aligned offsets. */ |
ee98fa3a NJ |
5408 | if (offset & (EXT4_CLUSTER_SIZE(sb) - 1) || |
5409 | len & (EXT4_CLUSTER_SIZE(sb) - 1)) | |
9eb79482 NJ |
5410 | return -EINVAL; |
5411 | ||
5412 | if (!S_ISREG(inode->i_mode)) | |
86f1ca38 | 5413 | return -EINVAL; |
9eb79482 NJ |
5414 | |
5415 | trace_ext4_collapse_range(inode, offset, len); | |
5416 | ||
5417 | punch_start = offset >> EXT4_BLOCK_SIZE_BITS(sb); | |
5418 | punch_stop = (offset + len) >> EXT4_BLOCK_SIZE_BITS(sb); | |
5419 | ||
1ce01c4a NJ |
5420 | /* Call ext4_force_commit to flush all data in case of data=journal. */ |
5421 | if (ext4_should_journal_data(inode)) { | |
5422 | ret = ext4_force_commit(inode->i_sb); | |
5423 | if (ret) | |
5424 | return ret; | |
5425 | } | |
5426 | ||
a8680e0d NJ |
5427 | /* |
5428 | * Need to round down offset to be aligned with page size boundary | |
5429 | * for page size > block size. | |
5430 | */ | |
5431 | ioffset = round_down(offset, PAGE_SIZE); | |
5432 | ||
9eb79482 | 5433 | /* Write out all dirty pages */ |
a8680e0d NJ |
5434 | ret = filemap_write_and_wait_range(inode->i_mapping, ioffset, |
5435 | LLONG_MAX); | |
9eb79482 NJ |
5436 | if (ret) |
5437 | return ret; | |
5438 | ||
5439 | /* Take mutex lock */ | |
5440 | mutex_lock(&inode->i_mutex); | |
5441 | ||
23fffa92 LC |
5442 | /* |
5443 | * There is no need to overlap collapse range with EOF, in which case | |
5444 | * it is effectively a truncate operation | |
5445 | */ | |
5446 | if (offset + len >= i_size_read(inode)) { | |
5447 | ret = -EINVAL; | |
5448 | goto out_mutex; | |
5449 | } | |
5450 | ||
9eb79482 NJ |
5451 | /* Currently just for extent based files */ |
5452 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { | |
5453 | ret = -EOPNOTSUPP; | |
5454 | goto out_mutex; | |
5455 | } | |
5456 | ||
a8680e0d | 5457 | truncate_pagecache(inode, ioffset); |
9eb79482 NJ |
5458 | |
5459 | /* Wait for existing dio to complete */ | |
5460 | ext4_inode_block_unlocked_dio(inode); | |
5461 | inode_dio_wait(inode); | |
5462 | ||
5463 | credits = ext4_writepage_trans_blocks(inode); | |
5464 | handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); | |
5465 | if (IS_ERR(handle)) { | |
5466 | ret = PTR_ERR(handle); | |
5467 | goto out_dio; | |
5468 | } | |
5469 | ||
5470 | down_write(&EXT4_I(inode)->i_data_sem); | |
5471 | ext4_discard_preallocations(inode); | |
5472 | ||
5473 | ret = ext4_es_remove_extent(inode, punch_start, | |
2c1d2328 | 5474 | EXT_MAX_BLOCKS - punch_start); |
9eb79482 NJ |
5475 | if (ret) { |
5476 | up_write(&EXT4_I(inode)->i_data_sem); | |
5477 | goto out_stop; | |
5478 | } | |
5479 | ||
5480 | ret = ext4_ext_remove_space(inode, punch_start, punch_stop - 1); | |
5481 | if (ret) { | |
5482 | up_write(&EXT4_I(inode)->i_data_sem); | |
5483 | goto out_stop; | |
5484 | } | |
ef24f6c2 | 5485 | ext4_discard_preallocations(inode); |
9eb79482 NJ |
5486 | |
5487 | ret = ext4_ext_shift_extents(inode, handle, punch_stop, | |
5488 | punch_stop - punch_start); | |
5489 | if (ret) { | |
5490 | up_write(&EXT4_I(inode)->i_data_sem); | |
5491 | goto out_stop; | |
5492 | } | |
5493 | ||
5494 | new_size = i_size_read(inode) - len; | |
9337d5d3 | 5495 | i_size_write(inode, new_size); |
9eb79482 NJ |
5496 | EXT4_I(inode)->i_disksize = new_size; |
5497 | ||
9eb79482 NJ |
5498 | up_write(&EXT4_I(inode)->i_data_sem); |
5499 | if (IS_SYNC(inode)) | |
5500 | ext4_handle_sync(handle); | |
5501 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); | |
5502 | ext4_mark_inode_dirty(handle, inode); | |
5503 | ||
5504 | out_stop: | |
5505 | ext4_journal_stop(handle); | |
5506 | out_dio: | |
5507 | ext4_inode_resume_unlocked_dio(inode); | |
5508 | out_mutex: | |
5509 | mutex_unlock(&inode->i_mutex); | |
5510 | return ret; | |
5511 | } | |
fcf6b1b7 DM |
5512 | |
5513 | /** | |
5514 | * ext4_swap_extents - Swap extents between two inodes | |
5515 | * | |
5516 | * @inode1: First inode | |
5517 | * @inode2: Second inode | |
5518 | * @lblk1: Start block for first inode | |
5519 | * @lblk2: Start block for second inode | |
5520 | * @count: Number of blocks to swap | |
5521 | * @mark_unwritten: Mark second inode's extents as unwritten after swap | |
5522 | * @erp: Pointer to save error value | |
5523 | * | |
5524 | * This helper routine does exactly what is promise "swap extents". All other | |
5525 | * stuff such as page-cache locking consistency, bh mapping consistency or | |
5526 | * extent's data copying must be performed by caller. | |
5527 | * Locking: | |
5528 | * i_mutex is held for both inodes | |
5529 | * i_data_sem is locked for write for both inodes | |
5530 | * Assumptions: | |
5531 | * All pages from requested range are locked for both inodes | |
5532 | */ | |
5533 | int | |
5534 | ext4_swap_extents(handle_t *handle, struct inode *inode1, | |
5535 | struct inode *inode2, ext4_lblk_t lblk1, ext4_lblk_t lblk2, | |
5536 | ext4_lblk_t count, int unwritten, int *erp) | |
5537 | { | |
5538 | struct ext4_ext_path *path1 = NULL; | |
5539 | struct ext4_ext_path *path2 = NULL; | |
5540 | int replaced_count = 0; | |
5541 | ||
5542 | BUG_ON(!rwsem_is_locked(&EXT4_I(inode1)->i_data_sem)); | |
5543 | BUG_ON(!rwsem_is_locked(&EXT4_I(inode2)->i_data_sem)); | |
5544 | BUG_ON(!mutex_is_locked(&inode1->i_mutex)); | |
5545 | BUG_ON(!mutex_is_locked(&inode1->i_mutex)); | |
5546 | ||
5547 | *erp = ext4_es_remove_extent(inode1, lblk1, count); | |
5548 | if (*erp) | |
5549 | return 0; | |
5550 | *erp = ext4_es_remove_extent(inode2, lblk2, count); | |
5551 | if (*erp) | |
5552 | return 0; | |
5553 | ||
5554 | while (count) { | |
5555 | struct ext4_extent *ex1, *ex2, tmp_ex; | |
5556 | ext4_lblk_t e1_blk, e2_blk; | |
5557 | int e1_len, e2_len, len; | |
5558 | int split = 0; | |
5559 | ||
5560 | path1 = ext4_ext_find_extent(inode1, lblk1, NULL, EXT4_EX_NOCACHE); | |
5561 | if (IS_ERR(path1)) { | |
5562 | *erp = PTR_ERR(path1); | |
5563 | break; | |
5564 | } | |
5565 | path2 = ext4_ext_find_extent(inode2, lblk2, NULL, EXT4_EX_NOCACHE); | |
5566 | if (IS_ERR(path2)) { | |
5567 | *erp = PTR_ERR(path2); | |
5568 | break; | |
5569 | } | |
5570 | ex1 = path1[path1->p_depth].p_ext; | |
5571 | ex2 = path2[path2->p_depth].p_ext; | |
5572 | /* Do we have somthing to swap ? */ | |
5573 | if (unlikely(!ex2 || !ex1)) | |
5574 | break; | |
5575 | ||
5576 | e1_blk = le32_to_cpu(ex1->ee_block); | |
5577 | e2_blk = le32_to_cpu(ex2->ee_block); | |
5578 | e1_len = ext4_ext_get_actual_len(ex1); | |
5579 | e2_len = ext4_ext_get_actual_len(ex2); | |
5580 | ||
5581 | /* Hole handling */ | |
5582 | if (!in_range(lblk1, e1_blk, e1_len) || | |
5583 | !in_range(lblk2, e2_blk, e2_len)) { | |
5584 | ext4_lblk_t next1, next2; | |
5585 | ||
5586 | /* if hole after extent, then go to next extent */ | |
5587 | next1 = ext4_ext_next_allocated_block(path1); | |
5588 | next2 = ext4_ext_next_allocated_block(path2); | |
5589 | /* If hole before extent, then shift to that extent */ | |
5590 | if (e1_blk > lblk1) | |
5591 | next1 = e1_blk; | |
5592 | if (e2_blk > lblk2) | |
5593 | next2 = e1_blk; | |
5594 | /* Do we have something to swap */ | |
5595 | if (next1 == EXT_MAX_BLOCKS || next2 == EXT_MAX_BLOCKS) | |
5596 | break; | |
5597 | /* Move to the rightest boundary */ | |
5598 | len = next1 - lblk1; | |
5599 | if (len < next2 - lblk2) | |
5600 | len = next2 - lblk2; | |
5601 | if (len > count) | |
5602 | len = count; | |
5603 | lblk1 += len; | |
5604 | lblk2 += len; | |
5605 | count -= len; | |
5606 | goto repeat; | |
5607 | } | |
5608 | ||
5609 | /* Prepare left boundary */ | |
5610 | if (e1_blk < lblk1) { | |
5611 | split = 1; | |
5612 | *erp = ext4_force_split_extent_at(handle, inode1, | |
5613 | path1, lblk1, 0); | |
5614 | if (*erp) | |
5615 | break; | |
5616 | } | |
5617 | if (e2_blk < lblk2) { | |
5618 | split = 1; | |
5619 | *erp = ext4_force_split_extent_at(handle, inode2, | |
5620 | path2, lblk2, 0); | |
5621 | if (*erp) | |
5622 | break; | |
5623 | } | |
5624 | /* ext4_split_extent_at() may retult in leaf extent split, | |
5625 | * path must to be revalidated. */ | |
5626 | if (split) | |
5627 | goto repeat; | |
5628 | ||
5629 | /* Prepare right boundary */ | |
5630 | len = count; | |
5631 | if (len > e1_blk + e1_len - lblk1) | |
5632 | len = e1_blk + e1_len - lblk1; | |
5633 | if (len > e2_blk + e2_len - lblk2) | |
5634 | len = e2_blk + e2_len - lblk2; | |
5635 | ||
5636 | if (len != e1_len) { | |
5637 | split = 1; | |
5638 | *erp = ext4_force_split_extent_at(handle, inode1, | |
5639 | path1, lblk1 + len, 0); | |
5640 | if (*erp) | |
5641 | break; | |
5642 | } | |
5643 | if (len != e2_len) { | |
5644 | split = 1; | |
5645 | *erp = ext4_force_split_extent_at(handle, inode2, | |
5646 | path2, lblk2 + len, 0); | |
5647 | if (*erp) | |
5648 | break; | |
5649 | } | |
5650 | /* ext4_split_extent_at() may retult in leaf extent split, | |
5651 | * path must to be revalidated. */ | |
5652 | if (split) | |
5653 | goto repeat; | |
5654 | ||
5655 | BUG_ON(e2_len != e1_len); | |
5656 | *erp = ext4_ext_get_access(handle, inode1, path1 + path1->p_depth); | |
5657 | if (*erp) | |
5658 | break; | |
5659 | *erp = ext4_ext_get_access(handle, inode2, path2 + path2->p_depth); | |
5660 | if (*erp) | |
5661 | break; | |
5662 | ||
5663 | /* Both extents are fully inside boundaries. Swap it now */ | |
5664 | tmp_ex = *ex1; | |
5665 | ext4_ext_store_pblock(ex1, ext4_ext_pblock(ex2)); | |
5666 | ext4_ext_store_pblock(ex2, ext4_ext_pblock(&tmp_ex)); | |
5667 | ex1->ee_len = cpu_to_le16(e2_len); | |
5668 | ex2->ee_len = cpu_to_le16(e1_len); | |
5669 | if (unwritten) | |
5670 | ext4_ext_mark_unwritten(ex2); | |
5671 | if (ext4_ext_is_unwritten(&tmp_ex)) | |
5672 | ext4_ext_mark_unwritten(ex1); | |
5673 | ||
5674 | ext4_ext_try_to_merge(handle, inode2, path2, ex2); | |
5675 | ext4_ext_try_to_merge(handle, inode1, path1, ex1); | |
5676 | *erp = ext4_ext_dirty(handle, inode2, path2 + | |
5677 | path2->p_depth); | |
5678 | if (*erp) | |
5679 | break; | |
5680 | *erp = ext4_ext_dirty(handle, inode1, path1 + | |
5681 | path1->p_depth); | |
5682 | /* | |
5683 | * Looks scarry ah..? second inode already points to new blocks, | |
5684 | * and it was successfully dirtied. But luckily error may happen | |
5685 | * only due to journal error, so full transaction will be | |
5686 | * aborted anyway. | |
5687 | */ | |
5688 | if (*erp) | |
5689 | break; | |
5690 | lblk1 += len; | |
5691 | lblk2 += len; | |
5692 | replaced_count += len; | |
5693 | count -= len; | |
5694 | ||
5695 | repeat: | |
5696 | if (path1) { | |
5697 | ext4_ext_drop_refs(path1); | |
5698 | kfree(path1); | |
5699 | path1 = NULL; | |
5700 | } | |
5701 | if (path2) { | |
5702 | ext4_ext_drop_refs(path2); | |
5703 | kfree(path2); | |
5704 | path2 = NULL; | |
5705 | } | |
5706 | } | |
5707 | if (path1) { | |
5708 | ext4_ext_drop_refs(path1); | |
5709 | kfree(path1); | |
5710 | } | |
5711 | if (path2) { | |
5712 | ext4_ext_drop_refs(path2); | |
5713 | kfree(path2); | |
5714 | } | |
5715 | return replaced_count; | |
5716 | } |