]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - resize/resize2fs.c
libss: initialize function pointer for readline_shutdown()
[thirdparty/e2fsprogs.git] / resize / resize2fs.c
CommitLineData
24b2c7a7
TT
1/*
2 * resize2fs.c --- ext2 main routine
3 *
0cee8a5c
TT
4 * Copyright (C) 1997, 1998 by Theodore Ts'o and
5 * PowerQuest, Inc.
6 *
7 * Copyright (C) 1999, 2000 by Theosore Ts'o
efc6f628 8 *
24b2c7a7 9 * %Begin-Header%
0cee8a5c
TT
10 * This file may be redistributed under the terms of the GNU Public
11 * License.
24b2c7a7
TT
12 * %End-Header%
13 */
14
05e112a1
TT
15/*
16 * Resizing a filesystem consists of the following phases:
17 *
a8519a2d 18 * 1. Adjust superblock and write out new parts of the inode
05e112a1 19 * table
a8519a2d
TT
20 * 2. Determine blocks which need to be relocated, and copy the
21 * contents of blocks from their old locations to the new ones.
22 * 3. Scan the inode table, doing the following:
23 * a. If blocks have been moved, update the block
24 * pointers in the inodes and indirect blocks to
25 * point at the new block locations.
26 * b. If parts of the inode table need to be evacuated,
27 * copy inodes from their old locations to their
28 * new ones.
29 * c. If (b) needs to be done, note which blocks contain
30 * directory information, since we will need to
31 * update the directory information.
32 * 4. Update the directory blocks with the new inode locations.
33 * 5. Move the inode tables, if necessary.
05e112a1 34 */
a8519a2d 35
24b2c7a7 36#include "resize2fs.h"
b969b1b8 37#include <time.h>
24b2c7a7 38
546a1ff1 39#ifdef __linux__ /* Kludge for debugging */
a8519a2d
TT
40#define RESIZE2FS_DEBUG
41#endif
42
86acdebd 43static void fix_uninit_block_bitmaps(ext2_filsys fs);
a8519a2d
TT
44static errcode_t adjust_superblock(ext2_resize_t rfs, blk_t new_size);
45static errcode_t blocks_to_move(ext2_resize_t rfs);
46static errcode_t block_mover(ext2_resize_t rfs);
47static errcode_t inode_scan_and_fix(ext2_resize_t rfs);
48static errcode_t inode_ref_fix(ext2_resize_t rfs);
49static errcode_t move_itables(ext2_resize_t rfs);
9213a93b 50static errcode_t fix_resize_inode(ext2_filsys fs);
a8519a2d 51static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs);
8a6ede8b 52static errcode_t fix_sb_journal_backup(ext2_filsys fs);
a8519a2d
TT
53
54/*
55 * Some helper CPP macros
56 */
57#define FS_BLOCK_BM(fs, i) ((fs)->group_desc[(i)].bg_block_bitmap)
58#define FS_INODE_BM(fs, i) ((fs)->group_desc[(i)].bg_inode_bitmap)
59#define FS_INODE_TB(fs, i) ((fs)->group_desc[(i)].bg_inode_table)
60
61#define IS_BLOCK_BM(fs, i, blk) ((blk) == FS_BLOCK_BM((fs),(i)))
62#define IS_INODE_BM(fs, i, blk) ((blk) == FS_INODE_BM((fs),(i)))
63
64#define IS_INODE_TB(fs, i, blk) (((blk) >= FS_INODE_TB((fs), (i))) && \
65 ((blk) < (FS_INODE_TB((fs), (i)) + \
66 (fs)->inode_blocks_per_group)))
67
199ddaaa
JB
68#define META_OVERHEAD(fs) (2 + (fs)->inode_blocks_per_group)
69#define SUPER_OVERHEAD(fs) (1 + (fs)->desc_blocks +\
70 (fs)->super->s_reserved_gdt_blocks)
a8519a2d
TT
71
72/*
73 * This is the top-level routine which does the dirty deed....
74 */
116db1b5 75errcode_t resize_fs(ext2_filsys fs, blk_t *new_size, int flags,
3b627e8d 76 errcode_t (*progress)(ext2_resize_t rfs, int pass,
86acdebd
TT
77 unsigned long cur,
78 unsigned long max_val))
a8519a2d
TT
79{
80 ext2_resize_t rfs;
81 errcode_t retval;
82
83 retval = ext2fs_read_bitmaps(fs);
84 if (retval)
85 return retval;
efc6f628 86
96cdb37e
TT
87 fs->super->s_state |= EXT2_ERROR_FS;
88 ext2fs_mark_super_dirty(fs);
89 ext2fs_flush(fs);
90
a8519a2d
TT
91 /*
92 * Create the data structure
93 */
c4e3d3f3 94 retval = ext2fs_get_mem(sizeof(struct ext2_resize_struct), &rfs);
a8519a2d
TT
95 if (retval)
96 return retval;
97 memset(rfs, 0, sizeof(struct ext2_resize_struct));
98
86acdebd 99 fix_uninit_block_bitmaps(fs);
7f9c96ee 100 fs->priv_data = rfs;
a8519a2d
TT
101 rfs->old_fs = fs;
102 rfs->flags = flags;
103 rfs->itable_buf = 0;
104 rfs->progress = progress;
105 retval = ext2fs_dup_handle(fs, &rfs->new_fs);
106 if (retval)
107 goto errout;
108
116db1b5 109 retval = adjust_superblock(rfs, *new_size);
a8519a2d
TT
110 if (retval)
111 goto errout;
112
86acdebd
TT
113 fix_uninit_block_bitmaps(rfs->new_fs);
114 /* Clear the block bitmap uninit flag for the last block group */
115 rfs->new_fs->group_desc[rfs->new_fs->group_desc_count-1].bg_flags &=
116 ~EXT2_BG_BLOCK_UNINIT;
117
116db1b5
TT
118 *new_size = rfs->new_fs->super->s_blocks_count;
119
a8519a2d
TT
120 retval = blocks_to_move(rfs);
121 if (retval)
122 goto errout;
123
124#ifdef RESIZE2FS_DEBUG
125 if (rfs->flags & RESIZE_DEBUG_BMOVE)
8deb80a5 126 printf("Number of free blocks: %u/%u, Needed: %d\n",
a8519a2d
TT
127 rfs->old_fs->super->s_free_blocks_count,
128 rfs->new_fs->super->s_free_blocks_count,
129 rfs->needed_blocks);
130#endif
efc6f628 131
a8519a2d
TT
132 retval = block_mover(rfs);
133 if (retval)
134 goto errout;
135
136 retval = inode_scan_and_fix(rfs);
137 if (retval)
138 goto errout;
139
140 retval = inode_ref_fix(rfs);
141 if (retval)
142 goto errout;
143
a8519a2d
TT
144 retval = move_itables(rfs);
145 if (retval)
146 goto errout;
147
64ad98ac
TT
148 retval = ext2fs_calculate_summary_stats(rfs->new_fs);
149 if (retval)
150 goto errout;
efc6f628 151
9213a93b
TT
152 retval = fix_resize_inode(rfs->new_fs);
153 if (retval)
154 goto errout;
155
8a6ede8b
ES
156 retval = fix_sb_journal_backup(rfs->new_fs);
157 if (retval)
158 goto errout;
159
96cdb37e 160 rfs->new_fs->super->s_state &= ~EXT2_ERROR_FS;
efc6f628 161 rfs->new_fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
a8519a2d
TT
162 retval = ext2fs_close(rfs->new_fs);
163 if (retval)
164 goto errout;
165
166 rfs->flags = flags;
efc6f628 167
a8519a2d
TT
168 ext2fs_free(rfs->old_fs);
169 if (rfs->itable_buf)
c4e3d3f3 170 ext2fs_free_mem(&rfs->itable_buf);
e2ca097f
TT
171 if (rfs->reserve_blocks)
172 ext2fs_free_block_bitmap(rfs->reserve_blocks);
173 if (rfs->move_blocks)
174 ext2fs_free_block_bitmap(rfs->move_blocks);
c4e3d3f3 175 ext2fs_free_mem(&rfs);
efc6f628 176
a8519a2d
TT
177 return 0;
178
179errout:
180 if (rfs->new_fs)
181 ext2fs_free(rfs->new_fs);
182 if (rfs->itable_buf)
c4e3d3f3
TT
183 ext2fs_free_mem(&rfs->itable_buf);
184 ext2fs_free_mem(&rfs);
a8519a2d
TT
185 return retval;
186}
187
86acdebd
TT
188/*
189 * Clean up the bitmaps for unitialized bitmaps
190 */
191static void fix_uninit_block_bitmaps(ext2_filsys fs)
192{
03fa6f8a 193 blk_t i, blk, super_blk, old_desc_blk, new_desc_blk;
86acdebd
TT
194 int old_desc_blocks;
195 dgrp_t g;
196
197 if (!(EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
198 EXT4_FEATURE_RO_COMPAT_GDT_CSUM)))
199 return;
200
201 for (g=0; g < fs->group_desc_count; g++) {
202 if (!(fs->group_desc[g].bg_flags & EXT2_BG_BLOCK_UNINIT))
203 continue;
204
205 blk = (g * fs->super->s_blocks_per_group) +
206 fs->super->s_first_data_block;
207
208 ext2fs_super_and_bgd_loc(fs, g, &super_blk,
209 &old_desc_blk, &new_desc_blk, 0);
210
211 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
212 old_desc_blocks = fs->super->s_first_meta_bg;
213 else
efc6f628 214 old_desc_blocks = fs->desc_blocks +
86acdebd
TT
215 fs->super->s_reserved_gdt_blocks;
216
217 for (i=0; i < fs->super->s_blocks_per_group; i++, blk++) {
218 if (blk >= fs->super->s_blocks_count)
219 break;
220 if ((blk == super_blk) ||
221 (old_desc_blk && old_desc_blocks &&
222 (blk >= old_desc_blk) &&
223 (blk < old_desc_blk + old_desc_blocks)) ||
224 (new_desc_blk && (blk == new_desc_blk)) ||
225 (blk == fs->group_desc[g].bg_block_bitmap) ||
226 (blk == fs->group_desc[g].bg_inode_bitmap) ||
227 (blk >= fs->group_desc[g].bg_inode_table &&
228 (blk < fs->group_desc[g].bg_inode_table
229 + fs->inode_blocks_per_group)))
230 ext2fs_fast_mark_block_bitmap(fs->block_map, blk);
231 else
232 ext2fs_fast_unmark_block_bitmap(fs->block_map, blk);
233 }
234 }
235}
236
a8519a2d
TT
237/* --------------------------------------------------------------------
238 *
239 * Resize processing, phase 1.
240 *
241 * In this phase we adjust the in-memory superblock information, and
242 * initialize any new parts of the inode table. The new parts of the
243 * inode table are created in virgin disk space, so we can abort here
244 * without any side effects.
245 * --------------------------------------------------------------------
246 */
247
9227c5bb
TT
248/*
249 * If the group descriptor's bitmap and inode table blocks are valid,
c09043f1
TT
250 * release them in the new filesystem data structure, and mark them as
251 * reserved so the old inode table blocks don't get overwritten.
9227c5bb 252 */
c09043f1
TT
253static void free_gdp_blocks(ext2_filsys fs,
254 ext2fs_block_bitmap reserve_blocks,
255 struct ext2_group_desc *gdp)
9227c5bb
TT
256{
257 blk_t blk;
258 int j;
259
260 if (gdp->bg_block_bitmap &&
c09043f1 261 (gdp->bg_block_bitmap < fs->super->s_blocks_count)) {
9227c5bb 262 ext2fs_block_alloc_stats(fs, gdp->bg_block_bitmap, -1);
c09043f1
TT
263 ext2fs_mark_block_bitmap(reserve_blocks,
264 gdp->bg_block_bitmap);
265 }
9227c5bb
TT
266
267 if (gdp->bg_inode_bitmap &&
c09043f1 268 (gdp->bg_inode_bitmap < fs->super->s_blocks_count)) {
9227c5bb 269 ext2fs_block_alloc_stats(fs, gdp->bg_inode_bitmap, -1);
c09043f1
TT
270 ext2fs_mark_block_bitmap(reserve_blocks,
271 gdp->bg_inode_bitmap);
272 }
9227c5bb
TT
273
274 if (gdp->bg_inode_table == 0 ||
275 (gdp->bg_inode_table >= fs->super->s_blocks_count))
276 return;
277
278 for (blk = gdp->bg_inode_table, j = 0;
279 j < fs->inode_blocks_per_group; j++, blk++) {
280 if (blk >= fs->super->s_blocks_count)
281 break;
282 ext2fs_block_alloc_stats(fs, blk, -1);
c09043f1 283 ext2fs_mark_block_bitmap(reserve_blocks, blk);
9227c5bb
TT
284 }
285}
286
24b2c7a7 287/*
bf69235a
TT
288 * This routine is shared by the online and offline resize routines.
289 * All of the information which is adjusted in memory is done here.
c09043f1
TT
290 *
291 * The reserve_blocks parameter is only needed when shrinking the
292 * filesystem.
24b2c7a7 293 */
c09043f1
TT
294errcode_t adjust_fs_info(ext2_filsys fs, ext2_filsys old_fs,
295 ext2fs_block_bitmap reserve_blocks, blk_t new_size)
24b2c7a7 296{
24b2c7a7 297 errcode_t retval;
bf69235a
TT
298 int overhead = 0;
299 int rem;
24b2c7a7 300 blk_t blk, group_block;
bf69235a
TT
301 ext2_ino_t real_end;
302 int adj, old_numblocks, numblocks, adjblocks;
303 unsigned long i, j, old_desc_blocks, max_group;
54434927 304 unsigned int meta_bg, meta_bg_size;
74128f8d 305 int has_super, csum_flag;
de8f3a76 306 unsigned long long new_inodes; /* u64 to check for overflow */
9ff8ece5 307 double percent;
bf69235a 308
24b2c7a7
TT
309 fs->super->s_blocks_count = new_size;
310
311retry:
69022e02
TT
312 fs->group_desc_count = ext2fs_div_ceil(fs->super->s_blocks_count -
313 fs->super->s_first_data_block,
314 EXT2_BLOCKS_PER_GROUP(fs->super));
24b2c7a7
TT
315 if (fs->group_desc_count == 0)
316 return EXT2_ET_TOOSMALL;
efc6f628 317 fs->desc_blocks = ext2fs_div_ceil(fs->group_desc_count,
69022e02 318 EXT2_DESC_PER_BLOCK(fs->super));
24b2c7a7
TT
319
320 /*
321 * Overhead is the number of bookkeeping blocks per group. It
322 * includes the superblock backup, the group descriptor
323 * backups, the inode bitmap, the block bitmap, and the inode
324 * table.
24b2c7a7 325 */
9213a93b
TT
326 overhead = (int) (2 + fs->inode_blocks_per_group);
327
328 if (ext2fs_bg_has_super(fs, fs->group_desc_count - 1))
efc6f628 329 overhead += 1 + fs->desc_blocks +
9213a93b
TT
330 fs->super->s_reserved_gdt_blocks;
331
24b2c7a7
TT
332 /*
333 * See if the last group is big enough to support the
334 * necessary data structures. If not, we need to get rid of
335 * it.
336 */
337 rem = (fs->super->s_blocks_count - fs->super->s_first_data_block) %
338 fs->super->s_blocks_per_group;
339 if ((fs->group_desc_count == 1) && rem && (rem < overhead))
340 return EXT2_ET_TOOSMALL;
341 if (rem && (rem < overhead+50)) {
342 fs->super->s_blocks_count -= rem;
343 goto retry;
344 }
345 /*
346 * Adjust the number of inodes
347 */
de8f3a76 348 new_inodes =(unsigned long long) fs->super->s_inodes_per_group * fs->group_desc_count;
f3358643
ES
349 if (new_inodes > ~0U) {
350 fprintf(stderr, _("inodes (%llu) must be less than %u"),
351 new_inodes, ~0U);
352 return EXT2_ET_TOO_MANY_INODES;
353 }
24b2c7a7
TT
354 fs->super->s_inodes_count = fs->super->s_inodes_per_group *
355 fs->group_desc_count;
356
357 /*
358 * Adjust the number of free blocks
359 */
bf69235a 360 blk = old_fs->super->s_blocks_count;
24b2c7a7
TT
361 if (blk > fs->super->s_blocks_count)
362 fs->super->s_free_blocks_count -=
363 (blk - fs->super->s_blocks_count);
364 else
365 fs->super->s_free_blocks_count +=
366 (fs->super->s_blocks_count - blk);
367
c762c8e6
TT
368 /*
369 * Adjust the number of reserved blocks
370 */
9ff8ece5 371 percent = (old_fs->super->s_r_blocks_count * 100.0) /
bf69235a 372 old_fs->super->s_blocks_count;
9ff8ece5
TT
373 fs->super->s_r_blocks_count = (unsigned int) (percent *
374 fs->super->s_blocks_count / 100.0);
c762c8e6 375
24b2c7a7
TT
376 /*
377 * Adjust the bitmaps for size
378 */
379 retval = ext2fs_resize_inode_bitmap(fs->super->s_inodes_count,
380 fs->super->s_inodes_count,
381 fs->inode_map);
c762c8e6 382 if (retval) goto errout;
efc6f628 383
24b2c7a7
TT
384 real_end = ((EXT2_BLOCKS_PER_GROUP(fs->super)
385 * fs->group_desc_count)) - 1 +
386 fs->super->s_first_data_block;
387 retval = ext2fs_resize_block_bitmap(fs->super->s_blocks_count-1,
388 real_end, fs->block_map);
389
c762c8e6 390 if (retval) goto errout;
24b2c7a7
TT
391
392 /*
393 * Reallocate the group descriptors as necessary.
394 */
bf69235a
TT
395 if (old_fs->desc_blocks != fs->desc_blocks) {
396 retval = ext2fs_resize_mem(old_fs->desc_blocks *
76f875da
TT
397 fs->blocksize,
398 fs->desc_blocks * fs->blocksize,
c4e3d3f3 399 &fs->group_desc);
ca8abba7 400 if (retval)
a8519a2d 401 goto errout;
efc6f628
TT
402 if (fs->desc_blocks > old_fs->desc_blocks)
403 memset((char *) fs->group_desc +
bf69235a
TT
404 (old_fs->desc_blocks * fs->blocksize), 0,
405 (fs->desc_blocks - old_fs->desc_blocks) *
2787276e 406 fs->blocksize);
24b2c7a7 407 }
1e1da29f 408
9213a93b
TT
409 /*
410 * If the resize_inode feature is set, and we are changing the
411 * number of descriptor blocks, then adjust
412 * s_reserved_gdt_blocks if possible to avoid needing to move
413 * the inode table either now or in the future.
414 */
efc6f628 415 if ((fs->super->s_feature_compat &
9213a93b 416 EXT2_FEATURE_COMPAT_RESIZE_INODE) &&
bf69235a 417 (old_fs->desc_blocks != fs->desc_blocks)) {
9213a93b
TT
418 int new;
419
efc6f628 420 new = ((int) fs->super->s_reserved_gdt_blocks) +
bf69235a 421 (old_fs->desc_blocks - fs->desc_blocks);
9213a93b
TT
422 if (new < 0)
423 new = 0;
de8f3a76 424 if (new > (int) fs->blocksize/4)
9213a93b
TT
425 new = fs->blocksize/4;
426 fs->super->s_reserved_gdt_blocks = new;
9213a93b
TT
427 }
428
a8519a2d 429 /*
c09043f1
TT
430 * If we are shrinking the number of block groups, we're done
431 * and can exit now.
1e1da29f 432 */
bf69235a 433 if (old_fs->group_desc_count > fs->group_desc_count) {
9227c5bb
TT
434 /*
435 * Check the block groups that we are chopping off
436 * and free any blocks associated with their metadata
437 */
438 for (i = fs->group_desc_count;
439 i < old_fs->group_desc_count; i++) {
c09043f1
TT
440 free_gdp_blocks(fs, reserve_blocks,
441 &old_fs->group_desc[i]);
9227c5bb 442 }
c762c8e6
TT
443 retval = 0;
444 goto errout;
445 }
bf69235a 446
a8519a2d
TT
447 /*
448 * Fix the count of the last (old) block group
449 */
bf69235a
TT
450 old_numblocks = (old_fs->super->s_blocks_count -
451 old_fs->super->s_first_data_block) %
452 old_fs->super->s_blocks_per_group;
1e1da29f 453 if (!old_numblocks)
bf69235a
TT
454 old_numblocks = old_fs->super->s_blocks_per_group;
455 if (old_fs->group_desc_count == fs->group_desc_count) {
456 numblocks = (fs->super->s_blocks_count -
457 fs->super->s_first_data_block) %
458 fs->super->s_blocks_per_group;
1e1da29f 459 if (!numblocks)
bf69235a 460 numblocks = fs->super->s_blocks_per_group;
1e1da29f 461 } else
bf69235a
TT
462 numblocks = fs->super->s_blocks_per_group;
463 i = old_fs->group_desc_count - 1;
1e1da29f 464 fs->group_desc[i].bg_free_blocks_count += (numblocks-old_numblocks);
236efede
JS
465 ext2fs_group_desc_csum_set(fs, i);
466
1e1da29f 467 /*
a8519a2d
TT
468 * If the number of block groups is staying the same, we're
469 * done and can exit now. (If the number block groups is
470 * shrinking, we had exited earlier.)
1e1da29f 471 */
bf69235a 472 if (old_fs->group_desc_count >= fs->group_desc_count) {
c762c8e6
TT
473 retval = 0;
474 goto errout;
475 }
bf69235a 476
a8519a2d
TT
477 /*
478 * Initialize the new block group descriptors
479 */
1e1da29f 480 group_block = fs->super->s_first_data_block +
bf69235a 481 old_fs->group_desc_count * fs->super->s_blocks_per_group;
c762c8e6 482
74128f8d
TT
483 csum_flag = EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
484 EXT4_FEATURE_RO_COMPAT_GDT_CSUM);
bf69235a 485 adj = old_fs->group_desc_count;
63b44fbe 486 max_group = fs->group_desc_count - adj;
76dd5e5c
TT
487 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
488 old_desc_blocks = fs->super->s_first_meta_bg;
489 else
efc6f628 490 old_desc_blocks = fs->desc_blocks +
9213a93b 491 fs->super->s_reserved_gdt_blocks;
bf69235a 492 for (i = old_fs->group_desc_count;
1e1da29f
TT
493 i < fs->group_desc_count; i++) {
494 memset(&fs->group_desc[i], 0,
495 sizeof(struct ext2_group_desc));
496 adjblocks = 0;
497
74128f8d
TT
498 fs->group_desc[i].bg_flags = 0;
499 if (csum_flag)
500 fs->group_desc[i].bg_flags |= EXT2_BG_INODE_UNINIT |
501 EXT2_BG_INODE_ZEROED;
1e1da29f
TT
502 if (i == fs->group_desc_count-1) {
503 numblocks = (fs->super->s_blocks_count -
504 fs->super->s_first_data_block) %
505 fs->super->s_blocks_per_group;
506 if (!numblocks)
507 numblocks = fs->super->s_blocks_per_group;
74128f8d 508 } else {
1e1da29f 509 numblocks = fs->super->s_blocks_per_group;
74128f8d
TT
510 if (csum_flag)
511 fs->group_desc[i].bg_flags |=
512 EXT2_BG_BLOCK_UNINIT;
513 }
1e1da29f 514
76dd5e5c
TT
515 has_super = ext2fs_bg_has_super(fs, i);
516 if (has_super) {
74128f8d 517 ext2fs_block_alloc_stats(fs, group_block, +1);
76dd5e5c
TT
518 adjblocks++;
519 }
f2de1d38 520 meta_bg_size = EXT2_DESC_PER_BLOCK(fs->super);
76dd5e5c
TT
521 meta_bg = i / meta_bg_size;
522 if (!(fs->super->s_feature_incompat &
523 EXT2_FEATURE_INCOMPAT_META_BG) ||
524 (meta_bg < fs->super->s_first_meta_bg)) {
525 if (has_super) {
526 for (j=0; j < old_desc_blocks; j++)
74128f8d
TT
527 ext2fs_block_alloc_stats(fs,
528 group_block + 1 + j, +1);
76dd5e5c
TT
529 adjblocks += old_desc_blocks;
530 }
531 } else {
532 if (has_super)
533 has_super = 1;
534 if (((i % meta_bg_size) == 0) ||
535 ((i % meta_bg_size) == 1) ||
536 ((i % meta_bg_size) == (meta_bg_size-1)))
74128f8d
TT
537 ext2fs_block_alloc_stats(fs,
538 group_block + has_super, +1);
24b2c7a7 539 }
efc6f628 540
1e1da29f 541 adjblocks += 2 + fs->inode_blocks_per_group;
efc6f628 542
1e1da29f
TT
543 numblocks -= adjblocks;
544 fs->super->s_free_blocks_count -= adjblocks;
545 fs->super->s_free_inodes_count +=
546 fs->super->s_inodes_per_group;
547 fs->group_desc[i].bg_free_blocks_count = numblocks;
548 fs->group_desc[i].bg_free_inodes_count =
549 fs->super->s_inodes_per_group;
550 fs->group_desc[i].bg_used_dirs_count = 0;
236efede 551 ext2fs_group_desc_csum_set(fs, i);
24b2c7a7 552
1e1da29f 553 retval = ext2fs_allocate_group_table(fs, i, 0);
c762c8e6 554 if (retval) goto errout;
24b2c7a7 555
bf69235a
TT
556 group_block += fs->super->s_blocks_per_group;
557 }
558 retval = 0;
559
560errout:
561 return (retval);
562}
563
564/*
565 * This routine adjusts the superblock and other data structures, both
566 * in disk as well as in memory...
567 */
568static errcode_t adjust_superblock(ext2_resize_t rfs, blk_t new_size)
569{
570 ext2_filsys fs;
571 int adj = 0;
572 errcode_t retval;
573 blk_t group_block;
574 unsigned long i;
575 unsigned long max_group;
efc6f628 576
bf69235a
TT
577 fs = rfs->new_fs;
578 ext2fs_mark_super_dirty(fs);
579 ext2fs_mark_bb_dirty(fs);
580 ext2fs_mark_ib_dirty(fs);
581
c09043f1
TT
582 retval = ext2fs_allocate_block_bitmap(fs, _("reserved blocks"),
583 &rfs->reserve_blocks);
584 if (retval)
585 return retval;
586
587 retval = adjust_fs_info(fs, rfs->old_fs, rfs->reserve_blocks, new_size);
bf69235a
TT
588 if (retval)
589 goto errout;
590
591 /*
592 * Check to make sure there are enough inodes
593 */
594 if ((rfs->old_fs->super->s_inodes_count -
595 rfs->old_fs->super->s_free_inodes_count) >
596 rfs->new_fs->super->s_inodes_count) {
597 retval = ENOSPC;
598 goto errout;
599 }
600
601 /*
602 * If we are shrinking the number block groups, we're done and
603 * can exit now.
604 */
605 if (rfs->old_fs->group_desc_count > fs->group_desc_count) {
606 retval = 0;
607 goto errout;
608 }
609
610 /*
611 * If the number of block groups is staying the same, we're
612 * done and can exit now. (If the number block groups is
613 * shrinking, we had exited earlier.)
614 */
615 if (rfs->old_fs->group_desc_count >= fs->group_desc_count) {
616 retval = 0;
617 goto errout;
618 }
619
620 /*
621 * Initialize the new block group descriptors
622 */
e5aace90 623 retval = ext2fs_get_array(fs->blocksize, fs->inode_blocks_per_group,
bf69235a
TT
624 &rfs->itable_buf);
625 if (retval)
626 goto errout;
627
628 memset(rfs->itable_buf, 0, fs->blocksize * fs->inode_blocks_per_group);
629 group_block = fs->super->s_first_data_block +
630 rfs->old_fs->group_desc_count * fs->super->s_blocks_per_group;
631
632 adj = rfs->old_fs->group_desc_count;
633 max_group = fs->group_desc_count - adj;
634 if (rfs->progress) {
635 retval = rfs->progress(rfs, E2_RSZ_EXTEND_ITABLE_PASS,
636 0, max_group);
637 if (retval)
638 goto errout;
639 }
640 for (i = rfs->old_fs->group_desc_count;
641 i < fs->group_desc_count; i++) {
05e112a1
TT
642 /*
643 * Write out the new inode table
644 */
645 retval = io_channel_write_blk(fs->io,
646 fs->group_desc[i].bg_inode_table,
647 fs->inode_blocks_per_group,
648 rfs->itable_buf);
c762c8e6
TT
649 if (retval) goto errout;
650
a8519a2d 651 io_channel_flush(fs->io);
3b627e8d
TT
652 if (rfs->progress) {
653 retval = rfs->progress(rfs, E2_RSZ_EXTEND_ITABLE_PASS,
654 i - adj + 1, max_group);
655 if (retval)
656 goto errout;
657 }
1e1da29f 658 group_block += fs->super->s_blocks_per_group;
24b2c7a7 659 }
c762c8e6
TT
660 io_channel_flush(fs->io);
661 retval = 0;
662
663errout:
c762c8e6
TT
664 return retval;
665}
666
a8519a2d
TT
667/* --------------------------------------------------------------------
668 *
669 * Resize processing, phase 2.
670 *
671 * In this phase we adjust determine which blocks need to be moved, in
672 * blocks_to_move(). We then copy the blocks to their ultimate new
673 * destinations using block_mover(). Since we are copying blocks to
674 * their new locations, again during this pass we can abort without
675 * any problems.
676 * --------------------------------------------------------------------
677 */
678
c762c8e6
TT
679/*
680 * This helper function creates a block bitmap with all of the
681 * filesystem meta-data blocks.
682 */
683static errcode_t mark_table_blocks(ext2_filsys fs,
64ad98ac 684 ext2fs_block_bitmap bmap)
c762c8e6 685{
62c6d140 686 blk_t b;
54434927
TT
687 unsigned int j;
688 dgrp_t i;
68963d5a 689 unsigned long meta_bg_size;
54434927 690 unsigned int old_desc_blocks;
c762c8e6 691
f2de1d38 692 meta_bg_size = EXT2_DESC_PER_BLOCK(fs->super);
76dd5e5c
TT
693 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
694 old_desc_blocks = fs->super->s_first_meta_bg;
695 else
efc6f628 696 old_desc_blocks = fs->desc_blocks +
9213a93b 697 fs->super->s_reserved_gdt_blocks;
c762c8e6 698 for (i = 0; i < fs->group_desc_count; i++) {
64ad98ac 699 ext2fs_reserve_super_and_bgd(fs, i, bmap);
efc6f628 700
c762c8e6
TT
701 /*
702 * Mark the blocks used for the inode table
703 */
704 for (j = 0, b = fs->group_desc[i].bg_inode_table;
54434927 705 j < (unsigned int) fs->inode_blocks_per_group;
c762c8e6
TT
706 j++, b++)
707 ext2fs_mark_block_bitmap(bmap, b);
efc6f628 708
c762c8e6 709 /*
efc6f628 710 * Mark block used for the block bitmap
c762c8e6
TT
711 */
712 ext2fs_mark_block_bitmap(bmap,
713 fs->group_desc[i].bg_block_bitmap);
64ad98ac 714
c762c8e6 715 /*
efc6f628 716 * Mark block used for the inode bitmap
c762c8e6
TT
717 */
718 ext2fs_mark_block_bitmap(bmap,
719 fs->group_desc[i].bg_inode_bitmap);
c762c8e6 720 }
1e1da29f 721 return 0;
24b2c7a7
TT
722}
723
76dd5e5c
TT
724/*
725 * This function checks to see if a particular block (either a
726 * superblock or a block group descriptor) overlaps with an inode or
727 * block bitmap block, or with the inode table.
728 */
729static void mark_fs_metablock(ext2_resize_t rfs,
730 ext2fs_block_bitmap meta_bmap,
731 int group, blk_t blk)
732{
733 ext2_filsys fs = rfs->new_fs;
efc6f628 734
76dd5e5c 735 ext2fs_mark_block_bitmap(rfs->reserve_blocks, blk);
74128f8d 736 ext2fs_block_alloc_stats(fs, blk, +1);
76dd5e5c
TT
737
738 /*
739 * Check to see if we overlap with the inode or block bitmap,
740 * or the inode tables. If not, and the block is in use, then
741 * mark it as a block to be moved.
742 */
743 if (IS_BLOCK_BM(fs, group, blk)) {
744 FS_BLOCK_BM(fs, group) = 0;
745 rfs->needed_blocks++;
746 } else if (IS_INODE_BM(fs, group, blk)) {
747 FS_INODE_BM(fs, group) = 0;
748 rfs->needed_blocks++;
749 } else if (IS_INODE_TB(fs, group, blk)) {
750 FS_INODE_TB(fs, group) = 0;
751 rfs->needed_blocks++;
86acdebd
TT
752 } else if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
753 EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
754 (fs->group_desc[group].bg_flags & EXT2_BG_BLOCK_UNINIT)) {
755 /*
756 * If the block bitmap is uninitialized, which means
757 * nothing other than standard metadata in use.
758 */
759 return;
76dd5e5c
TT
760 } else if (ext2fs_test_block_bitmap(rfs->old_fs->block_map, blk) &&
761 !ext2fs_test_block_bitmap(meta_bmap, blk)) {
762 ext2fs_mark_block_bitmap(rfs->move_blocks, blk);
763 rfs->needed_blocks++;
764 }
765}
766
767
24b2c7a7
TT
768/*
769 * This routine marks and unmarks reserved blocks in the new block
770 * bitmap. It also determines which blocks need to be moved and
771 * places this information into the move_blocks bitmap.
772 */
c762c8e6 773static errcode_t blocks_to_move(ext2_resize_t rfs)
24b2c7a7 774{
54434927 775 int j, has_super;
86acdebd 776 dgrp_t i, max_groups, g;
54434927
TT
777 blk_t blk, group_blk;
778 unsigned long old_blocks, new_blocks;
779 unsigned int meta_bg, meta_bg_size;
24b2c7a7 780 errcode_t retval;
c762c8e6
TT
781 ext2_filsys fs, old_fs;
782 ext2fs_block_bitmap meta_bmap;
1ac84a94 783 __u32 save_incompat_flag;
24b2c7a7 784
c762c8e6
TT
785 fs = rfs->new_fs;
786 old_fs = rfs->old_fs;
787 if (old_fs->super->s_blocks_count > fs->super->s_blocks_count)
788 fs = rfs->old_fs;
efc6f628 789
a13575f4 790 retval = ext2fs_allocate_block_bitmap(fs, _("blocks to be moved"),
c762c8e6
TT
791 &rfs->move_blocks);
792 if (retval)
793 return retval;
794
efc6f628 795 retval = ext2fs_allocate_block_bitmap(fs, _("meta-data blocks"),
64ad98ac
TT
796 &meta_bmap);
797 if (retval)
798 return retval;
efc6f628 799
64ad98ac 800 retval = mark_table_blocks(old_fs, meta_bmap);
c762c8e6
TT
801 if (retval)
802 return retval;
803
804 fs = rfs->new_fs;
efc6f628 805
1e1da29f
TT
806 /*
807 * If we're shrinking the filesystem, we need to move all of
808 * the blocks that don't fit any more
809 */
810 for (blk = fs->super->s_blocks_count;
c762c8e6 811 blk < old_fs->super->s_blocks_count; blk++) {
86acdebd
TT
812 g = ext2fs_group_of_blk(fs, blk);
813 if (EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
814 EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
c58a08e6 815 (old_fs->group_desc[g].bg_flags & EXT2_BG_BLOCK_UNINIT)) {
86acdebd
TT
816 /*
817 * The block bitmap is uninitialized, so skip
818 * to the next block group.
819 */
820 blk = ((g+1) * fs->super->s_blocks_per_group) +
2d7361eb 821 fs->super->s_first_data_block - 1;
86acdebd
TT
822 continue;
823 }
c762c8e6
TT
824 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
825 !ext2fs_test_block_bitmap(meta_bmap, blk)) {
826 ext2fs_mark_block_bitmap(rfs->move_blocks, blk);
1e1da29f 827 rfs->needed_blocks++;
c762c8e6 828 }
1e1da29f
TT
829 ext2fs_mark_block_bitmap(rfs->reserve_blocks, blk);
830 }
efc6f628 831
76dd5e5c
TT
832 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) {
833 old_blocks = old_fs->super->s_first_meta_bg;
834 new_blocks = fs->super->s_first_meta_bg;
835 } else {
9213a93b
TT
836 old_blocks = old_fs->desc_blocks + old_fs->super->s_reserved_gdt_blocks;
837 new_blocks = fs->desc_blocks + fs->super->s_reserved_gdt_blocks;
76dd5e5c 838 }
efc6f628 839
c762c8e6
TT
840 if (old_blocks == new_blocks) {
841 retval = 0;
842 goto errout;
843 }
24b2c7a7 844
1333fe93
TT
845 max_groups = fs->group_desc_count;
846 if (max_groups > old_fs->group_desc_count)
847 max_groups = old_fs->group_desc_count;
c762c8e6 848 group_blk = old_fs->super->s_first_data_block;
24b2c7a7
TT
849 /*
850 * If we're reducing the number of descriptor blocks, this
851 * makes life easy. :-) We just have to mark some extra
852 * blocks as free.
853 */
854 if (old_blocks > new_blocks) {
1333fe93 855 for (i = 0; i < max_groups; i++) {
1e1da29f
TT
856 if (!ext2fs_bg_has_super(fs, i)) {
857 group_blk += fs->super->s_blocks_per_group;
24b2c7a7
TT
858 continue;
859 }
c762c8e6
TT
860 for (blk = group_blk+1+new_blocks;
861 blk < group_blk+1+old_blocks; blk++) {
74128f8d 862 ext2fs_block_alloc_stats(fs, blk, -1);
052db4b7
TT
863 rfs->needed_blocks--;
864 }
1e1da29f 865 group_blk += fs->super->s_blocks_per_group;
24b2c7a7 866 }
c762c8e6
TT
867 retval = 0;
868 goto errout;
24b2c7a7
TT
869 }
870 /*
871 * If we're increasing the number of descriptor blocks, life
efc6f628 872 * gets interesting....
24b2c7a7 873 */
f2de1d38 874 meta_bg_size = EXT2_DESC_PER_BLOCK(fs->super);
1333fe93 875 for (i = 0; i < max_groups; i++) {
76dd5e5c
TT
876 has_super = ext2fs_bg_has_super(fs, i);
877 if (has_super)
878 mark_fs_metablock(rfs, meta_bmap, i, group_blk);
879
880 meta_bg = i / meta_bg_size;
881 if (!(fs->super->s_feature_incompat &
882 EXT2_FEATURE_INCOMPAT_META_BG) ||
883 (meta_bg < fs->super->s_first_meta_bg)) {
424cb7b6
TT
884 if (has_super) {
885 for (blk = group_blk+1;
886 blk < group_blk + 1 + new_blocks; blk++)
efc6f628 887 mark_fs_metablock(rfs, meta_bmap,
424cb7b6
TT
888 i, blk);
889 }
76dd5e5c
TT
890 } else {
891 if (has_super)
892 has_super = 1;
893 if (((i % meta_bg_size) == 0) ||
894 ((i % meta_bg_size) == 1) ||
895 ((i % meta_bg_size) == (meta_bg_size-1)))
896 mark_fs_metablock(rfs, meta_bmap, i,
897 group_blk + has_super);
24b2c7a7 898 }
76dd5e5c 899
1e1da29f
TT
900 if (fs->group_desc[i].bg_inode_table &&
901 fs->group_desc[i].bg_inode_bitmap &&
902 fs->group_desc[i].bg_block_bitmap)
903 goto next_group;
24b2c7a7 904
1e1da29f 905 /*
c762c8e6
TT
906 * Reserve the existing meta blocks that we know
907 * aren't to be moved.
1e1da29f
TT
908 */
909 if (fs->group_desc[i].bg_block_bitmap)
910 ext2fs_mark_block_bitmap(rfs->reserve_blocks,
911 fs->group_desc[i].bg_block_bitmap);
912 if (fs->group_desc[i].bg_inode_bitmap)
913 ext2fs_mark_block_bitmap(rfs->reserve_blocks,
914 fs->group_desc[i].bg_inode_bitmap);
915 if (fs->group_desc[i].bg_inode_table)
916 for (blk = fs->group_desc[i].bg_inode_table, j=0;
917 j < fs->inode_blocks_per_group ; j++, blk++)
918 ext2fs_mark_block_bitmap(rfs->reserve_blocks,
919 blk);
24b2c7a7 920
c762c8e6
TT
921 /*
922 * Allocate the missing data structures
1ac84a94
TT
923 *
924 * XXX We have a problem with FLEX_BG and off-line
925 * resizing where we are growing the size of the
926 * filesystem. ext2fs_allocate_group_table() will try
927 * to reserve the inode table in the desired flex_bg
928 * location. However, passing rfs->reserve_blocks
929 * doesn't work since it only has reserved the blocks
930 * that will be used in the new block group -- and
931 * with flex_bg, we can and will allocate the tables
932 * outside of the block group. And we can't pass in
933 * the fs->block_map because it doesn't handle
934 * overlapping inode table movements right. So for
935 * now, we temporarily disable flex_bg to force
936 * ext2fs_allocate_group_tables() to allocate the bg
937 * metadata in side the block group, and the restore
938 * it afterwards. Ugly, until we can fix this up
939 * right later.
c762c8e6 940 */
1ac84a94
TT
941 save_incompat_flag = fs->super->s_feature_incompat;
942 fs->super->s_feature_incompat &= ~EXT4_FEATURE_INCOMPAT_FLEX_BG;
1e1da29f
TT
943 retval = ext2fs_allocate_group_table(fs, i,
944 rfs->reserve_blocks);
1ac84a94 945 fs->super->s_feature_incompat = save_incompat_flag;
1e1da29f 946 if (retval)
c762c8e6 947 goto errout;
24b2c7a7 948
1e1da29f 949 /*
c762c8e6
TT
950 * For those structures that have changed, we need to
951 * do bookkeepping.
1e1da29f 952 */
c762c8e6
TT
953 if (FS_BLOCK_BM(old_fs, i) !=
954 (blk = FS_BLOCK_BM(fs, i))) {
74128f8d 955 ext2fs_block_alloc_stats(fs, blk, +1);
c762c8e6
TT
956 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
957 !ext2fs_test_block_bitmap(meta_bmap, blk))
958 ext2fs_mark_block_bitmap(rfs->move_blocks,
959 blk);
960 }
961 if (FS_INODE_BM(old_fs, i) !=
962 (blk = FS_INODE_BM(fs, i))) {
74128f8d 963 ext2fs_block_alloc_stats(fs, blk, +1);
c762c8e6
TT
964 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
965 !ext2fs_test_block_bitmap(meta_bmap, blk))
966 ext2fs_mark_block_bitmap(rfs->move_blocks,
967 blk);
968 }
24b2c7a7 969
052db4b7
TT
970 /*
971 * The inode table, if we need to relocate it, is
972 * handled specially. We have to reserve the blocks
973 * for both the old and the new inode table, since we
974 * can't have the inode table be destroyed during the
975 * block relocation phase.
976 */
c762c8e6 977 if (FS_INODE_TB(fs, i) == FS_INODE_TB(old_fs, i))
052db4b7
TT
978 goto next_group; /* inode table not moved */
979
c762c8e6 980 rfs->needed_blocks += fs->inode_blocks_per_group;
052db4b7
TT
981
982 /*
983 * Mark the new inode table as in use in the new block
efc6f628 984 * allocation bitmap, and move any blocks that might
c762c8e6 985 * be necessary.
052db4b7 986 */
1e1da29f 987 for (blk = fs->group_desc[i].bg_inode_table, j=0;
c762c8e6 988 j < fs->inode_blocks_per_group ; j++, blk++) {
74128f8d 989 ext2fs_block_alloc_stats(fs, blk, +1);
c762c8e6
TT
990 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
991 !ext2fs_test_block_bitmap(meta_bmap, blk))
992 ext2fs_mark_block_bitmap(rfs->move_blocks,
993 blk);
994 }
efc6f628 995
1e1da29f 996 /*
052db4b7
TT
997 * Make sure the old inode table is reserved in the
998 * block reservation bitmap.
1e1da29f 999 */
052db4b7
TT
1000 for (blk = rfs->old_fs->group_desc[i].bg_inode_table, j=0;
1001 j < fs->inode_blocks_per_group ; j++, blk++)
1002 ext2fs_mark_block_bitmap(rfs->reserve_blocks, blk);
efc6f628 1003
1e1da29f
TT
1004 next_group:
1005 group_blk += rfs->new_fs->super->s_blocks_per_group;
1006 }
c762c8e6
TT
1007 retval = 0;
1008
1009errout:
1010 if (meta_bmap)
1011 ext2fs_free_block_bitmap(meta_bmap);
efc6f628 1012
c762c8e6 1013 return retval;
1e1da29f 1014}
24b2c7a7 1015
a8519a2d
TT
1016/*
1017 * This helper function tries to allocate a new block. We try to
1018 * avoid hitting the original group descriptor blocks at least at
1019 * first, since we want to make it possible to recover from a badly
1020 * aborted resize operation as much as possible.
1021 *
1022 * In the future, I may further modify this routine to balance out
1023 * where we get the new blocks across the various block groups.
1024 * Ideally we would allocate blocks that corresponded with the block
1025 * group of the containing inode, and keep contiguous blocks
1026 * together. However, this very difficult to do efficiently, since we
1027 * don't have the necessary information up front.
1028 */
1029
1030#define AVOID_OLD 1
1031#define DESPERATION 2
1032
1033static void init_block_alloc(ext2_resize_t rfs)
1034{
1035 rfs->alloc_state = AVOID_OLD;
1036 rfs->new_blk = rfs->new_fs->super->s_first_data_block;
2bc4d4f7
TT
1037#if 0
1038 /* HACK for testing */
1039 if (rfs->new_fs->super->s_blocks_count >
1040 rfs->old_fs->super->s_blocks_count)
1041 rfs->new_blk = rfs->old_fs->super->s_blocks_count;
1042#endif
a8519a2d
TT
1043}
1044
1045static blk_t get_new_block(ext2_resize_t rfs)
1046{
1047 ext2_filsys fs = rfs->new_fs;
efc6f628 1048
a8519a2d
TT
1049 while (1) {
1050 if (rfs->new_blk >= fs->super->s_blocks_count) {
1051 if (rfs->alloc_state == DESPERATION)
1052 return 0;
1053
1054#ifdef RESIZE2FS_DEBUG
1055 if (rfs->flags & RESIZE_DEBUG_BMOVE)
f35fd3d5
TT
1056 printf("Going into desperation mode "
1057 "for block allocations\n");
efc6f628 1058#endif
a8519a2d
TT
1059 rfs->alloc_state = DESPERATION;
1060 rfs->new_blk = fs->super->s_first_data_block;
1061 continue;
1062 }
1063 if (ext2fs_test_block_bitmap(fs->block_map, rfs->new_blk) ||
1064 ext2fs_test_block_bitmap(rfs->reserve_blocks,
1065 rfs->new_blk) ||
1066 ((rfs->alloc_state == AVOID_OLD) &&
bce49798 1067 (rfs->new_blk < rfs->old_fs->super->s_blocks_count) &&
a8519a2d
TT
1068 ext2fs_test_block_bitmap(rfs->old_fs->block_map,
1069 rfs->new_blk))) {
1070 rfs->new_blk++;
1071 continue;
1072 }
1073 return rfs->new_blk;
1074 }
1075}
1076
7f9c96ee
TT
1077static errcode_t resize2fs_get_alloc_block(ext2_filsys fs, blk64_t goal,
1078 blk64_t *ret)
1079{
1080 ext2_resize_t rfs = (ext2_resize_t) fs->priv_data;
1081 blk_t blk;
1082
1083 blk = get_new_block(rfs);
1084 if (!blk)
1085 return ENOSPC;
1086
1087#ifdef RESIZE2FS_DEBUG
1088 if (rfs->flags & 0xF)
1089 printf("get_alloc_block allocating %u\n", blk);
1090#endif
1091
1092 ext2fs_mark_block_bitmap(rfs->old_fs->block_map, blk);
1093 ext2fs_mark_block_bitmap(rfs->new_fs->block_map, blk);
1094 *ret = (blk64_t) blk;
1095 return 0;
1096}
1097
a8519a2d
TT
1098static errcode_t block_mover(ext2_resize_t rfs)
1099{
1100 blk_t blk, old_blk, new_blk;
1101 ext2_filsys fs = rfs->new_fs;
1102 ext2_filsys old_fs = rfs->old_fs;
1103 errcode_t retval;
1104 int size, c;
1105 int to_move, moved;
7d7bdd57
TT
1106 ext2_badblocks_list badblock_list = 0;
1107 int bb_modified = 0;
efc6f628 1108
7f9c96ee
TT
1109 fs->get_alloc_block = resize2fs_get_alloc_block;
1110 old_fs->get_alloc_block = resize2fs_get_alloc_block;
1111
7d7bdd57
TT
1112 retval = ext2fs_read_bb_inode(old_fs, &badblock_list);
1113 if (retval)
1114 return retval;
a8519a2d
TT
1115
1116 new_blk = fs->super->s_first_data_block;
1117 if (!rfs->itable_buf) {
e5aace90 1118 retval = ext2fs_get_array(fs->blocksize,
a8519a2d 1119 fs->inode_blocks_per_group,
c4e3d3f3 1120 &rfs->itable_buf);
a8519a2d
TT
1121 if (retval)
1122 return retval;
1123 }
1124 retval = ext2fs_create_extent_table(&rfs->bmap, 0);
1125 if (retval)
1126 return retval;
1127
1128 /*
1129 * The first step is to figure out where all of the blocks
1130 * will go.
1131 */
1132 to_move = moved = 0;
1133 init_block_alloc(rfs);
1134 for (blk = old_fs->super->s_first_data_block;
1135 blk < old_fs->super->s_blocks_count; blk++) {
1136 if (!ext2fs_test_block_bitmap(old_fs->block_map, blk))
1137 continue;
1138 if (!ext2fs_test_block_bitmap(rfs->move_blocks, blk))
1139 continue;
7d7bdd57
TT
1140 if (ext2fs_badblocks_list_test(badblock_list, blk)) {
1141 ext2fs_badblocks_list_del(badblock_list, blk);
1142 bb_modified++;
1143 continue;
1144 }
a8519a2d
TT
1145
1146 new_blk = get_new_block(rfs);
1147 if (!new_blk) {
1148 retval = ENOSPC;
1149 goto errout;
1150 }
74128f8d 1151 ext2fs_block_alloc_stats(fs, new_blk, +1);
a8519a2d
TT
1152 ext2fs_add_extent_entry(rfs->bmap, blk, new_blk);
1153 to_move++;
1154 }
efc6f628 1155
a8519a2d 1156 if (to_move == 0) {
cefbf487
TT
1157 if (rfs->bmap) {
1158 ext2fs_free_extent_table(rfs->bmap);
1159 rfs->bmap = 0;
1160 }
a8519a2d
TT
1161 retval = 0;
1162 goto errout;
1163 }
1164
1165 /*
1166 * Step two is to actually move the blocks
1167 */
1168 retval = ext2fs_iterate_extent(rfs->bmap, 0, 0, 0);
1169 if (retval) goto errout;
1170
3b627e8d
TT
1171 if (rfs->progress) {
1172 retval = (rfs->progress)(rfs, E2_RSZ_BLOCK_RELOC_PASS,
1173 0, to_move);
1174 if (retval)
1175 goto errout;
1176 }
a8519a2d
TT
1177 while (1) {
1178 retval = ext2fs_iterate_extent(rfs->bmap, &old_blk, &new_blk, &size);
1179 if (retval) goto errout;
1180 if (!size)
1181 break;
1182#ifdef RESIZE2FS_DEBUG
1183 if (rfs->flags & RESIZE_DEBUG_BMOVE)
f35fd3d5
TT
1184 printf("Moving %d blocks %u->%u\n",
1185 size, old_blk, new_blk);
a8519a2d
TT
1186#endif
1187 do {
1188 c = size;
1189 if (c > fs->inode_blocks_per_group)
1190 c = fs->inode_blocks_per_group;
1191 retval = io_channel_read_blk(fs->io, old_blk, c,
1192 rfs->itable_buf);
1193 if (retval) goto errout;
1194 retval = io_channel_write_blk(fs->io, new_blk, c,
1195 rfs->itable_buf);
1196 if (retval) goto errout;
1197 size -= c;
1198 new_blk += c;
1199 old_blk += c;
1200 moved += c;
1201 if (rfs->progress) {
1202 io_channel_flush(fs->io);
3b627e8d
TT
1203 retval = (rfs->progress)(rfs,
1204 E2_RSZ_BLOCK_RELOC_PASS,
a8519a2d 1205 moved, to_move);
3b627e8d
TT
1206 if (retval)
1207 goto errout;
a8519a2d
TT
1208 }
1209 } while (size > 0);
1210 io_channel_flush(fs->io);
1211 }
1212
1213errout:
7d7bdd57
TT
1214 if (badblock_list) {
1215 if (!retval && bb_modified)
1216 retval = ext2fs_update_bb_inode(old_fs,
1217 badblock_list);
1218 ext2fs_badblocks_list_free(badblock_list);
1219 }
a8519a2d
TT
1220 return retval;
1221}
1222
1223
1224/* --------------------------------------------------------------------
1225 *
1226 * Resize processing, phase 3
1227 *
1228 * --------------------------------------------------------------------
1229 */
1230
1231
1232struct process_block_struct {
1233 ext2_resize_t rfs;
dfcdc32f 1234 ext2_ino_t ino;
a8519a2d
TT
1235 struct ext2_inode * inode;
1236 errcode_t error;
1237 int is_dir;
1238 int changed;
1239};
1240
1241static int process_block(ext2_filsys fs, blk_t *block_nr,
efc6f628 1242 e2_blkcnt_t blockcnt,
54434927
TT
1243 blk_t ref_block EXT2FS_ATTR((unused)),
1244 int ref_offset EXT2FS_ATTR((unused)), void *priv_data)
a8519a2d
TT
1245{
1246 struct process_block_struct *pb;
1247 errcode_t retval;
1248 blk_t block, new_block;
1249 int ret = 0;
1250
1251 pb = (struct process_block_struct *) priv_data;
1252 block = *block_nr;
1253 if (pb->rfs->bmap) {
1254 new_block = ext2fs_extent_translate(pb->rfs->bmap, block);
1255 if (new_block) {
1256 *block_nr = new_block;
1257 ret |= BLOCK_CHANGED;
1258 pb->changed = 1;
1259#ifdef RESIZE2FS_DEBUG
1260 if (pb->rfs->flags & RESIZE_DEBUG_BMOVE)
efc6f628 1261 printf("ino=%u, blockcnt=%lld, %u->%u\n",
a8519a2d
TT
1262 pb->ino, blockcnt, block, new_block);
1263#endif
1264 block = new_block;
1265 }
1266 }
1267 if (pb->is_dir) {
1268 retval = ext2fs_add_dir_block(fs->dblist, pb->ino,
101c84f2 1269 block, (int) blockcnt);
a8519a2d
TT
1270 if (retval) {
1271 pb->error = retval;
1272 ret |= BLOCK_ABORT;
1273 }
1274 }
1275 return ret;
1276}
1277
1278/*
1279 * Progress callback
1280 */
efc6f628 1281static errcode_t progress_callback(ext2_filsys fs,
54434927 1282 ext2_inode_scan scan EXT2FS_ATTR((unused)),
a8519a2d
TT
1283 dgrp_t group, void * priv_data)
1284{
1285 ext2_resize_t rfs = (ext2_resize_t) priv_data;
3b627e8d 1286 errcode_t retval;
a8519a2d
TT
1287
1288 /*
f4b2a6db
TT
1289 * This check is to protect against old ext2 libraries. It
1290 * shouldn't be needed against new libraries.
a8519a2d 1291 */
f4b2a6db 1292 if ((group+1) == 0)
a8519a2d
TT
1293 return 0;
1294
1295 if (rfs->progress) {
1296 io_channel_flush(fs->io);
3b627e8d
TT
1297 retval = (rfs->progress)(rfs, E2_RSZ_INODE_SCAN_PASS,
1298 group+1, fs->group_desc_count);
1299 if (retval)
1300 return retval;
a8519a2d 1301 }
efc6f628 1302
a8519a2d
TT
1303 return 0;
1304}
1305
1306static errcode_t inode_scan_and_fix(ext2_resize_t rfs)
1307{
1308 struct process_block_struct pb;
dfcdc32f 1309 ext2_ino_t ino, new_inode;
edfd9b0a 1310 struct ext2_inode *inode = NULL;
a8519a2d
TT
1311 ext2_inode_scan scan = NULL;
1312 errcode_t retval;
a8519a2d 1313 char *block_buf = 0;
dfcdc32f 1314 ext2_ino_t start_to_move;
0ccd488a 1315 blk_t orig_size, new_block;
4ef28824 1316 int inode_size;
efc6f628 1317
a8519a2d
TT
1318 if ((rfs->old_fs->group_desc_count <=
1319 rfs->new_fs->group_desc_count) &&
1320 !rfs->bmap)
1321 return 0;
1322
2bc4d4f7
TT
1323 /*
1324 * Save the original size of the old filesystem, and
1325 * temporarily set the size to be the new size if the new size
1326 * is larger. We need to do this to avoid catching an error
1327 * by the block iterator routines
1328 */
1329 orig_size = rfs->old_fs->super->s_blocks_count;
1330 if (orig_size < rfs->new_fs->super->s_blocks_count)
1331 rfs->old_fs->super->s_blocks_count =
1332 rfs->new_fs->super->s_blocks_count;
1333
a8519a2d
TT
1334 retval = ext2fs_open_inode_scan(rfs->old_fs, 0, &scan);
1335 if (retval) goto errout;
1336
1337 retval = ext2fs_init_dblist(rfs->old_fs, 0);
1338 if (retval) goto errout;
e5aace90 1339 retval = ext2fs_get_array(rfs->old_fs->blocksize, 3, &block_buf);
a8519a2d
TT
1340 if (retval) goto errout;
1341
1342 start_to_move = (rfs->new_fs->group_desc_count *
1343 rfs->new_fs->super->s_inodes_per_group);
efc6f628 1344
3b627e8d
TT
1345 if (rfs->progress) {
1346 retval = (rfs->progress)(rfs, E2_RSZ_INODE_SCAN_PASS,
1347 0, rfs->old_fs->group_desc_count);
1348 if (retval)
1349 goto errout;
1350 }
a8519a2d
TT
1351 ext2fs_set_inode_callback(scan, progress_callback, (void *) rfs);
1352 pb.rfs = rfs;
edfd9b0a 1353 pb.inode = inode;
a8519a2d
TT
1354 pb.error = 0;
1355 new_inode = EXT2_FIRST_INODE(rfs->new_fs->super);
4ef28824 1356 inode_size = EXT2_INODE_SIZE(rfs->new_fs->super);
edfd9b0a
TT
1357 inode = malloc(inode_size);
1358 if (!inode) {
4ef28824
ES
1359 retval = ENOMEM;
1360 goto errout;
1361 }
a8519a2d
TT
1362 /*
1363 * First, copy all of the inodes that need to be moved
1364 * elsewhere in the inode table
1365 */
1366 while (1) {
edfd9b0a 1367 retval = ext2fs_get_next_inode_full(scan, &ino, inode, inode_size);
a8519a2d
TT
1368 if (retval) goto errout;
1369 if (!ino)
1370 break;
1371
edfd9b0a 1372 if (inode->i_links_count == 0 && ino != EXT2_RESIZE_INO)
a8519a2d
TT
1373 continue; /* inode not in use */
1374
edfd9b0a 1375 pb.is_dir = LINUX_S_ISDIR(inode->i_mode);
a8519a2d
TT
1376 pb.changed = 0;
1377
edfd9b0a 1378 if (inode->i_file_acl && rfs->bmap) {
efc6f628 1379 new_block = ext2fs_extent_translate(rfs->bmap,
edfd9b0a 1380 inode->i_file_acl);
ed909bbe 1381 if (new_block) {
edfd9b0a 1382 inode->i_file_acl = new_block;
efc6f628 1383 retval = ext2fs_write_inode_full(rfs->old_fs,
edfd9b0a 1384 ino, inode, inode_size);
ed909bbe
TT
1385 if (retval) goto errout;
1386 }
1387 }
efc6f628 1388
edfd9b0a 1389 if (ext2fs_inode_has_valid_blocks(inode) &&
a8519a2d
TT
1390 (rfs->bmap || pb.is_dir)) {
1391 pb.ino = ino;
1392 retval = ext2fs_block_iterate2(rfs->old_fs,
1393 ino, 0, block_buf,
1394 process_block, &pb);
1395 if (retval)
1396 goto errout;
1397 if (pb.error) {
1398 retval = pb.error;
1399 goto errout;
1400 }
1401 }
1402
1403 if (ino <= start_to_move)
1404 continue; /* Don't need to move it. */
1405
1406 /*
1407 * Find a new inode
1408 */
86acdebd
TT
1409 retval = ext2fs_new_inode(rfs->new_fs, 0, 0, 0, &new_inode);
1410 if (retval)
1411 goto errout;
1412
74128f8d
TT
1413 ext2fs_inode_alloc_stats2(rfs->new_fs, new_inode, +1,
1414 pb.is_dir);
a8519a2d
TT
1415 if (pb.changed) {
1416 /* Get the new version of the inode */
4ef28824 1417 retval = ext2fs_read_inode_full(rfs->old_fs, ino,
edfd9b0a 1418 inode, inode_size);
a8519a2d
TT
1419 if (retval) goto errout;
1420 }
edfd9b0a 1421 inode->i_ctime = time(0);
4ef28824 1422 retval = ext2fs_write_inode_full(rfs->old_fs, new_inode,
edfd9b0a 1423 inode, inode_size);
a8519a2d
TT
1424 if (retval) goto errout;
1425
a8519a2d
TT
1426#ifdef RESIZE2FS_DEBUG
1427 if (rfs->flags & RESIZE_DEBUG_INODEMAP)
f35fd3d5 1428 printf("Inode moved %u->%u\n", ino, new_inode);
a8519a2d
TT
1429#endif
1430 if (!rfs->imap) {
1431 retval = ext2fs_create_extent_table(&rfs->imap, 0);
1432 if (retval)
1433 goto errout;
1434 }
1435 ext2fs_add_extent_entry(rfs->imap, ino, new_inode);
1436 }
1437 io_channel_flush(rfs->old_fs->io);
1438
1439errout:
2bc4d4f7 1440 rfs->old_fs->super->s_blocks_count = orig_size;
a8519a2d
TT
1441 if (rfs->bmap) {
1442 ext2fs_free_extent_table(rfs->bmap);
1443 rfs->bmap = 0;
1444 }
1445 if (scan)
1446 ext2fs_close_inode_scan(scan);
1447 if (block_buf)
c4e3d3f3 1448 ext2fs_free_mem(&block_buf);
45e338f5 1449 free(inode);
a8519a2d
TT
1450 return retval;
1451}
1452
1453/* --------------------------------------------------------------------
1454 *
1455 * Resize processing, phase 4.
1456 *
1457 * --------------------------------------------------------------------
1458 */
1459
1460struct istruct {
1461 ext2_resize_t rfs;
3b627e8d 1462 errcode_t err;
03fa6f8a
TT
1463 unsigned int max_dirs;
1464 unsigned int num;
a8519a2d
TT
1465};
1466
efc6f628 1467static int check_and_change_inodes(ext2_ino_t dir,
54434927 1468 int entry EXT2FS_ATTR((unused)),
a8519a2d 1469 struct ext2_dir_entry *dirent, int offset,
54434927 1470 int blocksize EXT2FS_ATTR((unused)),
efc6f628 1471 char *buf EXT2FS_ATTR((unused)),
54434927 1472 void *priv_data)
a8519a2d
TT
1473{
1474 struct istruct *is = (struct istruct *) priv_data;
085d2a83
TT
1475 struct ext2_inode inode;
1476 ext2_ino_t new_inode;
1477 errcode_t retval;
a8519a2d
TT
1478
1479 if (is->rfs->progress && offset == 0) {
1480 io_channel_flush(is->rfs->old_fs->io);
3b627e8d
TT
1481 is->err = (is->rfs->progress)(is->rfs,
1482 E2_RSZ_INODE_REF_UPD_PASS,
1333fe93 1483 ++is->num, is->max_dirs);
3b627e8d
TT
1484 if (is->err)
1485 return DIRENT_ABORT;
a8519a2d
TT
1486 }
1487
1488 if (!dirent->inode)
1489 return 0;
1490
1491 new_inode = ext2fs_extent_translate(is->rfs->imap, dirent->inode);
1492
1493 if (!new_inode)
1494 return 0;
1495#ifdef RESIZE2FS_DEBUG
1496 if (is->rfs->flags & RESIZE_DEBUG_INODEMAP)
f35fd3d5 1497 printf("Inode translate (dir=%u, name=%.*s, %u->%u)\n",
06191693 1498 dir, dirent->name_len&0xFF, dirent->name,
a8519a2d
TT
1499 dirent->inode, new_inode);
1500#endif
1501
1502 dirent->inode = new_inode;
1503
085d2a83
TT
1504 /* Update the directory mtime and ctime */
1505 retval = ext2fs_read_inode(is->rfs->old_fs, dir, &inode);
1506 if (retval == 0) {
1507 inode.i_mtime = inode.i_ctime = time(0);
d2b2a488
BB
1508 is->err = ext2fs_write_inode(is->rfs->old_fs, dir, &inode);
1509 if (is->err)
1510 return DIRENT_ABORT;
085d2a83
TT
1511 }
1512
a8519a2d
TT
1513 return DIRENT_CHANGED;
1514}
1515
1516static errcode_t inode_ref_fix(ext2_resize_t rfs)
1517{
1518 errcode_t retval;
1519 struct istruct is;
efc6f628 1520
a8519a2d
TT
1521 if (!rfs->imap)
1522 return 0;
efc6f628 1523
a8519a2d
TT
1524 /*
1525 * Now, we iterate over all of the directories to update the
1526 * inode references
1527 */
1528 is.num = 0;
1333fe93 1529 is.max_dirs = ext2fs_dblist_count(rfs->old_fs->dblist);
a8519a2d 1530 is.rfs = rfs;
3b627e8d 1531 is.err = 0;
a8519a2d 1532
3b627e8d
TT
1533 if (rfs->progress) {
1534 retval = (rfs->progress)(rfs, E2_RSZ_INODE_REF_UPD_PASS,
1333fe93 1535 0, is.max_dirs);
3b627e8d
TT
1536 if (retval)
1537 goto errout;
1538 }
efc6f628 1539
a8519a2d
TT
1540 retval = ext2fs_dblist_dir_iterate(rfs->old_fs->dblist,
1541 DIRENT_FLAG_INCLUDE_EMPTY, 0,
1542 check_and_change_inodes, &is);
3b627e8d
TT
1543 if (retval)
1544 goto errout;
1545 if (is.err) {
1546 retval = is.err;
1547 goto errout;
1548 }
a8519a2d 1549
88dbf828
TT
1550 if (rfs->progress && (is.num < is.max_dirs))
1551 (rfs->progress)(rfs, E2_RSZ_INODE_REF_UPD_PASS,
1552 is.max_dirs, is.max_dirs);
1553
3b627e8d 1554errout:
a8519a2d
TT
1555 ext2fs_free_extent_table(rfs->imap);
1556 rfs->imap = 0;
1557 return retval;
1558}
1559
1560
1561/* --------------------------------------------------------------------
1562 *
1563 * Resize processing, phase 5.
1564 *
1565 * In this phase we actually move the inode table around, and then
1566 * update the summary statistics. This is scary, since aborting here
1567 * will potentially scramble the filesystem. (We are moving the
1568 * inode tables around in place, and so the potential for lost data,
1569 * or at the very least scrambling the mapping between filenames and
1570 * inode numbers is very high in case of a power failure here.)
1571 * --------------------------------------------------------------------
1572 */
1573
24b2c7a7 1574
052db4b7
TT
1575/*
1576 * A very scary routine --- this one moves the inode table around!!!
1577 *
1578 * After this you have to use the rfs->new_fs file handle to read and
1579 * write inodes.
1580 */
c762c8e6 1581static errcode_t move_itables(ext2_resize_t rfs)
052db4b7 1582{
54434927
TT
1583 int n, num, size, diff;
1584 dgrp_t i, max_groups;
052db4b7 1585 ext2_filsys fs = rfs->new_fs;
05e112a1 1586 char *cp;
64ad98ac 1587 blk_t old_blk, new_blk, blk;
a8519a2d 1588 errcode_t retval;
64ad98ac 1589 int j, to_move, moved;
052db4b7 1590
1333fe93
TT
1591 max_groups = fs->group_desc_count;
1592 if (max_groups > rfs->old_fs->group_desc_count)
1593 max_groups = rfs->old_fs->group_desc_count;
052db4b7 1594
05e112a1
TT
1595 size = fs->blocksize * fs->inode_blocks_per_group;
1596 if (!rfs->itable_buf) {
c4e3d3f3 1597 retval = ext2fs_get_mem(size, &rfs->itable_buf);
ca8abba7
TT
1598 if (retval)
1599 return retval;
05e112a1 1600 }
c762c8e6
TT
1601
1602 /*
1603 * Figure out how many inode tables we need to move
1604 */
1605 to_move = moved = 0;
1333fe93 1606 for (i=0; i < max_groups; i++)
c762c8e6
TT
1607 if (rfs->old_fs->group_desc[i].bg_inode_table !=
1608 fs->group_desc[i].bg_inode_table)
1609 to_move++;
1610
1611 if (to_move == 0)
1612 return 0;
1613
3b627e8d
TT
1614 if (rfs->progress) {
1615 retval = rfs->progress(rfs, E2_RSZ_MOVE_ITABLE_PASS,
1616 0, to_move);
1617 if (retval)
1618 goto errout;
1619 }
63b44fbe 1620
a8519a2d
TT
1621 rfs->old_fs->flags |= EXT2_FLAG_MASTER_SB_ONLY;
1622
1333fe93 1623 for (i=0; i < max_groups; i++) {
ca8abba7
TT
1624 old_blk = rfs->old_fs->group_desc[i].bg_inode_table;
1625 new_blk = fs->group_desc[i].bg_inode_table;
1626 diff = new_blk - old_blk;
efc6f628 1627
80c0fc34 1628#ifdef RESIZE2FS_DEBUG
efc6f628 1629 if (rfs->flags & RESIZE_DEBUG_ITABLEMOVE)
f35fd3d5 1630 printf("Itable move group %d block %u->%u (diff %d)\n",
ca8abba7 1631 i, old_blk, new_blk, diff);
80c0fc34 1632#endif
efc6f628 1633
05e112a1 1634 if (!diff)
052db4b7
TT
1635 continue;
1636
ca8abba7 1637 retval = io_channel_read_blk(fs->io, old_blk,
05e112a1
TT
1638 fs->inode_blocks_per_group,
1639 rfs->itable_buf);
efc6f628 1640 if (retval)
a8519a2d 1641 goto errout;
05e112a1
TT
1642 /*
1643 * The end of the inode table segment often contains
a8519a2d
TT
1644 * all zeros, and we're often only moving the inode
1645 * table down a block or two. If so, we can optimize
1646 * things by not rewriting blocks that we know to be zero
1647 * already.
05e112a1 1648 */
2787276e 1649 for (cp = rfs->itable_buf+size-1, n=0; n < size; n++, cp--)
05e112a1
TT
1650 if (*cp)
1651 break;
1652 n = n >> EXT2_BLOCK_SIZE_BITS(fs->super);
80c0fc34 1653#ifdef RESIZE2FS_DEBUG
efc6f628 1654 if (rfs->flags & RESIZE_DEBUG_ITABLEMOVE)
f35fd3d5 1655 printf("%d blocks of zeros...\n", n);
80c0fc34 1656#endif
05e112a1
TT
1657 num = fs->inode_blocks_per_group;
1658 if (n > diff)
1659 num -= n;
1660
ca8abba7 1661 retval = io_channel_write_blk(fs->io, new_blk,
05e112a1 1662 num, rfs->itable_buf);
052db4b7 1663 if (retval) {
ca8abba7 1664 io_channel_write_blk(fs->io, old_blk,
05e112a1 1665 num, rfs->itable_buf);
a8519a2d 1666 goto errout;
052db4b7 1667 }
05e112a1
TT
1668 if (n > diff) {
1669 retval = io_channel_write_blk(fs->io,
ca8abba7 1670 old_blk + fs->inode_blocks_per_group,
a8519a2d
TT
1671 diff, (rfs->itable_buf +
1672 (fs->inode_blocks_per_group - diff) *
1673 fs->blocksize));
05e112a1 1674 if (retval)
a8519a2d 1675 goto errout;
c762c8e6 1676 }
64ad98ac
TT
1677
1678 for (blk = rfs->old_fs->group_desc[i].bg_inode_table, j=0;
1679 j < fs->inode_blocks_per_group ; j++, blk++)
74128f8d 1680 ext2fs_block_alloc_stats(fs, blk, -1);
64ad98ac 1681
a8519a2d 1682 rfs->old_fs->group_desc[i].bg_inode_table = new_blk;
236efede 1683 ext2fs_group_desc_csum_set(rfs->old_fs, i);
a8519a2d 1684 ext2fs_mark_super_dirty(rfs->old_fs);
64ad98ac
TT
1685 ext2fs_flush(rfs->old_fs);
1686
a8519a2d 1687 if (rfs->progress) {
3b627e8d
TT
1688 retval = rfs->progress(rfs, E2_RSZ_MOVE_ITABLE_PASS,
1689 ++moved, to_move);
1690 if (retval)
1691 goto errout;
a8519a2d 1692 }
052db4b7 1693 }
64ad98ac 1694 mark_table_blocks(fs, fs->block_map);
a8519a2d 1695 ext2fs_flush(fs);
80c0fc34 1696#ifdef RESIZE2FS_DEBUG
efc6f628 1697 if (rfs->flags & RESIZE_DEBUG_ITABLEMOVE)
f35fd3d5 1698 printf("Inode table move finished.\n");
80c0fc34 1699#endif
052db4b7 1700 return 0;
efc6f628 1701
a8519a2d 1702errout:
052db4b7
TT
1703 return retval;
1704}
1705
9213a93b 1706/*
efc6f628 1707 * Fix the resize inode
9213a93b
TT
1708 */
1709static errcode_t fix_resize_inode(ext2_filsys fs)
1710{
1711 struct ext2_inode inode;
1712 errcode_t retval;
1713 char * block_buf;
8ade268c 1714 blk_t blk;
9213a93b 1715
efc6f628 1716 if (!(fs->super->s_feature_compat &
9213a93b
TT
1717 EXT2_FEATURE_COMPAT_RESIZE_INODE))
1718 return 0;
1719
1720 retval = ext2fs_get_mem(fs->blocksize, &block_buf);
1721 if (retval) goto errout;
1722
1723 retval = ext2fs_read_inode(fs, EXT2_RESIZE_INO, &inode);
1724 if (retval) goto errout;
1725
8ade268c 1726 if (fs->super->s_reserved_gdt_blocks == 0) {
efc6f628 1727 fs->super->s_feature_compat &=
8ade268c
TT
1728 ~EXT2_FEATURE_COMPAT_RESIZE_INODE;
1729 ext2fs_mark_super_dirty(fs);
1730
1731 if ((blk = inode.i_block[EXT2_DIND_BLOCK]) != 0)
1732 ext2fs_block_alloc_stats(fs, blk, -1);
1733
1734 memset(&inode, 0, sizeof(inode));
1735
1736 retval = ext2fs_write_inode(fs, EXT2_RESIZE_INO, &inode);
1737 goto errout;
1738 }
1739
1ca1059f 1740 ext2fs_iblk_set(fs, &inode, 1);
9213a93b
TT
1741
1742 retval = ext2fs_write_inode(fs, EXT2_RESIZE_INO, &inode);
1743 if (retval) goto errout;
1744
1745 if (!inode.i_block[EXT2_DIND_BLOCK]) {
efc6f628 1746 /*
9213a93b
TT
1747 * Avoid zeroing out block #0; that's rude. This
1748 * should never happen anyway since the filesystem
1749 * should be fsck'ed and we assume it is consistent.
1750 */
efc6f628 1751 fprintf(stderr,
f35fd3d5 1752 _("Should never happen: resize inode corrupt!\n"));
9213a93b
TT
1753 exit(1);
1754 }
1755
1756 memset(block_buf, 0, fs->blocksize);
1757
1758 retval = io_channel_write_blk(fs->io, inode.i_block[EXT2_DIND_BLOCK],
1759 1, block_buf);
1760 if (retval) goto errout;
efc6f628 1761
9213a93b
TT
1762 retval = ext2fs_create_resize_inode(fs);
1763 if (retval)
1764 goto errout;
1765
1766errout:
1767 if (block_buf)
1768 ext2fs_free_mem(&block_buf);
1769 return retval;
1770}
1771
052db4b7
TT
1772/*
1773 * Finally, recalculate the summary information
1774 */
1775static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs)
1776{
dfcdc32f
TT
1777 blk_t blk;
1778 ext2_ino_t ino;
54434927
TT
1779 unsigned int group = 0;
1780 unsigned int count = 0;
dfcdc32f
TT
1781 int total_free = 0;
1782 int group_free = 0;
74128f8d
TT
1783 int uninit = 0;
1784 blk_t super_blk, old_desc_blk, new_desc_blk;
1785 int old_desc_blocks;
052db4b7
TT
1786
1787 /*
1788 * First calculate the block statistics
1789 */
74128f8d
TT
1790 uninit = fs->group_desc[group].bg_flags & EXT2_BG_BLOCK_UNINIT;
1791 ext2fs_super_and_bgd_loc(fs, group, &super_blk, &old_desc_blk,
1792 &new_desc_blk, 0);
1793 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
1794 old_desc_blocks = fs->super->s_first_meta_bg;
1795 else
1796 old_desc_blocks = fs->desc_blocks +
1797 fs->super->s_reserved_gdt_blocks;
052db4b7
TT
1798 for (blk = fs->super->s_first_data_block;
1799 blk < fs->super->s_blocks_count; blk++) {
74128f8d
TT
1800 if ((uninit &&
1801 !((blk == super_blk) ||
1802 ((old_desc_blk && old_desc_blocks &&
1803 (blk >= old_desc_blk) &&
1804 (blk < old_desc_blk + old_desc_blocks))) ||
1805 ((new_desc_blk && (blk == new_desc_blk))) ||
1806 (blk == fs->group_desc[group].bg_block_bitmap) ||
1807 (blk == fs->group_desc[group].bg_inode_bitmap) ||
1808 ((blk >= fs->group_desc[group].bg_inode_table &&
1809 (blk < fs->group_desc[group].bg_inode_table
1810 + fs->inode_blocks_per_group))))) ||
1811 (!ext2fs_fast_test_block_bitmap(fs->block_map, blk))) {
052db4b7
TT
1812 group_free++;
1813 total_free++;
1814 }
1815 count++;
1816 if ((count == fs->super->s_blocks_per_group) ||
1817 (blk == fs->super->s_blocks_count-1)) {
236efede 1818 fs->group_desc[group].bg_free_blocks_count =
052db4b7 1819 group_free;
236efede
JS
1820 ext2fs_group_desc_csum_set(fs, group);
1821 group++;
052db4b7
TT
1822 count = 0;
1823 group_free = 0;
74128f8d
TT
1824 uninit = (fs->group_desc[group].bg_flags &
1825 EXT2_BG_BLOCK_UNINIT);
1826 ext2fs_super_and_bgd_loc(fs, group, &super_blk,
1827 &old_desc_blk,
1828 &new_desc_blk, 0);
1829 if (fs->super->s_feature_incompat &
1830 EXT2_FEATURE_INCOMPAT_META_BG)
1831 old_desc_blocks = fs->super->s_first_meta_bg;
1832 else
1833 old_desc_blocks = fs->desc_blocks +
1834 fs->super->s_reserved_gdt_blocks;
052db4b7
TT
1835 }
1836 }
1837 fs->super->s_free_blocks_count = total_free;
efc6f628 1838
052db4b7
TT
1839 /*
1840 * Next, calculate the inode statistics
1841 */
1842 group_free = 0;
1843 total_free = 0;
1844 count = 0;
1845 group = 0;
5830d6be
ES
1846
1847 /* Protect loop from wrap-around if s_inodes_count maxed */
74128f8d 1848 uninit = fs->group_desc[group].bg_flags & EXT2_BG_INODE_UNINIT;
5830d6be 1849 for (ino = 1; ino <= fs->super->s_inodes_count && ino > 0; ino++) {
74128f8d
TT
1850 if (uninit ||
1851 !ext2fs_fast_test_inode_bitmap(fs->inode_map, ino)) {
052db4b7
TT
1852 group_free++;
1853 total_free++;
1854 }
1855 count++;
1856 if ((count == fs->super->s_inodes_per_group) ||
1857 (ino == fs->super->s_inodes_count)) {
236efede 1858 fs->group_desc[group].bg_free_inodes_count =
052db4b7 1859 group_free;
236efede
JS
1860 ext2fs_group_desc_csum_set(fs, group);
1861 group++;
052db4b7
TT
1862 count = 0;
1863 group_free = 0;
74128f8d
TT
1864 uninit = (fs->group_desc[group].bg_flags &
1865 EXT2_BG_INODE_UNINIT);
052db4b7
TT
1866 }
1867 }
1868 fs->super->s_free_inodes_count = total_free;
1869 ext2fs_mark_super_dirty(fs);
1870 return 0;
1871}
199ddaaa 1872
8a6ede8b
ES
1873/*
1874 * Journal may have been relocated; update the backup journal blocks
1875 * in the superblock.
1876 */
1877static errcode_t fix_sb_journal_backup(ext2_filsys fs)
1878{
1879 errcode_t retval;
1880 struct ext2_inode inode;
1881
1882 if (!(fs->super->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL))
1883 return 0;
1884
1885 retval = ext2fs_read_inode(fs, fs->super->s_journal_inum, &inode);
1886 if (retval)
1887 return retval;
1888 memcpy(fs->super->s_jnl_blocks, inode.i_block, EXT2_N_BLOCKS*4);
1889 fs->super->s_jnl_blocks[16] = inode.i_size;
1890 fs->super->s_jnl_backup_type = EXT3_JNL_BACKUP_BLOCKS;
1891 ext2fs_mark_super_dirty(fs);
1892 return 0;
1893}
1894
199ddaaa
JB
1895/*
1896 * calcluate the minimum number of blocks the given fs can be resized to
1897 */
1898blk_t calculate_minimum_resize_size(ext2_filsys fs)
1899{
2c25f7e7 1900 blk_t inode_count, blks_needed, groups, data_blocks;
199ddaaa 1901 blk_t grp, data_needed, last_start;
2c25f7e7 1902 int overhead = 0, num_of_superblocks = 0;
2884d208
PT
1903 int extra_groups = 0;
1904 int flexbg_size = 1 << fs->super->s_log_groups_per_flex;
199ddaaa
JB
1905
1906 /*
1907 * first figure out how many group descriptors we need to
1908 * handle the number of inodes we have
1909 */
1910 inode_count = fs->super->s_inodes_count -
1911 fs->super->s_free_inodes_count;
1912 blks_needed = ext2fs_div_ceil(inode_count,
1913 fs->super->s_inodes_per_group) *
1914 EXT2_BLOCKS_PER_GROUP(fs->super);
1915 groups = ext2fs_div_ceil(blks_needed,
1916 EXT2_BLOCKS_PER_GROUP(fs->super));
1917
1918 /*
1919 * we need to figure out how many backup superblocks we have so we can
1920 * account for that in the metadata
1921 */
1922 for (grp = 0; grp < fs->group_desc_count; grp++) {
1923 if (ext2fs_bg_has_super(fs, grp))
1924 num_of_superblocks++;
1925 }
1926
1927 /* calculate how many blocks are needed for data */
1928 data_needed = fs->super->s_blocks_count -
1929 fs->super->s_free_blocks_count;
1930 data_needed -= SUPER_OVERHEAD(fs) * num_of_superblocks;
1931 data_needed -= META_OVERHEAD(fs) * fs->group_desc_count;
1932
c09043f1
TT
1933 if (fs->super->s_feature_incompat & EXT4_FEATURE_INCOMPAT_FLEX_BG) {
1934 /*
1935 * For ext4 we need to allow for up to a flex_bg worth
1936 * of inode tables of slack space so the resize
1937 * operation can be guaranteed to finish.
1938 */
c09043f1
TT
1939 extra_groups = flexbg_size - (groups & (flexbg_size - 1));
1940 data_needed += META_OVERHEAD(fs) * extra_groups;
2884d208 1941 extra_groups = groups % flexbg_size;
c09043f1
TT
1942 }
1943
199ddaaa
JB
1944 /*
1945 * figure out how many data blocks we have given the number of groups
1946 * we need for our inodes
1947 */
1948 data_blocks = groups * EXT2_BLOCKS_PER_GROUP(fs->super);
1949 last_start = 0;
1950 for (grp = 0; grp < groups; grp++) {
1951 overhead = META_OVERHEAD(fs);
1952
1953 if (ext2fs_bg_has_super(fs, grp))
1954 overhead += SUPER_OVERHEAD(fs);
1955
1956 /*
1957 * we want to keep track of how much data we can store in
1958 * the groups leading up to the last group so we can determine
1959 * how big the last group needs to be
1960 */
1961 if (grp != (groups - 1))
1962 last_start += EXT2_BLOCKS_PER_GROUP(fs->super) -
1963 overhead;
1964
1965 data_blocks -= overhead;
1966 }
1967
1968 /*
1969 * if we need more group descriptors in order to accomodate our data
1970 * then we need to add them here
1971 */
1972 while (data_needed > data_blocks) {
1973 blk_t remainder = data_needed - data_blocks;
1974 blk_t extra_grps;
1975
1976 /* figure out how many more groups we need for the data */
1977 extra_grps = ext2fs_div_ceil(remainder,
1978 EXT2_BLOCKS_PER_GROUP(fs->super));
1979
1980 data_blocks += extra_grps * EXT2_BLOCKS_PER_GROUP(fs->super);
1981
1982 /* ok we have to account for the last group */
1983 overhead = META_OVERHEAD(fs);
1984 if (ext2fs_bg_has_super(fs, groups-1))
1985 overhead += SUPER_OVERHEAD(fs);
1986 last_start += EXT2_BLOCKS_PER_GROUP(fs->super) - overhead;
1987
1988 for (grp = groups; grp < groups+extra_grps; grp++) {
1989 overhead = META_OVERHEAD(fs);
1990 if (ext2fs_bg_has_super(fs, grp))
1991 overhead += SUPER_OVERHEAD(fs);
1992
1993 /*
1994 * again, we need to see how much data we cram into
1995 * all of the groups leading up to the last group
1996 */
1997 if (grp != (groups + extra_grps - 1))
1998 last_start += EXT2_BLOCKS_PER_GROUP(fs->super)
1999 - overhead;
2000
2001 data_blocks -= overhead;
2002 }
2003
2004 groups += extra_grps;
2884d208
PT
2005 extra_groups += extra_grps;
2006 if (fs->super->s_feature_incompat
2007 & EXT4_FEATURE_INCOMPAT_FLEX_BG
2008 && extra_groups > flexbg_size) {
2009 /*
2010 * For ext4 we need to allow for up to a flex_bg worth
2011 * of inode tables of slack space so the resize
2012 * operation can be guaranteed to finish.
2013 */
2014 extra_groups = flexbg_size -
2015 (groups & (flexbg_size - 1));
2016 data_needed += META_OVERHEAD(fs) * extra_groups;
2017 extra_groups = groups % flexbg_size;
2018 }
199ddaaa
JB
2019 }
2020
2021 /* now for the fun voodoo */
2022 overhead = META_OVERHEAD(fs);
2023
2024 /*
2025 * if this is the case then the last group is going to have data in it
2026 * so we need to adjust the size of the last group accordingly
2027 */
2028 if (last_start < data_needed) {
2029 blk_t remainder = data_needed - last_start;
2030
2031 /*
2032 * 50 is a magic number that mkfs/resize uses to see if its
2033 * even worth making/resizing the fs. basically you need to
2034 * have at least 50 blocks in addition to the blocks needed
2035 * for the metadata in the last group
2036 */
2037 if (remainder > 50)
2038 overhead += remainder;
2039 else
2040 overhead += 50;
2041 } else
2042 overhead += 50;
2043
2044 if (ext2fs_bg_has_super(fs, groups-1))
2045 overhead += SUPER_OVERHEAD(fs);
2046
2047 /*
2048 * since our last group doesn't have to be BLOCKS_PER_GROUP large, we
2049 * only do groups-1, and then add the number of blocks needed to
2050 * handle the group descriptor metadata+data that we need
2051 */
2052 blks_needed = (groups-1) * EXT2_BLOCKS_PER_GROUP(fs->super);
2053 blks_needed += overhead;
2054
69f7c80e
ES
2055 /*
2056 * If at this point we've already added up more "needed" than
2057 * the current size, just return current size as minimum.
2058 */
2059 if (blks_needed >= fs->super->s_blocks_count)
2060 return fs->super->s_blocks_count;
793a04a0
TT
2061 /*
2062 * We need to reserve a few extra blocks if extents are
2063 * enabled, in case we need to grow the extent tree. The more
2064 * we shrink the file system, the more space we need.
2065 */
2066 if (fs->super->s_feature_incompat & EXT3_FEATURE_INCOMPAT_EXTENTS)
2067 blks_needed += (fs->super->s_blocks_count - blks_needed)/500;
2068
199ddaaa
JB
2069 return blks_needed;
2070}