2 * linux/fs/ext3/resize.c
4 * Support for resizing an ext3 filesystem while it is mounted.
6 * Copyright (C) 2001, 2002 Andreas Dilger <adilger@clusterfs.com>
8 * This could probably be made into a module, because it is not often in use.
11 #include <linux/config.h>
15 #include <linux/sched.h>
16 #include <linux/smp_lock.h>
17 #include <linux/ext3_jbd.h>
19 #include <linux/errno.h>
20 #include <linux/slab.h>
23 #define outside(b, first, last) ((b) < (first) || (b) >= (last))
24 #define inside(b, first, last) ((b) >= (first) && (b) < (last))
26 static int verify_group_input(struct super_block
*sb
,
27 struct ext3_new_group_data
*input
)
29 struct ext3_sb_info
*sbi
= EXT3_SB(sb
);
30 struct ext3_super_block
*es
= sbi
->s_es
;
31 unsigned start
= le32_to_cpu(es
->s_blocks_count
);
32 unsigned end
= start
+ input
->blocks_count
;
33 unsigned group
= input
->group
;
34 unsigned itend
= input
->inode_table
+ EXT3_SB(sb
)->s_itb_per_group
;
35 unsigned overhead
= ext3_bg_has_super(sb
, group
) ?
36 (1 + ext3_bg_num_gdb(sb
, group
) +
37 le16_to_cpu(es
->s_reserved_gdt_blocks
)) : 0;
38 unsigned metaend
= start
+ overhead
;
39 struct buffer_head
*bh
= NULL
;
40 int free_blocks_count
;
43 input
->free_blocks_count
= free_blocks_count
=
44 input
->blocks_count
- 2 - overhead
- sbi
->s_itb_per_group
;
46 if (test_opt(sb
, DEBUG
))
47 printk(KERN_DEBUG
"EXT3-fs: adding %s group %u: %u blocks "
48 "(%d free, %u reserved)\n",
49 ext3_bg_has_super(sb
, input
->group
) ? "normal" :
50 "no-super", input
->group
, input
->blocks_count
,
51 free_blocks_count
, input
->reserved_blocks
);
53 if (group
!= sbi
->s_groups_count
)
54 ext3_warning(sb
, __FUNCTION__
,
55 "Cannot add at group %u (only %lu groups)",
56 input
->group
, sbi
->s_groups_count
);
57 else if ((start
- le32_to_cpu(es
->s_first_data_block
)) %
58 EXT3_BLOCKS_PER_GROUP(sb
))
59 ext3_warning(sb
, __FUNCTION__
, "Last group not full");
60 else if (input
->reserved_blocks
> input
->blocks_count
/ 5)
61 ext3_warning(sb
, __FUNCTION__
, "Reserved blocks too high (%u)",
62 input
->reserved_blocks
);
63 else if (free_blocks_count
< 0)
64 ext3_warning(sb
, __FUNCTION__
, "Bad blocks count %u",
66 else if (!(bh
= sb_bread(sb
, end
- 1)))
67 ext3_warning(sb
, __FUNCTION__
, "Cannot read last block (%u)",
69 else if (outside(input
->block_bitmap
, start
, end
))
70 ext3_warning(sb
, __FUNCTION__
,
71 "Block bitmap not in group (block %u)",
73 else if (outside(input
->inode_bitmap
, start
, end
))
74 ext3_warning(sb
, __FUNCTION__
,
75 "Inode bitmap not in group (block %u)",
77 else if (outside(input
->inode_table
, start
, end
) ||
78 outside(itend
- 1, start
, end
))
79 ext3_warning(sb
, __FUNCTION__
,
80 "Inode table not in group (blocks %u-%u)",
81 input
->inode_table
, itend
- 1);
82 else if (input
->inode_bitmap
== input
->block_bitmap
)
83 ext3_warning(sb
, __FUNCTION__
,
84 "Block bitmap same as inode bitmap (%u)",
86 else if (inside(input
->block_bitmap
, input
->inode_table
, itend
))
87 ext3_warning(sb
, __FUNCTION__
,
88 "Block bitmap (%u) in inode table (%u-%u)",
89 input
->block_bitmap
, input
->inode_table
, itend
-1);
90 else if (inside(input
->inode_bitmap
, input
->inode_table
, itend
))
91 ext3_warning(sb
, __FUNCTION__
,
92 "Inode bitmap (%u) in inode table (%u-%u)",
93 input
->inode_bitmap
, input
->inode_table
, itend
-1);
94 else if (inside(input
->block_bitmap
, start
, metaend
))
95 ext3_warning(sb
, __FUNCTION__
,
96 "Block bitmap (%u) in GDT table (%u-%u)",
97 input
->block_bitmap
, start
, metaend
- 1);
98 else if (inside(input
->inode_bitmap
, start
, metaend
))
99 ext3_warning(sb
, __FUNCTION__
,
100 "Inode bitmap (%u) in GDT table (%u-%u)",
101 input
->inode_bitmap
, start
, metaend
- 1);
102 else if (inside(input
->inode_table
, start
, metaend
) ||
103 inside(itend
- 1, start
, metaend
))
104 ext3_warning(sb
, __FUNCTION__
,
105 "Inode table (%u-%u) overlaps GDT table (%u-%u)",
106 input
->inode_table
, itend
- 1, start
, metaend
- 1);
114 static struct buffer_head
*bclean(handle_t
*handle
, struct super_block
*sb
,
117 struct buffer_head
*bh
;
120 bh
= sb_getblk(sb
, blk
);
121 if ((err
= ext3_journal_get_write_access(handle
, bh
))) {
126 memset(bh
->b_data
, 0, sb
->s_blocksize
);
127 set_buffer_uptodate(bh
);
135 * To avoid calling the atomic setbit hundreds or thousands of times, we only
136 * need to use it within a single byte (to ensure we get endianness right).
137 * We can use memset for the rest of the bitmap as there are no other users.
139 static void mark_bitmap_end(int start_bit
, int end_bit
, char *bitmap
)
143 if (start_bit
>= end_bit
)
146 ext3_debug("mark end bits +%d through +%d used\n", start_bit
, end_bit
);
147 for (i
= start_bit
; i
< ((start_bit
+ 7) & ~7UL); i
++)
148 ext3_set_bit(i
, bitmap
);
150 memset(bitmap
+ (i
>> 3), 0xff, (end_bit
- i
) >> 3);
154 * Set up the block and inode bitmaps, and the inode table for the new group.
155 * This doesn't need to be part of the main transaction, since we are only
156 * changing blocks outside the actual filesystem. We still do journaling to
157 * ensure the recovery is correct in case of a failure just after resize.
158 * If any part of this fails, we simply abort the resize.
160 static int setup_new_group_blocks(struct super_block
*sb
,
161 struct ext3_new_group_data
*input
)
163 struct ext3_sb_info
*sbi
= EXT3_SB(sb
);
164 unsigned long start
= input
->group
* sbi
->s_blocks_per_group
+
165 le32_to_cpu(sbi
->s_es
->s_first_data_block
);
166 int reserved_gdb
= ext3_bg_has_super(sb
, input
->group
) ?
167 le16_to_cpu(sbi
->s_es
->s_reserved_gdt_blocks
) : 0;
168 unsigned long gdblocks
= ext3_bg_num_gdb(sb
, input
->group
);
169 struct buffer_head
*bh
;
176 handle
= ext3_journal_start_sb(sb
, reserved_gdb
+ gdblocks
+
177 2 + sbi
->s_itb_per_group
);
179 return PTR_ERR(handle
);
182 if (input
->group
!= sbi
->s_groups_count
) {
187 if (IS_ERR(bh
= bclean(handle
, sb
, input
->block_bitmap
))) {
192 if (ext3_bg_has_super(sb
, input
->group
)) {
193 ext3_debug("mark backup superblock %#04lx (+0)\n", start
);
194 ext3_set_bit(0, bh
->b_data
);
197 /* Copy all of the GDT blocks into the backup in this group */
198 for (i
= 0, bit
= 1, block
= start
+ 1;
199 i
< gdblocks
; i
++, block
++, bit
++) {
200 struct buffer_head
*gdb
;
202 ext3_debug("update backup group %#04lx (+%d)\n", block
, bit
);
204 gdb
= sb_getblk(sb
, block
);
205 if ((err
= ext3_journal_get_write_access(handle
, gdb
))) {
210 memcpy(gdb
->b_data
, sbi
->s_group_desc
[i
], bh
->b_size
);
211 set_buffer_uptodate(gdb
);
213 ext3_journal_dirty_metadata(handle
, gdb
);
214 ext3_set_bit(bit
, bh
->b_data
);
218 /* Zero out all of the reserved backup group descriptor table blocks */
219 for (i
= 0, bit
= gdblocks
+ 1, block
= start
+ bit
;
220 i
< reserved_gdb
; i
++, block
++, bit
++) {
221 struct buffer_head
*gdb
;
223 ext3_debug("clear reserved block %#04lx (+%d)\n", block
, bit
);
225 if (IS_ERR(gdb
= bclean(handle
, sb
, block
))) {
229 ext3_journal_dirty_metadata(handle
, gdb
);
230 ext3_set_bit(bit
, bh
->b_data
);
233 ext3_debug("mark block bitmap %#04x (+%ld)\n", input
->block_bitmap
,
234 input
->block_bitmap
- start
);
235 ext3_set_bit(input
->block_bitmap
- start
, bh
->b_data
);
236 ext3_debug("mark inode bitmap %#04x (+%ld)\n", input
->inode_bitmap
,
237 input
->inode_bitmap
- start
);
238 ext3_set_bit(input
->inode_bitmap
- start
, bh
->b_data
);
240 /* Zero out all of the inode table blocks */
241 for (i
= 0, block
= input
->inode_table
, bit
= block
- start
;
242 i
< sbi
->s_itb_per_group
; i
++, bit
++, block
++) {
243 struct buffer_head
*it
;
245 ext3_debug("clear inode block %#04x (+%ld)\n", block
, bit
);
246 if (IS_ERR(it
= bclean(handle
, sb
, block
))) {
250 ext3_journal_dirty_metadata(handle
, it
);
252 ext3_set_bit(bit
, bh
->b_data
);
254 mark_bitmap_end(input
->blocks_count
, EXT3_BLOCKS_PER_GROUP(sb
),
256 ext3_journal_dirty_metadata(handle
, bh
);
259 /* Mark unused entries in inode bitmap used */
260 ext3_debug("clear inode bitmap %#04x (+%ld)\n",
261 input
->inode_bitmap
, input
->inode_bitmap
- start
);
262 if (IS_ERR(bh
= bclean(handle
, sb
, input
->inode_bitmap
))) {
267 mark_bitmap_end(EXT3_INODES_PER_GROUP(sb
), EXT3_BLOCKS_PER_GROUP(sb
),
269 ext3_journal_dirty_metadata(handle
, bh
);
275 if ((err2
= ext3_journal_stop(handle
)) && !err
)
282 * Iterate through the groups which hold BACKUP superblock/GDT copies in an
283 * ext3 filesystem. The counters should be initialized to 1, 5, and 7 before
284 * calling this for the first time. In a sparse filesystem it will be the
285 * sequence of powers of 3, 5, and 7: 1, 3, 5, 7, 9, 25, 27, 49, 81, ...
286 * For a non-sparse filesystem it will be every group: 1, 2, 3, 4, ...
288 static unsigned ext3_list_backups(struct super_block
*sb
, unsigned *three
,
289 unsigned *five
, unsigned *seven
)
291 unsigned *min
= three
;
295 if (!EXT3_HAS_RO_COMPAT_FEATURE(sb
,
296 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER
)) {
318 * Check that all of the backup GDT blocks are held in the primary GDT block.
319 * It is assumed that they are stored in group order. Returns the number of
320 * groups in current filesystem that have BACKUPS, or -ve error code.
322 static int verify_reserved_gdb(struct super_block
*sb
,
323 struct buffer_head
*primary
)
325 const unsigned long blk
= primary
->b_blocknr
;
326 const unsigned long end
= EXT3_SB(sb
)->s_groups_count
;
331 __u32
*p
= (__u32
*)primary
->b_data
;
334 while ((grp
= ext3_list_backups(sb
, &three
, &five
, &seven
)) < end
) {
335 if (le32_to_cpu(*p
++) != grp
* EXT3_BLOCKS_PER_GROUP(sb
) + blk
){
336 ext3_warning(sb
, __FUNCTION__
,
337 "reserved GDT %ld missing grp %d (%ld)\n",
339 grp
* EXT3_BLOCKS_PER_GROUP(sb
) + blk
);
342 if (++gdbackups
> EXT3_ADDR_PER_BLOCK(sb
))
350 * Called when we need to bring a reserved group descriptor table block into
351 * use from the resize inode. The primary copy of the new GDT block currently
352 * is an indirect block (under the double indirect block in the resize inode).
353 * The new backup GDT blocks will be stored as leaf blocks in this indirect
354 * block, in group order. Even though we know all the block numbers we need,
355 * we check to ensure that the resize inode has actually reserved these blocks.
357 * Don't need to update the block bitmaps because the blocks are still in use.
359 * We get all of the error cases out of the way, so that we are sure to not
360 * fail once we start modifying the data on disk, because JBD has no rollback.
362 static int add_new_gdb(handle_t
*handle
, struct inode
*inode
,
363 struct ext3_new_group_data
*input
,
364 struct buffer_head
**primary
)
366 struct super_block
*sb
= inode
->i_sb
;
367 struct ext3_super_block
*es
= EXT3_SB(sb
)->s_es
;
368 unsigned long gdb_num
= input
->group
/ EXT3_DESC_PER_BLOCK(sb
);
369 unsigned long gdblock
= EXT3_SB(sb
)->s_sbh
->b_blocknr
+ 1 + gdb_num
;
370 struct buffer_head
**o_group_desc
, **n_group_desc
;
371 struct buffer_head
*dind
;
373 struct ext3_iloc iloc
;
377 if (test_opt(sb
, DEBUG
))
379 "EXT3-fs: ext3_add_new_gdb: adding group block %lu\n",
383 * If we are not using the primary superblock/GDT copy don't resize,
384 * because the user tools have no way of handling this. Probably a
385 * bad time to do it anyways.
387 if (EXT3_SB(sb
)->s_sbh
->b_blocknr
!=
388 le32_to_cpu(EXT3_SB(sb
)->s_es
->s_first_data_block
)) {
389 ext3_warning(sb
, __FUNCTION__
,
390 "won't resize using backup superblock at %llu\n",
391 (unsigned long long)EXT3_SB(sb
)->s_sbh
->b_blocknr
);
395 *primary
= sb_bread(sb
, gdblock
);
399 if ((gdbackups
= verify_reserved_gdb(sb
, *primary
)) < 0) {
404 data
= EXT3_I(inode
)->i_data
+ EXT3_DIND_BLOCK
;
405 dind
= sb_bread(sb
, le32_to_cpu(*data
));
411 data
= (__u32
*)dind
->b_data
;
412 if (le32_to_cpu(data
[gdb_num
% EXT3_ADDR_PER_BLOCK(sb
)]) != gdblock
) {
413 ext3_warning(sb
, __FUNCTION__
,
414 "new group %u GDT block %lu not reserved\n",
415 input
->group
, gdblock
);
420 if ((err
= ext3_journal_get_write_access(handle
, EXT3_SB(sb
)->s_sbh
)))
423 if ((err
= ext3_journal_get_write_access(handle
, *primary
)))
426 if ((err
= ext3_journal_get_write_access(handle
, dind
)))
429 /* ext3_reserve_inode_write() gets a reference on the iloc */
430 if ((err
= ext3_reserve_inode_write(handle
, inode
, &iloc
)))
433 n_group_desc
= (struct buffer_head
**)kmalloc((gdb_num
+ 1) *
434 sizeof(struct buffer_head
*), GFP_KERNEL
);
437 ext3_warning (sb
, __FUNCTION__
,
438 "not enough memory for %lu groups", gdb_num
+ 1);
443 * Finally, we have all of the possible failures behind us...
445 * Remove new GDT block from inode double-indirect block and clear out
446 * the new GDT block for use (which also "frees" the backup GDT blocks
447 * from the reserved inode). We don't need to change the bitmaps for
448 * these blocks, because they are marked as in-use from being in the
449 * reserved inode, and will become GDT blocks (primary and backup).
451 data
[gdb_num
% EXT3_ADDR_PER_BLOCK(sb
)] = 0;
452 ext3_journal_dirty_metadata(handle
, dind
);
454 inode
->i_blocks
-= (gdbackups
+ 1) * sb
->s_blocksize
>> 9;
455 ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
456 memset((*primary
)->b_data
, 0, sb
->s_blocksize
);
457 ext3_journal_dirty_metadata(handle
, *primary
);
459 o_group_desc
= EXT3_SB(sb
)->s_group_desc
;
460 memcpy(n_group_desc
, o_group_desc
,
461 EXT3_SB(sb
)->s_gdb_count
* sizeof(struct buffer_head
*));
462 n_group_desc
[gdb_num
] = *primary
;
463 EXT3_SB(sb
)->s_group_desc
= n_group_desc
;
464 EXT3_SB(sb
)->s_gdb_count
++;
467 es
->s_reserved_gdt_blocks
=
468 cpu_to_le16(le16_to_cpu(es
->s_reserved_gdt_blocks
) - 1);
469 ext3_journal_dirty_metadata(handle
, EXT3_SB(sb
)->s_sbh
);
474 //ext3_journal_release_buffer(handle, iloc.bh);
477 //ext3_journal_release_buffer(handle, dind);
479 //ext3_journal_release_buffer(handle, *primary);
481 //ext3_journal_release_buffer(handle, *primary);
487 ext3_debug("leaving with error %d\n", err
);
492 * Called when we are adding a new group which has a backup copy of each of
493 * the GDT blocks (i.e. sparse group) and there are reserved GDT blocks.
494 * We need to add these reserved backup GDT blocks to the resize inode, so
495 * that they are kept for future resizing and not allocated to files.
497 * Each reserved backup GDT block will go into a different indirect block.
498 * The indirect blocks are actually the primary reserved GDT blocks,
499 * so we know in advance what their block numbers are. We only get the
500 * double-indirect block to verify it is pointing to the primary reserved
501 * GDT blocks so we don't overwrite a data block by accident. The reserved
502 * backup GDT blocks are stored in their reserved primary GDT block.
504 static int reserve_backup_gdb(handle_t
*handle
, struct inode
*inode
,
505 struct ext3_new_group_data
*input
)
507 struct super_block
*sb
= inode
->i_sb
;
508 int reserved_gdb
=le16_to_cpu(EXT3_SB(sb
)->s_es
->s_reserved_gdt_blocks
);
509 struct buffer_head
**primary
;
510 struct buffer_head
*dind
;
511 struct ext3_iloc iloc
;
518 primary
= kmalloc(reserved_gdb
* sizeof(*primary
), GFP_KERNEL
);
522 data
= EXT3_I(inode
)->i_data
+ EXT3_DIND_BLOCK
;
523 dind
= sb_bread(sb
, le32_to_cpu(*data
));
529 blk
= EXT3_SB(sb
)->s_sbh
->b_blocknr
+ 1 + EXT3_SB(sb
)->s_gdb_count
;
530 data
= (__u32
*)dind
->b_data
+ EXT3_SB(sb
)->s_gdb_count
;
531 end
= (__u32
*)dind
->b_data
+ EXT3_ADDR_PER_BLOCK(sb
);
533 /* Get each reserved primary GDT block and verify it holds backups */
534 for (res
= 0; res
< reserved_gdb
; res
++, blk
++) {
535 if (le32_to_cpu(*data
) != blk
) {
536 ext3_warning(sb
, __FUNCTION__
,
537 "reserved block %lu not at offset %ld\n",
538 blk
, (long)(data
- (__u32
*)dind
->b_data
));
542 primary
[res
] = sb_bread(sb
, blk
);
547 if ((gdbackups
= verify_reserved_gdb(sb
, primary
[res
])) < 0) {
548 brelse(primary
[res
]);
553 data
= (__u32
*)dind
->b_data
;
556 for (i
= 0; i
< reserved_gdb
; i
++) {
557 if ((err
= ext3_journal_get_write_access(handle
, primary
[i
]))) {
560 for (j = 0; j < i; j++)
561 ext3_journal_release_buffer(handle, primary[j]);
567 if ((err
= ext3_reserve_inode_write(handle
, inode
, &iloc
)))
571 * Finally we can add each of the reserved backup GDT blocks from
572 * the new group to its reserved primary GDT block.
574 blk
= input
->group
* EXT3_BLOCKS_PER_GROUP(sb
);
575 for (i
= 0; i
< reserved_gdb
; i
++) {
577 data
= (__u32
*)primary
[i
]->b_data
;
578 /* printk("reserving backup %lu[%u] = %lu\n",
579 primary[i]->b_blocknr, gdbackups,
580 blk + primary[i]->b_blocknr); */
581 data
[gdbackups
] = cpu_to_le32(blk
+ primary
[i
]->b_blocknr
);
582 err2
= ext3_journal_dirty_metadata(handle
, primary
[i
]);
586 inode
->i_blocks
+= reserved_gdb
* sb
->s_blocksize
>> 9;
587 ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
591 brelse(primary
[res
]);
601 * Update the backup copies of the ext3 metadata. These don't need to be part
602 * of the main resize transaction, because e2fsck will re-write them if there
603 * is a problem (basically only OOM will cause a problem). However, we
604 * _should_ update the backups if possible, in case the primary gets trashed
605 * for some reason and we need to run e2fsck from a backup superblock. The
606 * important part is that the new block and inode counts are in the backup
607 * superblocks, and the location of the new group metadata in the GDT backups.
609 * We do not need lock_super() for this, because these blocks are not
610 * otherwise touched by the filesystem code when it is mounted. We don't
611 * need to worry about last changing from sbi->s_groups_count, because the
612 * worst that can happen is that we do not copy the full number of backups
613 * at this time. The resize which changed s_groups_count will backup again.
615 static void update_backups(struct super_block
*sb
,
616 int blk_off
, char *data
, int size
)
618 struct ext3_sb_info
*sbi
= EXT3_SB(sb
);
619 const unsigned long last
= sbi
->s_groups_count
;
620 const int bpg
= EXT3_BLOCKS_PER_GROUP(sb
);
625 int rest
= sb
->s_blocksize
- size
;
629 handle
= ext3_journal_start_sb(sb
, EXT3_MAX_TRANS_DATA
);
630 if (IS_ERR(handle
)) {
632 err
= PTR_ERR(handle
);
636 while ((group
= ext3_list_backups(sb
, &three
, &five
, &seven
)) < last
) {
637 struct buffer_head
*bh
;
639 /* Out of journal space, and can't get more - abort - so sad */
640 if (handle
->h_buffer_credits
== 0 &&
641 ext3_journal_extend(handle
, EXT3_MAX_TRANS_DATA
) &&
642 (err
= ext3_journal_restart(handle
, EXT3_MAX_TRANS_DATA
)))
645 bh
= sb_getblk(sb
, group
* bpg
+ blk_off
);
646 ext3_debug(sb
, __FUNCTION__
, "update metadata backup %#04lx\n",
648 if ((err
= ext3_journal_get_write_access(handle
, bh
)))
651 memcpy(bh
->b_data
, data
, size
);
653 memset(bh
->b_data
+ size
, 0, rest
);
654 set_buffer_uptodate(bh
);
656 ext3_journal_dirty_metadata(handle
, bh
);
659 if ((err2
= ext3_journal_stop(handle
)) && !err
)
663 * Ugh! Need to have e2fsck write the backup copies. It is too
664 * late to revert the resize, we shouldn't fail just because of
665 * the backup copies (they are only needed in case of corruption).
667 * However, if we got here we have a journal problem too, so we
668 * can't really start a transaction to mark the superblock.
669 * Chicken out and just set the flag on the hope it will be written
670 * to disk, and if not - we will simply wait until next fsck.
674 ext3_warning(sb
, __FUNCTION__
,
675 "can't update backup for group %d (err %d), "
676 "forcing fsck on next reboot\n", group
, err
);
677 sbi
->s_mount_state
&= ~EXT3_VALID_FS
;
678 sbi
->s_es
->s_state
&= ~cpu_to_le16(EXT3_VALID_FS
);
679 mark_buffer_dirty(sbi
->s_sbh
);
683 /* Add group descriptor data to an existing or new group descriptor block.
684 * Ensure we handle all possible error conditions _before_ we start modifying
685 * the filesystem, because we cannot abort the transaction and not have it
686 * write the data to disk.
688 * If we are on a GDT block boundary, we need to get the reserved GDT block.
689 * Otherwise, we may need to add backup GDT blocks for a sparse group.
691 * We only need to hold the superblock lock while we are actually adding
692 * in the new group's counts to the superblock. Prior to that we have
693 * not really "added" the group at all. We re-check that we are still
694 * adding in the last group in case things have changed since verifying.
696 int ext3_group_add(struct super_block
*sb
, struct ext3_new_group_data
*input
)
698 struct ext3_sb_info
*sbi
= EXT3_SB(sb
);
699 struct ext3_super_block
*es
= sbi
->s_es
;
700 int reserved_gdb
= ext3_bg_has_super(sb
, input
->group
) ?
701 le16_to_cpu(es
->s_reserved_gdt_blocks
) : 0;
702 struct buffer_head
*primary
= NULL
;
703 struct ext3_group_desc
*gdp
;
704 struct inode
*inode
= NULL
;
706 int gdb_off
, gdb_num
;
709 gdb_num
= input
->group
/ EXT3_DESC_PER_BLOCK(sb
);
710 gdb_off
= input
->group
% EXT3_DESC_PER_BLOCK(sb
);
712 if (gdb_off
== 0 && !EXT3_HAS_RO_COMPAT_FEATURE(sb
,
713 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER
)) {
714 ext3_warning(sb
, __FUNCTION__
,
715 "Can't resize non-sparse filesystem further\n");
719 if (reserved_gdb
|| gdb_off
== 0) {
720 if (!EXT3_HAS_COMPAT_FEATURE(sb
,
721 EXT3_FEATURE_COMPAT_RESIZE_INODE
)){
722 ext3_warning(sb
, __FUNCTION__
,
723 "No reserved GDT blocks, can't resize\n");
726 inode
= iget(sb
, EXT3_RESIZE_INO
);
727 if (!inode
|| is_bad_inode(inode
)) {
728 ext3_warning(sb
, __FUNCTION__
,
729 "Error opening resize inode\n");
735 if ((err
= verify_group_input(sb
, input
)))
738 if ((err
= setup_new_group_blocks(sb
, input
)))
742 * We will always be modifying at least the superblock and a GDT
743 * block. If we are adding a group past the last current GDT block,
744 * we will also modify the inode and the dindirect block. If we
745 * are adding a group with superblock/GDT backups we will also
746 * modify each of the reserved GDT dindirect blocks.
748 handle
= ext3_journal_start_sb(sb
,
749 ext3_bg_has_super(sb
, input
->group
) ?
750 3 + reserved_gdb
: 4);
751 if (IS_ERR(handle
)) {
752 err
= PTR_ERR(handle
);
757 if (input
->group
!= EXT3_SB(sb
)->s_groups_count
) {
758 ext3_warning(sb
, __FUNCTION__
,
759 "multiple resizers run on filesystem!\n");
763 if ((err
= ext3_journal_get_write_access(handle
, sbi
->s_sbh
)))
767 * We will only either add reserved group blocks to a backup group
768 * or remove reserved blocks for the first group in a new group block.
769 * Doing both would be mean more complex code, and sane people don't
770 * use non-sparse filesystems anymore. This is already checked above.
773 primary
= sbi
->s_group_desc
[gdb_num
];
774 if ((err
= ext3_journal_get_write_access(handle
, primary
)))
777 if (reserved_gdb
&& ext3_bg_num_gdb(sb
, input
->group
) &&
778 (err
= reserve_backup_gdb(handle
, inode
, input
)))
780 } else if ((err
= add_new_gdb(handle
, inode
, input
, &primary
)))
784 * OK, now we've set up the new group. Time to make it active.
786 * Current kernels don't lock all allocations via lock_super(),
787 * so we have to be safe wrt. concurrent accesses the group
788 * data. So we need to be careful to set all of the relevant
789 * group descriptor data etc. *before* we enable the group.
791 * The key field here is EXT3_SB(sb)->s_groups_count: as long as
792 * that retains its old value, nobody is going to access the new
795 * So first we update all the descriptor metadata for the new
796 * group; then we update the total disk blocks count; then we
797 * update the groups count to enable the group; then finally we
798 * update the free space counts so that the system can start
799 * using the new disk blocks.
802 /* Update group descriptor block for new group */
803 gdp
= (struct ext3_group_desc
*)primary
->b_data
+ gdb_off
;
805 gdp
->bg_block_bitmap
= cpu_to_le32(input
->block_bitmap
);
806 gdp
->bg_inode_bitmap
= cpu_to_le32(input
->inode_bitmap
);
807 gdp
->bg_inode_table
= cpu_to_le32(input
->inode_table
);
808 gdp
->bg_free_blocks_count
= cpu_to_le16(input
->free_blocks_count
);
809 gdp
->bg_free_inodes_count
= cpu_to_le16(EXT3_INODES_PER_GROUP(sb
));
812 * Make the new blocks and inodes valid next. We do this before
813 * increasing the group count so that once the group is enabled,
814 * all of its blocks and inodes are already valid.
816 * We always allocate group-by-group, then block-by-block or
817 * inode-by-inode within a group, so enabling these
818 * blocks/inodes before the group is live won't actually let us
819 * allocate the new space yet.
821 es
->s_blocks_count
= cpu_to_le32(le32_to_cpu(es
->s_blocks_count
) +
822 input
->blocks_count
);
823 es
->s_inodes_count
= cpu_to_le32(le32_to_cpu(es
->s_inodes_count
) +
824 EXT3_INODES_PER_GROUP(sb
));
827 * We need to protect s_groups_count against other CPUs seeing
828 * inconsistent state in the superblock.
830 * The precise rules we use are:
832 * * Writers of s_groups_count *must* hold lock_super
834 * * Writers must perform a smp_wmb() after updating all dependent
835 * data and before modifying the groups count
837 * * Readers must hold lock_super() over the access
839 * * Readers must perform an smp_rmb() after reading the groups count
840 * and before reading any dependent data.
842 * NB. These rules can be relaxed when checking the group count
843 * while freeing data, as we can only allocate from a block
844 * group after serialising against the group count, and we can
845 * only then free after serialising in turn against that
850 /* Update the global fs size fields */
851 EXT3_SB(sb
)->s_groups_count
++;
853 ext3_journal_dirty_metadata(handle
, primary
);
855 /* Update the reserved block counts only once the new group is
857 es
->s_r_blocks_count
= cpu_to_le32(le32_to_cpu(es
->s_r_blocks_count
) +
858 input
->reserved_blocks
);
860 /* Update the free space counts */
861 percpu_counter_mod(&sbi
->s_freeblocks_counter
,
862 input
->free_blocks_count
);
863 percpu_counter_mod(&sbi
->s_freeinodes_counter
,
864 EXT3_INODES_PER_GROUP(sb
));
866 ext3_journal_dirty_metadata(handle
, EXT3_SB(sb
)->s_sbh
);
871 if ((err2
= ext3_journal_stop(handle
)) && !err
)
874 update_backups(sb
, sbi
->s_sbh
->b_blocknr
, (char *)es
,
875 sizeof(struct ext3_super_block
));
876 update_backups(sb
, primary
->b_blocknr
, primary
->b_data
,
882 } /* ext3_group_add */
884 /* Extend the filesystem to the new number of blocks specified. This entry
885 * point is only used to extend the current filesystem to the end of the last
886 * existing group. It can be accessed via ioctl, or by "remount,resize=<size>"
887 * for emergencies (because it has no dependencies on reserved blocks).
889 * If we _really_ wanted, we could use default values to call ext3_group_add()
890 * allow the "remount" trick to work for arbitrary resizing, assuming enough
891 * GDT blocks are reserved to grow to the desired size.
893 int ext3_group_extend(struct super_block
*sb
, struct ext3_super_block
*es
,
894 unsigned long n_blocks_count
)
896 unsigned long o_blocks_count
;
897 unsigned long o_groups_count
;
900 struct buffer_head
* bh
;
902 int err
, freed_blocks
;
904 /* We don't need to worry about locking wrt other resizers just
905 * yet: we're going to revalidate es->s_blocks_count after
906 * taking lock_super() below. */
907 o_blocks_count
= le32_to_cpu(es
->s_blocks_count
);
908 o_groups_count
= EXT3_SB(sb
)->s_groups_count
;
910 if (test_opt(sb
, DEBUG
))
911 printk(KERN_DEBUG
"EXT3-fs: extending last group from %lu to %lu blocks\n",
912 o_blocks_count
, n_blocks_count
);
914 if (n_blocks_count
== 0 || n_blocks_count
== o_blocks_count
)
917 if (n_blocks_count
< o_blocks_count
) {
918 ext3_warning(sb
, __FUNCTION__
,
919 "can't shrink FS - resize aborted");
923 /* Handle the remaining blocks in the last group only. */
924 last
= (o_blocks_count
- le32_to_cpu(es
->s_first_data_block
)) %
925 EXT3_BLOCKS_PER_GROUP(sb
);
928 ext3_warning(sb
, __FUNCTION__
,
929 "need to use ext2online to resize further\n");
933 add
= EXT3_BLOCKS_PER_GROUP(sb
) - last
;
935 if (o_blocks_count
+ add
> n_blocks_count
)
936 add
= n_blocks_count
- o_blocks_count
;
938 if (o_blocks_count
+ add
< n_blocks_count
)
939 ext3_warning(sb
, __FUNCTION__
,
940 "will only finish group (%lu blocks, %u new)",
941 o_blocks_count
+ add
, add
);
943 /* See if the device is actually as big as what was requested */
944 bh
= sb_bread(sb
, o_blocks_count
+ add
-1);
946 ext3_warning(sb
, __FUNCTION__
,
947 "can't read last block, resize aborted");
952 /* We will update the superblock, one block bitmap, and
953 * one group descriptor via ext3_free_blocks().
955 handle
= ext3_journal_start_sb(sb
, 3);
956 if (IS_ERR(handle
)) {
957 err
= PTR_ERR(handle
);
958 ext3_warning(sb
, __FUNCTION__
, "error %d on journal start",err
);
963 if (o_blocks_count
!= le32_to_cpu(es
->s_blocks_count
)) {
964 ext3_warning(sb
, __FUNCTION__
,
965 "multiple resizers run on filesystem!\n");
970 if ((err
= ext3_journal_get_write_access(handle
,
971 EXT3_SB(sb
)->s_sbh
))) {
972 ext3_warning(sb
, __FUNCTION__
,
973 "error %d on journal write access", err
);
975 ext3_journal_stop(handle
);
978 es
->s_blocks_count
= cpu_to_le32(o_blocks_count
+ add
);
979 ext3_journal_dirty_metadata(handle
, EXT3_SB(sb
)->s_sbh
);
982 ext3_debug("freeing blocks %ld through %ld\n", o_blocks_count
,
983 o_blocks_count
+ add
);
984 ext3_free_blocks_sb(handle
, sb
, o_blocks_count
, add
, &freed_blocks
);
985 ext3_debug("freed blocks %ld through %ld\n", o_blocks_count
,
986 o_blocks_count
+ add
);
987 if ((err
= ext3_journal_stop(handle
)))
989 if (test_opt(sb
, DEBUG
))
990 printk(KERN_DEBUG
"EXT3-fs: extended group to %u blocks\n",
991 le32_to_cpu(es
->s_blocks_count
));
992 update_backups(sb
, EXT3_SB(sb
)->s_sbh
->b_blocknr
, (char *)es
,
993 sizeof(struct ext3_super_block
));
996 } /* ext3_group_extend */