]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - resize/resize2fs.c
Allow the debugfs lcd command to work w/o a filesystem being open
[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
24b2c7a7
TT
8 *
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
43static errcode_t adjust_superblock(ext2_resize_t rfs, blk_t new_size);
44static errcode_t blocks_to_move(ext2_resize_t rfs);
45static errcode_t block_mover(ext2_resize_t rfs);
46static errcode_t inode_scan_and_fix(ext2_resize_t rfs);
47static errcode_t inode_ref_fix(ext2_resize_t rfs);
48static errcode_t move_itables(ext2_resize_t rfs);
9213a93b 49static errcode_t fix_resize_inode(ext2_filsys fs);
a8519a2d
TT
50static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs);
51
52/*
53 * Some helper CPP macros
54 */
55#define FS_BLOCK_BM(fs, i) ((fs)->group_desc[(i)].bg_block_bitmap)
56#define FS_INODE_BM(fs, i) ((fs)->group_desc[(i)].bg_inode_bitmap)
57#define FS_INODE_TB(fs, i) ((fs)->group_desc[(i)].bg_inode_table)
58
59#define IS_BLOCK_BM(fs, i, blk) ((blk) == FS_BLOCK_BM((fs),(i)))
60#define IS_INODE_BM(fs, i, blk) ((blk) == FS_INODE_BM((fs),(i)))
61
62#define IS_INODE_TB(fs, i, blk) (((blk) >= FS_INODE_TB((fs), (i))) && \
63 ((blk) < (FS_INODE_TB((fs), (i)) + \
64 (fs)->inode_blocks_per_group)))
65
66
67
68/*
69 * This is the top-level routine which does the dirty deed....
70 */
116db1b5 71errcode_t resize_fs(ext2_filsys fs, blk_t *new_size, int flags,
3b627e8d 72 errcode_t (*progress)(ext2_resize_t rfs, int pass,
a8519a2d 73 unsigned long cur,
1333fe93 74 unsigned long max_val))
a8519a2d
TT
75{
76 ext2_resize_t rfs;
77 errcode_t retval;
78
79 retval = ext2fs_read_bitmaps(fs);
80 if (retval)
81 return retval;
82
83 /*
84 * Create the data structure
85 */
c4e3d3f3 86 retval = ext2fs_get_mem(sizeof(struct ext2_resize_struct), &rfs);
a8519a2d
TT
87 if (retval)
88 return retval;
89 memset(rfs, 0, sizeof(struct ext2_resize_struct));
90
91 rfs->old_fs = fs;
92 rfs->flags = flags;
93 rfs->itable_buf = 0;
94 rfs->progress = progress;
95 retval = ext2fs_dup_handle(fs, &rfs->new_fs);
96 if (retval)
97 goto errout;
98
116db1b5 99 retval = adjust_superblock(rfs, *new_size);
a8519a2d
TT
100 if (retval)
101 goto errout;
102
116db1b5
TT
103 *new_size = rfs->new_fs->super->s_blocks_count;
104
a8519a2d
TT
105 retval = blocks_to_move(rfs);
106 if (retval)
107 goto errout;
108
109#ifdef RESIZE2FS_DEBUG
110 if (rfs->flags & RESIZE_DEBUG_BMOVE)
8deb80a5 111 printf("Number of free blocks: %u/%u, Needed: %d\n",
a8519a2d
TT
112 rfs->old_fs->super->s_free_blocks_count,
113 rfs->new_fs->super->s_free_blocks_count,
114 rfs->needed_blocks);
115#endif
116
117 retval = block_mover(rfs);
118 if (retval)
119 goto errout;
120
121 retval = inode_scan_and_fix(rfs);
122 if (retval)
123 goto errout;
124
125 retval = inode_ref_fix(rfs);
126 if (retval)
127 goto errout;
128
a8519a2d
TT
129 retval = move_itables(rfs);
130 if (retval)
131 goto errout;
132
64ad98ac
TT
133 retval = ext2fs_calculate_summary_stats(rfs->new_fs);
134 if (retval)
135 goto errout;
136
9213a93b
TT
137 retval = fix_resize_inode(rfs->new_fs);
138 if (retval)
139 goto errout;
140
a8519a2d
TT
141 retval = ext2fs_close(rfs->new_fs);
142 if (retval)
143 goto errout;
144
145 rfs->flags = flags;
146
147 ext2fs_free(rfs->old_fs);
148 if (rfs->itable_buf)
c4e3d3f3
TT
149 ext2fs_free_mem(&rfs->itable_buf);
150 ext2fs_free_mem(&rfs);
a8519a2d
TT
151
152 return 0;
153
154errout:
155 if (rfs->new_fs)
156 ext2fs_free(rfs->new_fs);
157 if (rfs->itable_buf)
c4e3d3f3
TT
158 ext2fs_free_mem(&rfs->itable_buf);
159 ext2fs_free_mem(&rfs);
a8519a2d
TT
160 return retval;
161}
162
163/* --------------------------------------------------------------------
164 *
165 * Resize processing, phase 1.
166 *
167 * In this phase we adjust the in-memory superblock information, and
168 * initialize any new parts of the inode table. The new parts of the
169 * inode table are created in virgin disk space, so we can abort here
170 * without any side effects.
171 * --------------------------------------------------------------------
172 */
173
24b2c7a7 174/*
bf69235a
TT
175 * This routine is shared by the online and offline resize routines.
176 * All of the information which is adjusted in memory is done here.
24b2c7a7 177 */
bf69235a 178errcode_t adjust_fs_info(ext2_filsys fs, ext2_filsys old_fs, blk_t new_size)
24b2c7a7 179{
24b2c7a7 180 errcode_t retval;
bf69235a
TT
181 int overhead = 0;
182 int rem;
24b2c7a7 183 blk_t blk, group_block;
bf69235a
TT
184 ext2_ino_t real_end;
185 int adj, old_numblocks, numblocks, adjblocks;
186 unsigned long i, j, old_desc_blocks, max_group;
54434927
TT
187 unsigned int meta_bg, meta_bg_size;
188 int has_super;
f3358643 189 __u64 new_inodes; /* u64 to check for overflow */
bf69235a 190
24b2c7a7
TT
191 fs->super->s_blocks_count = new_size;
192
193retry:
69022e02
TT
194 fs->group_desc_count = ext2fs_div_ceil(fs->super->s_blocks_count -
195 fs->super->s_first_data_block,
196 EXT2_BLOCKS_PER_GROUP(fs->super));
24b2c7a7
TT
197 if (fs->group_desc_count == 0)
198 return EXT2_ET_TOOSMALL;
69022e02
TT
199 fs->desc_blocks = ext2fs_div_ceil(fs->group_desc_count,
200 EXT2_DESC_PER_BLOCK(fs->super));
24b2c7a7
TT
201
202 /*
203 * Overhead is the number of bookkeeping blocks per group. It
204 * includes the superblock backup, the group descriptor
205 * backups, the inode bitmap, the block bitmap, and the inode
206 * table.
24b2c7a7 207 */
9213a93b
TT
208 overhead = (int) (2 + fs->inode_blocks_per_group);
209
210 if (ext2fs_bg_has_super(fs, fs->group_desc_count - 1))
211 overhead += 1 + fs->desc_blocks +
212 fs->super->s_reserved_gdt_blocks;
213
24b2c7a7
TT
214 /*
215 * See if the last group is big enough to support the
216 * necessary data structures. If not, we need to get rid of
217 * it.
218 */
219 rem = (fs->super->s_blocks_count - fs->super->s_first_data_block) %
220 fs->super->s_blocks_per_group;
221 if ((fs->group_desc_count == 1) && rem && (rem < overhead))
222 return EXT2_ET_TOOSMALL;
223 if (rem && (rem < overhead+50)) {
224 fs->super->s_blocks_count -= rem;
225 goto retry;
226 }
227 /*
228 * Adjust the number of inodes
229 */
f3358643
ES
230 new_inodes =(__u64)fs->super->s_inodes_per_group * fs->group_desc_count;
231 if (new_inodes > ~0U) {
232 fprintf(stderr, _("inodes (%llu) must be less than %u"),
233 new_inodes, ~0U);
234 return EXT2_ET_TOO_MANY_INODES;
235 }
24b2c7a7
TT
236 fs->super->s_inodes_count = fs->super->s_inodes_per_group *
237 fs->group_desc_count;
238
239 /*
240 * Adjust the number of free blocks
241 */
bf69235a 242 blk = old_fs->super->s_blocks_count;
24b2c7a7
TT
243 if (blk > fs->super->s_blocks_count)
244 fs->super->s_free_blocks_count -=
245 (blk - fs->super->s_blocks_count);
246 else
247 fs->super->s_free_blocks_count +=
248 (fs->super->s_blocks_count - blk);
249
c762c8e6
TT
250 /*
251 * Adjust the number of reserved blocks
252 */
d1b4b85c 253 blk = (__u64)old_fs->super->s_r_blocks_count * 100 /
bf69235a 254 old_fs->super->s_blocks_count;
a8862d9e
TT
255 fs->super->s_r_blocks_count = e2p_percent(blk,
256 fs->super->s_blocks_count);
c762c8e6 257
24b2c7a7
TT
258 /*
259 * Adjust the bitmaps for size
260 */
261 retval = ext2fs_resize_inode_bitmap(fs->super->s_inodes_count,
262 fs->super->s_inodes_count,
263 fs->inode_map);
c762c8e6 264 if (retval) goto errout;
24b2c7a7
TT
265
266 real_end = ((EXT2_BLOCKS_PER_GROUP(fs->super)
267 * fs->group_desc_count)) - 1 +
268 fs->super->s_first_data_block;
269 retval = ext2fs_resize_block_bitmap(fs->super->s_blocks_count-1,
270 real_end, fs->block_map);
271
c762c8e6 272 if (retval) goto errout;
24b2c7a7
TT
273
274 /*
275 * Reallocate the group descriptors as necessary.
276 */
bf69235a
TT
277 if (old_fs->desc_blocks != fs->desc_blocks) {
278 retval = ext2fs_resize_mem(old_fs->desc_blocks *
76f875da
TT
279 fs->blocksize,
280 fs->desc_blocks * fs->blocksize,
c4e3d3f3 281 &fs->group_desc);
ca8abba7 282 if (retval)
a8519a2d 283 goto errout;
bf69235a 284 if (fs->desc_blocks > old_fs->desc_blocks)
2787276e 285 memset((char *) fs->group_desc +
bf69235a
TT
286 (old_fs->desc_blocks * fs->blocksize), 0,
287 (fs->desc_blocks - old_fs->desc_blocks) *
2787276e 288 fs->blocksize);
24b2c7a7 289 }
1e1da29f 290
9213a93b
TT
291 /*
292 * If the resize_inode feature is set, and we are changing the
293 * number of descriptor blocks, then adjust
294 * s_reserved_gdt_blocks if possible to avoid needing to move
295 * the inode table either now or in the future.
296 */
297 if ((fs->super->s_feature_compat &
298 EXT2_FEATURE_COMPAT_RESIZE_INODE) &&
bf69235a 299 (old_fs->desc_blocks != fs->desc_blocks)) {
9213a93b
TT
300 int new;
301
302 new = ((int) fs->super->s_reserved_gdt_blocks) +
bf69235a 303 (old_fs->desc_blocks - fs->desc_blocks);
9213a93b
TT
304 if (new < 0)
305 new = 0;
306 if (new > fs->blocksize/4)
307 new = fs->blocksize/4;
308 fs->super->s_reserved_gdt_blocks = new;
309 if (new == 0)
310 fs->super->s_feature_compat &=
311 ~EXT2_FEATURE_COMPAT_RESIZE_INODE;
312 }
313
a8519a2d
TT
314 /*
315 * If we are shrinking the number block groups, we're done and
316 * can exit now.
1e1da29f 317 */
bf69235a 318 if (old_fs->group_desc_count > fs->group_desc_count) {
c762c8e6
TT
319 retval = 0;
320 goto errout;
321 }
bf69235a 322
a8519a2d
TT
323 /*
324 * Fix the count of the last (old) block group
325 */
bf69235a
TT
326 old_numblocks = (old_fs->super->s_blocks_count -
327 old_fs->super->s_first_data_block) %
328 old_fs->super->s_blocks_per_group;
1e1da29f 329 if (!old_numblocks)
bf69235a
TT
330 old_numblocks = old_fs->super->s_blocks_per_group;
331 if (old_fs->group_desc_count == fs->group_desc_count) {
332 numblocks = (fs->super->s_blocks_count -
333 fs->super->s_first_data_block) %
334 fs->super->s_blocks_per_group;
1e1da29f 335 if (!numblocks)
bf69235a 336 numblocks = fs->super->s_blocks_per_group;
1e1da29f 337 } else
bf69235a
TT
338 numblocks = fs->super->s_blocks_per_group;
339 i = old_fs->group_desc_count - 1;
1e1da29f
TT
340 fs->group_desc[i].bg_free_blocks_count += (numblocks-old_numblocks);
341
342 /*
a8519a2d
TT
343 * If the number of block groups is staying the same, we're
344 * done and can exit now. (If the number block groups is
345 * shrinking, we had exited earlier.)
1e1da29f 346 */
bf69235a 347 if (old_fs->group_desc_count >= fs->group_desc_count) {
c762c8e6
TT
348 retval = 0;
349 goto errout;
350 }
bf69235a 351
a8519a2d
TT
352 /*
353 * Initialize the new block group descriptors
354 */
1e1da29f 355 group_block = fs->super->s_first_data_block +
bf69235a 356 old_fs->group_desc_count * fs->super->s_blocks_per_group;
c762c8e6 357
bf69235a 358 adj = old_fs->group_desc_count;
63b44fbe 359 max_group = fs->group_desc_count - adj;
76dd5e5c
TT
360 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
361 old_desc_blocks = fs->super->s_first_meta_bg;
362 else
9213a93b
TT
363 old_desc_blocks = fs->desc_blocks +
364 fs->super->s_reserved_gdt_blocks;
bf69235a 365 for (i = old_fs->group_desc_count;
1e1da29f
TT
366 i < fs->group_desc_count; i++) {
367 memset(&fs->group_desc[i], 0,
368 sizeof(struct ext2_group_desc));
369 adjblocks = 0;
370
371 if (i == fs->group_desc_count-1) {
372 numblocks = (fs->super->s_blocks_count -
373 fs->super->s_first_data_block) %
374 fs->super->s_blocks_per_group;
375 if (!numblocks)
376 numblocks = fs->super->s_blocks_per_group;
377 } else
378 numblocks = fs->super->s_blocks_per_group;
379
76dd5e5c
TT
380 has_super = ext2fs_bg_has_super(fs, i);
381 if (has_super) {
382 ext2fs_mark_block_bitmap(fs->block_map, group_block);
383 adjblocks++;
384 }
385 meta_bg_size = (fs->blocksize /
386 sizeof (struct ext2_group_desc));
387 meta_bg = i / meta_bg_size;
388 if (!(fs->super->s_feature_incompat &
389 EXT2_FEATURE_INCOMPAT_META_BG) ||
390 (meta_bg < fs->super->s_first_meta_bg)) {
391 if (has_super) {
392 for (j=0; j < old_desc_blocks; j++)
393 ext2fs_mark_block_bitmap(fs->block_map,
394 group_block + 1 + j);
395 adjblocks += old_desc_blocks;
396 }
397 } else {
398 if (has_super)
399 has_super = 1;
400 if (((i % meta_bg_size) == 0) ||
401 ((i % meta_bg_size) == 1) ||
402 ((i % meta_bg_size) == (meta_bg_size-1)))
1e1da29f 403 ext2fs_mark_block_bitmap(fs->block_map,
76dd5e5c 404 group_block + has_super);
24b2c7a7 405 }
76dd5e5c 406
1e1da29f
TT
407 adjblocks += 2 + fs->inode_blocks_per_group;
408
409 numblocks -= adjblocks;
410 fs->super->s_free_blocks_count -= adjblocks;
411 fs->super->s_free_inodes_count +=
412 fs->super->s_inodes_per_group;
413 fs->group_desc[i].bg_free_blocks_count = numblocks;
414 fs->group_desc[i].bg_free_inodes_count =
415 fs->super->s_inodes_per_group;
416 fs->group_desc[i].bg_used_dirs_count = 0;
24b2c7a7 417
1e1da29f 418 retval = ext2fs_allocate_group_table(fs, i, 0);
c762c8e6 419 if (retval) goto errout;
24b2c7a7 420
bf69235a
TT
421 group_block += fs->super->s_blocks_per_group;
422 }
423 retval = 0;
424
425errout:
426 return (retval);
427}
428
429/*
430 * This routine adjusts the superblock and other data structures, both
431 * in disk as well as in memory...
432 */
433static errcode_t adjust_superblock(ext2_resize_t rfs, blk_t new_size)
434{
435 ext2_filsys fs;
436 int adj = 0;
437 errcode_t retval;
438 blk_t group_block;
439 unsigned long i;
440 unsigned long max_group;
441
442 fs = rfs->new_fs;
443 ext2fs_mark_super_dirty(fs);
444 ext2fs_mark_bb_dirty(fs);
445 ext2fs_mark_ib_dirty(fs);
446
447 retval = adjust_fs_info(fs, rfs->old_fs, new_size);
448 if (retval)
449 goto errout;
450
451 /*
452 * Check to make sure there are enough inodes
453 */
454 if ((rfs->old_fs->super->s_inodes_count -
455 rfs->old_fs->super->s_free_inodes_count) >
456 rfs->new_fs->super->s_inodes_count) {
457 retval = ENOSPC;
458 goto errout;
459 }
460
461 /*
462 * If we are shrinking the number block groups, we're done and
463 * can exit now.
464 */
465 if (rfs->old_fs->group_desc_count > fs->group_desc_count) {
466 retval = 0;
467 goto errout;
468 }
469
470 /*
471 * If the number of block groups is staying the same, we're
472 * done and can exit now. (If the number block groups is
473 * shrinking, we had exited earlier.)
474 */
475 if (rfs->old_fs->group_desc_count >= fs->group_desc_count) {
476 retval = 0;
477 goto errout;
478 }
479
480 /*
481 * Initialize the new block group descriptors
482 */
483 retval = ext2fs_get_mem(fs->blocksize * fs->inode_blocks_per_group,
484 &rfs->itable_buf);
485 if (retval)
486 goto errout;
487
488 memset(rfs->itable_buf, 0, fs->blocksize * fs->inode_blocks_per_group);
489 group_block = fs->super->s_first_data_block +
490 rfs->old_fs->group_desc_count * fs->super->s_blocks_per_group;
491
492 adj = rfs->old_fs->group_desc_count;
493 max_group = fs->group_desc_count - adj;
494 if (rfs->progress) {
495 retval = rfs->progress(rfs, E2_RSZ_EXTEND_ITABLE_PASS,
496 0, max_group);
497 if (retval)
498 goto errout;
499 }
500 for (i = rfs->old_fs->group_desc_count;
501 i < fs->group_desc_count; i++) {
05e112a1
TT
502 /*
503 * Write out the new inode table
504 */
505 retval = io_channel_write_blk(fs->io,
506 fs->group_desc[i].bg_inode_table,
507 fs->inode_blocks_per_group,
508 rfs->itable_buf);
c762c8e6
TT
509 if (retval) goto errout;
510
a8519a2d 511 io_channel_flush(fs->io);
3b627e8d
TT
512 if (rfs->progress) {
513 retval = rfs->progress(rfs, E2_RSZ_EXTEND_ITABLE_PASS,
514 i - adj + 1, max_group);
515 if (retval)
516 goto errout;
517 }
1e1da29f 518 group_block += fs->super->s_blocks_per_group;
24b2c7a7 519 }
c762c8e6
TT
520 io_channel_flush(fs->io);
521 retval = 0;
522
523errout:
c762c8e6
TT
524 return retval;
525}
526
a8519a2d
TT
527/* --------------------------------------------------------------------
528 *
529 * Resize processing, phase 2.
530 *
531 * In this phase we adjust determine which blocks need to be moved, in
532 * blocks_to_move(). We then copy the blocks to their ultimate new
533 * destinations using block_mover(). Since we are copying blocks to
534 * their new locations, again during this pass we can abort without
535 * any problems.
536 * --------------------------------------------------------------------
537 */
538
c762c8e6
TT
539/*
540 * This helper function creates a block bitmap with all of the
541 * filesystem meta-data blocks.
542 */
543static errcode_t mark_table_blocks(ext2_filsys fs,
64ad98ac 544 ext2fs_block_bitmap bmap)
c762c8e6 545{
62c6d140 546 blk_t b;
54434927
TT
547 unsigned int j;
548 dgrp_t i;
68963d5a 549 unsigned long meta_bg_size;
54434927 550 unsigned int old_desc_blocks;
c762c8e6 551
76dd5e5c 552 meta_bg_size = (fs->blocksize / sizeof (struct ext2_group_desc));
76dd5e5c
TT
553 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG)
554 old_desc_blocks = fs->super->s_first_meta_bg;
555 else
9213a93b
TT
556 old_desc_blocks = fs->desc_blocks +
557 fs->super->s_reserved_gdt_blocks;
c762c8e6 558 for (i = 0; i < fs->group_desc_count; i++) {
64ad98ac 559 ext2fs_reserve_super_and_bgd(fs, i, bmap);
76dd5e5c 560
c762c8e6
TT
561 /*
562 * Mark the blocks used for the inode table
563 */
564 for (j = 0, b = fs->group_desc[i].bg_inode_table;
54434927 565 j < (unsigned int) fs->inode_blocks_per_group;
c762c8e6
TT
566 j++, b++)
567 ext2fs_mark_block_bitmap(bmap, b);
568
569 /*
570 * Mark block used for the block bitmap
571 */
572 ext2fs_mark_block_bitmap(bmap,
573 fs->group_desc[i].bg_block_bitmap);
64ad98ac 574
c762c8e6
TT
575 /*
576 * Mark block used for the inode bitmap
577 */
578 ext2fs_mark_block_bitmap(bmap,
579 fs->group_desc[i].bg_inode_bitmap);
c762c8e6 580 }
1e1da29f 581 return 0;
24b2c7a7
TT
582}
583
76dd5e5c
TT
584/*
585 * This function checks to see if a particular block (either a
586 * superblock or a block group descriptor) overlaps with an inode or
587 * block bitmap block, or with the inode table.
588 */
589static void mark_fs_metablock(ext2_resize_t rfs,
590 ext2fs_block_bitmap meta_bmap,
591 int group, blk_t blk)
592{
593 ext2_filsys fs = rfs->new_fs;
594
595 ext2fs_mark_block_bitmap(rfs->reserve_blocks, blk);
596 ext2fs_mark_block_bitmap(fs->block_map, blk);
597
598 /*
599 * Check to see if we overlap with the inode or block bitmap,
600 * or the inode tables. If not, and the block is in use, then
601 * mark it as a block to be moved.
602 */
603 if (IS_BLOCK_BM(fs, group, blk)) {
604 FS_BLOCK_BM(fs, group) = 0;
605 rfs->needed_blocks++;
606 } else if (IS_INODE_BM(fs, group, blk)) {
607 FS_INODE_BM(fs, group) = 0;
608 rfs->needed_blocks++;
609 } else if (IS_INODE_TB(fs, group, blk)) {
610 FS_INODE_TB(fs, group) = 0;
611 rfs->needed_blocks++;
612 } else if (ext2fs_test_block_bitmap(rfs->old_fs->block_map, blk) &&
613 !ext2fs_test_block_bitmap(meta_bmap, blk)) {
614 ext2fs_mark_block_bitmap(rfs->move_blocks, blk);
615 rfs->needed_blocks++;
616 }
617}
618
619
24b2c7a7
TT
620/*
621 * This routine marks and unmarks reserved blocks in the new block
622 * bitmap. It also determines which blocks need to be moved and
623 * places this information into the move_blocks bitmap.
624 */
c762c8e6 625static errcode_t blocks_to_move(ext2_resize_t rfs)
24b2c7a7 626{
54434927
TT
627 int j, has_super;
628 dgrp_t i, max_groups;
629 blk_t blk, group_blk;
630 unsigned long old_blocks, new_blocks;
631 unsigned int meta_bg, meta_bg_size;
24b2c7a7 632 errcode_t retval;
c762c8e6
TT
633 ext2_filsys fs, old_fs;
634 ext2fs_block_bitmap meta_bmap;
24b2c7a7 635
c762c8e6
TT
636 fs = rfs->new_fs;
637 old_fs = rfs->old_fs;
638 if (old_fs->super->s_blocks_count > fs->super->s_blocks_count)
639 fs = rfs->old_fs;
640
a13575f4 641 retval = ext2fs_allocate_block_bitmap(fs, _("reserved blocks"),
1e1da29f 642 &rfs->reserve_blocks);
24b2c7a7
TT
643 if (retval)
644 return retval;
1e1da29f 645
a13575f4 646 retval = ext2fs_allocate_block_bitmap(fs, _("blocks to be moved"),
c762c8e6
TT
647 &rfs->move_blocks);
648 if (retval)
649 return retval;
650
64ad98ac
TT
651 retval = ext2fs_allocate_block_bitmap(fs, _("meta-data blocks"),
652 &meta_bmap);
653 if (retval)
654 return retval;
655
656 retval = mark_table_blocks(old_fs, meta_bmap);
c762c8e6
TT
657 if (retval)
658 return retval;
659
660 fs = rfs->new_fs;
661
1e1da29f
TT
662 /*
663 * If we're shrinking the filesystem, we need to move all of
664 * the blocks that don't fit any more
665 */
666 for (blk = fs->super->s_blocks_count;
c762c8e6
TT
667 blk < old_fs->super->s_blocks_count; blk++) {
668 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
669 !ext2fs_test_block_bitmap(meta_bmap, blk)) {
670 ext2fs_mark_block_bitmap(rfs->move_blocks, blk);
1e1da29f 671 rfs->needed_blocks++;
c762c8e6 672 }
1e1da29f
TT
673 ext2fs_mark_block_bitmap(rfs->reserve_blocks, blk);
674 }
24b2c7a7 675
76dd5e5c
TT
676 if (fs->super->s_feature_incompat & EXT2_FEATURE_INCOMPAT_META_BG) {
677 old_blocks = old_fs->super->s_first_meta_bg;
678 new_blocks = fs->super->s_first_meta_bg;
679 } else {
9213a93b
TT
680 old_blocks = old_fs->desc_blocks + old_fs->super->s_reserved_gdt_blocks;
681 new_blocks = fs->desc_blocks + fs->super->s_reserved_gdt_blocks;
76dd5e5c
TT
682 }
683
c762c8e6
TT
684 if (old_blocks == new_blocks) {
685 retval = 0;
686 goto errout;
687 }
24b2c7a7 688
1333fe93
TT
689 max_groups = fs->group_desc_count;
690 if (max_groups > old_fs->group_desc_count)
691 max_groups = old_fs->group_desc_count;
c762c8e6 692 group_blk = old_fs->super->s_first_data_block;
24b2c7a7
TT
693 /*
694 * If we're reducing the number of descriptor blocks, this
695 * makes life easy. :-) We just have to mark some extra
696 * blocks as free.
697 */
698 if (old_blocks > new_blocks) {
1333fe93 699 for (i = 0; i < max_groups; i++) {
1e1da29f
TT
700 if (!ext2fs_bg_has_super(fs, i)) {
701 group_blk += fs->super->s_blocks_per_group;
24b2c7a7
TT
702 continue;
703 }
c762c8e6
TT
704 for (blk = group_blk+1+new_blocks;
705 blk < group_blk+1+old_blocks; blk++) {
1e1da29f 706 ext2fs_unmark_block_bitmap(fs->block_map,
24b2c7a7 707 blk);
052db4b7
TT
708 rfs->needed_blocks--;
709 }
1e1da29f 710 group_blk += fs->super->s_blocks_per_group;
24b2c7a7 711 }
c762c8e6
TT
712 retval = 0;
713 goto errout;
24b2c7a7
TT
714 }
715 /*
716 * If we're increasing the number of descriptor blocks, life
1e1da29f 717 * gets interesting....
24b2c7a7 718 */
76dd5e5c 719 meta_bg_size = (fs->blocksize / sizeof (struct ext2_group_desc));
1333fe93 720 for (i = 0; i < max_groups; i++) {
76dd5e5c
TT
721 has_super = ext2fs_bg_has_super(fs, i);
722 if (has_super)
723 mark_fs_metablock(rfs, meta_bmap, i, group_blk);
724
725 meta_bg = i / meta_bg_size;
726 if (!(fs->super->s_feature_incompat &
727 EXT2_FEATURE_INCOMPAT_META_BG) ||
728 (meta_bg < fs->super->s_first_meta_bg)) {
424cb7b6
TT
729 if (has_super) {
730 for (blk = group_blk+1;
731 blk < group_blk + 1 + new_blocks; blk++)
732 mark_fs_metablock(rfs, meta_bmap,
733 i, blk);
734 }
76dd5e5c
TT
735 } else {
736 if (has_super)
737 has_super = 1;
738 if (((i % meta_bg_size) == 0) ||
739 ((i % meta_bg_size) == 1) ||
740 ((i % meta_bg_size) == (meta_bg_size-1)))
741 mark_fs_metablock(rfs, meta_bmap, i,
742 group_blk + has_super);
24b2c7a7 743 }
76dd5e5c 744
1e1da29f
TT
745 if (fs->group_desc[i].bg_inode_table &&
746 fs->group_desc[i].bg_inode_bitmap &&
747 fs->group_desc[i].bg_block_bitmap)
748 goto next_group;
24b2c7a7 749
1e1da29f 750 /*
c762c8e6
TT
751 * Reserve the existing meta blocks that we know
752 * aren't to be moved.
1e1da29f
TT
753 */
754 if (fs->group_desc[i].bg_block_bitmap)
755 ext2fs_mark_block_bitmap(rfs->reserve_blocks,
756 fs->group_desc[i].bg_block_bitmap);
757 if (fs->group_desc[i].bg_inode_bitmap)
758 ext2fs_mark_block_bitmap(rfs->reserve_blocks,
759 fs->group_desc[i].bg_inode_bitmap);
760 if (fs->group_desc[i].bg_inode_table)
761 for (blk = fs->group_desc[i].bg_inode_table, j=0;
762 j < fs->inode_blocks_per_group ; j++, blk++)
763 ext2fs_mark_block_bitmap(rfs->reserve_blocks,
764 blk);
24b2c7a7 765
c762c8e6
TT
766 /*
767 * Allocate the missing data structures
768 */
1e1da29f
TT
769 retval = ext2fs_allocate_group_table(fs, i,
770 rfs->reserve_blocks);
771 if (retval)
c762c8e6 772 goto errout;
24b2c7a7 773
1e1da29f 774 /*
c762c8e6
TT
775 * For those structures that have changed, we need to
776 * do bookkeepping.
1e1da29f 777 */
c762c8e6
TT
778 if (FS_BLOCK_BM(old_fs, i) !=
779 (blk = FS_BLOCK_BM(fs, i))) {
780 ext2fs_mark_block_bitmap(fs->block_map, blk);
781 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
782 !ext2fs_test_block_bitmap(meta_bmap, blk))
783 ext2fs_mark_block_bitmap(rfs->move_blocks,
784 blk);
785 }
786 if (FS_INODE_BM(old_fs, i) !=
787 (blk = FS_INODE_BM(fs, i))) {
788 ext2fs_mark_block_bitmap(fs->block_map, blk);
789 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
790 !ext2fs_test_block_bitmap(meta_bmap, blk))
791 ext2fs_mark_block_bitmap(rfs->move_blocks,
792 blk);
793 }
24b2c7a7 794
052db4b7
TT
795 /*
796 * The inode table, if we need to relocate it, is
797 * handled specially. We have to reserve the blocks
798 * for both the old and the new inode table, since we
799 * can't have the inode table be destroyed during the
800 * block relocation phase.
801 */
c762c8e6 802 if (FS_INODE_TB(fs, i) == FS_INODE_TB(old_fs, i))
052db4b7
TT
803 goto next_group; /* inode table not moved */
804
c762c8e6 805 rfs->needed_blocks += fs->inode_blocks_per_group;
052db4b7
TT
806
807 /*
808 * Mark the new inode table as in use in the new block
c762c8e6
TT
809 * allocation bitmap, and move any blocks that might
810 * be necessary.
052db4b7 811 */
1e1da29f 812 for (blk = fs->group_desc[i].bg_inode_table, j=0;
c762c8e6 813 j < fs->inode_blocks_per_group ; j++, blk++) {
1e1da29f 814 ext2fs_mark_block_bitmap(fs->block_map, blk);
c762c8e6
TT
815 if (ext2fs_test_block_bitmap(old_fs->block_map, blk) &&
816 !ext2fs_test_block_bitmap(meta_bmap, blk))
817 ext2fs_mark_block_bitmap(rfs->move_blocks,
818 blk);
819 }
820
1e1da29f 821 /*
052db4b7
TT
822 * Make sure the old inode table is reserved in the
823 * block reservation bitmap.
1e1da29f 824 */
052db4b7
TT
825 for (blk = rfs->old_fs->group_desc[i].bg_inode_table, j=0;
826 j < fs->inode_blocks_per_group ; j++, blk++)
827 ext2fs_mark_block_bitmap(rfs->reserve_blocks, blk);
1e1da29f
TT
828
829 next_group:
830 group_blk += rfs->new_fs->super->s_blocks_per_group;
831 }
c762c8e6
TT
832 retval = 0;
833
834errout:
835 if (meta_bmap)
836 ext2fs_free_block_bitmap(meta_bmap);
837
838 return retval;
1e1da29f 839}
24b2c7a7 840
a8519a2d
TT
841/*
842 * This helper function tries to allocate a new block. We try to
843 * avoid hitting the original group descriptor blocks at least at
844 * first, since we want to make it possible to recover from a badly
845 * aborted resize operation as much as possible.
846 *
847 * In the future, I may further modify this routine to balance out
848 * where we get the new blocks across the various block groups.
849 * Ideally we would allocate blocks that corresponded with the block
850 * group of the containing inode, and keep contiguous blocks
851 * together. However, this very difficult to do efficiently, since we
852 * don't have the necessary information up front.
853 */
854
855#define AVOID_OLD 1
856#define DESPERATION 2
857
858static void init_block_alloc(ext2_resize_t rfs)
859{
860 rfs->alloc_state = AVOID_OLD;
861 rfs->new_blk = rfs->new_fs->super->s_first_data_block;
2bc4d4f7
TT
862#if 0
863 /* HACK for testing */
864 if (rfs->new_fs->super->s_blocks_count >
865 rfs->old_fs->super->s_blocks_count)
866 rfs->new_blk = rfs->old_fs->super->s_blocks_count;
867#endif
a8519a2d
TT
868}
869
870static blk_t get_new_block(ext2_resize_t rfs)
871{
872 ext2_filsys fs = rfs->new_fs;
873
874 while (1) {
875 if (rfs->new_blk >= fs->super->s_blocks_count) {
876 if (rfs->alloc_state == DESPERATION)
877 return 0;
878
879#ifdef RESIZE2FS_DEBUG
880 if (rfs->flags & RESIZE_DEBUG_BMOVE)
f35fd3d5
TT
881 printf("Going into desperation mode "
882 "for block allocations\n");
a8519a2d
TT
883#endif
884 rfs->alloc_state = DESPERATION;
885 rfs->new_blk = fs->super->s_first_data_block;
886 continue;
887 }
888 if (ext2fs_test_block_bitmap(fs->block_map, rfs->new_blk) ||
889 ext2fs_test_block_bitmap(rfs->reserve_blocks,
890 rfs->new_blk) ||
891 ((rfs->alloc_state == AVOID_OLD) &&
bce49798 892 (rfs->new_blk < rfs->old_fs->super->s_blocks_count) &&
a8519a2d
TT
893 ext2fs_test_block_bitmap(rfs->old_fs->block_map,
894 rfs->new_blk))) {
895 rfs->new_blk++;
896 continue;
897 }
898 return rfs->new_blk;
899 }
900}
901
902static errcode_t block_mover(ext2_resize_t rfs)
903{
904 blk_t blk, old_blk, new_blk;
905 ext2_filsys fs = rfs->new_fs;
906 ext2_filsys old_fs = rfs->old_fs;
907 errcode_t retval;
908 int size, c;
909 int to_move, moved;
7d7bdd57
TT
910 ext2_badblocks_list badblock_list = 0;
911 int bb_modified = 0;
912
913 retval = ext2fs_read_bb_inode(old_fs, &badblock_list);
914 if (retval)
915 return retval;
a8519a2d
TT
916
917 new_blk = fs->super->s_first_data_block;
918 if (!rfs->itable_buf) {
919 retval = ext2fs_get_mem(fs->blocksize *
920 fs->inode_blocks_per_group,
c4e3d3f3 921 &rfs->itable_buf);
a8519a2d
TT
922 if (retval)
923 return retval;
924 }
925 retval = ext2fs_create_extent_table(&rfs->bmap, 0);
926 if (retval)
927 return retval;
928
929 /*
930 * The first step is to figure out where all of the blocks
931 * will go.
932 */
933 to_move = moved = 0;
934 init_block_alloc(rfs);
935 for (blk = old_fs->super->s_first_data_block;
936 blk < old_fs->super->s_blocks_count; blk++) {
937 if (!ext2fs_test_block_bitmap(old_fs->block_map, blk))
938 continue;
939 if (!ext2fs_test_block_bitmap(rfs->move_blocks, blk))
940 continue;
7d7bdd57
TT
941 if (ext2fs_badblocks_list_test(badblock_list, blk)) {
942 ext2fs_badblocks_list_del(badblock_list, blk);
943 bb_modified++;
944 continue;
945 }
a8519a2d
TT
946
947 new_blk = get_new_block(rfs);
948 if (!new_blk) {
949 retval = ENOSPC;
950 goto errout;
951 }
952 ext2fs_mark_block_bitmap(fs->block_map, new_blk);
953 ext2fs_add_extent_entry(rfs->bmap, blk, new_blk);
954 to_move++;
955 }
956
957 if (to_move == 0) {
cefbf487
TT
958 if (rfs->bmap) {
959 ext2fs_free_extent_table(rfs->bmap);
960 rfs->bmap = 0;
961 }
a8519a2d
TT
962 retval = 0;
963 goto errout;
964 }
965
966 /*
967 * Step two is to actually move the blocks
968 */
969 retval = ext2fs_iterate_extent(rfs->bmap, 0, 0, 0);
970 if (retval) goto errout;
971
3b627e8d
TT
972 if (rfs->progress) {
973 retval = (rfs->progress)(rfs, E2_RSZ_BLOCK_RELOC_PASS,
974 0, to_move);
975 if (retval)
976 goto errout;
977 }
a8519a2d
TT
978 while (1) {
979 retval = ext2fs_iterate_extent(rfs->bmap, &old_blk, &new_blk, &size);
980 if (retval) goto errout;
981 if (!size)
982 break;
983#ifdef RESIZE2FS_DEBUG
984 if (rfs->flags & RESIZE_DEBUG_BMOVE)
f35fd3d5
TT
985 printf("Moving %d blocks %u->%u\n",
986 size, old_blk, new_blk);
a8519a2d
TT
987#endif
988 do {
989 c = size;
990 if (c > fs->inode_blocks_per_group)
991 c = fs->inode_blocks_per_group;
992 retval = io_channel_read_blk(fs->io, old_blk, c,
993 rfs->itable_buf);
994 if (retval) goto errout;
995 retval = io_channel_write_blk(fs->io, new_blk, c,
996 rfs->itable_buf);
997 if (retval) goto errout;
998 size -= c;
999 new_blk += c;
1000 old_blk += c;
1001 moved += c;
1002 if (rfs->progress) {
1003 io_channel_flush(fs->io);
3b627e8d
TT
1004 retval = (rfs->progress)(rfs,
1005 E2_RSZ_BLOCK_RELOC_PASS,
a8519a2d 1006 moved, to_move);
3b627e8d
TT
1007 if (retval)
1008 goto errout;
a8519a2d
TT
1009 }
1010 } while (size > 0);
1011 io_channel_flush(fs->io);
1012 }
1013
1014errout:
7d7bdd57
TT
1015 if (badblock_list) {
1016 if (!retval && bb_modified)
1017 retval = ext2fs_update_bb_inode(old_fs,
1018 badblock_list);
1019 ext2fs_badblocks_list_free(badblock_list);
1020 }
a8519a2d
TT
1021 return retval;
1022}
1023
1024
1025/* --------------------------------------------------------------------
1026 *
1027 * Resize processing, phase 3
1028 *
1029 * --------------------------------------------------------------------
1030 */
1031
1032
1033struct process_block_struct {
1034 ext2_resize_t rfs;
dfcdc32f 1035 ext2_ino_t ino;
a8519a2d
TT
1036 struct ext2_inode * inode;
1037 errcode_t error;
1038 int is_dir;
1039 int changed;
1040};
1041
1042static int process_block(ext2_filsys fs, blk_t *block_nr,
54434927
TT
1043 e2_blkcnt_t blockcnt,
1044 blk_t ref_block EXT2FS_ATTR((unused)),
1045 int ref_offset EXT2FS_ATTR((unused)), void *priv_data)
a8519a2d
TT
1046{
1047 struct process_block_struct *pb;
1048 errcode_t retval;
1049 blk_t block, new_block;
1050 int ret = 0;
1051
1052 pb = (struct process_block_struct *) priv_data;
1053 block = *block_nr;
1054 if (pb->rfs->bmap) {
1055 new_block = ext2fs_extent_translate(pb->rfs->bmap, block);
1056 if (new_block) {
1057 *block_nr = new_block;
1058 ret |= BLOCK_CHANGED;
1059 pb->changed = 1;
1060#ifdef RESIZE2FS_DEBUG
1061 if (pb->rfs->flags & RESIZE_DEBUG_BMOVE)
f35fd3d5 1062 printf("ino=%u, blockcnt=%lld, %u->%u\n",
a8519a2d
TT
1063 pb->ino, blockcnt, block, new_block);
1064#endif
1065 block = new_block;
1066 }
1067 }
1068 if (pb->is_dir) {
1069 retval = ext2fs_add_dir_block(fs->dblist, pb->ino,
101c84f2 1070 block, (int) blockcnt);
a8519a2d
TT
1071 if (retval) {
1072 pb->error = retval;
1073 ret |= BLOCK_ABORT;
1074 }
1075 }
1076 return ret;
1077}
1078
1079/*
1080 * Progress callback
1081 */
54434927
TT
1082static errcode_t progress_callback(ext2_filsys fs,
1083 ext2_inode_scan scan EXT2FS_ATTR((unused)),
a8519a2d
TT
1084 dgrp_t group, void * priv_data)
1085{
1086 ext2_resize_t rfs = (ext2_resize_t) priv_data;
3b627e8d 1087 errcode_t retval;
a8519a2d
TT
1088
1089 /*
f4b2a6db
TT
1090 * This check is to protect against old ext2 libraries. It
1091 * shouldn't be needed against new libraries.
a8519a2d 1092 */
f4b2a6db 1093 if ((group+1) == 0)
a8519a2d
TT
1094 return 0;
1095
1096 if (rfs->progress) {
1097 io_channel_flush(fs->io);
3b627e8d
TT
1098 retval = (rfs->progress)(rfs, E2_RSZ_INODE_SCAN_PASS,
1099 group+1, fs->group_desc_count);
1100 if (retval)
1101 return retval;
a8519a2d
TT
1102 }
1103
1104 return 0;
1105}
1106
1107static errcode_t inode_scan_and_fix(ext2_resize_t rfs)
1108{
1109 struct process_block_struct pb;
dfcdc32f 1110 ext2_ino_t ino, new_inode;
a8519a2d
TT
1111 struct ext2_inode inode;
1112 ext2_inode_scan scan = NULL;
1113 errcode_t retval;
1114 int group;
1115 char *block_buf = 0;
dfcdc32f 1116 ext2_ino_t start_to_move;
0ccd488a 1117 blk_t orig_size, new_block;
a8519a2d
TT
1118
1119 if ((rfs->old_fs->group_desc_count <=
1120 rfs->new_fs->group_desc_count) &&
1121 !rfs->bmap)
1122 return 0;
1123
2bc4d4f7
TT
1124 /*
1125 * Save the original size of the old filesystem, and
1126 * temporarily set the size to be the new size if the new size
1127 * is larger. We need to do this to avoid catching an error
1128 * by the block iterator routines
1129 */
1130 orig_size = rfs->old_fs->super->s_blocks_count;
1131 if (orig_size < rfs->new_fs->super->s_blocks_count)
1132 rfs->old_fs->super->s_blocks_count =
1133 rfs->new_fs->super->s_blocks_count;
1134
a8519a2d
TT
1135 retval = ext2fs_open_inode_scan(rfs->old_fs, 0, &scan);
1136 if (retval) goto errout;
1137
1138 retval = ext2fs_init_dblist(rfs->old_fs, 0);
1139 if (retval) goto errout;
c4e3d3f3 1140 retval = ext2fs_get_mem(rfs->old_fs->blocksize * 3, &block_buf);
a8519a2d
TT
1141 if (retval) goto errout;
1142
1143 start_to_move = (rfs->new_fs->group_desc_count *
1144 rfs->new_fs->super->s_inodes_per_group);
1145
3b627e8d
TT
1146 if (rfs->progress) {
1147 retval = (rfs->progress)(rfs, E2_RSZ_INODE_SCAN_PASS,
1148 0, rfs->old_fs->group_desc_count);
1149 if (retval)
1150 goto errout;
1151 }
a8519a2d
TT
1152 ext2fs_set_inode_callback(scan, progress_callback, (void *) rfs);
1153 pb.rfs = rfs;
1154 pb.inode = &inode;
1155 pb.error = 0;
1156 new_inode = EXT2_FIRST_INODE(rfs->new_fs->super);
1157 /*
1158 * First, copy all of the inodes that need to be moved
1159 * elsewhere in the inode table
1160 */
1161 while (1) {
1162 retval = ext2fs_get_next_inode(scan, &ino, &inode);
1163 if (retval) goto errout;
1164 if (!ino)
1165 break;
1166
9213a93b 1167 if (inode.i_links_count == 0 && ino != EXT2_RESIZE_INO)
a8519a2d
TT
1168 continue; /* inode not in use */
1169
1170 pb.is_dir = LINUX_S_ISDIR(inode.i_mode);
1171 pb.changed = 0;
1172
0ccd488a
TT
1173 if (inode.i_file_acl && rfs->bmap) {
1174 new_block = ext2fs_extent_translate(rfs->bmap,
ed909bbe
TT
1175 inode.i_file_acl);
1176 if (new_block) {
1177 inode.i_file_acl = new_block;
1178 retval = ext2fs_write_inode(rfs->old_fs,
1179 ino, &inode);
1180 if (retval) goto errout;
1181 }
1182 }
1183
a8519a2d
TT
1184 if (ext2fs_inode_has_valid_blocks(&inode) &&
1185 (rfs->bmap || pb.is_dir)) {
1186 pb.ino = ino;
1187 retval = ext2fs_block_iterate2(rfs->old_fs,
1188 ino, 0, block_buf,
1189 process_block, &pb);
1190 if (retval)
1191 goto errout;
1192 if (pb.error) {
1193 retval = pb.error;
1194 goto errout;
1195 }
1196 }
1197
1198 if (ino <= start_to_move)
1199 continue; /* Don't need to move it. */
1200
1201 /*
1202 * Find a new inode
1203 */
1204 while (1) {
1205 if (!ext2fs_test_inode_bitmap(rfs->new_fs->inode_map,
1206 new_inode))
1207 break;
1208 new_inode++;
1209 if (new_inode > rfs->new_fs->super->s_inodes_count) {
1210 retval = ENOSPC;
1211 goto errout;
1212 }
1213 }
1214 ext2fs_mark_inode_bitmap(rfs->new_fs->inode_map, new_inode);
1215 if (pb.changed) {
1216 /* Get the new version of the inode */
1217 retval = ext2fs_read_inode(rfs->old_fs, ino, &inode);
1218 if (retval) goto errout;
1219 }
085d2a83 1220 inode.i_ctime = time(0);
a8519a2d
TT
1221 retval = ext2fs_write_inode(rfs->old_fs, new_inode, &inode);
1222 if (retval) goto errout;
1223
1224 group = (new_inode-1) / EXT2_INODES_PER_GROUP(rfs->new_fs->super);
1225 if (LINUX_S_ISDIR(inode.i_mode))
1226 rfs->new_fs->group_desc[group].bg_used_dirs_count++;
1227
1228#ifdef RESIZE2FS_DEBUG
1229 if (rfs->flags & RESIZE_DEBUG_INODEMAP)
f35fd3d5 1230 printf("Inode moved %u->%u\n", ino, new_inode);
a8519a2d
TT
1231#endif
1232 if (!rfs->imap) {
1233 retval = ext2fs_create_extent_table(&rfs->imap, 0);
1234 if (retval)
1235 goto errout;
1236 }
1237 ext2fs_add_extent_entry(rfs->imap, ino, new_inode);
1238 }
1239 io_channel_flush(rfs->old_fs->io);
1240
1241errout:
2bc4d4f7 1242 rfs->old_fs->super->s_blocks_count = orig_size;
a8519a2d
TT
1243 if (rfs->bmap) {
1244 ext2fs_free_extent_table(rfs->bmap);
1245 rfs->bmap = 0;
1246 }
1247 if (scan)
1248 ext2fs_close_inode_scan(scan);
1249 if (block_buf)
c4e3d3f3 1250 ext2fs_free_mem(&block_buf);
a8519a2d
TT
1251 return retval;
1252}
1253
1254/* --------------------------------------------------------------------
1255 *
1256 * Resize processing, phase 4.
1257 *
1258 * --------------------------------------------------------------------
1259 */
1260
1261struct istruct {
1262 ext2_resize_t rfs;
3b627e8d 1263 errcode_t err;
1333fe93 1264 unsigned long max_dirs;
a8519a2d
TT
1265 int num;
1266};
1267
54434927
TT
1268static int check_and_change_inodes(ext2_ino_t dir,
1269 int entry EXT2FS_ATTR((unused)),
a8519a2d 1270 struct ext2_dir_entry *dirent, int offset,
54434927
TT
1271 int blocksize EXT2FS_ATTR((unused)),
1272 char *buf EXT2FS_ATTR((unused)),
1273 void *priv_data)
a8519a2d
TT
1274{
1275 struct istruct *is = (struct istruct *) priv_data;
085d2a83
TT
1276 struct ext2_inode inode;
1277 ext2_ino_t new_inode;
1278 errcode_t retval;
a8519a2d
TT
1279
1280 if (is->rfs->progress && offset == 0) {
1281 io_channel_flush(is->rfs->old_fs->io);
3b627e8d
TT
1282 is->err = (is->rfs->progress)(is->rfs,
1283 E2_RSZ_INODE_REF_UPD_PASS,
1333fe93 1284 ++is->num, is->max_dirs);
3b627e8d
TT
1285 if (is->err)
1286 return DIRENT_ABORT;
a8519a2d
TT
1287 }
1288
1289 if (!dirent->inode)
1290 return 0;
1291
1292 new_inode = ext2fs_extent_translate(is->rfs->imap, dirent->inode);
1293
1294 if (!new_inode)
1295 return 0;
1296#ifdef RESIZE2FS_DEBUG
1297 if (is->rfs->flags & RESIZE_DEBUG_INODEMAP)
f35fd3d5 1298 printf("Inode translate (dir=%u, name=%.*s, %u->%u)\n",
06191693 1299 dir, dirent->name_len&0xFF, dirent->name,
a8519a2d
TT
1300 dirent->inode, new_inode);
1301#endif
1302
1303 dirent->inode = new_inode;
1304
085d2a83
TT
1305 /* Update the directory mtime and ctime */
1306 retval = ext2fs_read_inode(is->rfs->old_fs, dir, &inode);
1307 if (retval == 0) {
1308 inode.i_mtime = inode.i_ctime = time(0);
1309 ext2fs_write_inode(is->rfs->old_fs, dir, &inode);
1310 }
1311
a8519a2d
TT
1312 return DIRENT_CHANGED;
1313}
1314
1315static errcode_t inode_ref_fix(ext2_resize_t rfs)
1316{
1317 errcode_t retval;
1318 struct istruct is;
1319
1320 if (!rfs->imap)
1321 return 0;
1322
1323 /*
1324 * Now, we iterate over all of the directories to update the
1325 * inode references
1326 */
1327 is.num = 0;
1333fe93 1328 is.max_dirs = ext2fs_dblist_count(rfs->old_fs->dblist);
a8519a2d 1329 is.rfs = rfs;
3b627e8d 1330 is.err = 0;
a8519a2d 1331
3b627e8d
TT
1332 if (rfs->progress) {
1333 retval = (rfs->progress)(rfs, E2_RSZ_INODE_REF_UPD_PASS,
1333fe93 1334 0, is.max_dirs);
3b627e8d
TT
1335 if (retval)
1336 goto errout;
1337 }
a8519a2d
TT
1338
1339 retval = ext2fs_dblist_dir_iterate(rfs->old_fs->dblist,
1340 DIRENT_FLAG_INCLUDE_EMPTY, 0,
1341 check_and_change_inodes, &is);
3b627e8d
TT
1342 if (retval)
1343 goto errout;
1344 if (is.err) {
1345 retval = is.err;
1346 goto errout;
1347 }
a8519a2d 1348
3b627e8d 1349errout:
a8519a2d
TT
1350 ext2fs_free_extent_table(rfs->imap);
1351 rfs->imap = 0;
1352 return retval;
1353}
1354
1355
1356/* --------------------------------------------------------------------
1357 *
1358 * Resize processing, phase 5.
1359 *
1360 * In this phase we actually move the inode table around, and then
1361 * update the summary statistics. This is scary, since aborting here
1362 * will potentially scramble the filesystem. (We are moving the
1363 * inode tables around in place, and so the potential for lost data,
1364 * or at the very least scrambling the mapping between filenames and
1365 * inode numbers is very high in case of a power failure here.)
1366 * --------------------------------------------------------------------
1367 */
1368
24b2c7a7 1369
052db4b7
TT
1370/*
1371 * A very scary routine --- this one moves the inode table around!!!
1372 *
1373 * After this you have to use the rfs->new_fs file handle to read and
1374 * write inodes.
1375 */
c762c8e6 1376static errcode_t move_itables(ext2_resize_t rfs)
052db4b7 1377{
54434927
TT
1378 int n, num, size, diff;
1379 dgrp_t i, max_groups;
052db4b7 1380 ext2_filsys fs = rfs->new_fs;
05e112a1 1381 char *cp;
64ad98ac 1382 blk_t old_blk, new_blk, blk;
a8519a2d 1383 errcode_t retval;
64ad98ac 1384 int j, to_move, moved;
052db4b7 1385
1333fe93
TT
1386 max_groups = fs->group_desc_count;
1387 if (max_groups > rfs->old_fs->group_desc_count)
1388 max_groups = rfs->old_fs->group_desc_count;
052db4b7 1389
05e112a1
TT
1390 size = fs->blocksize * fs->inode_blocks_per_group;
1391 if (!rfs->itable_buf) {
c4e3d3f3 1392 retval = ext2fs_get_mem(size, &rfs->itable_buf);
ca8abba7
TT
1393 if (retval)
1394 return retval;
05e112a1 1395 }
c762c8e6
TT
1396
1397 /*
1398 * Figure out how many inode tables we need to move
1399 */
1400 to_move = moved = 0;
1333fe93 1401 for (i=0; i < max_groups; i++)
c762c8e6
TT
1402 if (rfs->old_fs->group_desc[i].bg_inode_table !=
1403 fs->group_desc[i].bg_inode_table)
1404 to_move++;
1405
1406 if (to_move == 0)
1407 return 0;
1408
3b627e8d
TT
1409 if (rfs->progress) {
1410 retval = rfs->progress(rfs, E2_RSZ_MOVE_ITABLE_PASS,
1411 0, to_move);
1412 if (retval)
1413 goto errout;
1414 }
63b44fbe 1415
a8519a2d
TT
1416 rfs->old_fs->flags |= EXT2_FLAG_MASTER_SB_ONLY;
1417
1333fe93 1418 for (i=0; i < max_groups; i++) {
ca8abba7
TT
1419 old_blk = rfs->old_fs->group_desc[i].bg_inode_table;
1420 new_blk = fs->group_desc[i].bg_inode_table;
1421 diff = new_blk - old_blk;
052db4b7 1422
80c0fc34 1423#ifdef RESIZE2FS_DEBUG
05e112a1 1424 if (rfs->flags & RESIZE_DEBUG_ITABLEMOVE)
f35fd3d5 1425 printf("Itable move group %d block %u->%u (diff %d)\n",
ca8abba7 1426 i, old_blk, new_blk, diff);
80c0fc34 1427#endif
052db4b7 1428
05e112a1 1429 if (!diff)
052db4b7
TT
1430 continue;
1431
ca8abba7 1432 retval = io_channel_read_blk(fs->io, old_blk,
05e112a1
TT
1433 fs->inode_blocks_per_group,
1434 rfs->itable_buf);
052db4b7 1435 if (retval)
a8519a2d 1436 goto errout;
05e112a1
TT
1437 /*
1438 * The end of the inode table segment often contains
a8519a2d
TT
1439 * all zeros, and we're often only moving the inode
1440 * table down a block or two. If so, we can optimize
1441 * things by not rewriting blocks that we know to be zero
1442 * already.
05e112a1 1443 */
2787276e 1444 for (cp = rfs->itable_buf+size-1, n=0; n < size; n++, cp--)
05e112a1
TT
1445 if (*cp)
1446 break;
1447 n = n >> EXT2_BLOCK_SIZE_BITS(fs->super);
80c0fc34 1448#ifdef RESIZE2FS_DEBUG
05e112a1 1449 if (rfs->flags & RESIZE_DEBUG_ITABLEMOVE)
f35fd3d5 1450 printf("%d blocks of zeros...\n", n);
80c0fc34 1451#endif
05e112a1
TT
1452 num = fs->inode_blocks_per_group;
1453 if (n > diff)
1454 num -= n;
1455
ca8abba7 1456 retval = io_channel_write_blk(fs->io, new_blk,
05e112a1 1457 num, rfs->itable_buf);
052db4b7 1458 if (retval) {
ca8abba7 1459 io_channel_write_blk(fs->io, old_blk,
05e112a1 1460 num, rfs->itable_buf);
a8519a2d 1461 goto errout;
052db4b7 1462 }
05e112a1
TT
1463 if (n > diff) {
1464 retval = io_channel_write_blk(fs->io,
ca8abba7 1465 old_blk + fs->inode_blocks_per_group,
a8519a2d
TT
1466 diff, (rfs->itable_buf +
1467 (fs->inode_blocks_per_group - diff) *
1468 fs->blocksize));
05e112a1 1469 if (retval)
a8519a2d 1470 goto errout;
c762c8e6 1471 }
64ad98ac
TT
1472
1473 for (blk = rfs->old_fs->group_desc[i].bg_inode_table, j=0;
1474 j < fs->inode_blocks_per_group ; j++, blk++)
1475 ext2fs_unmark_block_bitmap(fs->block_map, blk);
1476
a8519a2d
TT
1477 rfs->old_fs->group_desc[i].bg_inode_table = new_blk;
1478 ext2fs_mark_super_dirty(rfs->old_fs);
64ad98ac
TT
1479 ext2fs_flush(rfs->old_fs);
1480
a8519a2d 1481 if (rfs->progress) {
3b627e8d
TT
1482 retval = rfs->progress(rfs, E2_RSZ_MOVE_ITABLE_PASS,
1483 ++moved, to_move);
1484 if (retval)
1485 goto errout;
a8519a2d 1486 }
052db4b7 1487 }
64ad98ac 1488 mark_table_blocks(fs, fs->block_map);
a8519a2d 1489 ext2fs_flush(fs);
80c0fc34 1490#ifdef RESIZE2FS_DEBUG
05e112a1 1491 if (rfs->flags & RESIZE_DEBUG_ITABLEMOVE)
f35fd3d5 1492 printf("Inode table move finished.\n");
80c0fc34 1493#endif
052db4b7
TT
1494 return 0;
1495
a8519a2d 1496errout:
052db4b7
TT
1497 return retval;
1498}
1499
9213a93b
TT
1500/*
1501 * Fix the resize inode
1502 */
1503static errcode_t fix_resize_inode(ext2_filsys fs)
1504{
1505 struct ext2_inode inode;
1506 errcode_t retval;
1507 char * block_buf;
1508
1509 if (!(fs->super->s_feature_compat &
1510 EXT2_FEATURE_COMPAT_RESIZE_INODE))
1511 return 0;
1512
1513 retval = ext2fs_get_mem(fs->blocksize, &block_buf);
1514 if (retval) goto errout;
1515
1516 retval = ext2fs_read_inode(fs, EXT2_RESIZE_INO, &inode);
1517 if (retval) goto errout;
1518
1519 inode.i_blocks = fs->blocksize/512;
1520
1521 retval = ext2fs_write_inode(fs, EXT2_RESIZE_INO, &inode);
1522 if (retval) goto errout;
1523
1524 if (!inode.i_block[EXT2_DIND_BLOCK]) {
1525 /*
1526 * Avoid zeroing out block #0; that's rude. This
1527 * should never happen anyway since the filesystem
1528 * should be fsck'ed and we assume it is consistent.
1529 */
1530 fprintf(stderr,
f35fd3d5 1531 _("Should never happen: resize inode corrupt!\n"));
9213a93b
TT
1532 exit(1);
1533 }
1534
1535 memset(block_buf, 0, fs->blocksize);
1536
1537 retval = io_channel_write_blk(fs->io, inode.i_block[EXT2_DIND_BLOCK],
1538 1, block_buf);
1539 if (retval) goto errout;
1540
1541 retval = ext2fs_create_resize_inode(fs);
1542 if (retval)
1543 goto errout;
1544
1545errout:
1546 if (block_buf)
1547 ext2fs_free_mem(&block_buf);
1548 return retval;
1549}
1550
052db4b7
TT
1551/*
1552 * Finally, recalculate the summary information
1553 */
1554static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs)
1555{
dfcdc32f
TT
1556 blk_t blk;
1557 ext2_ino_t ino;
54434927
TT
1558 unsigned int group = 0;
1559 unsigned int count = 0;
dfcdc32f
TT
1560 int total_free = 0;
1561 int group_free = 0;
052db4b7
TT
1562
1563 /*
1564 * First calculate the block statistics
1565 */
1566 for (blk = fs->super->s_first_data_block;
1567 blk < fs->super->s_blocks_count; blk++) {
1568 if (!ext2fs_fast_test_block_bitmap(fs->block_map, blk)) {
1569 group_free++;
1570 total_free++;
1571 }
1572 count++;
1573 if ((count == fs->super->s_blocks_per_group) ||
1574 (blk == fs->super->s_blocks_count-1)) {
1575 fs->group_desc[group++].bg_free_blocks_count =
1576 group_free;
1577 count = 0;
1578 group_free = 0;
1579 }
1580 }
1581 fs->super->s_free_blocks_count = total_free;
1582
1583 /*
1584 * Next, calculate the inode statistics
1585 */
1586 group_free = 0;
1587 total_free = 0;
1588 count = 0;
1589 group = 0;
5830d6be
ES
1590
1591 /* Protect loop from wrap-around if s_inodes_count maxed */
1592 for (ino = 1; ino <= fs->super->s_inodes_count && ino > 0; ino++) {
052db4b7
TT
1593 if (!ext2fs_fast_test_inode_bitmap(fs->inode_map, ino)) {
1594 group_free++;
1595 total_free++;
1596 }
1597 count++;
1598 if ((count == fs->super->s_inodes_per_group) ||
1599 (ino == fs->super->s_inodes_count)) {
1600 fs->group_desc[group++].bg_free_inodes_count =
1601 group_free;
1602 count = 0;
1603 group_free = 0;
1604 }
1605 }
1606 fs->super->s_free_inodes_count = total_free;
1607 ext2fs_mark_super_dirty(fs);
1608 return 0;
1609}