1 // SPDX-License-Identifier: LGPL-2.1
3 * Copyright IBM Corporation, 2007
8 #include <linux/slab.h>
10 #include "ext4_extents.h"
13 * The contiguous blocks details which can be
14 * represented by a single extent
16 struct migrate_struct {
17 ext4_lblk_t first_block, last_block, curr_block;
18 ext4_fsblk_t first_pblock, last_pblock;
21 static int finish_range(handle_t *handle, struct inode *inode,
22 struct migrate_struct *lb)
25 int retval = 0, needed;
26 struct ext4_extent newext;
27 struct ext4_ext_path *path;
28 if (lb->first_pblock == 0)
31 /* Add the extent to temp inode*/
32 newext.ee_block = cpu_to_le32(lb->first_block);
33 newext.ee_len = cpu_to_le16(lb->last_block - lb->first_block + 1);
34 ext4_ext_store_pblock(&newext, lb->first_pblock);
35 /* Locking only for convenience since we are operating on temp inode */
36 down_write(&EXT4_I(inode)->i_data_sem);
37 path = ext4_find_extent(inode, lb->first_block, NULL, 0);
39 retval = PTR_ERR(path);
45 * Calculate the credit needed to inserting this extent
46 * Since we are doing this in loop we may accumulate extra
47 * credit. But below we try to not accumulate too much
48 * of them by restarting the journal.
50 needed = ext4_ext_calc_credits_for_single_extent(inode,
51 lb->last_block - lb->first_block + 1, path);
53 retval = ext4_datasem_ensure_credits(handle, inode, needed, needed, 0);
56 retval = ext4_ext_insert_extent(handle, inode, &path, &newext, 0);
58 up_write((&EXT4_I(inode)->i_data_sem));
59 ext4_free_ext_path(path);
64 static int update_extent_range(handle_t *handle, struct inode *inode,
65 ext4_fsblk_t pblock, struct migrate_struct *lb)
69 * See if we can add on to the existing range (if it exists)
71 if (lb->first_pblock &&
72 (lb->last_pblock+1 == pblock) &&
73 (lb->last_block+1 == lb->curr_block)) {
74 lb->last_pblock = pblock;
75 lb->last_block = lb->curr_block;
82 retval = finish_range(handle, inode, lb);
83 lb->first_pblock = lb->last_pblock = pblock;
84 lb->first_block = lb->last_block = lb->curr_block;
89 static int update_ind_extent_range(handle_t *handle, struct inode *inode,
91 struct migrate_struct *lb)
93 struct buffer_head *bh;
96 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
98 bh = ext4_sb_bread(inode->i_sb, pblock, 0);
102 i_data = (__le32 *)bh->b_data;
103 for (i = 0; i < max_entries; i++) {
105 retval = update_extent_range(handle, inode,
106 le32_to_cpu(i_data[i]), lb);
118 static int update_dind_extent_range(handle_t *handle, struct inode *inode,
120 struct migrate_struct *lb)
122 struct buffer_head *bh;
125 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
127 bh = ext4_sb_bread(inode->i_sb, pblock, 0);
131 i_data = (__le32 *)bh->b_data;
132 for (i = 0; i < max_entries; i++) {
134 retval = update_ind_extent_range(handle, inode,
135 le32_to_cpu(i_data[i]), lb);
139 /* Only update the file block number */
140 lb->curr_block += max_entries;
148 static int update_tind_extent_range(handle_t *handle, struct inode *inode,
150 struct migrate_struct *lb)
152 struct buffer_head *bh;
155 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
157 bh = ext4_sb_bread(inode->i_sb, pblock, 0);
161 i_data = (__le32 *)bh->b_data;
162 for (i = 0; i < max_entries; i++) {
164 retval = update_dind_extent_range(handle, inode,
165 le32_to_cpu(i_data[i]), lb);
169 /* Only update the file block number */
170 lb->curr_block += max_entries * max_entries;
178 static int free_dind_blocks(handle_t *handle,
179 struct inode *inode, __le32 i_data)
183 struct buffer_head *bh;
184 struct super_block *sb = inode->i_sb;
185 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
188 bh = ext4_sb_bread(sb, le32_to_cpu(i_data), 0);
192 tmp_idata = (__le32 *)bh->b_data;
193 for (i = 0; i < max_entries; i++) {
195 err = ext4_journal_ensure_credits(handle,
196 EXT4_RESERVE_TRANS_BLOCKS,
197 ext4_free_metadata_revoke_credits(sb, 1));
202 ext4_free_blocks(handle, inode, NULL,
203 le32_to_cpu(tmp_idata[i]), 1,
204 EXT4_FREE_BLOCKS_METADATA |
205 EXT4_FREE_BLOCKS_FORGET);
209 err = ext4_journal_ensure_credits(handle, EXT4_RESERVE_TRANS_BLOCKS,
210 ext4_free_metadata_revoke_credits(sb, 1));
213 ext4_free_blocks(handle, inode, NULL, le32_to_cpu(i_data), 1,
214 EXT4_FREE_BLOCKS_METADATA |
215 EXT4_FREE_BLOCKS_FORGET);
219 static int free_tind_blocks(handle_t *handle,
220 struct inode *inode, __le32 i_data)
224 struct buffer_head *bh;
225 unsigned long max_entries = inode->i_sb->s_blocksize >> 2;
227 bh = ext4_sb_bread(inode->i_sb, le32_to_cpu(i_data), 0);
231 tmp_idata = (__le32 *)bh->b_data;
232 for (i = 0; i < max_entries; i++) {
234 retval = free_dind_blocks(handle,
235 inode, tmp_idata[i]);
243 retval = ext4_journal_ensure_credits(handle, EXT4_RESERVE_TRANS_BLOCKS,
244 ext4_free_metadata_revoke_credits(inode->i_sb, 1));
247 ext4_free_blocks(handle, inode, NULL, le32_to_cpu(i_data), 1,
248 EXT4_FREE_BLOCKS_METADATA |
249 EXT4_FREE_BLOCKS_FORGET);
253 static int free_ind_block(handle_t *handle, struct inode *inode, __le32 *i_data)
257 /* ei->i_data[EXT4_IND_BLOCK] */
259 retval = ext4_journal_ensure_credits(handle,
260 EXT4_RESERVE_TRANS_BLOCKS,
261 ext4_free_metadata_revoke_credits(inode->i_sb, 1));
264 ext4_free_blocks(handle, inode, NULL,
265 le32_to_cpu(i_data[0]), 1,
266 EXT4_FREE_BLOCKS_METADATA |
267 EXT4_FREE_BLOCKS_FORGET);
270 /* ei->i_data[EXT4_DIND_BLOCK] */
272 retval = free_dind_blocks(handle, inode, i_data[1]);
277 /* ei->i_data[EXT4_TIND_BLOCK] */
279 retval = free_tind_blocks(handle, inode, i_data[2]);
286 static int ext4_ext_swap_inode_data(handle_t *handle, struct inode *inode,
287 struct inode *tmp_inode)
289 int retval, retval2 = 0;
291 struct ext4_inode_info *ei = EXT4_I(inode);
292 struct ext4_inode_info *tmp_ei = EXT4_I(tmp_inode);
295 * One credit accounted for writing the
296 * i_data field of the original inode
298 retval = ext4_journal_ensure_credits(handle, 1, 0);
302 i_data[0] = ei->i_data[EXT4_IND_BLOCK];
303 i_data[1] = ei->i_data[EXT4_DIND_BLOCK];
304 i_data[2] = ei->i_data[EXT4_TIND_BLOCK];
306 down_write(&EXT4_I(inode)->i_data_sem);
308 * if EXT4_STATE_EXT_MIGRATE is cleared a block allocation
309 * happened after we started the migrate. We need to
312 if (!ext4_test_inode_state(inode, EXT4_STATE_EXT_MIGRATE)) {
314 up_write(&EXT4_I(inode)->i_data_sem);
317 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
319 * We have the extent map build with the tmp inode.
320 * Now copy the i_data across
322 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
323 memcpy(ei->i_data, tmp_ei->i_data, sizeof(ei->i_data));
326 * Update i_blocks with the new blocks that got
327 * allocated while adding extents for extent index
330 * While converting to extents we need not
331 * update the original inode i_blocks for extent blocks
332 * via quota APIs. The quota update happened via tmp_inode already.
334 spin_lock(&inode->i_lock);
335 inode->i_blocks += tmp_inode->i_blocks;
336 spin_unlock(&inode->i_lock);
337 up_write(&EXT4_I(inode)->i_data_sem);
340 * We mark the inode dirty after, because we decrement the
341 * i_blocks when freeing the indirect meta-data blocks
343 retval = free_ind_block(handle, inode, i_data);
344 retval2 = ext4_mark_inode_dirty(handle, inode);
345 if (unlikely(retval2 && !retval))
352 static int free_ext_idx(handle_t *handle, struct inode *inode,
353 struct ext4_extent_idx *ix)
357 struct buffer_head *bh;
358 struct ext4_extent_header *eh;
360 block = ext4_idx_pblock(ix);
361 bh = ext4_sb_bread(inode->i_sb, block, 0);
365 eh = (struct ext4_extent_header *)bh->b_data;
366 if (eh->eh_depth != 0) {
367 ix = EXT_FIRST_INDEX(eh);
368 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ix++) {
369 retval = free_ext_idx(handle, inode, ix);
377 retval = ext4_journal_ensure_credits(handle, EXT4_RESERVE_TRANS_BLOCKS,
378 ext4_free_metadata_revoke_credits(inode->i_sb, 1));
381 ext4_free_blocks(handle, inode, NULL, block, 1,
382 EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET);
387 * Free the extent meta data blocks only
389 static int free_ext_block(handle_t *handle, struct inode *inode)
392 struct ext4_inode_info *ei = EXT4_I(inode);
393 struct ext4_extent_header *eh = (struct ext4_extent_header *)ei->i_data;
394 struct ext4_extent_idx *ix;
395 if (eh->eh_depth == 0)
397 * No extra blocks allocated for extent meta data
400 ix = EXT_FIRST_INDEX(eh);
401 for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ix++) {
402 retval = free_ext_idx(handle, inode, ix);
409 int ext4_ext_migrate(struct inode *inode)
411 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
415 struct ext4_inode_info *ei;
416 struct inode *tmp_inode = NULL;
417 struct migrate_struct lb;
418 unsigned long max_entries;
419 __u32 goal, tmp_csum_seed;
423 * If the filesystem does not support extents, or the inode
424 * already is extent-based, error out.
426 if (!ext4_has_feature_extents(inode->i_sb) ||
427 ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) ||
428 ext4_has_inline_data(inode))
431 if (S_ISLNK(inode->i_mode) && inode->i_blocks == 0)
433 * don't migrate fast symlink
437 percpu_down_write(&sbi->s_writepages_rwsem);
440 * Worst case we can touch the allocation bitmaps and a block
441 * group descriptor block. We do need to worry about
442 * credits for modifying the quota inode.
444 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE,
445 3 + EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb));
447 if (IS_ERR(handle)) {
448 retval = PTR_ERR(handle);
451 goal = (((inode->i_ino - 1) / EXT4_INODES_PER_GROUP(inode->i_sb)) *
452 EXT4_INODES_PER_GROUP(inode->i_sb)) + 1;
453 owner[0] = i_uid_read(inode);
454 owner[1] = i_gid_read(inode);
455 tmp_inode = ext4_new_inode(handle, d_inode(inode->i_sb->s_root),
456 S_IFREG, NULL, goal, owner, 0);
457 if (IS_ERR(tmp_inode)) {
458 retval = PTR_ERR(tmp_inode);
459 ext4_journal_stop(handle);
463 * Use the correct seed for checksum (i.e. the seed from 'inode'). This
464 * is so that the metadata blocks will have the correct checksum after
468 tmp_csum_seed = EXT4_I(tmp_inode)->i_csum_seed;
469 EXT4_I(tmp_inode)->i_csum_seed = ei->i_csum_seed;
470 i_size_write(tmp_inode, i_size_read(inode));
472 * Set the i_nlink to zero so it will be deleted later
473 * when we drop inode reference.
475 clear_nlink(tmp_inode);
477 ext4_ext_tree_init(handle, tmp_inode);
478 ext4_journal_stop(handle);
481 * start with one credit accounted for
482 * superblock modification.
484 * For the tmp_inode we already have committed the
485 * transaction that created the inode. Later as and
486 * when we add extents we extent the journal
489 * Even though we take i_rwsem we can still cause block
490 * allocation via mmap write to holes. If we have allocated
491 * new blocks we fail migrate. New block allocation will
492 * clear EXT4_STATE_EXT_MIGRATE flag. The flag is updated
493 * with i_data_sem held to prevent racing with block
496 down_read(&EXT4_I(inode)->i_data_sem);
497 ext4_set_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
498 up_read((&EXT4_I(inode)->i_data_sem));
500 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
501 if (IS_ERR(handle)) {
502 retval = PTR_ERR(handle);
507 memset(&lb, 0, sizeof(lb));
509 /* 32 bit block address 4 bytes */
510 max_entries = inode->i_sb->s_blocksize >> 2;
511 for (i = 0; i < EXT4_NDIR_BLOCKS; i++) {
513 retval = update_extent_range(handle, tmp_inode,
514 le32_to_cpu(i_data[i]), &lb);
520 if (i_data[EXT4_IND_BLOCK]) {
521 retval = update_ind_extent_range(handle, tmp_inode,
522 le32_to_cpu(i_data[EXT4_IND_BLOCK]), &lb);
526 lb.curr_block += max_entries;
527 if (i_data[EXT4_DIND_BLOCK]) {
528 retval = update_dind_extent_range(handle, tmp_inode,
529 le32_to_cpu(i_data[EXT4_DIND_BLOCK]), &lb);
533 lb.curr_block += max_entries * max_entries;
534 if (i_data[EXT4_TIND_BLOCK]) {
535 retval = update_tind_extent_range(handle, tmp_inode,
536 le32_to_cpu(i_data[EXT4_TIND_BLOCK]), &lb);
541 * Build the last extent
543 retval = finish_range(handle, tmp_inode, &lb);
547 * Failure case delete the extent information with the
550 free_ext_block(handle, tmp_inode);
552 retval = ext4_ext_swap_inode_data(handle, inode, tmp_inode);
555 * if we fail to swap inode data free the extent
556 * details of the tmp inode
558 free_ext_block(handle, tmp_inode);
561 /* We mark the tmp_inode dirty via ext4_ext_tree_init. */
562 retval = ext4_journal_ensure_credits(handle, 1, 0);
566 * Mark the tmp_inode as of size zero
568 i_size_write(tmp_inode, 0);
571 * set the i_blocks count to zero
572 * so that the ext4_evict_inode() does the
575 * We don't need to take the i_lock because
576 * the inode is not visible to user space.
578 tmp_inode->i_blocks = 0;
579 EXT4_I(tmp_inode)->i_csum_seed = tmp_csum_seed;
581 /* Reset the extent details */
582 ext4_ext_tree_init(handle, tmp_inode);
584 ext4_journal_stop(handle);
586 unlock_new_inode(tmp_inode);
589 percpu_up_write(&sbi->s_writepages_rwsem);
594 * Migrate a simple extent-based inode to use the i_blocks[] array
596 int ext4_ind_migrate(struct inode *inode)
598 struct ext4_extent_header *eh;
599 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
600 struct ext4_super_block *es = sbi->s_es;
601 struct ext4_inode_info *ei = EXT4_I(inode);
602 struct ext4_extent *ex;
604 ext4_lblk_t start, end;
609 if (!ext4_has_feature_extents(inode->i_sb) ||
610 (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
613 if (ext4_has_feature_bigalloc(inode->i_sb))
617 * In order to get correct extent info, force all delayed allocation
618 * blocks to be allocated, otherwise delayed allocation blocks may not
619 * be reflected and bypass the checks on extent header.
621 if (test_opt(inode->i_sb, DELALLOC))
622 ext4_alloc_da_blocks(inode);
624 percpu_down_write(&sbi->s_writepages_rwsem);
626 handle = ext4_journal_start(inode, EXT4_HT_MIGRATE, 1);
627 if (IS_ERR(handle)) {
628 ret = PTR_ERR(handle);
632 down_write(&EXT4_I(inode)->i_data_sem);
633 ret = ext4_ext_check_inode(inode);
637 eh = ext_inode_hdr(inode);
638 ex = EXT_FIRST_EXTENT(eh);
639 if (ext4_blocks_count(es) > EXT4_MAX_BLOCK_FILE_PHYS ||
640 eh->eh_depth != 0 || le16_to_cpu(eh->eh_entries) > 1) {
644 if (eh->eh_entries == 0)
645 blk = len = start = end = 0;
647 len = le16_to_cpu(ex->ee_len);
648 blk = ext4_ext_pblock(ex);
649 start = le32_to_cpu(ex->ee_block);
650 end = start + len - 1;
651 if (end >= EXT4_NDIR_BLOCKS) {
657 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
658 memset(ei->i_data, 0, sizeof(ei->i_data));
659 for (i = start; i <= end; i++)
660 ei->i_data[i] = cpu_to_le32(blk++);
661 ret2 = ext4_mark_inode_dirty(handle, inode);
662 if (unlikely(ret2 && !ret))
665 ext4_journal_stop(handle);
666 up_write(&EXT4_I(inode)->i_data_sem);
668 percpu_up_write(&sbi->s_writepages_rwsem);