1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/ext4/resize.c
5 * Support for resizing an ext4 filesystem while it is mounted.
7 * Copyright (C) 2001, 2002 Andreas Dilger <adilger@clusterfs.com>
9 * This could probably be made into a module, because it is not often in use.
15 #include <linux/errno.h>
16 #include <linux/slab.h>
17 #include <linux/jiffies.h>
19 #include "ext4_jbd2.h"
26 static void ext4_rcu_ptr_callback(struct rcu_head *head)
28 struct ext4_rcu_ptr *ptr;
30 ptr = container_of(head, struct ext4_rcu_ptr, rcu);
35 void ext4_kvfree_array_rcu(void *to_free)
37 struct ext4_rcu_ptr *ptr = kzalloc(sizeof(*ptr), GFP_KERNEL);
41 call_rcu(&ptr->rcu, ext4_rcu_ptr_callback);
48 int ext4_resize_begin(struct super_block *sb)
50 struct ext4_sb_info *sbi = EXT4_SB(sb);
53 if (!capable(CAP_SYS_RESOURCE))
57 * If the reserved GDT blocks is non-zero, the resize_inode feature
58 * should always be set.
60 if (EXT4_SB(sb)->s_es->s_reserved_gdt_blocks &&
61 !ext4_has_feature_resize_inode(sb)) {
62 ext4_error(sb, "resize_inode disabled but reserved GDT blocks non-zero");
67 * If we are not using the primary superblock/GDT copy don't resize,
68 * because the user tools have no way of handling this. Probably a
69 * bad time to do it anyways.
71 if (EXT4_B2C(sbi, sbi->s_sbh->b_blocknr) !=
72 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block)) {
73 ext4_warning(sb, "won't resize using backup superblock at %llu",
74 (unsigned long long)EXT4_SB(sb)->s_sbh->b_blocknr);
79 * We are not allowed to do online-resizing on a filesystem mounted
80 * with error, because it can destroy the filesystem easily.
82 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
83 ext4_warning(sb, "There are errors in the filesystem, "
84 "so online resizing is not allowed");
88 if (ext4_has_feature_sparse_super2(sb)) {
89 ext4_msg(sb, KERN_ERR, "Online resizing not supported with sparse_super2");
93 if (test_and_set_bit_lock(EXT4_FLAGS_RESIZING,
94 &EXT4_SB(sb)->s_ext4_flags))
100 int ext4_resize_end(struct super_block *sb, bool update_backups)
102 clear_bit_unlock(EXT4_FLAGS_RESIZING, &EXT4_SB(sb)->s_ext4_flags);
103 smp_mb__after_atomic();
105 return ext4_update_overhead(sb, true);
109 static ext4_group_t ext4_meta_bg_first_group(struct super_block *sb,
110 ext4_group_t group) {
111 return (group >> EXT4_DESC_PER_BLOCK_BITS(sb)) <<
112 EXT4_DESC_PER_BLOCK_BITS(sb);
115 static ext4_fsblk_t ext4_meta_bg_first_block_no(struct super_block *sb,
116 ext4_group_t group) {
117 group = ext4_meta_bg_first_group(sb, group);
118 return ext4_group_first_block_no(sb, group);
121 static ext4_grpblk_t ext4_group_overhead_blocks(struct super_block *sb,
122 ext4_group_t group) {
123 ext4_grpblk_t overhead;
124 overhead = ext4_bg_num_gdb(sb, group);
125 if (ext4_bg_has_super(sb, group))
127 le16_to_cpu(EXT4_SB(sb)->s_es->s_reserved_gdt_blocks);
131 #define outside(b, first, last) ((b) < (first) || (b) >= (last))
132 #define inside(b, first, last) ((b) >= (first) && (b) < (last))
134 static int verify_group_input(struct super_block *sb,
135 struct ext4_new_group_data *input)
137 struct ext4_sb_info *sbi = EXT4_SB(sb);
138 struct ext4_super_block *es = sbi->s_es;
139 ext4_fsblk_t start = ext4_blocks_count(es);
140 ext4_fsblk_t end = start + input->blocks_count;
141 ext4_group_t group = input->group;
142 ext4_fsblk_t itend = input->inode_table + sbi->s_itb_per_group;
144 ext4_fsblk_t metaend;
145 struct buffer_head *bh = NULL;
146 ext4_grpblk_t free_blocks_count, offset;
149 if (group != sbi->s_groups_count) {
150 ext4_warning(sb, "Cannot add at group %u (only %u groups)",
151 input->group, sbi->s_groups_count);
155 overhead = ext4_group_overhead_blocks(sb, group);
156 metaend = start + overhead;
157 input->free_clusters_count = free_blocks_count =
158 input->blocks_count - 2 - overhead - sbi->s_itb_per_group;
160 if (test_opt(sb, DEBUG))
161 printk(KERN_DEBUG "EXT4-fs: adding %s group %u: %u blocks "
162 "(%d free, %u reserved)\n",
163 ext4_bg_has_super(sb, input->group) ? "normal" :
164 "no-super", input->group, input->blocks_count,
165 free_blocks_count, input->reserved_blocks);
167 ext4_get_group_no_and_offset(sb, start, NULL, &offset);
169 ext4_warning(sb, "Last group not full");
170 else if (input->reserved_blocks > input->blocks_count / 5)
171 ext4_warning(sb, "Reserved blocks too high (%u)",
172 input->reserved_blocks);
173 else if (free_blocks_count < 0)
174 ext4_warning(sb, "Bad blocks count %u",
175 input->blocks_count);
176 else if (IS_ERR(bh = ext4_sb_bread(sb, end - 1, 0))) {
179 ext4_warning(sb, "Cannot read last block (%llu)",
181 } else if (outside(input->block_bitmap, start, end))
182 ext4_warning(sb, "Block bitmap not in group (block %llu)",
183 (unsigned long long)input->block_bitmap);
184 else if (outside(input->inode_bitmap, start, end))
185 ext4_warning(sb, "Inode bitmap not in group (block %llu)",
186 (unsigned long long)input->inode_bitmap);
187 else if (outside(input->inode_table, start, end) ||
188 outside(itend - 1, start, end))
189 ext4_warning(sb, "Inode table not in group (blocks %llu-%llu)",
190 (unsigned long long)input->inode_table, itend - 1);
191 else if (input->inode_bitmap == input->block_bitmap)
192 ext4_warning(sb, "Block bitmap same as inode bitmap (%llu)",
193 (unsigned long long)input->block_bitmap);
194 else if (inside(input->block_bitmap, input->inode_table, itend))
195 ext4_warning(sb, "Block bitmap (%llu) in inode table "
197 (unsigned long long)input->block_bitmap,
198 (unsigned long long)input->inode_table, itend - 1);
199 else if (inside(input->inode_bitmap, input->inode_table, itend))
200 ext4_warning(sb, "Inode bitmap (%llu) in inode table "
202 (unsigned long long)input->inode_bitmap,
203 (unsigned long long)input->inode_table, itend - 1);
204 else if (inside(input->block_bitmap, start, metaend))
205 ext4_warning(sb, "Block bitmap (%llu) in GDT table (%llu-%llu)",
206 (unsigned long long)input->block_bitmap,
208 else if (inside(input->inode_bitmap, start, metaend))
209 ext4_warning(sb, "Inode bitmap (%llu) in GDT table (%llu-%llu)",
210 (unsigned long long)input->inode_bitmap,
212 else if (inside(input->inode_table, start, metaend) ||
213 inside(itend - 1, start, metaend))
214 ext4_warning(sb, "Inode table (%llu-%llu) overlaps GDT table "
216 (unsigned long long)input->inode_table,
217 itend - 1, start, metaend - 1);
226 * ext4_new_flex_group_data is used by 64bit-resize interface to add a flex
229 struct ext4_new_flex_group_data {
230 struct ext4_new_group_data *groups; /* new_group_data for groups
232 __u16 *bg_flags; /* block group flags of groups
234 ext4_group_t resize_bg; /* number of allocated
236 ext4_group_t count; /* number of groups in @groups
241 * Avoiding memory allocation failures due to too many groups added each time.
243 #define MAX_RESIZE_BG 16384
246 * alloc_flex_gd() allocates a ext4_new_flex_group_data with size of
249 * Returns NULL on failure otherwise address of the allocated structure.
251 static struct ext4_new_flex_group_data *alloc_flex_gd(unsigned int flexbg_size)
253 struct ext4_new_flex_group_data *flex_gd;
255 flex_gd = kmalloc(sizeof(*flex_gd), GFP_NOFS);
259 if (unlikely(flexbg_size > MAX_RESIZE_BG))
260 flex_gd->resize_bg = MAX_RESIZE_BG;
262 flex_gd->resize_bg = flexbg_size;
264 flex_gd->groups = kmalloc_array(flex_gd->resize_bg,
265 sizeof(struct ext4_new_group_data),
267 if (flex_gd->groups == NULL)
270 flex_gd->bg_flags = kmalloc_array(flex_gd->resize_bg, sizeof(__u16),
272 if (flex_gd->bg_flags == NULL)
278 kfree(flex_gd->groups);
285 static void free_flex_gd(struct ext4_new_flex_group_data *flex_gd)
287 kfree(flex_gd->bg_flags);
288 kfree(flex_gd->groups);
293 * ext4_alloc_group_tables() allocates block bitmaps, inode bitmaps
294 * and inode tables for a flex group.
296 * This function is used by 64bit-resize. Note that this function allocates
297 * group tables from the 1st group of groups contained by @flexgd, which may
298 * be a partial of a flex group.
300 * @sb: super block of fs to which the groups belongs
302 * Returns 0 on a successful allocation of the metadata blocks in the
305 static int ext4_alloc_group_tables(struct super_block *sb,
306 struct ext4_new_flex_group_data *flex_gd,
307 unsigned int flexbg_size)
309 struct ext4_new_group_data *group_data = flex_gd->groups;
310 ext4_fsblk_t start_blk;
311 ext4_fsblk_t last_blk;
312 ext4_group_t src_group;
313 ext4_group_t bb_index = 0;
314 ext4_group_t ib_index = 0;
315 ext4_group_t it_index = 0;
317 ext4_group_t last_group;
319 __u16 uninit_mask = (flexbg_size > 1) ? ~EXT4_BG_BLOCK_UNINIT : ~0;
322 BUG_ON(flex_gd->count == 0 || group_data == NULL);
324 src_group = group_data[0].group;
325 last_group = src_group + flex_gd->count - 1;
327 BUG_ON((flexbg_size > 1) && ((src_group & ~(flexbg_size - 1)) !=
328 (last_group & ~(flexbg_size - 1))));
330 group = group_data[0].group;
331 if (src_group >= group_data[0].group + flex_gd->count)
333 start_blk = ext4_group_first_block_no(sb, src_group);
334 last_blk = start_blk + group_data[src_group - group].blocks_count;
336 overhead = ext4_group_overhead_blocks(sb, src_group);
338 start_blk += overhead;
340 /* We collect contiguous blocks as much as possible. */
342 for (; src_group <= last_group; src_group++) {
343 overhead = ext4_group_overhead_blocks(sb, src_group);
345 last_blk += group_data[src_group - group].blocks_count;
350 /* Allocate block bitmaps */
351 for (; bb_index < flex_gd->count; bb_index++) {
352 if (start_blk >= last_blk)
354 group_data[bb_index].block_bitmap = start_blk++;
355 group = ext4_get_group_number(sb, start_blk - 1);
356 group -= group_data[0].group;
357 group_data[group].mdata_blocks++;
358 flex_gd->bg_flags[group] &= uninit_mask;
361 /* Allocate inode bitmaps */
362 for (; ib_index < flex_gd->count; ib_index++) {
363 if (start_blk >= last_blk)
365 group_data[ib_index].inode_bitmap = start_blk++;
366 group = ext4_get_group_number(sb, start_blk - 1);
367 group -= group_data[0].group;
368 group_data[group].mdata_blocks++;
369 flex_gd->bg_flags[group] &= uninit_mask;
372 /* Allocate inode tables */
373 for (; it_index < flex_gd->count; it_index++) {
374 unsigned int itb = EXT4_SB(sb)->s_itb_per_group;
375 ext4_fsblk_t next_group_start;
377 if (start_blk + itb > last_blk)
379 group_data[it_index].inode_table = start_blk;
380 group = ext4_get_group_number(sb, start_blk);
381 next_group_start = ext4_group_first_block_no(sb, group + 1);
382 group -= group_data[0].group;
384 if (start_blk + itb > next_group_start) {
385 flex_gd->bg_flags[group + 1] &= uninit_mask;
386 overhead = start_blk + itb - next_group_start;
387 group_data[group + 1].mdata_blocks += overhead;
391 group_data[group].mdata_blocks += itb;
392 flex_gd->bg_flags[group] &= uninit_mask;
393 start_blk += EXT4_SB(sb)->s_itb_per_group;
396 /* Update free clusters count to exclude metadata blocks */
397 for (i = 0; i < flex_gd->count; i++) {
398 group_data[i].free_clusters_count -=
399 EXT4_NUM_B2C(EXT4_SB(sb),
400 group_data[i].mdata_blocks);
403 if (test_opt(sb, DEBUG)) {
405 group = group_data[0].group;
407 printk(KERN_DEBUG "EXT4-fs: adding a flex group with "
408 "%u groups, flexbg size is %u:\n", flex_gd->count,
411 for (i = 0; i < flex_gd->count; i++) {
413 "adding %s group %u: %u blocks (%u free, %u mdata blocks)\n",
414 ext4_bg_has_super(sb, group + i) ? "normal" :
415 "no-super", group + i,
416 group_data[i].blocks_count,
417 group_data[i].free_clusters_count,
418 group_data[i].mdata_blocks);
424 static struct buffer_head *bclean(handle_t *handle, struct super_block *sb,
427 struct buffer_head *bh;
430 bh = sb_getblk(sb, blk);
432 return ERR_PTR(-ENOMEM);
433 BUFFER_TRACE(bh, "get_write_access");
434 err = ext4_journal_get_write_access(handle, sb, bh, EXT4_JTR_NONE);
439 memset(bh->b_data, 0, sb->s_blocksize);
440 set_buffer_uptodate(bh);
446 static int ext4_resize_ensure_credits_batch(handle_t *handle, int credits)
448 return ext4_journal_ensure_credits_fn(handle, credits,
449 EXT4_MAX_TRANS_DATA, 0, 0);
453 * set_flexbg_block_bitmap() mark clusters [@first_cluster, @last_cluster] used.
455 * Helper function for ext4_setup_new_group_blocks() which set .
458 * @handle: journal handle
459 * @flex_gd: flex group data
461 static int set_flexbg_block_bitmap(struct super_block *sb, handle_t *handle,
462 struct ext4_new_flex_group_data *flex_gd,
463 ext4_fsblk_t first_cluster, ext4_fsblk_t last_cluster)
465 struct ext4_sb_info *sbi = EXT4_SB(sb);
466 ext4_group_t count = last_cluster - first_cluster + 1;
469 ext4_debug("mark clusters [%llu-%llu] used\n", first_cluster,
471 for (count2 = count; count > 0;
472 count -= count2, first_cluster += count2) {
474 struct buffer_head *bh;
478 group = ext4_get_group_number(sb, EXT4_C2B(sbi, first_cluster));
479 start = EXT4_B2C(sbi, ext4_group_first_block_no(sb, group));
480 group -= flex_gd->groups[0].group;
482 count2 = EXT4_CLUSTERS_PER_GROUP(sb) - (first_cluster - start);
486 if (flex_gd->bg_flags[group] & EXT4_BG_BLOCK_UNINIT) {
487 BUG_ON(flex_gd->count > 1);
491 err = ext4_resize_ensure_credits_batch(handle, 1);
495 bh = sb_getblk(sb, flex_gd->groups[group].block_bitmap);
499 BUFFER_TRACE(bh, "get_write_access");
500 err = ext4_journal_get_write_access(handle, sb, bh,
506 ext4_debug("mark block bitmap %#04llx (+%llu/%u)\n",
507 first_cluster, first_cluster - start, count2);
508 mb_set_bits(bh->b_data, first_cluster - start, count2);
510 err = ext4_handle_dirty_metadata(handle, NULL, bh);
520 * Set up the block and inode bitmaps, and the inode table for the new groups.
521 * This doesn't need to be part of the main transaction, since we are only
522 * changing blocks outside the actual filesystem. We still do journaling to
523 * ensure the recovery is correct in case of a failure just after resize.
524 * If any part of this fails, we simply abort the resize.
526 * setup_new_flex_group_blocks handles a flex group as follow:
527 * 1. copy super block and GDT, and initialize group tables if necessary.
528 * In this step, we only set bits in blocks bitmaps for blocks taken by
529 * super block and GDT.
530 * 2. allocate group tables in block bitmaps, that is, set bits in block
531 * bitmap for blocks taken by group tables.
533 static int setup_new_flex_group_blocks(struct super_block *sb,
534 struct ext4_new_flex_group_data *flex_gd)
536 int group_table_count[] = {1, 1, EXT4_SB(sb)->s_itb_per_group};
539 struct ext4_sb_info *sbi = EXT4_SB(sb);
540 struct ext4_super_block *es = sbi->s_es;
541 struct ext4_new_group_data *group_data = flex_gd->groups;
542 __u16 *bg_flags = flex_gd->bg_flags;
544 ext4_group_t group, count;
545 struct buffer_head *bh = NULL;
546 int reserved_gdb, i, j, err = 0, err2;
549 BUG_ON(!flex_gd->count || !group_data ||
550 group_data[0].group != sbi->s_groups_count);
552 reserved_gdb = le16_to_cpu(es->s_reserved_gdt_blocks);
553 meta_bg = ext4_has_feature_meta_bg(sb);
555 /* This transaction may be extended/restarted along the way */
556 handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, EXT4_MAX_TRANS_DATA);
558 return PTR_ERR(handle);
560 group = group_data[0].group;
561 for (i = 0; i < flex_gd->count; i++, group++) {
562 unsigned long gdblocks;
563 ext4_grpblk_t overhead;
565 gdblocks = ext4_bg_num_gdb(sb, group);
566 start = ext4_group_first_block_no(sb, group);
568 if (meta_bg == 0 && !ext4_bg_has_super(sb, group))
574 block = start + ext4_bg_has_super(sb, group);
575 /* Copy all of the GDT blocks into the backup in this group */
576 for (j = 0; j < gdblocks; j++, block++) {
577 struct buffer_head *gdb;
579 ext4_debug("update backup group %#04llx\n", block);
580 err = ext4_resize_ensure_credits_batch(handle, 1);
584 gdb = sb_getblk(sb, block);
585 if (unlikely(!gdb)) {
590 BUFFER_TRACE(gdb, "get_write_access");
591 err = ext4_journal_get_write_access(handle, sb, gdb,
597 memcpy(gdb->b_data, sbi_array_rcu_deref(sbi,
598 s_group_desc, j)->b_data, gdb->b_size);
599 set_buffer_uptodate(gdb);
601 err = ext4_handle_dirty_metadata(handle, NULL, gdb);
609 /* Zero out all of the reserved backup group descriptor
612 if (ext4_bg_has_super(sb, group)) {
613 err = sb_issue_zeroout(sb, gdblocks + start + 1,
614 reserved_gdb, GFP_NOFS);
620 /* Initialize group tables of the grop @group */
621 if (!(bg_flags[i] & EXT4_BG_INODE_ZEROED))
624 /* Zero out all of the inode table blocks */
625 block = group_data[i].inode_table;
626 ext4_debug("clear inode table blocks %#04llx -> %#04lx\n",
627 block, sbi->s_itb_per_group);
628 err = sb_issue_zeroout(sb, block, sbi->s_itb_per_group,
634 if (bg_flags[i] & EXT4_BG_BLOCK_UNINIT)
637 /* Initialize block bitmap of the @group */
638 block = group_data[i].block_bitmap;
639 err = ext4_resize_ensure_credits_batch(handle, 1);
643 bh = bclean(handle, sb, block);
648 overhead = ext4_group_overhead_blocks(sb, group);
650 ext4_debug("mark backup superblock %#04llx (+0)\n",
652 mb_set_bits(bh->b_data, 0,
653 EXT4_NUM_B2C(sbi, overhead));
655 ext4_mark_bitmap_end(EXT4_B2C(sbi, group_data[i].blocks_count),
656 sb->s_blocksize * 8, bh->b_data);
657 err = ext4_handle_dirty_metadata(handle, NULL, bh);
663 if (bg_flags[i] & EXT4_BG_INODE_UNINIT)
666 /* Initialize inode bitmap of the @group */
667 block = group_data[i].inode_bitmap;
668 err = ext4_resize_ensure_credits_batch(handle, 1);
671 /* Mark unused entries in inode bitmap used */
672 bh = bclean(handle, sb, block);
678 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb),
679 sb->s_blocksize * 8, bh->b_data);
680 err = ext4_handle_dirty_metadata(handle, NULL, bh);
686 /* Mark group tables in block bitmap */
687 for (j = 0; j < GROUP_TABLE_COUNT; j++) {
688 count = group_table_count[j];
689 start = (&group_data[0].block_bitmap)[j];
691 for (i = 1; i < flex_gd->count; i++) {
692 block += group_table_count[j];
693 if (block == (&group_data[i].block_bitmap)[j]) {
694 count += group_table_count[j];
697 err = set_flexbg_block_bitmap(sb, handle,
699 EXT4_B2C(sbi, start),
705 count = group_table_count[j];
706 start = (&group_data[i].block_bitmap)[j];
711 err = set_flexbg_block_bitmap(sb, handle,
713 EXT4_B2C(sbi, start),
723 err2 = ext4_journal_stop(handle);
731 * Iterate through the groups which hold BACKUP superblock/GDT copies in an
732 * ext4 filesystem. The counters should be initialized to 1, 5, and 7 before
733 * calling this for the first time. In a sparse filesystem it will be the
734 * sequence of powers of 3, 5, and 7: 1, 3, 5, 7, 9, 25, 27, 49, 81, ...
735 * For a non-sparse filesystem it will be every group: 1, 2, 3, 4, ...
737 unsigned int ext4_list_backups(struct super_block *sb, unsigned int *three,
738 unsigned int *five, unsigned int *seven)
740 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
741 unsigned int *min = three;
745 if (ext4_has_feature_sparse_super2(sb)) {
749 ret = le32_to_cpu(es->s_backup_bgs[*min - 1]);
755 if (!ext4_has_feature_sparse_super(sb)) {
777 * Check that all of the backup GDT blocks are held in the primary GDT block.
778 * It is assumed that they are stored in group order. Returns the number of
779 * groups in current filesystem that have BACKUPS, or -ve error code.
781 static int verify_reserved_gdb(struct super_block *sb,
783 struct buffer_head *primary)
785 const ext4_fsblk_t blk = primary->b_blocknr;
790 __le32 *p = (__le32 *)primary->b_data;
793 while ((grp = ext4_list_backups(sb, &three, &five, &seven)) < end) {
794 if (le32_to_cpu(*p++) !=
795 grp * EXT4_BLOCKS_PER_GROUP(sb) + blk){
796 ext4_warning(sb, "reserved GDT %llu"
797 " missing grp %d (%llu)",
800 (ext4_fsblk_t)EXT4_BLOCKS_PER_GROUP(sb) +
804 if (++gdbackups > EXT4_ADDR_PER_BLOCK(sb))
812 * Called when we need to bring a reserved group descriptor table block into
813 * use from the resize inode. The primary copy of the new GDT block currently
814 * is an indirect block (under the double indirect block in the resize inode).
815 * The new backup GDT blocks will be stored as leaf blocks in this indirect
816 * block, in group order. Even though we know all the block numbers we need,
817 * we check to ensure that the resize inode has actually reserved these blocks.
819 * Don't need to update the block bitmaps because the blocks are still in use.
821 * We get all of the error cases out of the way, so that we are sure to not
822 * fail once we start modifying the data on disk, because JBD has no rollback.
824 static int add_new_gdb(handle_t *handle, struct inode *inode,
827 struct super_block *sb = inode->i_sb;
828 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
829 unsigned long gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
830 ext4_fsblk_t gdblock = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + gdb_num;
831 struct buffer_head **o_group_desc, **n_group_desc = NULL;
832 struct buffer_head *dind = NULL;
833 struct buffer_head *gdb_bh = NULL;
835 struct ext4_iloc iloc = { .bh = NULL };
839 if (test_opt(sb, DEBUG))
841 "EXT4-fs: ext4_add_new_gdb: adding group block %lu\n",
844 gdb_bh = ext4_sb_bread(sb, gdblock, 0);
846 return PTR_ERR(gdb_bh);
848 gdbackups = verify_reserved_gdb(sb, group, gdb_bh);
854 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
855 dind = ext4_sb_bread(sb, le32_to_cpu(*data), 0);
862 data = (__le32 *)dind->b_data;
863 if (le32_to_cpu(data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)]) != gdblock) {
864 ext4_warning(sb, "new group %u GDT block %llu not reserved",
870 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get_write_access");
871 err = ext4_journal_get_write_access(handle, sb, EXT4_SB(sb)->s_sbh,
876 BUFFER_TRACE(gdb_bh, "get_write_access");
877 err = ext4_journal_get_write_access(handle, sb, gdb_bh, EXT4_JTR_NONE);
881 BUFFER_TRACE(dind, "get_write_access");
882 err = ext4_journal_get_write_access(handle, sb, dind, EXT4_JTR_NONE);
884 ext4_std_error(sb, err);
888 /* ext4_reserve_inode_write() gets a reference on the iloc */
889 err = ext4_reserve_inode_write(handle, inode, &iloc);
893 n_group_desc = kvmalloc((gdb_num + 1) * sizeof(struct buffer_head *),
897 ext4_warning(sb, "not enough memory for %lu groups",
903 * Finally, we have all of the possible failures behind us...
905 * Remove new GDT block from inode double-indirect block and clear out
906 * the new GDT block for use (which also "frees" the backup GDT blocks
907 * from the reserved inode). We don't need to change the bitmaps for
908 * these blocks, because they are marked as in-use from being in the
909 * reserved inode, and will become GDT blocks (primary and backup).
911 data[gdb_num % EXT4_ADDR_PER_BLOCK(sb)] = 0;
912 err = ext4_handle_dirty_metadata(handle, NULL, dind);
914 ext4_std_error(sb, err);
917 inode->i_blocks -= (gdbackups + 1) * sb->s_blocksize >>
918 (9 - EXT4_SB(sb)->s_cluster_bits);
919 ext4_mark_iloc_dirty(handle, inode, &iloc);
920 memset(gdb_bh->b_data, 0, sb->s_blocksize);
921 err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh);
923 ext4_std_error(sb, err);
930 o_group_desc = rcu_dereference(EXT4_SB(sb)->s_group_desc);
931 memcpy(n_group_desc, o_group_desc,
932 EXT4_SB(sb)->s_gdb_count * sizeof(struct buffer_head *));
934 n_group_desc[gdb_num] = gdb_bh;
935 rcu_assign_pointer(EXT4_SB(sb)->s_group_desc, n_group_desc);
936 EXT4_SB(sb)->s_gdb_count++;
937 ext4_kvfree_array_rcu(o_group_desc);
939 lock_buffer(EXT4_SB(sb)->s_sbh);
940 le16_add_cpu(&es->s_reserved_gdt_blocks, -1);
941 ext4_superblock_csum_set(sb);
942 unlock_buffer(EXT4_SB(sb)->s_sbh);
943 err = ext4_handle_dirty_metadata(handle, NULL, EXT4_SB(sb)->s_sbh);
945 ext4_std_error(sb, err);
948 kvfree(n_group_desc);
953 ext4_debug("leaving with error %d\n", err);
958 * add_new_gdb_meta_bg is the sister of add_new_gdb.
960 static int add_new_gdb_meta_bg(struct super_block *sb,
961 handle_t *handle, ext4_group_t group) {
962 ext4_fsblk_t gdblock;
963 struct buffer_head *gdb_bh;
964 struct buffer_head **o_group_desc, **n_group_desc;
965 unsigned long gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
968 gdblock = ext4_meta_bg_first_block_no(sb, group) +
969 ext4_bg_has_super(sb, group);
970 gdb_bh = ext4_sb_bread(sb, gdblock, 0);
972 return PTR_ERR(gdb_bh);
973 n_group_desc = kvmalloc((gdb_num + 1) * sizeof(struct buffer_head *),
978 ext4_warning(sb, "not enough memory for %lu groups",
984 o_group_desc = rcu_dereference(EXT4_SB(sb)->s_group_desc);
985 memcpy(n_group_desc, o_group_desc,
986 EXT4_SB(sb)->s_gdb_count * sizeof(struct buffer_head *));
988 n_group_desc[gdb_num] = gdb_bh;
990 BUFFER_TRACE(gdb_bh, "get_write_access");
991 err = ext4_journal_get_write_access(handle, sb, gdb_bh, EXT4_JTR_NONE);
993 kvfree(n_group_desc);
998 rcu_assign_pointer(EXT4_SB(sb)->s_group_desc, n_group_desc);
999 EXT4_SB(sb)->s_gdb_count++;
1000 ext4_kvfree_array_rcu(o_group_desc);
1005 * Called when we are adding a new group which has a backup copy of each of
1006 * the GDT blocks (i.e. sparse group) and there are reserved GDT blocks.
1007 * We need to add these reserved backup GDT blocks to the resize inode, so
1008 * that they are kept for future resizing and not allocated to files.
1010 * Each reserved backup GDT block will go into a different indirect block.
1011 * The indirect blocks are actually the primary reserved GDT blocks,
1012 * so we know in advance what their block numbers are. We only get the
1013 * double-indirect block to verify it is pointing to the primary reserved
1014 * GDT blocks so we don't overwrite a data block by accident. The reserved
1015 * backup GDT blocks are stored in their reserved primary GDT block.
1017 static int reserve_backup_gdb(handle_t *handle, struct inode *inode,
1020 struct super_block *sb = inode->i_sb;
1021 int reserved_gdb =le16_to_cpu(EXT4_SB(sb)->s_es->s_reserved_gdt_blocks);
1022 int cluster_bits = EXT4_SB(sb)->s_cluster_bits;
1023 struct buffer_head **primary;
1024 struct buffer_head *dind;
1025 struct ext4_iloc iloc;
1032 primary = kmalloc_array(reserved_gdb, sizeof(*primary), GFP_NOFS);
1036 data = EXT4_I(inode)->i_data + EXT4_DIND_BLOCK;
1037 dind = ext4_sb_bread(sb, le32_to_cpu(*data), 0);
1039 err = PTR_ERR(dind);
1044 blk = EXT4_SB(sb)->s_sbh->b_blocknr + 1 + EXT4_SB(sb)->s_gdb_count;
1045 data = (__le32 *)dind->b_data + (EXT4_SB(sb)->s_gdb_count %
1046 EXT4_ADDR_PER_BLOCK(sb));
1047 end = (__le32 *)dind->b_data + EXT4_ADDR_PER_BLOCK(sb);
1049 /* Get each reserved primary GDT block and verify it holds backups */
1050 for (res = 0; res < reserved_gdb; res++, blk++) {
1051 if (le32_to_cpu(*data) != blk) {
1052 ext4_warning(sb, "reserved block %llu"
1053 " not at offset %ld",
1055 (long)(data - (__le32 *)dind->b_data));
1059 primary[res] = ext4_sb_bread(sb, blk, 0);
1060 if (IS_ERR(primary[res])) {
1061 err = PTR_ERR(primary[res]);
1062 primary[res] = NULL;
1065 gdbackups = verify_reserved_gdb(sb, group, primary[res]);
1066 if (gdbackups < 0) {
1067 brelse(primary[res]);
1072 data = (__le32 *)dind->b_data;
1075 for (i = 0; i < reserved_gdb; i++) {
1076 BUFFER_TRACE(primary[i], "get_write_access");
1077 if ((err = ext4_journal_get_write_access(handle, sb, primary[i],
1082 if ((err = ext4_reserve_inode_write(handle, inode, &iloc)))
1086 * Finally we can add each of the reserved backup GDT blocks from
1087 * the new group to its reserved primary GDT block.
1089 blk = group * EXT4_BLOCKS_PER_GROUP(sb);
1090 for (i = 0; i < reserved_gdb; i++) {
1092 data = (__le32 *)primary[i]->b_data;
1093 /* printk("reserving backup %lu[%u] = %lu\n",
1094 primary[i]->b_blocknr, gdbackups,
1095 blk + primary[i]->b_blocknr); */
1096 data[gdbackups] = cpu_to_le32(blk + primary[i]->b_blocknr);
1097 err2 = ext4_handle_dirty_metadata(handle, NULL, primary[i]);
1102 inode->i_blocks += reserved_gdb * sb->s_blocksize >> (9 - cluster_bits);
1103 ext4_mark_iloc_dirty(handle, inode, &iloc);
1107 brelse(primary[res]);
1116 static inline void ext4_set_block_group_nr(struct super_block *sb, char *data,
1119 struct ext4_super_block *es = (struct ext4_super_block *) data;
1121 es->s_block_group_nr = cpu_to_le16(group);
1122 if (ext4_has_metadata_csum(sb))
1123 es->s_checksum = ext4_superblock_csum(sb, es);
1127 * Update the backup copies of the ext4 metadata. These don't need to be part
1128 * of the main resize transaction, because e2fsck will re-write them if there
1129 * is a problem (basically only OOM will cause a problem). However, we
1130 * _should_ update the backups if possible, in case the primary gets trashed
1131 * for some reason and we need to run e2fsck from a backup superblock. The
1132 * important part is that the new block and inode counts are in the backup
1133 * superblocks, and the location of the new group metadata in the GDT backups.
1135 * We do not need take the s_resize_lock for this, because these
1136 * blocks are not otherwise touched by the filesystem code when it is
1137 * mounted. We don't need to worry about last changing from
1138 * sbi->s_groups_count, because the worst that can happen is that we
1139 * do not copy the full number of backups at this time. The resize
1140 * which changed s_groups_count will backup again.
1142 static void update_backups(struct super_block *sb, sector_t blk_off, char *data,
1143 int size, int meta_bg)
1145 struct ext4_sb_info *sbi = EXT4_SB(sb);
1147 const int bpg = EXT4_BLOCKS_PER_GROUP(sb);
1151 ext4_group_t group = 0;
1152 int rest = sb->s_blocksize - size;
1156 handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, EXT4_MAX_TRANS_DATA);
1157 if (IS_ERR(handle)) {
1159 err = PTR_ERR(handle);
1164 group = ext4_list_backups(sb, &three, &five, &seven);
1165 last = sbi->s_groups_count;
1167 group = ext4_get_group_number(sb, blk_off) + 1;
1168 last = (ext4_group_t)(group + EXT4_DESC_PER_BLOCK(sb) - 2);
1171 while (group < sbi->s_groups_count) {
1172 struct buffer_head *bh;
1173 ext4_fsblk_t backup_block;
1174 int has_super = ext4_bg_has_super(sb, group);
1175 ext4_fsblk_t first_block = ext4_group_first_block_no(sb, group);
1177 /* Out of journal space, and can't get more - abort - so sad */
1178 err = ext4_resize_ensure_credits_batch(handle, 1);
1183 backup_block = ((ext4_fsblk_t)group) * bpg + blk_off;
1185 backup_block = first_block + has_super;
1187 bh = sb_getblk(sb, backup_block);
1188 if (unlikely(!bh)) {
1192 ext4_debug("update metadata backup %llu(+%llu)\n",
1193 backup_block, backup_block -
1194 ext4_group_first_block_no(sb, group));
1195 BUFFER_TRACE(bh, "get_write_access");
1196 if ((err = ext4_journal_get_write_access(handle, sb, bh,
1202 memcpy(bh->b_data, data, size);
1204 memset(bh->b_data + size, 0, rest);
1205 if (has_super && (backup_block == first_block))
1206 ext4_set_block_group_nr(sb, bh->b_data, group);
1207 set_buffer_uptodate(bh);
1209 err = ext4_handle_dirty_metadata(handle, NULL, bh);
1211 ext4_std_error(sb, err);
1215 group = ext4_list_backups(sb, &three, &five, &seven);
1216 else if (group == last)
1221 if ((err2 = ext4_journal_stop(handle)) && !err)
1225 * Ugh! Need to have e2fsck write the backup copies. It is too
1226 * late to revert the resize, we shouldn't fail just because of
1227 * the backup copies (they are only needed in case of corruption).
1229 * However, if we got here we have a journal problem too, so we
1230 * can't really start a transaction to mark the superblock.
1231 * Chicken out and just set the flag on the hope it will be written
1232 * to disk, and if not - we will simply wait until next fsck.
1236 ext4_warning(sb, "can't update backup for group %u (err %d), "
1237 "forcing fsck on next reboot", group, err);
1238 sbi->s_mount_state &= ~EXT4_VALID_FS;
1239 sbi->s_es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
1240 mark_buffer_dirty(sbi->s_sbh);
1245 * ext4_add_new_descs() adds @count group descriptor of groups
1246 * starting at @group
1248 * @handle: journal handle
1250 * @group: the group no. of the first group desc to be added
1251 * @resize_inode: the resize inode
1252 * @count: number of group descriptors to be added
1254 static int ext4_add_new_descs(handle_t *handle, struct super_block *sb,
1255 ext4_group_t group, struct inode *resize_inode,
1258 struct ext4_sb_info *sbi = EXT4_SB(sb);
1259 struct ext4_super_block *es = sbi->s_es;
1260 struct buffer_head *gdb_bh;
1261 int i, gdb_off, gdb_num, err = 0;
1264 meta_bg = ext4_has_feature_meta_bg(sb);
1265 for (i = 0; i < count; i++, group++) {
1266 int reserved_gdb = ext4_bg_has_super(sb, group) ?
1267 le16_to_cpu(es->s_reserved_gdt_blocks) : 0;
1269 gdb_off = group % EXT4_DESC_PER_BLOCK(sb);
1270 gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
1273 * We will only either add reserved group blocks to a backup group
1274 * or remove reserved blocks for the first group in a new group block.
1275 * Doing both would be mean more complex code, and sane people don't
1276 * use non-sparse filesystems anymore. This is already checked above.
1279 gdb_bh = sbi_array_rcu_deref(sbi, s_group_desc,
1281 BUFFER_TRACE(gdb_bh, "get_write_access");
1282 err = ext4_journal_get_write_access(handle, sb, gdb_bh,
1285 if (!err && reserved_gdb && ext4_bg_num_gdb(sb, group))
1286 err = reserve_backup_gdb(handle, resize_inode, group);
1287 } else if (meta_bg != 0) {
1288 err = add_new_gdb_meta_bg(sb, handle, group);
1290 err = add_new_gdb(handle, resize_inode, group);
1298 static struct buffer_head *ext4_get_bitmap(struct super_block *sb, __u64 block)
1300 struct buffer_head *bh = sb_getblk(sb, block);
1303 if (!bh_uptodate_or_lock(bh)) {
1304 if (ext4_read_bh(bh, 0, NULL) < 0) {
1313 static int ext4_set_bitmap_checksums(struct super_block *sb,
1315 struct ext4_group_desc *gdp,
1316 struct ext4_new_group_data *group_data)
1318 struct buffer_head *bh;
1320 if (!ext4_has_metadata_csum(sb))
1323 bh = ext4_get_bitmap(sb, group_data->inode_bitmap);
1326 ext4_inode_bitmap_csum_set(sb, group, gdp, bh,
1327 EXT4_INODES_PER_GROUP(sb) / 8);
1330 bh = ext4_get_bitmap(sb, group_data->block_bitmap);
1333 ext4_block_bitmap_csum_set(sb, group, gdp, bh);
1340 * ext4_setup_new_descs() will set up the group descriptor descriptors of a flex bg
1342 static int ext4_setup_new_descs(handle_t *handle, struct super_block *sb,
1343 struct ext4_new_flex_group_data *flex_gd)
1345 struct ext4_new_group_data *group_data = flex_gd->groups;
1346 struct ext4_group_desc *gdp;
1347 struct ext4_sb_info *sbi = EXT4_SB(sb);
1348 struct buffer_head *gdb_bh;
1350 __u16 *bg_flags = flex_gd->bg_flags;
1351 int i, gdb_off, gdb_num, err = 0;
1354 for (i = 0; i < flex_gd->count; i++, group_data++, bg_flags++) {
1355 group = group_data->group;
1357 gdb_off = group % EXT4_DESC_PER_BLOCK(sb);
1358 gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
1361 * get_write_access() has been called on gdb_bh by ext4_add_new_desc().
1363 gdb_bh = sbi_array_rcu_deref(sbi, s_group_desc, gdb_num);
1364 /* Update group descriptor block for new group */
1365 gdp = (struct ext4_group_desc *)(gdb_bh->b_data +
1366 gdb_off * EXT4_DESC_SIZE(sb));
1368 memset(gdp, 0, EXT4_DESC_SIZE(sb));
1369 ext4_block_bitmap_set(sb, gdp, group_data->block_bitmap);
1370 ext4_inode_bitmap_set(sb, gdp, group_data->inode_bitmap);
1371 err = ext4_set_bitmap_checksums(sb, group, gdp, group_data);
1373 ext4_std_error(sb, err);
1377 ext4_inode_table_set(sb, gdp, group_data->inode_table);
1378 ext4_free_group_clusters_set(sb, gdp,
1379 group_data->free_clusters_count);
1380 ext4_free_inodes_set(sb, gdp, EXT4_INODES_PER_GROUP(sb));
1381 if (ext4_has_group_desc_csum(sb))
1382 ext4_itable_unused_set(sb, gdp,
1383 EXT4_INODES_PER_GROUP(sb));
1384 gdp->bg_flags = cpu_to_le16(*bg_flags);
1385 ext4_group_desc_csum_set(sb, group, gdp);
1387 err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh);
1388 if (unlikely(err)) {
1389 ext4_std_error(sb, err);
1394 * We can allocate memory for mb_alloc based on the new group
1397 err = ext4_mb_add_groupinfo(sb, group, gdp);
1404 static void ext4_add_overhead(struct super_block *sb,
1405 const ext4_fsblk_t overhead)
1407 struct ext4_sb_info *sbi = EXT4_SB(sb);
1408 struct ext4_super_block *es = sbi->s_es;
1410 sbi->s_overhead += overhead;
1411 es->s_overhead_clusters = cpu_to_le32(sbi->s_overhead);
1416 * ext4_update_super() updates the super block so that the newly added
1417 * groups can be seen by the filesystem.
1420 * @flex_gd: new added groups
1422 static void ext4_update_super(struct super_block *sb,
1423 struct ext4_new_flex_group_data *flex_gd)
1425 ext4_fsblk_t blocks_count = 0;
1426 ext4_fsblk_t free_blocks = 0;
1427 ext4_fsblk_t reserved_blocks = 0;
1428 struct ext4_new_group_data *group_data = flex_gd->groups;
1429 struct ext4_sb_info *sbi = EXT4_SB(sb);
1430 struct ext4_super_block *es = sbi->s_es;
1433 BUG_ON(flex_gd->count == 0 || group_data == NULL);
1435 * Make the new blocks and inodes valid next. We do this before
1436 * increasing the group count so that once the group is enabled,
1437 * all of its blocks and inodes are already valid.
1439 * We always allocate group-by-group, then block-by-block or
1440 * inode-by-inode within a group, so enabling these
1441 * blocks/inodes before the group is live won't actually let us
1442 * allocate the new space yet.
1444 for (i = 0; i < flex_gd->count; i++) {
1445 blocks_count += group_data[i].blocks_count;
1446 free_blocks += EXT4_C2B(sbi, group_data[i].free_clusters_count);
1449 reserved_blocks = ext4_r_blocks_count(es) * 100;
1450 reserved_blocks = div64_u64(reserved_blocks, ext4_blocks_count(es));
1451 reserved_blocks *= blocks_count;
1452 do_div(reserved_blocks, 100);
1454 lock_buffer(sbi->s_sbh);
1455 ext4_blocks_count_set(es, ext4_blocks_count(es) + blocks_count);
1456 ext4_free_blocks_count_set(es, ext4_free_blocks_count(es) + free_blocks);
1457 le32_add_cpu(&es->s_inodes_count, EXT4_INODES_PER_GROUP(sb) *
1459 le32_add_cpu(&es->s_free_inodes_count, EXT4_INODES_PER_GROUP(sb) *
1462 ext4_debug("free blocks count %llu", ext4_free_blocks_count(es));
1464 * We need to protect s_groups_count against other CPUs seeing
1465 * inconsistent state in the superblock.
1467 * The precise rules we use are:
1469 * * Writers must perform a smp_wmb() after updating all
1470 * dependent data and before modifying the groups count
1472 * * Readers must perform an smp_rmb() after reading the groups
1473 * count and before reading any dependent data.
1475 * NB. These rules can be relaxed when checking the group count
1476 * while freeing data, as we can only allocate from a block
1477 * group after serialising against the group count, and we can
1478 * only then free after serialising in turn against that
1483 /* Update the global fs size fields */
1484 sbi->s_groups_count += flex_gd->count;
1485 sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
1486 (EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));
1488 /* Update the reserved block counts only once the new group is
1490 ext4_r_blocks_count_set(es, ext4_r_blocks_count(es) +
1493 /* Update the free space counts */
1494 percpu_counter_add(&sbi->s_freeclusters_counter,
1495 EXT4_NUM_B2C(sbi, free_blocks));
1496 percpu_counter_add(&sbi->s_freeinodes_counter,
1497 EXT4_INODES_PER_GROUP(sb) * flex_gd->count);
1499 ext4_debug("free blocks count %llu",
1500 percpu_counter_read(&sbi->s_freeclusters_counter));
1501 if (ext4_has_feature_flex_bg(sb) && sbi->s_log_groups_per_flex) {
1502 ext4_group_t flex_group;
1503 struct flex_groups *fg;
1505 flex_group = ext4_flex_group(sbi, group_data[0].group);
1506 fg = sbi_array_rcu_deref(sbi, s_flex_groups, flex_group);
1507 atomic64_add(EXT4_NUM_B2C(sbi, free_blocks),
1508 &fg->free_clusters);
1509 atomic_add(EXT4_INODES_PER_GROUP(sb) * flex_gd->count,
1514 * Update the fs overhead information.
1516 * For bigalloc, if the superblock already has a properly calculated
1517 * overhead, update it with a value based on numbers already computed
1518 * above for the newly allocated capacity.
1520 if (ext4_has_feature_bigalloc(sb) && (sbi->s_overhead != 0))
1521 ext4_add_overhead(sb,
1522 EXT4_NUM_B2C(sbi, blocks_count - free_blocks));
1524 ext4_calculate_overhead(sb);
1525 es->s_overhead_clusters = cpu_to_le32(sbi->s_overhead);
1527 ext4_superblock_csum_set(sb);
1528 unlock_buffer(sbi->s_sbh);
1529 if (test_opt(sb, DEBUG))
1530 printk(KERN_DEBUG "EXT4-fs: added group %u:"
1531 "%llu blocks(%llu free %llu reserved)\n", flex_gd->count,
1532 blocks_count, free_blocks, reserved_blocks);
1535 /* Add a flex group to an fs. Ensure we handle all possible error conditions
1536 * _before_ we start modifying the filesystem, because we cannot abort the
1537 * transaction and not have it write the data to disk.
1539 static int ext4_flex_group_add(struct super_block *sb,
1540 struct inode *resize_inode,
1541 struct ext4_new_flex_group_data *flex_gd)
1543 struct ext4_sb_info *sbi = EXT4_SB(sb);
1544 struct ext4_super_block *es = sbi->s_es;
1545 ext4_fsblk_t o_blocks_count;
1549 unsigned reserved_gdb;
1550 int err = 0, err2 = 0, credit;
1552 BUG_ON(!flex_gd->count || !flex_gd->groups || !flex_gd->bg_flags);
1554 reserved_gdb = le16_to_cpu(es->s_reserved_gdt_blocks);
1555 o_blocks_count = ext4_blocks_count(es);
1556 ext4_get_group_no_and_offset(sb, o_blocks_count, &group, &last);
1559 err = setup_new_flex_group_blocks(sb, flex_gd);
1563 * We will always be modifying at least the superblock and GDT
1564 * blocks. If we are adding a group past the last current GDT block,
1565 * we will also modify the inode and the dindirect block. If we
1566 * are adding a group with superblock/GDT backups we will also
1567 * modify each of the reserved GDT dindirect blocks.
1569 credit = 3; /* sb, resize inode, resize inode dindirect */
1571 credit += 1 + DIV_ROUND_UP(flex_gd->count, EXT4_DESC_PER_BLOCK(sb));
1572 credit += reserved_gdb; /* Reserved GDT dindirect blocks */
1573 handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, credit);
1574 if (IS_ERR(handle)) {
1575 err = PTR_ERR(handle);
1579 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
1580 err = ext4_journal_get_write_access(handle, sb, sbi->s_sbh,
1585 group = flex_gd->groups[0].group;
1586 BUG_ON(group != sbi->s_groups_count);
1587 err = ext4_add_new_descs(handle, sb, group,
1588 resize_inode, flex_gd->count);
1592 err = ext4_setup_new_descs(handle, sb, flex_gd);
1596 ext4_update_super(sb, flex_gd);
1598 err = ext4_handle_dirty_metadata(handle, NULL, sbi->s_sbh);
1601 err2 = ext4_journal_stop(handle);
1606 int gdb_num = group / EXT4_DESC_PER_BLOCK(sb);
1607 int gdb_num_end = ((group + flex_gd->count - 1) /
1608 EXT4_DESC_PER_BLOCK(sb));
1609 int meta_bg = ext4_has_feature_meta_bg(sb) &&
1610 gdb_num >= le32_to_cpu(es->s_first_meta_bg);
1611 sector_t padding_blocks = meta_bg ? 0 : sbi->s_sbh->b_blocknr -
1612 ext4_group_first_block_no(sb, 0);
1613 sector_t old_gdb = 0;
1615 update_backups(sb, ext4_group_first_block_no(sb, 0),
1616 (char *)es, sizeof(struct ext4_super_block), 0);
1617 for (; gdb_num <= gdb_num_end; gdb_num++) {
1618 struct buffer_head *gdb_bh;
1620 gdb_bh = sbi_array_rcu_deref(sbi, s_group_desc,
1622 if (old_gdb == gdb_bh->b_blocknr)
1624 update_backups(sb, gdb_bh->b_blocknr - padding_blocks,
1625 gdb_bh->b_data, gdb_bh->b_size, meta_bg);
1626 old_gdb = gdb_bh->b_blocknr;
1633 static int ext4_setup_next_flex_gd(struct super_block *sb,
1634 struct ext4_new_flex_group_data *flex_gd,
1635 ext4_fsblk_t n_blocks_count)
1637 struct ext4_sb_info *sbi = EXT4_SB(sb);
1638 struct ext4_super_block *es = sbi->s_es;
1639 struct ext4_new_group_data *group_data = flex_gd->groups;
1640 ext4_fsblk_t o_blocks_count;
1641 ext4_group_t n_group;
1643 ext4_group_t last_group;
1645 ext4_grpblk_t clusters_per_group;
1648 clusters_per_group = EXT4_CLUSTERS_PER_GROUP(sb);
1650 o_blocks_count = ext4_blocks_count(es);
1652 if (o_blocks_count == n_blocks_count)
1655 ext4_get_group_no_and_offset(sb, o_blocks_count, &group, &last);
1657 ext4_get_group_no_and_offset(sb, n_blocks_count - 1, &n_group, &last);
1659 last_group = group | (flex_gd->resize_bg - 1);
1660 if (last_group > n_group)
1661 last_group = n_group;
1663 flex_gd->count = last_group - group + 1;
1665 for (i = 0; i < flex_gd->count; i++) {
1668 group_data[i].group = group + i;
1669 group_data[i].blocks_count = EXT4_BLOCKS_PER_GROUP(sb);
1670 overhead = ext4_group_overhead_blocks(sb, group + i);
1671 group_data[i].mdata_blocks = overhead;
1672 group_data[i].free_clusters_count = EXT4_CLUSTERS_PER_GROUP(sb);
1673 if (ext4_has_group_desc_csum(sb)) {
1674 flex_gd->bg_flags[i] = EXT4_BG_BLOCK_UNINIT |
1675 EXT4_BG_INODE_UNINIT;
1676 if (!test_opt(sb, INIT_INODE_TABLE))
1677 flex_gd->bg_flags[i] |= EXT4_BG_INODE_ZEROED;
1679 flex_gd->bg_flags[i] = EXT4_BG_INODE_ZEROED;
1682 if (last_group == n_group && ext4_has_group_desc_csum(sb))
1683 /* We need to initialize block bitmap of last group. */
1684 flex_gd->bg_flags[i - 1] &= ~EXT4_BG_BLOCK_UNINIT;
1686 if ((last_group == n_group) && (last != clusters_per_group - 1)) {
1687 group_data[i - 1].blocks_count = EXT4_C2B(sbi, last + 1);
1688 group_data[i - 1].free_clusters_count -= clusters_per_group -
1695 /* Add group descriptor data to an existing or new group descriptor block.
1696 * Ensure we handle all possible error conditions _before_ we start modifying
1697 * the filesystem, because we cannot abort the transaction and not have it
1698 * write the data to disk.
1700 * If we are on a GDT block boundary, we need to get the reserved GDT block.
1701 * Otherwise, we may need to add backup GDT blocks for a sparse group.
1703 * We only need to hold the superblock lock while we are actually adding
1704 * in the new group's counts to the superblock. Prior to that we have
1705 * not really "added" the group at all. We re-check that we are still
1706 * adding in the last group in case things have changed since verifying.
1708 int ext4_group_add(struct super_block *sb, struct ext4_new_group_data *input)
1710 struct ext4_new_flex_group_data flex_gd;
1711 struct ext4_sb_info *sbi = EXT4_SB(sb);
1712 struct ext4_super_block *es = sbi->s_es;
1713 int reserved_gdb = ext4_bg_has_super(sb, input->group) ?
1714 le16_to_cpu(es->s_reserved_gdt_blocks) : 0;
1715 struct inode *inode = NULL;
1720 gdb_off = input->group % EXT4_DESC_PER_BLOCK(sb);
1722 if (gdb_off == 0 && !ext4_has_feature_sparse_super(sb)) {
1723 ext4_warning(sb, "Can't resize non-sparse filesystem further");
1727 if (ext4_blocks_count(es) + input->blocks_count <
1728 ext4_blocks_count(es)) {
1729 ext4_warning(sb, "blocks_count overflow");
1733 if (le32_to_cpu(es->s_inodes_count) + EXT4_INODES_PER_GROUP(sb) <
1734 le32_to_cpu(es->s_inodes_count)) {
1735 ext4_warning(sb, "inodes_count overflow");
1739 if (reserved_gdb || gdb_off == 0) {
1740 if (!ext4_has_feature_resize_inode(sb) ||
1741 !le16_to_cpu(es->s_reserved_gdt_blocks)) {
1743 "No reserved GDT blocks, can't resize");
1746 inode = ext4_iget(sb, EXT4_RESIZE_INO, EXT4_IGET_SPECIAL);
1747 if (IS_ERR(inode)) {
1748 ext4_warning(sb, "Error opening resize inode");
1749 return PTR_ERR(inode);
1754 err = verify_group_input(sb, input);
1758 err = ext4_alloc_flex_bg_array(sb, input->group + 1);
1762 err = ext4_mb_alloc_groupinfo(sb, input->group + 1);
1767 flex_gd.groups = input;
1768 flex_gd.bg_flags = &bg_flags;
1769 err = ext4_flex_group_add(sb, inode, &flex_gd);
1773 } /* ext4_group_add */
1776 * extend a group without checking assuming that checking has been done.
1778 static int ext4_group_extend_no_check(struct super_block *sb,
1779 ext4_fsblk_t o_blocks_count, ext4_grpblk_t add)
1781 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
1785 /* We will update the superblock, one block bitmap, and
1786 * one group descriptor via ext4_group_add_blocks().
1788 handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, 3);
1789 if (IS_ERR(handle)) {
1790 err = PTR_ERR(handle);
1791 ext4_warning(sb, "error %d on journal start", err);
1795 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get_write_access");
1796 err = ext4_journal_get_write_access(handle, sb, EXT4_SB(sb)->s_sbh,
1799 ext4_warning(sb, "error %d on journal write access", err);
1803 lock_buffer(EXT4_SB(sb)->s_sbh);
1804 ext4_blocks_count_set(es, o_blocks_count + add);
1805 ext4_free_blocks_count_set(es, ext4_free_blocks_count(es) + add);
1806 ext4_superblock_csum_set(sb);
1807 unlock_buffer(EXT4_SB(sb)->s_sbh);
1808 ext4_debug("freeing blocks %llu through %llu\n", o_blocks_count,
1809 o_blocks_count + add);
1810 /* We add the blocks to the bitmap and set the group need init bit */
1811 err = ext4_group_add_blocks(handle, sb, o_blocks_count, add);
1814 ext4_handle_dirty_metadata(handle, NULL, EXT4_SB(sb)->s_sbh);
1815 ext4_debug("freed blocks %llu through %llu\n", o_blocks_count,
1816 o_blocks_count + add);
1818 err2 = ext4_journal_stop(handle);
1823 if (test_opt(sb, DEBUG))
1824 printk(KERN_DEBUG "EXT4-fs: extended group to %llu "
1825 "blocks\n", ext4_blocks_count(es));
1826 update_backups(sb, ext4_group_first_block_no(sb, 0),
1827 (char *)es, sizeof(struct ext4_super_block), 0);
1833 * Extend the filesystem to the new number of blocks specified. This entry
1834 * point is only used to extend the current filesystem to the end of the last
1835 * existing group. It can be accessed via ioctl, or by "remount,resize=<size>"
1836 * for emergencies (because it has no dependencies on reserved blocks).
1838 * If we _really_ wanted, we could use default values to call ext4_group_add()
1839 * allow the "remount" trick to work for arbitrary resizing, assuming enough
1840 * GDT blocks are reserved to grow to the desired size.
1842 int ext4_group_extend(struct super_block *sb, struct ext4_super_block *es,
1843 ext4_fsblk_t n_blocks_count)
1845 ext4_fsblk_t o_blocks_count;
1848 struct buffer_head *bh;
1852 o_blocks_count = ext4_blocks_count(es);
1854 if (test_opt(sb, DEBUG))
1855 ext4_msg(sb, KERN_DEBUG,
1856 "extending last group from %llu to %llu blocks",
1857 o_blocks_count, n_blocks_count);
1859 if (n_blocks_count == 0 || n_blocks_count == o_blocks_count)
1862 if (n_blocks_count > (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
1863 ext4_msg(sb, KERN_ERR,
1864 "filesystem too large to resize to %llu blocks safely",
1869 if (n_blocks_count < o_blocks_count) {
1870 ext4_warning(sb, "can't shrink FS - resize aborted");
1874 /* Handle the remaining blocks in the last group only. */
1875 ext4_get_group_no_and_offset(sb, o_blocks_count, &group, &last);
1878 ext4_warning(sb, "need to use ext2online to resize further");
1882 add = EXT4_BLOCKS_PER_GROUP(sb) - last;
1884 if (o_blocks_count + add < o_blocks_count) {
1885 ext4_warning(sb, "blocks_count overflow");
1889 if (o_blocks_count + add > n_blocks_count)
1890 add = n_blocks_count - o_blocks_count;
1892 if (o_blocks_count + add < n_blocks_count)
1893 ext4_warning(sb, "will only finish group (%llu blocks, %u new)",
1894 o_blocks_count + add, add);
1896 /* See if the device is actually as big as what was requested */
1897 bh = ext4_sb_bread(sb, o_blocks_count + add - 1, 0);
1899 ext4_warning(sb, "can't read last block, resize aborted");
1904 err = ext4_group_extend_no_check(sb, o_blocks_count, add);
1906 } /* ext4_group_extend */
1909 static int num_desc_blocks(struct super_block *sb, ext4_group_t groups)
1911 return (groups + EXT4_DESC_PER_BLOCK(sb) - 1) / EXT4_DESC_PER_BLOCK(sb);
1915 * Release the resize inode and drop the resize_inode feature if there
1916 * are no more reserved gdt blocks, and then convert the file system
1919 static int ext4_convert_meta_bg(struct super_block *sb, struct inode *inode)
1922 struct ext4_sb_info *sbi = EXT4_SB(sb);
1923 struct ext4_super_block *es = sbi->s_es;
1924 struct ext4_inode_info *ei = EXT4_I(inode);
1926 int i, ret, err = 0;
1929 ext4_msg(sb, KERN_INFO, "Converting file system to meta_bg");
1931 if (es->s_reserved_gdt_blocks) {
1932 ext4_error(sb, "Unexpected non-zero "
1933 "s_reserved_gdt_blocks");
1937 /* Do a quick sanity check of the resize inode */
1938 if (inode->i_blocks != 1 << (inode->i_blkbits -
1939 (9 - sbi->s_cluster_bits)))
1940 goto invalid_resize_inode;
1941 for (i = 0; i < EXT4_N_BLOCKS; i++) {
1942 if (i == EXT4_DIND_BLOCK) {
1946 goto invalid_resize_inode;
1949 goto invalid_resize_inode;
1951 credits += 3; /* block bitmap, bg descriptor, resize inode */
1954 handle = ext4_journal_start_sb(sb, EXT4_HT_RESIZE, credits);
1956 return PTR_ERR(handle);
1958 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
1959 err = ext4_journal_get_write_access(handle, sb, sbi->s_sbh,
1964 lock_buffer(sbi->s_sbh);
1965 ext4_clear_feature_resize_inode(sb);
1966 ext4_set_feature_meta_bg(sb);
1967 sbi->s_es->s_first_meta_bg =
1968 cpu_to_le32(num_desc_blocks(sb, sbi->s_groups_count));
1969 ext4_superblock_csum_set(sb);
1970 unlock_buffer(sbi->s_sbh);
1972 err = ext4_handle_dirty_metadata(handle, NULL, sbi->s_sbh);
1974 ext4_std_error(sb, err);
1979 nr = le32_to_cpu(ei->i_data[EXT4_DIND_BLOCK]);
1980 ext4_free_blocks(handle, inode, NULL, nr, 1,
1981 EXT4_FREE_BLOCKS_METADATA |
1982 EXT4_FREE_BLOCKS_FORGET);
1983 ei->i_data[EXT4_DIND_BLOCK] = 0;
1984 inode->i_blocks = 0;
1986 err = ext4_mark_inode_dirty(handle, inode);
1988 ext4_std_error(sb, err);
1992 ret = ext4_journal_stop(handle);
1993 return err ? err : ret;
1995 invalid_resize_inode:
1996 ext4_error(sb, "corrupted/inconsistent resize inode");
2001 * ext4_resize_fs() resizes a fs to new size specified by @n_blocks_count
2003 * @sb: super block of the fs to be resized
2004 * @n_blocks_count: the number of blocks resides in the resized fs
2006 int ext4_resize_fs(struct super_block *sb, ext4_fsblk_t n_blocks_count)
2008 struct ext4_new_flex_group_data *flex_gd = NULL;
2009 struct ext4_sb_info *sbi = EXT4_SB(sb);
2010 struct ext4_super_block *es = sbi->s_es;
2011 struct buffer_head *bh;
2012 struct inode *resize_inode = NULL;
2013 ext4_grpblk_t add, offset;
2014 unsigned long n_desc_blocks;
2015 unsigned long o_desc_blocks;
2016 ext4_group_t o_group;
2017 ext4_group_t n_group;
2018 ext4_fsblk_t o_blocks_count;
2019 ext4_fsblk_t n_blocks_count_retry = 0;
2020 unsigned long last_update_time = 0;
2023 unsigned int flexbg_size = ext4_flex_bg_size(sbi);
2025 /* See if the device is actually as big as what was requested */
2026 bh = ext4_sb_bread(sb, n_blocks_count - 1, 0);
2028 ext4_warning(sb, "can't read last block, resize aborted");
2034 * For bigalloc, trim the requested size to the nearest cluster
2035 * boundary to avoid creating an unusable filesystem. We do this
2036 * silently, instead of returning an error, to avoid breaking
2037 * callers that blindly resize the filesystem to the full size of
2038 * the underlying block device.
2040 if (ext4_has_feature_bigalloc(sb))
2041 n_blocks_count &= ~((1 << EXT4_CLUSTER_BITS(sb)) - 1);
2044 o_blocks_count = ext4_blocks_count(es);
2046 ext4_msg(sb, KERN_INFO, "resizing filesystem from %llu "
2047 "to %llu blocks", o_blocks_count, n_blocks_count);
2049 if (n_blocks_count < o_blocks_count) {
2050 /* On-line shrinking not supported */
2051 ext4_warning(sb, "can't shrink FS - resize aborted");
2055 if (n_blocks_count == o_blocks_count)
2056 /* Nothing need to do */
2059 n_group = ext4_get_group_number(sb, n_blocks_count - 1);
2060 if (n_group >= (0xFFFFFFFFUL / EXT4_INODES_PER_GROUP(sb))) {
2061 ext4_warning(sb, "resize would cause inodes_count overflow");
2064 ext4_get_group_no_and_offset(sb, o_blocks_count - 1, &o_group, &offset);
2066 n_desc_blocks = num_desc_blocks(sb, n_group + 1);
2067 o_desc_blocks = num_desc_blocks(sb, sbi->s_groups_count);
2069 meta_bg = ext4_has_feature_meta_bg(sb);
2071 if (ext4_has_feature_resize_inode(sb)) {
2073 ext4_error(sb, "resize_inode and meta_bg enabled "
2077 if (n_desc_blocks > o_desc_blocks +
2078 le16_to_cpu(es->s_reserved_gdt_blocks)) {
2079 n_blocks_count_retry = n_blocks_count;
2080 n_desc_blocks = o_desc_blocks +
2081 le16_to_cpu(es->s_reserved_gdt_blocks);
2082 n_group = n_desc_blocks * EXT4_DESC_PER_BLOCK(sb);
2083 n_blocks_count = (ext4_fsblk_t)n_group *
2084 EXT4_BLOCKS_PER_GROUP(sb) +
2085 le32_to_cpu(es->s_first_data_block);
2086 n_group--; /* set to last group number */
2090 resize_inode = ext4_iget(sb, EXT4_RESIZE_INO,
2092 if (IS_ERR(resize_inode)) {
2093 ext4_warning(sb, "Error opening resize inode");
2094 return PTR_ERR(resize_inode);
2098 if ((!resize_inode && !meta_bg) || n_blocks_count == o_blocks_count) {
2099 err = ext4_convert_meta_bg(sb, resize_inode);
2104 resize_inode = NULL;
2106 if (n_blocks_count_retry) {
2107 n_blocks_count = n_blocks_count_retry;
2108 n_blocks_count_retry = 0;
2114 * Make sure the last group has enough space so that it's
2115 * guaranteed to have enough space for all metadata blocks
2116 * that it might need to hold. (We might not need to store
2117 * the inode table blocks in the last block group, but there
2118 * will be cases where this might be needed.)
2120 if ((ext4_group_first_block_no(sb, n_group) +
2121 ext4_group_overhead_blocks(sb, n_group) + 2 +
2122 sbi->s_itb_per_group + sbi->s_cluster_ratio) >= n_blocks_count) {
2123 n_blocks_count = ext4_group_first_block_no(sb, n_group);
2125 n_blocks_count_retry = 0;
2128 resize_inode = NULL;
2133 /* extend the last group */
2134 if (n_group == o_group)
2135 add = n_blocks_count - o_blocks_count;
2137 add = EXT4_C2B(sbi, EXT4_CLUSTERS_PER_GROUP(sb) - (offset + 1));
2139 err = ext4_group_extend_no_check(sb, o_blocks_count, add);
2144 if (ext4_blocks_count(es) == n_blocks_count && n_blocks_count_retry == 0)
2147 err = ext4_alloc_flex_bg_array(sb, n_group + 1);
2151 err = ext4_mb_alloc_groupinfo(sb, n_group + 1);
2155 flex_gd = alloc_flex_gd(flexbg_size);
2156 if (flex_gd == NULL) {
2161 /* Add flex groups. Note that a regular group is a
2162 * flex group with 1 group.
2164 while (ext4_setup_next_flex_gd(sb, flex_gd, n_blocks_count)) {
2165 if (time_is_before_jiffies(last_update_time + HZ * 10)) {
2166 if (last_update_time)
2167 ext4_msg(sb, KERN_INFO,
2168 "resized to %llu blocks",
2169 ext4_blocks_count(es));
2170 last_update_time = jiffies;
2172 if (ext4_alloc_group_tables(sb, flex_gd, flexbg_size) != 0)
2174 err = ext4_flex_group_add(sb, resize_inode, flex_gd);
2179 if (!err && n_blocks_count_retry) {
2180 n_blocks_count = n_blocks_count_retry;
2181 n_blocks_count_retry = 0;
2182 free_flex_gd(flex_gd);
2186 resize_inode = NULL;
2193 free_flex_gd(flex_gd);
2194 if (resize_inode != NULL)
2197 ext4_warning(sb, "error (%d) occurred during "
2198 "file system resize", err);
2199 ext4_msg(sb, KERN_INFO, "resized filesystem to %llu",
2200 ext4_blocks_count(es));