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