1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
ext2_meta.c -- ext2 metadata mover
Copyright (C) 1998-2000, 2007, 2009-2010 Free Software Foundation,
Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <config.h>
#ifndef DISCOVER_ONLY
#include <stdio.h>
#include <stdlib.h>
#include "ext2.h"
int ext2_metadata_push(struct ext2_fs *fs, blk_t newsize)
{
int i;
int newgdblocks;
blk_t newitoffset;
newgdblocks = ped_div_round_up (newsize
- EXT2_SUPER_FIRST_DATA_BLOCK(fs->sb),
EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb));
newgdblocks = ped_div_round_up (newgdblocks
* sizeof(struct ext2_group_desc),
fs->blocksize);
newitoffset = newgdblocks + 3;
if (newitoffset <= fs->itoffset)
return 1;
for (i=0;i<fs->numgroups;i++)
{
blk_t diff;
blk_t j;
blk_t fromblock;
blk_t start;
start = (i * EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb))
+ EXT2_SUPER_FIRST_DATA_BLOCK(fs->sb);
if (EXT2_GROUP_INODE_TABLE(fs->gd[i]) >= start + newitoffset
&& EXT2_GROUP_BLOCK_BITMAP(fs->gd[i]) >= start + newitoffset - 2
&& EXT2_GROUP_INODE_BITMAP(fs->gd[i]) >= start + newitoffset - 1)
continue;
diff = newitoffset - (EXT2_GROUP_INODE_TABLE(fs->gd[i]) - start);
/* inode table */
fromblock = EXT2_GROUP_INODE_TABLE(fs->gd[i]) + fs->inodeblocks;
if (fs->opt_debug)
{
for (j=0;j<diff;j++)
if (!ext2_get_block_state(fs, fromblock+j))
{
fprintf(stderr,
"error: block relocator "
"should have relocated "
"%i\n",
fromblock);
return 0;
}
}
for (j=0;j<diff;j++)
if (!ext2_set_block_state(fs, fromblock+j, 1, 0))
return 0;
if (!ext2_move_blocks(fs,
EXT2_GROUP_INODE_TABLE(fs->gd[i]),
fs->inodeblocks,
EXT2_GROUP_INODE_TABLE(fs->gd[i]) + diff))
return 0;
fs->gd[i].bg_inode_table = PED_CPU_TO_LE32 (
EXT2_GROUP_INODE_TABLE(fs->gd[i]) + diff);
fs->metadirty |= EXT2_META_GD;
if (fs->opt_safe)
if (!ext2_sync(fs))
return 0;
/* block bitmap and inode bitmap */
fromblock = EXT2_GROUP_INODE_TABLE(fs->gd[i]);
if (ext2_is_group_sparse(fs, i))
{
if (!ext2_copy_block(fs,
EXT2_GROUP_INODE_BITMAP(fs->gd[i]),
EXT2_GROUP_INODE_BITMAP(fs->gd[i]) + diff))
return 0;
fs->gd[i].bg_inode_bitmap = PED_CPU_TO_LE32 (
EXT2_GROUP_INODE_BITMAP(fs->gd[i]) + diff);
fs->metadirty |= EXT2_META_GD;
if (fs->opt_safe)
if (!ext2_sync(fs))
return 0;
if (!ext2_copy_block(fs,
EXT2_GROUP_BLOCK_BITMAP(fs->gd[i]),
EXT2_GROUP_BLOCK_BITMAP(fs->gd[i])+diff))
return 0;
fs->gd[i].bg_block_bitmap = PED_CPU_TO_LE32 (
EXT2_GROUP_BLOCK_BITMAP(fs->gd[i]) + diff);
fs->metadirty |= EXT2_META_GD;
if (fs->opt_safe)
if (!ext2_sync(fs))
return 0;
fromblock = EXT2_GROUP_BLOCK_BITMAP(fs->gd[i]);
}
ext2_zero_blocks(fs, fromblock-diff, diff);
for (j=0;j<diff;j++)
if (!ext2_set_block_state(fs, fromblock+j-diff, 0, 0))
return 0;
if (fs->opt_verbose)
fprintf(stderr,
"ext2_metadata_push: group %i/%i\r",
i+1, fs->numgroups);
}
fs->itoffset = newitoffset;
if (fs->opt_verbose)
fputc ('\n', stderr);
return 1;
}
#endif /* !DISCOVER_ONLY */
|