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