]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - resize/main.c
Android.mk: add parse_qtype.c the list of source files
[thirdparty/e2fsprogs.git] / resize / main.c
CommitLineData
24b2c7a7
TT
1/*
2 * main.c --- ext2 resizer main program
3 *
0cee8a5c
TT
4 * Copyright (C) 1997, 1998 by Theodore Ts'o and
5 * PowerQuest, Inc.
6 *
55f4cbd9 7 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 by Theodore 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
f1644c32 15#ifndef _LARGEFILE_SOURCE
fe07357f 16#define _LARGEFILE_SOURCE
f1644c32
TT
17#endif
18#ifndef _LARGEFILE64_SOURCE
fe07357f 19#define _LARGEFILE64_SOURCE
f1644c32 20#endif
fe07357f 21
d1154eb4 22#include "config.h"
c762c8e6
TT
23#ifdef HAVE_GETOPT_H
24#include <getopt.h>
373b8337
TT
25#else
26extern char *optarg;
27extern int optind;
c762c8e6 28#endif
fe07357f 29#include <unistd.h>
f38cf3cb
TT
30#ifdef HAVE_STDLIB_H
31#include <stdlib.h>
32#endif
fe07357f 33#include <sys/types.h>
116db1b5 34#include <sys/stat.h>
fe07357f 35#include <fcntl.h>
03f9fd2a 36#include <libgen.h>
c762c8e6 37
55f4cbd9
TT
38#include "e2p/e2p.h"
39
24b2c7a7
TT
40#include "resize2fs.h"
41
0cee8a5c 42#include "../version.h"
2e561e02 43
f404167d
TT
44char *program_name;
45static char *device_name, *io_options;
24b2c7a7 46
dfcdc32f 47static void usage (char *prog)
24b2c7a7 48{
199ddaaa 49 fprintf (stderr, _("Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] "
03f9fd2a
DW
50 "[-p] device [-b|-s|new_size] [-z undo_file]\n\n"),
51 prog);
2e561e02 52
24b2c7a7
TT
53 exit (1);
54}
55
3b627e8d
TT
56static errcode_t resize_progress_func(ext2_resize_t rfs, int pass,
57 unsigned long cur, unsigned long max)
63b44fbe
TT
58{
59 ext2_sim_progmeter progress;
60 const char *label;
61 errcode_t retval;
62
63 progress = (ext2_sim_progmeter) rfs->prog_data;
f4b2a6db 64 if (max == 0)
3b627e8d 65 return 0;
63b44fbe
TT
66 if (cur == 0) {
67 if (progress)
68 ext2fs_progress_close(progress);
69 progress = 0;
70 switch (pass) {
a8519a2d 71 case E2_RSZ_EXTEND_ITABLE_PASS:
a13575f4 72 label = _("Extending the inode table");
63b44fbe
TT
73 break;
74 case E2_RSZ_BLOCK_RELOC_PASS:
a13575f4 75 label = _("Relocating blocks");
63b44fbe 76 break;
a8519a2d 77 case E2_RSZ_INODE_SCAN_PASS:
a13575f4 78 label = _("Scanning inode table");
63b44fbe
TT
79 break;
80 case E2_RSZ_INODE_REF_UPD_PASS:
a13575f4 81 label = _("Updating inode references");
63b44fbe
TT
82 break;
83 case E2_RSZ_MOVE_ITABLE_PASS:
a13575f4 84 label = _("Moving inode table");
63b44fbe 85 break;
a8519a2d 86 default:
a13575f4 87 label = _("Unknown pass?!?");
a8519a2d 88 break;
63b44fbe 89 }
a13575f4 90 printf(_("Begin pass %d (max = %lu)\n"), pass, max);
63b44fbe
TT
91 retval = ext2fs_progress_init(&progress, label, 30,
92 40, max, 0);
93 if (retval)
94 progress = 0;
95 rfs->prog_data = (void *) progress;
96 }
97 if (progress)
98 ext2fs_progress_update(progress, cur);
99 if (cur >= max) {
100 if (progress)
101 ext2fs_progress_close(progress);
102 progress = 0;
103 rfs->prog_data = 0;
104 }
3b627e8d 105 return 0;
63b44fbe
TT
106}
107
46c5490d
TT
108static void determine_fs_stride(ext2_filsys fs)
109{
110 unsigned int group;
111 unsigned long long sum;
5e27a274 112 unsigned int has_sb, prev_has_sb = 0, num;
46c5490d 113 int i_stride, b_stride;
2273a17a 114 int flexbg_size = 1 << fs->super->s_log_groups_per_flex;
46c5490d 115
96c6a3ac
TT
116 if (fs->stride)
117 return;
46c5490d
TT
118 num = 0; sum = 0;
119 for (group = 0; group < fs->group_desc_count; group++) {
120 has_sb = ext2fs_bg_has_super(fs, group);
121 if (group == 0 || has_sb != prev_has_sb)
122 goto next;
d7cca6b0
VAH
123 b_stride = ext2fs_block_bitmap_loc(fs, group) -
124 ext2fs_block_bitmap_loc(fs, group - 1) -
46c5490d 125 fs->super->s_blocks_per_group;
d7cca6b0
VAH
126 i_stride = ext2fs_inode_bitmap_loc(fs, group) -
127 ext2fs_inode_bitmap_loc(fs, group - 1) -
46c5490d
TT
128 fs->super->s_blocks_per_group;
129 if (b_stride != i_stride ||
2273a17a
DW
130 b_stride < 0 ||
131 (flexbg_size > 1 && (group % flexbg_size == 0)))
46c5490d
TT
132 goto next;
133
134 /* printf("group %d has stride %d\n", group, b_stride); */
135 sum += b_stride;
136 num++;
efc6f628 137
46c5490d
TT
138 next:
139 prev_has_sb = has_sb;
140 }
141
142 if (fs->group_desc_count > 12 && num < 3)
143 sum = 0;
144
145 if (num)
146 fs->stride = sum / num;
147 else
148 fs->stride = 0;
149
96c6a3ac
TT
150 fs->super->s_raid_stride = fs->stride;
151 ext2fs_mark_super_dirty(fs);
152
46c5490d
TT
153#if 0
154 if (fs->stride)
155 printf("Using RAID stride of %d\n", fs->stride);
156#endif
157}
158
0d89e5ac 159static void bigalloc_check(ext2_filsys fs, int force)
a713a7fe 160{
21e37be6 161 if (!force && ext2fs_has_feature_bigalloc(fs->super)) {
45ff69ff
AD
162 fprintf(stderr, "%s", _("\nResizing bigalloc file systems has "
163 "not been fully tested. Proceed at\n"
164 "your own risk! Use the force option "
165 "if you want to go ahead anyway.\n\n"));
a713a7fe
TT
166 exit(1);
167 }
168}
169
03f9fd2a
DW
170static int resize2fs_setup_tdb(const char *device_name, char *undo_file,
171 io_manager *io_ptr)
172{
173 errcode_t retval = ENOMEM;
174 char *tdb_dir = NULL, *tdb_file = NULL;
175 char *dev_name, *tmp_name;
03f9fd2a
DW
176
177 /* (re)open a specific undo file */
178 if (undo_file && undo_file[0] != 0) {
b0851392
DW
179 retval = set_undo_io_backing_manager(*io_ptr);
180 if (retval)
181 goto err;
03f9fd2a
DW
182 *io_ptr = undo_io_manager;
183 retval = set_undo_io_backup_file(undo_file);
184 if (retval)
185 goto err;
186 printf(_("Overwriting existing filesystem; this can be undone "
187 "using the command:\n"
188 " e2undo %s %s\n\n"),
189 undo_file, device_name);
b0851392 190 return retval;
03f9fd2a
DW
191 }
192
193 /*
194 * Configuration via a conf file would be
195 * nice
196 */
197 tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
b0851392
DW
198 if (!tdb_dir)
199 tdb_dir = "/var/lib/e2fsprogs";
03f9fd2a 200
b0851392
DW
201 if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
202 access(tdb_dir, W_OK))
03f9fd2a 203 return 0;
03f9fd2a
DW
204
205 tmp_name = strdup(device_name);
206 if (!tmp_name)
207 goto errout;
208 dev_name = basename(tmp_name);
b0851392 209 tdb_file = malloc(strlen(tdb_dir) + 11 + strlen(dev_name) + 7 + 1);
03f9fd2a
DW
210 if (!tdb_file) {
211 free(tmp_name);
212 goto errout;
213 }
214 sprintf(tdb_file, "%s/resize2fs-%s.e2undo", tdb_dir, dev_name);
215 free(tmp_name);
216
217 if ((unlink(tdb_file) < 0) && (errno != ENOENT)) {
218 retval = errno;
b0851392
DW
219 com_err(program_name, retval,
220 _("while trying to delete %s"), tdb_file);
03f9fd2a
DW
221 goto errout;
222 }
223
b0851392
DW
224 retval = set_undo_io_backing_manager(*io_ptr);
225 if (retval)
226 goto errout;
03f9fd2a
DW
227 *io_ptr = undo_io_manager;
228 retval = set_undo_io_backup_file(tdb_file);
229 if (retval)
230 goto errout;
231 printf(_("Overwriting existing filesystem; this can be undone "
232 "using the command:\n"
233 " e2undo %s %s\n\n"), tdb_file, device_name);
234
03f9fd2a
DW
235 free(tdb_file);
236 return 0;
03f9fd2a 237errout:
03f9fd2a
DW
238 free(tdb_file);
239err:
240 com_err(program_name, retval, "%s",
241 _("while trying to setup undo file\n"));
242 return retval;
243}
244
0a617317 245int main (int argc, char ** argv)
24b2c7a7
TT
246{
247 errcode_t retval;
248 ext2_filsys fs;
249 int c;
05e112a1 250 int flags = 0;
c762c8e6 251 int flush = 0;
f4b2a6db 252 int force = 0;
5d2ef12f 253 int io_flags = 0;
199ddaaa
JB
254 int force_min_size = 0;
255 int print_min_size = 0;
fe07357f 256 int fd, ret;
8728d506
VAH
257 blk64_t new_size = 0;
258 blk64_t max_size = 0;
259 blk64_t min_size = 0;
24b2c7a7 260 io_manager io_ptr;
55f4cbd9 261 char *new_size_str = 0;
46c5490d 262 int use_stride = -1;
7270fbe7 263 ext2fs_struct_stat st_buf;
fe07357f 264 __s64 new_file_size;
54434927 265 unsigned int sys_page_size = 4096;
deae5e80 266 unsigned int blocksize;
a7ccdff8 267 long sysval;
bf69235a 268 int len, mount_flags;
03f9fd2a 269 char *mtpt, *undo_file = NULL;
ddc32a04
TT
270
271#ifdef ENABLE_NLS
272 setlocale(LC_MESSAGES, "");
273 setlocale(LC_CTYPE, "");
274 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
275 textdomain(NLS_CAT_NAME);
9d4507c5 276 set_com_err_gettext(gettext);
ddc32a04
TT
277#endif
278
a6d8302b 279 add_error_table(&et_ext2_error_table);
24b2c7a7 280
f35fd3d5 281 fprintf (stderr, "resize2fs %s (%s)\n",
ba0af756 282 E2FSPROGS_VERSION, E2FSPROGS_DATE);
24b2c7a7
TT
283 if (argc && *argv)
284 program_name = *argv;
2e561e02 285
03f9fd2a 286 while ((c = getopt(argc, argv, "d:fFhMPpS:bsz:")) != EOF) {
24b2c7a7
TT
287 switch (c) {
288 case 'h':
289 usage(program_name);
290 break;
f4b2a6db
TT
291 case 'f':
292 force = 1;
293 break;
c762c8e6
TT
294 case 'F':
295 flush = 1;
296 break;
199ddaaa
JB
297 case 'M':
298 force_min_size = 1;
299 break;
300 case 'P':
301 print_min_size = 1;
302 break;
05e112a1
TT
303 case 'd':
304 flags |= atoi(optarg);
305 break;
306 case 'p':
307 flags |= RESIZE_PERCENT_COMPLETE;
308 break;
46c5490d
TT
309 case 'S':
310 use_stride = atoi(optarg);
311 break;
fe12931f
DW
312 case 'b':
313 flags |= RESIZE_ENABLE_64BIT;
314 break;
315 case 's':
316 flags |= RESIZE_DISABLE_64BIT;
317 break;
03f9fd2a
DW
318 case 'z':
319 undo_file = optarg;
320 break;
24b2c7a7 321 default:
f4b2a6db 322 usage(program_name);
24b2c7a7
TT
323 }
324 }
f4b2a6db
TT
325 if (optind == argc)
326 usage(program_name);
2e561e02 327
24b2c7a7 328 device_name = argv[optind++];
55f4cbd9
TT
329 if (optind < argc)
330 new_size_str = argv[optind++];
f4b2a6db
TT
331 if (optind < argc)
332 usage(program_name);
efc6f628 333
2e8ca9a2
TT
334 io_options = strchr(device_name, '?');
335 if (io_options)
336 *io_options++ = 0;
337
bf69235a
TT
338 /*
339 * Figure out whether or not the device is mounted, and if it is
340 * where it is mounted.
341 */
342 len=80;
343 while (1) {
344 mtpt = malloc(len);
345 if (!mtpt)
346 return ENOMEM;
347 mtpt[len-1] = 0;
efc6f628 348 retval = ext2fs_check_mount_point(device_name, &mount_flags,
bf69235a
TT
349 mtpt, len);
350 if (retval) {
351 com_err("ext2fs_check_mount_point", retval,
352 _("while determining whether %s is mounted."),
353 device_name);
354 exit(1);
355 }
3a4d9869 356 if (!(mount_flags & EXT2_MF_MOUNTED) || (mtpt[len-1] == 0))
bf69235a
TT
357 break;
358 free(mtpt);
359 len = 2 * len;
360 }
fe07357f 361
c4012e5a 362 fd = ext2fs_open_file(device_name, O_RDWR, 0);
fe07357f
TT
363 if (fd < 0) {
364 com_err("open", errno, _("while opening %s"),
365 device_name);
366 exit(1);
367 }
368
7270fbe7 369 ret = ext2fs_fstat(fd, &st_buf);
fe07357f 370 if (ret < 0) {
efc6f628 371 com_err("open", errno,
fe07357f
TT
372 _("while getting stat information for %s"),
373 device_name);
374 exit(1);
375 }
efc6f628 376
c762c8e6 377 if (flush) {
48e08e03
TT
378 retval = ext2fs_sync_device(fd, 1);
379 if (retval) {
efc6f628 380 com_err(argv[0], retval,
a13575f4 381 _("while trying to flush %s"),
c762c8e6
TT
382 device_name);
383 exit(1);
384 }
fe07357f
TT
385 }
386
387 if (!S_ISREG(st_buf.st_mode )) {
c762c8e6 388 close(fd);
fe07357f 389 fd = -1;
c762c8e6
TT
390 }
391
f38cf3cb
TT
392#ifdef CONFIG_TESTIO_DEBUG
393 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
05e112a1
TT
394 io_ptr = test_io_manager;
395 test_io_backing_manager = unix_io_manager;
efc6f628 396 } else
f38cf3cb 397#endif
05e112a1
TT
398 io_ptr = unix_io_manager;
399
5d2ef12f
TT
400 if (!(mount_flags & EXT2_MF_MOUNTED))
401 io_flags = EXT2_FLAG_RW | EXT2_FLAG_EXCLUSIVE;
04cb6f58
SL
402
403 io_flags |= EXT2_FLAG_64BITS;
03f9fd2a
DW
404 if (undo_file) {
405 retval = resize2fs_setup_tdb(device_name, undo_file, &io_ptr);
406 if (retval)
407 exit(1);
408 }
efc6f628 409 retval = ext2fs_open2(device_name, io_options, io_flags,
2e8ca9a2 410 0, 0, io_ptr, &fs);
24b2c7a7 411 if (retval) {
45ff69ff
AD
412 com_err(program_name, retval, _("while trying to open %s"),
413 device_name);
414 printf("%s", _("Couldn't find valid filesystem superblock.\n"));
24b2c7a7
TT
415 exit (1);
416 }
baab9f43 417 fs->default_bitmap_type = EXT2FS_BMAP64_RBTREE;
236efede 418
0462fd6d
ES
419 /*
420 * Before acting on an unmounted filesystem, make sure it's ok,
421 * unless the user is forcing it.
422 *
423 * We do ERROR and VALID checks even if we're only printing the
424 * minimimum size, because traversal of a badly damaged filesystem
425 * can cause issues as well. We don't require it to be fscked after
426 * the last mount time in this case, though, as this is a bit less
427 * risky.
428 */
429 if (!force && !(mount_flags & EXT2_MF_MOUNTED)) {
430 int checkit = 0;
431
432 if (fs->super->s_state & EXT2_ERROR_FS)
433 checkit = 1;
434
435 if ((fs->super->s_state & EXT2_VALID_FS) == 0)
436 checkit = 1;
437
438 if ((fs->super->s_lastcheck < fs->super->s_mtime) &&
439 !print_min_size)
440 checkit = 1;
441
442 if (checkit) {
7d7a8fe4
ES
443 fprintf(stderr,
444 _("Please run 'e2fsck -f %s' first.\n\n"),
445 device_name);
446 exit(1);
447 }
448 }
449
101c84f2
TT
450 /*
451 * Check for compatibility with the feature sets. We need to
452 * be more stringent than ext2fs_open().
453 */
76dd5e5c 454 if (fs->super->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP) {
101c84f2
TT
455 com_err(program_name, EXT2_ET_UNSUPP_FEATURE,
456 "(%s)", device_name);
457 exit(1);
458 }
a8d632a4 459
e231f175 460 min_size = calculate_minimum_resize_size(fs, flags);
0d04d88a 461
199ddaaa 462 if (print_min_size) {
8728d506 463 printf(_("Estimated minimum size of the filesystem: %llu\n"),
0d04d88a 464 min_size);
199ddaaa
JB
465 exit(0);
466 }
467
a7ccdff8
TT
468 /* Determine the system page size if possible */
469#ifdef HAVE_SYSCONF
470#if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
471#define _SC_PAGESIZE _SC_PAGE_SIZE
472#endif
473#ifdef _SC_PAGESIZE
474 sysval = sysconf(_SC_PAGESIZE);
475 if (sysval > 0)
476 sys_page_size = sysval;
477#endif /* _SC_PAGESIZE */
478#endif /* HAVE_SYSCONF */
479
f4b2a6db
TT
480 /*
481 * Get the size of the containing partition, and use this for
fe07357f 482 * defaults and for making sure the new filesystem doesn't
f4b2a6db
TT
483 * exceed the partition size.
484 */
deae5e80
TT
485 blocksize = fs->blocksize;
486 retval = ext2fs_get_device_size2(device_name, blocksize,
8728d506 487 &max_size);
f4b2a6db 488 if (retval) {
45ff69ff 489 com_err(program_name, retval, "%s",
a13575f4 490 _("while trying to determine filesystem size"));
f4b2a6db
TT
491 exit(1);
492 }
199ddaaa 493 if (force_min_size)
1d8af189 494 new_size = min_size;
199ddaaa 495 else if (new_size_str) {
8728d506
VAH
496 new_size = parse_num_blocks2(new_size_str,
497 fs->super->s_log_block_size);
279a000f
ES
498 if (new_size == 0) {
499 com_err(program_name, 0,
500 _("Invalid new size: %s\n"), new_size_str);
501 exit(1);
502 }
55f4cbd9 503 } else {
f4b2a6db 504 new_size = max_size;
a7ccdff8 505 /* Round down to an even multiple of a pagesize */
deae5e80
TT
506 if (sys_page_size > blocksize)
507 new_size &= ~((sys_page_size / blocksize)-1);
a7ccdff8 508 }
fe12931f
DW
509 /* If changing 64bit, don't change the filesystem size. */
510 if (flags & (RESIZE_DISABLE_64BIT | RESIZE_ENABLE_64BIT)) {
511 new_size = ext2fs_blocks_count(fs->super);
512 }
21e37be6 513 if (!ext2fs_has_feature_64bit(fs->super)) {
ea38e503
TT
514 /* Take 16T down to 2^32-1 blocks */
515 if (new_size == (1ULL << 32))
516 new_size--;
517 else if (new_size > (1ULL << 32)) {
45ff69ff 518 com_err(program_name, 0, "%s",
ea38e503
TT
519 _("New size too large to be "
520 "expressed in 32 bits\n"));
521 exit(1);
522 }
523 }
46c5490d 524
0d04d88a
ES
525 if (!force && new_size < min_size) {
526 com_err(program_name, 0,
8728d506 527 _("New size smaller than minimum (%llu)\n"), min_size);
0d04d88a
ES
528 exit(1);
529 }
46c5490d 530 if (use_stride >= 0) {
de8f3a76 531 if (use_stride >= (int) fs->super->s_blocks_per_group) {
45ff69ff 532 com_err(program_name, 0, "%s",
46c5490d
TT
533 _("Invalid stride length"));
534 exit(1);
535 }
96c6a3ac
TT
536 fs->stride = fs->super->s_raid_stride = use_stride;
537 ext2fs_mark_super_dirty(fs);
46c5490d
TT
538 } else
539 determine_fs_stride(fs);
efc6f628 540
116db1b5
TT
541 /*
542 * If we are resizing a plain file, and it's not big enough,
543 * automatically extend it in a sparse fashion by writing the
544 * last requested block.
545 */
deae5e80 546 new_file_size = ((__u64) new_size) * blocksize;
efc6f628 547 if ((__u64) new_file_size >
fe07357f
TT
548 (((__u64) 1) << (sizeof(st_buf.st_size)*8 - 1)) - 1)
549 fd = -1;
550 if ((new_file_size > st_buf.st_size) &&
551 (fd > 0)) {
552 if ((ext2fs_llseek(fd, new_file_size-1, SEEK_SET) >= 0) &&
553 (write(fd, "0", 1) == 1))
116db1b5 554 max_size = new_size;
116db1b5 555 }
f4b2a6db 556 if (!force && (new_size > max_size)) {
a13575f4 557 fprintf(stderr, _("The containing partition (or device)"
8728d506
VAH
558 " is only %llu (%dk) blocks.\nYou requested a new size"
559 " of %llu blocks.\n\n"), max_size,
deae5e80 560 blocksize / 1024, new_size);
f4b2a6db
TT
561 exit(1);
562 }
fe12931f
DW
563 if ((flags & RESIZE_DISABLE_64BIT) && (flags & RESIZE_ENABLE_64BIT)) {
564 fprintf(stderr, _("Cannot set and unset 64bit feature.\n"));
565 exit(1);
566 } else if (flags & (RESIZE_DISABLE_64BIT | RESIZE_ENABLE_64BIT)) {
567 if (new_size >= (1ULL << 32)) {
568 fprintf(stderr, _("Cannot change the 64bit feature "
569 "on a filesystem that is larger than "
570 "2^32 blocks.\n"));
571 exit(1);
572 }
573 if (mount_flags & EXT2_MF_MOUNTED) {
574 fprintf(stderr, _("Cannot change the 64bit feature "
575 "while the filesystem is mounted.\n"));
576 exit(1);
577 }
578 if (flags & RESIZE_ENABLE_64BIT &&
21e37be6 579 !ext2fs_has_feature_extents(fs->super)) {
fe12931f
DW
580 fprintf(stderr, _("Please enable the extents feature "
581 "with tune2fs before enabling the 64bit "
582 "feature.\n"));
583 exit(1);
584 }
585 } else if (new_size == ext2fs_blocks_count(fs->super)) {
77255cf3
TT
586 fprintf(stderr, _("The filesystem is already %llu (%dk) "
587 "blocks long. Nothing to do!\n\n"), new_size,
deae5e80 588 blocksize / 1024);
f4b2a6db
TT
589 exit(0);
590 }
fe12931f 591 if ((flags & RESIZE_ENABLE_64BIT) &&
21e37be6 592 ext2fs_has_feature_64bit(fs->super)) {
fe12931f
DW
593 fprintf(stderr, _("The filesystem is already 64-bit.\n"));
594 exit(0);
595 }
596 if ((flags & RESIZE_DISABLE_64BIT) &&
21e37be6 597 !ext2fs_has_feature_64bit(fs->super)) {
fe12931f
DW
598 fprintf(stderr, _("The filesystem is already 32-bit.\n"));
599 exit(0);
600 }
bf69235a 601 if (mount_flags & EXT2_MF_MOUNTED) {
a713a7fe 602 bigalloc_check(fs, force);
bf69235a
TT
603 retval = online_resize_fs(fs, mtpt, &new_size, flags);
604 } else {
a713a7fe 605 bigalloc_check(fs, force);
fe12931f
DW
606 if (flags & RESIZE_ENABLE_64BIT)
607 printf(_("Converting the filesystem to 64-bit.\n"));
608 else if (flags & RESIZE_DISABLE_64BIT)
609 printf(_("Converting the filesystem to 32-bit.\n"));
610 else
611 printf(_("Resizing the filesystem on "
612 "%s to %llu (%dk) blocks.\n"),
613 device_name, new_size, blocksize / 1024);
bf69235a
TT
614 retval = resize_fs(fs, &new_size, flags,
615 ((flags & RESIZE_PERCENT_COMPLETE) ?
616 resize_progress_func : 0));
f4b2a6db 617 }
3a4d9869 618 free(mtpt);
1e1da29f 619 if (retval) {
a13575f4 620 com_err(program_name, retval, _("while trying to resize %s"),
1e1da29f 621 device_name);
96cdb37e
TT
622 fprintf(stderr,
623 _("Please run 'e2fsck -fy %s' to fix the filesystem\n"
624 "after the aborted resize operation.\n"),
625 device_name);
47fee2ef 626 ext2fs_close_free(&fs);
16082112 627 exit(1);
1e1da29f 628 }
77255cf3 629 printf(_("The filesystem on %s is now %llu (%dk) blocks long.\n\n"),
deae5e80 630 device_name, new_size, blocksize / 1024);
fe07357f
TT
631
632 if ((st_buf.st_size > new_file_size) &&
633 (fd > 0)) {
261cd396 634#ifdef HAVE_FTRUNCATE64
fb72556a 635 retval = ftruncate64(fd, new_file_size);
fe07357f 636#else
fb72556a 637 retval = 0;
98dca6c5
TT
638 /* Only truncate if new_file_size doesn't overflow off_t */
639 if (((off_t) new_file_size) == new_file_size)
fb72556a 640 retval = ftruncate(fd, (off_t) new_file_size);
fe07357f 641#endif
fb72556a
TT
642 if (retval)
643 com_err(program_name, retval,
644 _("while trying to truncate %s"),
645 device_name);
fe07357f
TT
646 }
647 if (fd > 0)
648 close(fd);
a6d8302b 649 remove_error_table(&et_ext2_error_table);
0a617317 650 return (0);
24b2c7a7 651}