blob: 2b7abff3f5c32b7cf538b810dd149a52b91e159e [file] [log] [blame]
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +00001/*
2 * main.c --- ext2 resizer main program
3 *
Theodore Ts'o0cee8a52000-04-06 21:38:34 +00004 * Copyright (C) 1997, 1998 by Theodore Ts'o and
5 * PowerQuest, Inc.
6 *
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -05007 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 by Theodore Ts'o
Theodore Ts'oefc6f622008-08-27 23:07:54 -04008 *
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +00009 * %Begin-Header%
Theodore Ts'o0cee8a52000-04-06 21:38:34 +000010 * This file may be redistributed under the terms of the GNU Public
11 * License.
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000012 * %End-Header%
13 */
14
Theodore Ts'ofe073572005-12-29 15:39:40 -050015#define _LARGEFILE_SOURCE
16#define _LARGEFILE64_SOURCE
17
Theodore Ts'od1154eb2011-09-18 17:34:37 -040018#include "config.h"
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000019#ifdef HAVE_GETOPT_H
20#include <getopt.h>
Theodore Ts'o373b8332000-04-03 16:22:35 +000021#else
22extern char *optarg;
23extern int optind;
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000024#endif
Theodore Ts'ofe073572005-12-29 15:39:40 -050025#include <unistd.h>
Theodore Ts'of38cf3c2008-09-01 11:17:29 -040026#ifdef HAVE_STDLIB_H
27#include <stdlib.h>
28#endif
Theodore Ts'ofe073572005-12-29 15:39:40 -050029#include <sys/types.h>
Theodore Ts'o116db1b2002-04-01 01:28:30 -050030#include <sys/stat.h>
Theodore Ts'ofe073572005-12-29 15:39:40 -050031#include <fcntl.h>
Theodore Ts'oc762c8e1997-06-17 03:52:12 +000032
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -050033#include "e2p/e2p.h"
34
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000035#include "resize2fs.h"
36
Theodore Ts'o0cee8a52000-04-06 21:38:34 +000037#include "../version.h"
Theodore Ts'o2e561e01998-04-08 06:18:37 +000038
Theodore Ts'of4041672013-12-16 18:56:36 -050039char *program_name;
40static char *device_name, *io_options;
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000041
Theodore Ts'odfcdc322001-01-11 15:38:00 +000042static void usage (char *prog)
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000043{
Josef Bacik199ddaa2008-03-13 13:46:10 -040044 fprintf (stderr, _("Usage: %s [-d debug_flags] [-f] [-F] [-M] [-P] "
45 "[-p] device [new_size]\n\n"), prog);
Theodore Ts'o2e561e01998-04-08 06:18:37 +000046
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +000047 exit (1);
48}
49
Theodore Ts'o3b627e81998-02-24 20:24:49 +000050static errcode_t resize_progress_func(ext2_resize_t rfs, int pass,
51 unsigned long cur, unsigned long max)
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000052{
53 ext2_sim_progmeter progress;
54 const char *label;
55 errcode_t retval;
56
57 progress = (ext2_sim_progmeter) rfs->prog_data;
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +000058 if (max == 0)
Theodore Ts'o3b627e81998-02-24 20:24:49 +000059 return 0;
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000060 if (cur == 0) {
61 if (progress)
62 ext2fs_progress_close(progress);
63 progress = 0;
64 switch (pass) {
Theodore Ts'oa8519a21998-02-16 22:16:20 +000065 case E2_RSZ_EXTEND_ITABLE_PASS:
Theodore Ts'oa13575f2000-06-12 22:06:16 +000066 label = _("Extending the inode table");
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000067 break;
68 case E2_RSZ_BLOCK_RELOC_PASS:
Theodore Ts'oa13575f2000-06-12 22:06:16 +000069 label = _("Relocating blocks");
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000070 break;
Theodore Ts'oa8519a21998-02-16 22:16:20 +000071 case E2_RSZ_INODE_SCAN_PASS:
Theodore Ts'oa13575f2000-06-12 22:06:16 +000072 label = _("Scanning inode table");
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000073 break;
74 case E2_RSZ_INODE_REF_UPD_PASS:
Theodore Ts'oa13575f2000-06-12 22:06:16 +000075 label = _("Updating inode references");
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000076 break;
77 case E2_RSZ_MOVE_ITABLE_PASS:
Theodore Ts'oa13575f2000-06-12 22:06:16 +000078 label = _("Moving inode table");
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000079 break;
Theodore Ts'oa8519a21998-02-16 22:16:20 +000080 default:
Theodore Ts'oa13575f2000-06-12 22:06:16 +000081 label = _("Unknown pass?!?");
Theodore Ts'oa8519a21998-02-16 22:16:20 +000082 break;
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000083 }
Theodore Ts'oa13575f2000-06-12 22:06:16 +000084 printf(_("Begin pass %d (max = %lu)\n"), pass, max);
Theodore Ts'o63b44fb1998-02-13 22:58:18 +000085 retval = ext2fs_progress_init(&progress, label, 30,
86 40, max, 0);
87 if (retval)
88 progress = 0;
89 rfs->prog_data = (void *) progress;
90 }
91 if (progress)
92 ext2fs_progress_update(progress, cur);
93 if (cur >= max) {
94 if (progress)
95 ext2fs_progress_close(progress);
96 progress = 0;
97 rfs->prog_data = 0;
98 }
Theodore Ts'o3b627e81998-02-24 20:24:49 +000099 return 0;
Theodore Ts'o63b44fb1998-02-13 22:58:18 +0000100}
101
Theodore Ts'o46c54902006-05-14 15:33:57 -0400102static void determine_fs_stride(ext2_filsys fs)
103{
104 unsigned int group;
105 unsigned long long sum;
Theodore Ts'o5e27a272012-11-29 19:52:39 -0500106 unsigned int has_sb, prev_has_sb = 0, num;
Theodore Ts'o46c54902006-05-14 15:33:57 -0400107 int i_stride, b_stride;
108
Theodore Ts'o96c6a3a2007-05-18 22:06:53 -0400109 if (fs->stride)
110 return;
Theodore Ts'o46c54902006-05-14 15:33:57 -0400111 num = 0; sum = 0;
112 for (group = 0; group < fs->group_desc_count; group++) {
113 has_sb = ext2fs_bg_has_super(fs, group);
114 if (group == 0 || has_sb != prev_has_sb)
115 goto next;
Valerie Aurora Hensond7cca6b2009-10-25 21:43:47 -0400116 b_stride = ext2fs_block_bitmap_loc(fs, group) -
117 ext2fs_block_bitmap_loc(fs, group - 1) -
Theodore Ts'o46c54902006-05-14 15:33:57 -0400118 fs->super->s_blocks_per_group;
Valerie Aurora Hensond7cca6b2009-10-25 21:43:47 -0400119 i_stride = ext2fs_inode_bitmap_loc(fs, group) -
120 ext2fs_inode_bitmap_loc(fs, group - 1) -
Theodore Ts'o46c54902006-05-14 15:33:57 -0400121 fs->super->s_blocks_per_group;
122 if (b_stride != i_stride ||
123 b_stride < 0)
124 goto next;
125
126 /* printf("group %d has stride %d\n", group, b_stride); */
127 sum += b_stride;
128 num++;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400129
Theodore Ts'o46c54902006-05-14 15:33:57 -0400130 next:
131 prev_has_sb = has_sb;
132 }
133
134 if (fs->group_desc_count > 12 && num < 3)
135 sum = 0;
136
137 if (num)
138 fs->stride = sum / num;
139 else
140 fs->stride = 0;
141
Theodore Ts'o96c6a3a2007-05-18 22:06:53 -0400142 fs->super->s_raid_stride = fs->stride;
143 ext2fs_mark_super_dirty(fs);
144
Theodore Ts'o46c54902006-05-14 15:33:57 -0400145#if 0
146 if (fs->stride)
147 printf("Using RAID stride of %d\n", fs->stride);
148#endif
149}
150
Philipp Thomas0d89e5a2013-01-27 22:41:44 -0500151static void bigalloc_check(ext2_filsys fs, int force)
Theodore Ts'oa713a7f2013-01-21 19:07:38 -0500152{
153 if (!force && EXT2_HAS_RO_COMPAT_FEATURE(fs->super,
154 EXT4_FEATURE_RO_COMPAT_BIGALLOC)) {
Andreas Dilger45ff69f2013-12-15 22:11:40 -0500155 fprintf(stderr, "%s", _("\nResizing bigalloc file systems has "
156 "not been fully tested. Proceed at\n"
157 "your own risk! Use the force option "
158 "if you want to go ahead anyway.\n\n"));
Theodore Ts'oa713a7f2013-01-21 19:07:38 -0500159 exit(1);
160 }
161}
162
Theodore Ts'o0a617312000-02-02 19:14:36 +0000163int main (int argc, char ** argv)
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000164{
165 errcode_t retval;
166 ext2_filsys fs;
167 int c;
Theodore Ts'o05e112a1997-06-14 07:28:44 +0000168 int flags = 0;
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000169 int flush = 0;
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000170 int force = 0;
Theodore Ts'o5d2ef122006-03-18 20:03:47 -0500171 int io_flags = 0;
Josef Bacik199ddaa2008-03-13 13:46:10 -0400172 int force_min_size = 0;
173 int print_min_size = 0;
Theodore Ts'ofe073572005-12-29 15:39:40 -0500174 int fd, ret;
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400175 blk64_t new_size = 0;
176 blk64_t max_size = 0;
177 blk64_t min_size = 0;
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000178 io_manager io_ptr;
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500179 char *new_size_str = 0;
Theodore Ts'o46c54902006-05-14 15:33:57 -0400180 int use_stride = -1;
Andreas Dilger7270fbe2012-02-24 00:48:57 -0700181 ext2fs_struct_stat st_buf;
Theodore Ts'ofe073572005-12-29 15:39:40 -0500182 __s64 new_file_size;
Theodore Ts'o54434922003-12-07 01:28:50 -0500183 unsigned int sys_page_size = 4096;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -0400184 long sysval;
Theodore Ts'obf692352006-03-17 19:45:45 -0500185 int len, mount_flags;
186 char *mtpt;
Theodore Ts'oddc32a02003-05-03 18:45:55 -0400187
188#ifdef ENABLE_NLS
189 setlocale(LC_MESSAGES, "");
190 setlocale(LC_CTYPE, "");
191 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
192 textdomain(NLS_CAT_NAME);
Theodore Ts'o9d4507c2011-10-05 01:00:30 -0400193 set_com_err_gettext(gettext);
Theodore Ts'oddc32a02003-05-03 18:45:55 -0400194#endif
195
Theodore Ts'oa6d83022006-12-26 03:38:07 -0500196 add_error_table(&et_ext2_error_table);
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000197
Theodore Ts'of35fd3d2005-05-09 16:22:17 -0400198 fprintf (stderr, "resize2fs %s (%s)\n",
Theodore Ts'oba0af751998-03-09 17:41:53 +0000199 E2FSPROGS_VERSION, E2FSPROGS_DATE);
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000200 if (argc && *argv)
201 program_name = *argv;
Theodore Ts'o2e561e01998-04-08 06:18:37 +0000202
Josef Bacik199ddaa2008-03-13 13:46:10 -0400203 while ((c = getopt (argc, argv, "d:fFhMPpS:")) != EOF) {
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000204 switch (c) {
205 case 'h':
206 usage(program_name);
207 break;
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000208 case 'f':
209 force = 1;
210 break;
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000211 case 'F':
212 flush = 1;
213 break;
Josef Bacik199ddaa2008-03-13 13:46:10 -0400214 case 'M':
215 force_min_size = 1;
216 break;
217 case 'P':
218 print_min_size = 1;
219 break;
Theodore Ts'o05e112a1997-06-14 07:28:44 +0000220 case 'd':
221 flags |= atoi(optarg);
222 break;
223 case 'p':
224 flags |= RESIZE_PERCENT_COMPLETE;
225 break;
Theodore Ts'o46c54902006-05-14 15:33:57 -0400226 case 'S':
227 use_stride = atoi(optarg);
228 break;
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000229 default:
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000230 usage(program_name);
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000231 }
232 }
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000233 if (optind == argc)
234 usage(program_name);
Theodore Ts'o2e561e01998-04-08 06:18:37 +0000235
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000236 device_name = argv[optind++];
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500237 if (optind < argc)
238 new_size_str = argv[optind++];
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000239 if (optind < argc)
240 usage(program_name);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400241
Theodore Ts'o2e8ca9a2004-11-30 14:07:11 -0500242 io_options = strchr(device_name, '?');
243 if (io_options)
244 *io_options++ = 0;
245
Theodore Ts'obf692352006-03-17 19:45:45 -0500246 /*
247 * Figure out whether or not the device is mounted, and if it is
248 * where it is mounted.
249 */
250 len=80;
251 while (1) {
252 mtpt = malloc(len);
253 if (!mtpt)
254 return ENOMEM;
255 mtpt[len-1] = 0;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400256 retval = ext2fs_check_mount_point(device_name, &mount_flags,
Theodore Ts'obf692352006-03-17 19:45:45 -0500257 mtpt, len);
258 if (retval) {
259 com_err("ext2fs_check_mount_point", retval,
260 _("while determining whether %s is mounted."),
261 device_name);
262 exit(1);
263 }
Theodore Ts'o3a4d9862009-07-02 13:54:22 -0400264 if (!(mount_flags & EXT2_MF_MOUNTED) || (mtpt[len-1] == 0))
Theodore Ts'obf692352006-03-17 19:45:45 -0500265 break;
266 free(mtpt);
267 len = 2 * len;
268 }
Theodore Ts'ofe073572005-12-29 15:39:40 -0500269
Theodore Ts'oc4012e52011-10-06 13:28:07 -0400270 fd = ext2fs_open_file(device_name, O_RDWR, 0);
Theodore Ts'ofe073572005-12-29 15:39:40 -0500271 if (fd < 0) {
272 com_err("open", errno, _("while opening %s"),
273 device_name);
274 exit(1);
275 }
276
Andreas Dilger7270fbe2012-02-24 00:48:57 -0700277 ret = ext2fs_fstat(fd, &st_buf);
Theodore Ts'ofe073572005-12-29 15:39:40 -0500278 if (ret < 0) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400279 com_err("open", errno,
Theodore Ts'ofe073572005-12-29 15:39:40 -0500280 _("while getting stat information for %s"),
281 device_name);
282 exit(1);
283 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400284
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000285 if (flush) {
Theodore Ts'o48e08e02001-01-11 16:11:11 +0000286 retval = ext2fs_sync_device(fd, 1);
287 if (retval) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400288 com_err(argv[0], retval,
Theodore Ts'oa13575f2000-06-12 22:06:16 +0000289 _("while trying to flush %s"),
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000290 device_name);
291 exit(1);
292 }
Theodore Ts'ofe073572005-12-29 15:39:40 -0500293 }
294
295 if (!S_ISREG(st_buf.st_mode )) {
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000296 close(fd);
Theodore Ts'ofe073572005-12-29 15:39:40 -0500297 fd = -1;
Theodore Ts'oc762c8e1997-06-17 03:52:12 +0000298 }
299
Theodore Ts'of38cf3c2008-09-01 11:17:29 -0400300#ifdef CONFIG_TESTIO_DEBUG
301 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
Theodore Ts'o05e112a1997-06-14 07:28:44 +0000302 io_ptr = test_io_manager;
303 test_io_backing_manager = unix_io_manager;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400304 } else
Theodore Ts'of38cf3c2008-09-01 11:17:29 -0400305#endif
Theodore Ts'o05e112a1997-06-14 07:28:44 +0000306 io_ptr = unix_io_manager;
307
Theodore Ts'o5d2ef122006-03-18 20:03:47 -0500308 if (!(mount_flags & EXT2_MF_MOUNTED))
309 io_flags = EXT2_FLAG_RW | EXT2_FLAG_EXCLUSIVE;
Sami Liedes04cb6f52012-03-22 19:46:56 -0400310
311 io_flags |= EXT2_FLAG_64BITS;
312
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400313 retval = ext2fs_open2(device_name, io_options, io_flags,
Theodore Ts'o2e8ca9a2004-11-30 14:07:11 -0500314 0, 0, io_ptr, &fs);
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000315 if (retval) {
Andreas Dilger45ff69f2013-12-15 22:11:40 -0500316 com_err(program_name, retval, _("while trying to open %s"),
317 device_name);
318 printf("%s", _("Couldn't find valid filesystem superblock.\n"));
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000319 exit (1);
320 }
Jose R. Santos236efed2007-10-21 21:03:52 -0500321
Theodore Ts'o101c84f1998-03-24 16:27:11 +0000322 /*
323 * Check for compatibility with the feature sets. We need to
324 * be more stringent than ext2fs_open().
325 */
Theodore Ts'o76dd5e52002-10-30 23:07:21 -0500326 if (fs->super->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP) {
Theodore Ts'o101c84f1998-03-24 16:27:11 +0000327 com_err(program_name, EXT2_ET_UNSUPP_FEATURE,
328 "(%s)", device_name);
329 exit(1);
330 }
Theodore Ts'oa8d632a2008-06-17 01:53:53 -0400331
Theodore Ts'oe231f172013-09-30 22:12:22 -0400332 min_size = calculate_minimum_resize_size(fs, flags);
Eric Sandeen0d04d882009-05-18 17:11:28 -0500333
Josef Bacik199ddaa2008-03-13 13:46:10 -0400334 if (print_min_size) {
Eric Sandeen8587d392010-07-12 13:27:44 -0500335 if (!force && ((fs->super->s_state & EXT2_ERROR_FS) ||
Eric Sandeen5fa92bc2010-03-31 14:28:42 -0500336 ((fs->super->s_state & EXT2_VALID_FS) == 0))) {
337 fprintf(stderr,
338 _("Please run 'e2fsck -f %s' first.\n\n"),
339 device_name);
340 exit(1);
341 }
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400342 printf(_("Estimated minimum size of the filesystem: %llu\n"),
Eric Sandeen0d04d882009-05-18 17:11:28 -0500343 min_size);
Josef Bacik199ddaa2008-03-13 13:46:10 -0400344 exit(0);
345 }
346
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -0400347 /* Determine the system page size if possible */
348#ifdef HAVE_SYSCONF
349#if (!defined(_SC_PAGESIZE) && defined(_SC_PAGE_SIZE))
350#define _SC_PAGESIZE _SC_PAGE_SIZE
351#endif
352#ifdef _SC_PAGESIZE
353 sysval = sysconf(_SC_PAGESIZE);
354 if (sysval > 0)
355 sys_page_size = sysval;
356#endif /* _SC_PAGESIZE */
357#endif /* HAVE_SYSCONF */
358
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000359 /*
360 * Get the size of the containing partition, and use this for
Theodore Ts'ofe073572005-12-29 15:39:40 -0500361 * defaults and for making sure the new filesystem doesn't
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000362 * exceed the partition size.
363 */
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400364 retval = ext2fs_get_device_size2(device_name, fs->blocksize,
365 &max_size);
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000366 if (retval) {
Andreas Dilger45ff69f2013-12-15 22:11:40 -0500367 com_err(program_name, retval, "%s",
Theodore Ts'oa13575f2000-06-12 22:06:16 +0000368 _("while trying to determine filesystem size"));
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000369 exit(1);
370 }
Josef Bacik199ddaa2008-03-13 13:46:10 -0400371 if (force_min_size)
Peng Tao1d8af182009-09-04 15:22:39 +0800372 new_size = min_size;
Josef Bacik199ddaa2008-03-13 13:46:10 -0400373 else if (new_size_str) {
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400374 new_size = parse_num_blocks2(new_size_str,
375 fs->super->s_log_block_size);
Eric Sandeen279a0002008-10-10 17:38:15 -0500376 if (new_size == 0) {
377 com_err(program_name, 0,
378 _("Invalid new size: %s\n"), new_size_str);
379 exit(1);
380 }
Theodore Ts'o55f4cbd2005-01-05 03:01:06 -0500381 } else {
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000382 new_size = max_size;
Theodore Ts'oa7ccdff2003-07-08 18:03:48 -0400383 /* Round down to an even multiple of a pagesize */
384 if (sys_page_size > fs->blocksize)
385 new_size &= ~((sys_page_size / fs->blocksize)-1);
386 }
Theodore Ts'oea38e502012-09-07 00:05:21 -0400387 if (!EXT2_HAS_INCOMPAT_FEATURE(fs->super,
388 EXT4_FEATURE_INCOMPAT_64BIT)) {
389 /* Take 16T down to 2^32-1 blocks */
390 if (new_size == (1ULL << 32))
391 new_size--;
392 else if (new_size > (1ULL << 32)) {
Andreas Dilger45ff69f2013-12-15 22:11:40 -0500393 com_err(program_name, 0, "%s",
Theodore Ts'oea38e502012-09-07 00:05:21 -0400394 _("New size too large to be "
395 "expressed in 32 bits\n"));
396 exit(1);
397 }
398 }
Theodore Ts'o46c54902006-05-14 15:33:57 -0400399
Eric Sandeen0d04d882009-05-18 17:11:28 -0500400 if (!force && new_size < min_size) {
401 com_err(program_name, 0,
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400402 _("New size smaller than minimum (%llu)\n"), min_size);
Eric Sandeen0d04d882009-05-18 17:11:28 -0500403 exit(1);
404 }
Theodore Ts'o46c54902006-05-14 15:33:57 -0400405 if (use_stride >= 0) {
Andreas Dilgerde8f3a72007-05-25 11:18:11 -0400406 if (use_stride >= (int) fs->super->s_blocks_per_group) {
Andreas Dilger45ff69f2013-12-15 22:11:40 -0500407 com_err(program_name, 0, "%s",
Theodore Ts'o46c54902006-05-14 15:33:57 -0400408 _("Invalid stride length"));
409 exit(1);
410 }
Theodore Ts'o96c6a3a2007-05-18 22:06:53 -0400411 fs->stride = fs->super->s_raid_stride = use_stride;
412 ext2fs_mark_super_dirty(fs);
Theodore Ts'o46c54902006-05-14 15:33:57 -0400413 } else
414 determine_fs_stride(fs);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400415
Theodore Ts'o116db1b2002-04-01 01:28:30 -0500416 /*
417 * If we are resizing a plain file, and it's not big enough,
418 * automatically extend it in a sparse fashion by writing the
419 * last requested block.
420 */
Theodore Ts'ofe073572005-12-29 15:39:40 -0500421 new_file_size = ((__u64) new_size) * fs->blocksize;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400422 if ((__u64) new_file_size >
Theodore Ts'ofe073572005-12-29 15:39:40 -0500423 (((__u64) 1) << (sizeof(st_buf.st_size)*8 - 1)) - 1)
424 fd = -1;
425 if ((new_file_size > st_buf.st_size) &&
426 (fd > 0)) {
427 if ((ext2fs_llseek(fd, new_file_size-1, SEEK_SET) >= 0) &&
428 (write(fd, "0", 1) == 1))
Theodore Ts'o116db1b2002-04-01 01:28:30 -0500429 max_size = new_size;
Theodore Ts'o116db1b2002-04-01 01:28:30 -0500430 }
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000431 if (!force && (new_size > max_size)) {
Theodore Ts'oa13575f2000-06-12 22:06:16 +0000432 fprintf(stderr, _("The containing partition (or device)"
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400433 " is only %llu (%dk) blocks.\nYou requested a new size"
434 " of %llu blocks.\n\n"), max_size,
Theodore Ts'o792a0882003-05-13 23:32:59 -0400435 fs->blocksize / 1024, new_size);
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000436 exit(1);
437 }
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400438 if (new_size == ext2fs_blocks_count(fs->super)) {
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400439 fprintf(stderr, _("The filesystem is already %llu blocks "
Theodore Ts'oa13575f2000-06-12 22:06:16 +0000440 "long. Nothing to do!\n\n"), new_size);
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000441 exit(0);
442 }
Theodore Ts'obf692352006-03-17 19:45:45 -0500443 if (mount_flags & EXT2_MF_MOUNTED) {
Theodore Ts'oa713a7f2013-01-21 19:07:38 -0500444 bigalloc_check(fs, force);
Theodore Ts'obf692352006-03-17 19:45:45 -0500445 retval = online_resize_fs(fs, mtpt, &new_size, flags);
446 } else {
447 if (!force && ((fs->super->s_lastcheck < fs->super->s_mtime) ||
448 (fs->super->s_state & EXT2_ERROR_FS) ||
449 ((fs->super->s_state & EXT2_VALID_FS) == 0))) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400450 fprintf(stderr,
Theodore Ts'obf692352006-03-17 19:45:45 -0500451 _("Please run 'e2fsck -f %s' first.\n\n"),
452 device_name);
453 exit(1);
454 }
Theodore Ts'oa713a7f2013-01-21 19:07:38 -0500455 bigalloc_check(fs, force);
Theodore Ts'o96cdb372009-07-10 13:14:00 -0400456 printf(_("Resizing the filesystem on "
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400457 "%s to %llu (%dk) blocks.\n"),
Theodore Ts'obf692352006-03-17 19:45:45 -0500458 device_name, new_size, fs->blocksize / 1024);
459 retval = resize_fs(fs, &new_size, flags,
460 ((flags & RESIZE_PERCENT_COMPLETE) ?
461 resize_progress_func : 0));
Theodore Ts'of4b2a6d1998-02-21 04:20:44 +0000462 }
Theodore Ts'o3a4d9862009-07-02 13:54:22 -0400463 free(mtpt);
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000464 if (retval) {
Theodore Ts'oa13575f2000-06-12 22:06:16 +0000465 com_err(program_name, retval, _("while trying to resize %s"),
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000466 device_name);
Theodore Ts'o96cdb372009-07-10 13:14:00 -0400467 fprintf(stderr,
468 _("Please run 'e2fsck -fy %s' to fix the filesystem\n"
469 "after the aborted resize operation.\n"),
470 device_name);
471 ext2fs_close(fs);
Theodore Ts'o16082112002-04-09 12:46:19 -0400472 exit(1);
Theodore Ts'o1e1da291997-06-09 14:51:29 +0000473 }
Valerie Aurora Henson8728d502010-06-13 18:00:00 -0400474 printf(_("The filesystem on %s is now %llu blocks long.\n\n"),
Theodore Ts'o7e71e4c1998-09-30 00:54:35 +0000475 device_name, new_size);
Theodore Ts'ofe073572005-12-29 15:39:40 -0500476
477 if ((st_buf.st_size > new_file_size) &&
478 (fd > 0)) {
Theodore Ts'o261cd392008-01-21 13:45:00 -0500479#ifdef HAVE_FTRUNCATE64
Theodore Ts'ofb725562009-04-22 15:10:36 -0400480 retval = ftruncate64(fd, new_file_size);
Theodore Ts'ofe073572005-12-29 15:39:40 -0500481#else
Theodore Ts'ofb725562009-04-22 15:10:36 -0400482 retval = 0;
Theodore Ts'o98dca6c2008-01-21 13:43:18 -0500483 /* Only truncate if new_file_size doesn't overflow off_t */
484 if (((off_t) new_file_size) == new_file_size)
Theodore Ts'ofb725562009-04-22 15:10:36 -0400485 retval = ftruncate(fd, (off_t) new_file_size);
Theodore Ts'ofe073572005-12-29 15:39:40 -0500486#endif
Theodore Ts'ofb725562009-04-22 15:10:36 -0400487 if (retval)
488 com_err(program_name, retval,
489 _("while trying to truncate %s"),
490 device_name);
Theodore Ts'ofe073572005-12-29 15:39:40 -0500491 }
492 if (fd > 0)
493 close(fd);
Theodore Ts'oa6d83022006-12-26 03:38:07 -0500494 remove_error_table(&et_ext2_error_table);
Theodore Ts'o0a617312000-02-02 19:14:36 +0000495 return (0);
Theodore Ts'o24b2c7a1997-06-07 20:42:58 +0000496}