]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - misc/tune2fs.c
tune2fs: Fix format string warnings
[thirdparty/e2fsprogs.git] / misc / tune2fs.c
1 /*
2 * tune2fs.c - Change the file system parameters on an ext2 file system
3 *
4 * Copyright (C) 1992, 1993, 1994 Remy Card <card@masi.ibp.fr>
5 * Laboratoire MASI, Institut Blaise Pascal
6 * Universite Pierre et Marie Curie (Paris VI)
7 *
8 * Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o.
9 *
10 * %Begin-Header%
11 * This file may be redistributed under the terms of the GNU Public
12 * License.
13 * %End-Header%
14 */
15
16 /*
17 * History:
18 * 93/06/01 - Creation
19 * 93/10/31 - Added the -c option to change the maximal mount counts
20 * 93/12/14 - Added -l flag to list contents of superblock
21 * M.J.E. Mol (marcel@duteca.et.tudelft.nl)
22 * F.W. ten Wolde (franky@duteca.et.tudelft.nl)
23 * 93/12/29 - Added the -e option to change errors behavior
24 * 94/02/27 - Ported to use the ext2fs library
25 * 94/03/06 - Added the checks interval from Uwe Ohse (uwe@tirka.gun.de)
26 */
27
28 #define _XOPEN_SOURCE 600 /* for inclusion of strptime() */
29 #define _BSD_SOURCE /* for inclusion of strcasecmp() */
30 #include <fcntl.h>
31 #include <grp.h>
32 #ifdef HAVE_GETOPT_H
33 #include <getopt.h>
34 #else
35 extern char *optarg;
36 extern int optind;
37 #endif
38 #include <pwd.h>
39 #include <stdio.h>
40 #ifdef HAVE_STDLIB_H
41 #include <stdlib.h>
42 #endif
43 #include <string.h>
44 #include <time.h>
45 #include <unistd.h>
46 #include <sys/types.h>
47 #include <libgen.h>
48 #include <limits.h>
49
50 #include "ext2fs/ext2_fs.h"
51 #include "ext2fs/ext2fs.h"
52 #include "et/com_err.h"
53 #include "uuid/uuid.h"
54 #include "e2p/e2p.h"
55 #include "jfs_user.h"
56 #include "util.h"
57 #include "blkid/blkid.h"
58
59 #include "../version.h"
60 #include "nls-enable.h"
61
62 const char *program_name = "tune2fs";
63 char *device_name;
64 char *new_label, *new_last_mounted, *new_UUID;
65 char *io_options;
66 static int c_flag, C_flag, e_flag, f_flag, g_flag, i_flag, l_flag, L_flag;
67 static int m_flag, M_flag, r_flag, s_flag = -1, u_flag, U_flag, T_flag;
68 static int I_flag;
69 static time_t last_check_time;
70 static int print_label;
71 static int max_mount_count, mount_count, mount_flags;
72 static unsigned long interval, reserved_blocks;
73 static double reserved_ratio;
74 static unsigned long resgid, resuid;
75 static unsigned short errors;
76 static int open_flag;
77 static char *features_cmd;
78 static char *mntopts_cmd;
79 static int stride, stripe_width;
80 static int stride_set, stripe_width_set;
81 static char *extended_cmd;
82 static unsigned long new_inode_size;
83
84 int journal_size, journal_flags;
85 char *journal_device;
86
87 static struct list_head blk_move_list;
88
89 struct blk_move {
90 struct list_head list;
91 blk_t old_loc;
92 blk_t new_loc;
93 };
94
95
96 static const char *please_fsck = N_("Please run e2fsck on the filesystem.\n");
97
98 #ifdef CONFIG_BUILD_FINDFS
99 void do_findfs(int argc, char **argv);
100 #endif
101
102 static void usage(void)
103 {
104 fprintf(stderr,
105 _("Usage: %s [-c max_mounts_count] [-e errors_behavior] "
106 "[-g group]\n"
107 "\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n"
108 "\t[-m reserved_blocks_percent] "
109 "[-o [^]mount_options[,...]] \n"
110 "\t[-r reserved_blocks_count] [-u user] [-C mount_count] "
111 "[-L volume_label]\n"
112 "\t[-M last_mounted_dir] [-O [^]feature[,...]]\n"
113 "\t[-E extended-option[,...]] [-T last_check_time] "
114 "[-U UUID]\n\t[ -I new_inode_size ] device\n"), program_name);
115 exit(1);
116 }
117
118 static __u32 ok_features[3] = {
119 /* Compat */
120 EXT3_FEATURE_COMPAT_HAS_JOURNAL |
121 EXT2_FEATURE_COMPAT_DIR_INDEX,
122 /* Incompat */
123 EXT2_FEATURE_INCOMPAT_FILETYPE |
124 EXT3_FEATURE_INCOMPAT_EXTENTS |
125 EXT4_FEATURE_INCOMPAT_FLEX_BG,
126 /* R/O compat */
127 EXT2_FEATURE_RO_COMPAT_LARGE_FILE |
128 EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
129 EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
130 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
131 EXT4_FEATURE_RO_COMPAT_GDT_CSUM |
132 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER
133 };
134
135 static __u32 clear_ok_features[3] = {
136 /* Compat */
137 EXT3_FEATURE_COMPAT_HAS_JOURNAL |
138 EXT2_FEATURE_COMPAT_RESIZE_INODE |
139 EXT2_FEATURE_COMPAT_DIR_INDEX,
140 /* Incompat */
141 EXT2_FEATURE_INCOMPAT_FILETYPE |
142 EXT4_FEATURE_INCOMPAT_FLEX_BG,
143 /* R/O compat */
144 EXT2_FEATURE_RO_COMPAT_LARGE_FILE |
145 EXT4_FEATURE_RO_COMPAT_HUGE_FILE|
146 EXT4_FEATURE_RO_COMPAT_DIR_NLINK|
147 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE|
148 EXT4_FEATURE_RO_COMPAT_GDT_CSUM
149 };
150
151 /*
152 * Remove an external journal from the filesystem
153 */
154 static void remove_journal_device(ext2_filsys fs)
155 {
156 char *journal_path;
157 ext2_filsys jfs;
158 char buf[1024];
159 journal_superblock_t *jsb;
160 int i, nr_users;
161 errcode_t retval;
162 int commit_remove_journal = 0;
163 io_manager io_ptr;
164
165 if (f_flag)
166 commit_remove_journal = 1; /* force removal even if error */
167
168 uuid_unparse(fs->super->s_journal_uuid, buf);
169 journal_path = blkid_get_devname(NULL, "UUID", buf);
170
171 if (!journal_path) {
172 journal_path =
173 ext2fs_find_block_device(fs->super->s_journal_dev);
174 if (!journal_path)
175 return;
176 }
177
178 #ifdef CONFIG_TESTIO_DEBUG
179 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
180 io_ptr = test_io_manager;
181 test_io_backing_manager = unix_io_manager;
182 } else
183 #endif
184 io_ptr = unix_io_manager;
185 retval = ext2fs_open(journal_path, EXT2_FLAG_RW|
186 EXT2_FLAG_JOURNAL_DEV_OK, 0,
187 fs->blocksize, io_ptr, &jfs);
188 if (retval) {
189 com_err(program_name, retval,
190 _("while trying to open external journal"));
191 goto no_valid_journal;
192 }
193 if (!(jfs->super->s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) {
194 fprintf(stderr, _("%s is not a journal device.\n"),
195 journal_path);
196 goto no_valid_journal;
197 }
198
199 /* Get the journal superblock */
200 if ((retval = io_channel_read_blk(jfs->io, 1, -1024, buf))) {
201 com_err(program_name, retval,
202 _("while reading journal superblock"));
203 goto no_valid_journal;
204 }
205
206 jsb = (journal_superblock_t *) buf;
207 if ((jsb->s_header.h_magic != (unsigned) ntohl(JFS_MAGIC_NUMBER)) ||
208 (jsb->s_header.h_blocktype != (unsigned) ntohl(JFS_SUPERBLOCK_V2))) {
209 fputs(_("Journal superblock not found!\n"), stderr);
210 goto no_valid_journal;
211 }
212
213 /* Find the filesystem UUID */
214 nr_users = ntohl(jsb->s_nr_users);
215 for (i = 0; i < nr_users; i++) {
216 if (memcmp(fs->super->s_uuid,
217 &jsb->s_users[i*16], 16) == 0)
218 break;
219 }
220 if (i >= nr_users) {
221 fputs(_("Filesystem's UUID not found on journal device.\n"),
222 stderr);
223 commit_remove_journal = 1;
224 goto no_valid_journal;
225 }
226 nr_users--;
227 for (i = 0; i < nr_users; i++)
228 memcpy(&jsb->s_users[i*16], &jsb->s_users[(i+1)*16], 16);
229 jsb->s_nr_users = htonl(nr_users);
230
231 /* Write back the journal superblock */
232 if ((retval = io_channel_write_blk(jfs->io, 1, -1024, buf))) {
233 com_err(program_name, retval,
234 "while writing journal superblock.");
235 goto no_valid_journal;
236 }
237
238 commit_remove_journal = 1;
239
240 no_valid_journal:
241 if (commit_remove_journal == 0) {
242 fputs(_("Journal NOT removed\n"), stderr);
243 exit(1);
244 }
245 fs->super->s_journal_dev = 0;
246 uuid_clear(fs->super->s_journal_uuid);
247 ext2fs_mark_super_dirty(fs);
248 fputs(_("Journal removed\n"), stdout);
249 free(journal_path);
250 }
251
252 /* Helper function for remove_journal_inode */
253 static int release_blocks_proc(ext2_filsys fs, blk_t *blocknr,
254 int blockcnt EXT2FS_ATTR((unused)),
255 void *private EXT2FS_ATTR((unused)))
256 {
257 blk_t block;
258 int group;
259
260 block = *blocknr;
261 ext2fs_unmark_block_bitmap(fs->block_map, block);
262 group = ext2fs_group_of_blk(fs, block);
263 fs->group_desc[group].bg_free_blocks_count++;
264 ext2fs_group_desc_csum_set(fs, group);
265 fs->super->s_free_blocks_count++;
266 return 0;
267 }
268
269 /*
270 * Remove the journal inode from the filesystem
271 */
272 static void remove_journal_inode(ext2_filsys fs)
273 {
274 struct ext2_inode inode;
275 errcode_t retval;
276 ino_t ino = fs->super->s_journal_inum;
277
278 retval = ext2fs_read_inode(fs, ino, &inode);
279 if (retval) {
280 com_err(program_name, retval,
281 _("while reading journal inode"));
282 exit(1);
283 }
284 if (ino == EXT2_JOURNAL_INO) {
285 retval = ext2fs_read_bitmaps(fs);
286 if (retval) {
287 com_err(program_name, retval,
288 _("while reading bitmaps"));
289 exit(1);
290 }
291 retval = ext2fs_block_iterate(fs, ino,
292 BLOCK_FLAG_READ_ONLY, NULL,
293 release_blocks_proc, NULL);
294 if (retval) {
295 com_err(program_name, retval,
296 _("while clearing journal inode"));
297 exit(1);
298 }
299 memset(&inode, 0, sizeof(inode));
300 ext2fs_mark_bb_dirty(fs);
301 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
302 } else
303 inode.i_flags &= ~EXT2_IMMUTABLE_FL;
304 retval = ext2fs_write_inode(fs, ino, &inode);
305 if (retval) {
306 com_err(program_name, retval,
307 _("while writing journal inode"));
308 exit(1);
309 }
310 fs->super->s_journal_inum = 0;
311 ext2fs_mark_super_dirty(fs);
312 }
313
314 /*
315 * Update the default mount options
316 */
317 static void update_mntopts(ext2_filsys fs, char *mntopts)
318 {
319 struct ext2_super_block *sb = fs->super;
320
321 if (e2p_edit_mntopts(mntopts, &sb->s_default_mount_opts, ~0)) {
322 fprintf(stderr, _("Invalid mount option set: %s\n"),
323 mntopts);
324 exit(1);
325 }
326 ext2fs_mark_super_dirty(fs);
327 }
328
329 /*
330 * Update the feature set as provided by the user.
331 */
332 static void update_feature_set(ext2_filsys fs, char *features)
333 {
334 struct ext2_super_block *sb = fs->super;
335 __u32 old_features[3];
336 int type_err;
337 unsigned int mask_err;
338
339 #define FEATURE_ON(type, mask) (!(old_features[(type)] & (mask)) && \
340 ((&sb->s_feature_compat)[(type)] & (mask)))
341 #define FEATURE_OFF(type, mask) ((old_features[(type)] & (mask)) && \
342 !((&sb->s_feature_compat)[(type)] & (mask)))
343 #define FEATURE_CHANGED(type, mask) ((mask) & \
344 (old_features[(type)] ^ (&sb->s_feature_compat)[(type)]))
345
346 old_features[E2P_FEATURE_COMPAT] = sb->s_feature_compat;
347 old_features[E2P_FEATURE_INCOMPAT] = sb->s_feature_incompat;
348 old_features[E2P_FEATURE_RO_INCOMPAT] = sb->s_feature_ro_compat;
349
350 if (e2p_edit_feature2(features, &sb->s_feature_compat,
351 ok_features, clear_ok_features,
352 &type_err, &mask_err)) {
353 if (!mask_err)
354 fprintf(stderr,
355 _("Invalid filesystem option set: %s\n"),
356 features);
357 else if (type_err & E2P_FEATURE_NEGATE_FLAG)
358 fprintf(stderr, _("Clearing filesystem feature '%s' "
359 "not supported.\n"),
360 e2p_feature2string(type_err &
361 E2P_FEATURE_TYPE_MASK,
362 mask_err));
363 else
364 fprintf(stderr, _("Setting filesystem feature '%s' "
365 "not supported.\n"),
366 e2p_feature2string(type_err, mask_err));
367 exit(1);
368 }
369
370 if (FEATURE_OFF(E2P_FEATURE_COMPAT, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
371 if ((mount_flags & EXT2_MF_MOUNTED) &&
372 !(mount_flags & EXT2_MF_READONLY)) {
373 fputs(_("The has_journal feature may only be "
374 "cleared when the filesystem is\n"
375 "unmounted or mounted "
376 "read-only.\n"), stderr);
377 exit(1);
378 }
379 if (sb->s_feature_incompat &
380 EXT3_FEATURE_INCOMPAT_RECOVER) {
381 fputs(_("The needs_recovery flag is set. "
382 "Please run e2fsck before clearing\n"
383 "the has_journal flag.\n"), stderr);
384 exit(1);
385 }
386 if (sb->s_journal_inum) {
387 remove_journal_inode(fs);
388 }
389 if (sb->s_journal_dev) {
390 remove_journal_device(fs);
391 }
392 }
393
394 if (FEATURE_ON(E2P_FEATURE_COMPAT, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
395 /*
396 * If adding a journal flag, let the create journal
397 * code below handle setting the flag and creating the
398 * journal. We supply a default size if necessary.
399 */
400 if (!journal_size)
401 journal_size = -1;
402 sb->s_feature_compat &= ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
403 }
404
405 if (FEATURE_ON(E2P_FEATURE_COMPAT, EXT2_FEATURE_COMPAT_DIR_INDEX)) {
406 if (!sb->s_def_hash_version)
407 sb->s_def_hash_version = EXT2_HASH_HALF_MD4;
408 if (uuid_is_null((unsigned char *) sb->s_hash_seed))
409 uuid_generate((unsigned char *) sb->s_hash_seed);
410 }
411
412 if (FEATURE_OFF(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_FLEX_BG)) {
413 if (ext2fs_check_desc(fs)) {
414 fputs(_("Clearing the flex_bg flag would "
415 "cause the the filesystem to be\n"
416 "inconsistent.\n"), stderr);
417 exit(1);
418 }
419 }
420
421 if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
422 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
423 if ((mount_flags & EXT2_MF_MOUNTED) &&
424 !(mount_flags & EXT2_MF_READONLY)) {
425 fputs(_("The huge_file feature may only be "
426 "cleared when the filesystem is\n"
427 "unmounted or mounted "
428 "read-only.\n"), stderr);
429 exit(1);
430 }
431 }
432
433 if (sb->s_rev_level == EXT2_GOOD_OLD_REV &&
434 (sb->s_feature_compat || sb->s_feature_ro_compat ||
435 sb->s_feature_incompat))
436 ext2fs_update_dynamic_rev(fs);
437
438 if (FEATURE_CHANGED(E2P_FEATURE_RO_INCOMPAT,
439 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) ||
440 FEATURE_CHANGED(E2P_FEATURE_RO_INCOMPAT,
441 EXT4_FEATURE_RO_COMPAT_GDT_CSUM) ||
442 FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
443 EXT4_FEATURE_RO_COMPAT_HUGE_FILE) ||
444 FEATURE_CHANGED(E2P_FEATURE_INCOMPAT,
445 EXT2_FEATURE_INCOMPAT_FILETYPE) ||
446 FEATURE_CHANGED(E2P_FEATURE_COMPAT,
447 EXT2_FEATURE_COMPAT_RESIZE_INODE) ||
448 FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT,
449 EXT2_FEATURE_RO_COMPAT_LARGE_FILE)) {
450 sb->s_state &= ~EXT2_VALID_FS;
451 printf("\n%s\n", _(please_fsck));
452 if (mount_flags & EXT2_MF_READONLY)
453 printf(_("(and reboot afterwards!)\n"));
454 }
455
456 if ((old_features[E2P_FEATURE_COMPAT] != sb->s_feature_compat) ||
457 (old_features[E2P_FEATURE_INCOMPAT] != sb->s_feature_incompat) ||
458 (old_features[E2P_FEATURE_RO_INCOMPAT] != sb->s_feature_ro_compat))
459 ext2fs_mark_super_dirty(fs);
460 }
461
462 /*
463 * Add a journal to the filesystem.
464 */
465 static void add_journal(ext2_filsys fs)
466 {
467 unsigned long journal_blocks;
468 errcode_t retval;
469 ext2_filsys jfs;
470 io_manager io_ptr;
471
472 if (fs->super->s_feature_compat &
473 EXT3_FEATURE_COMPAT_HAS_JOURNAL) {
474 fputs(_("The filesystem already has a journal.\n"), stderr);
475 goto err;
476 }
477 if (journal_device) {
478 check_plausibility(journal_device);
479 check_mount(journal_device, 0, _("journal"));
480 #ifdef CONFIG_TESTIO_DEBUG
481 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) {
482 io_ptr = test_io_manager;
483 test_io_backing_manager = unix_io_manager;
484 } else
485 #endif
486 io_ptr = unix_io_manager;
487 retval = ext2fs_open(journal_device, EXT2_FLAG_RW|
488 EXT2_FLAG_JOURNAL_DEV_OK, 0,
489 fs->blocksize, io_ptr, &jfs);
490 if (retval) {
491 com_err(program_name, retval,
492 _("\n\twhile trying to open journal on %s\n"),
493 journal_device);
494 goto err;
495 }
496 printf(_("Creating journal on device %s: "),
497 journal_device);
498 fflush(stdout);
499
500 retval = ext2fs_add_journal_device(fs, jfs);
501 ext2fs_close(jfs);
502 if (retval) {
503 com_err(program_name, retval,
504 _("while adding filesystem to journal on %s"),
505 journal_device);
506 goto err;
507 }
508 fputs(_("done\n"), stdout);
509 } else if (journal_size) {
510 fputs(_("Creating journal inode: "), stdout);
511 fflush(stdout);
512 journal_blocks = figure_journal_size(journal_size, fs);
513
514 retval = ext2fs_add_journal_inode(fs, journal_blocks,
515 journal_flags);
516 if (retval) {
517 fprintf(stderr, "\n");
518 com_err(program_name, retval,
519 _("\n\twhile trying to create journal file"));
520 exit(1);
521 } else
522 fputs(_("done\n"), stdout);
523 /*
524 * If the filesystem wasn't mounted, we need to force
525 * the block group descriptors out.
526 */
527 if ((mount_flags & EXT2_MF_MOUNTED) == 0)
528 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
529 }
530 print_check_message(fs);
531 return;
532
533 err:
534 free(journal_device);
535 exit(1);
536 }
537
538
539 static void parse_e2label_options(int argc, char ** argv)
540 {
541 if ((argc < 2) || (argc > 3)) {
542 fputs(_("Usage: e2label device [newlabel]\n"), stderr);
543 exit(1);
544 }
545 io_options = strchr(argv[1], '?');
546 if (io_options)
547 *io_options++ = 0;
548 device_name = blkid_get_devname(NULL, argv[1], NULL);
549 if (!device_name) {
550 com_err("e2label", 0, _("Unable to resolve '%s'"),
551 argv[1]);
552 exit(1);
553 }
554 open_flag = EXT2_FLAG_JOURNAL_DEV_OK;
555 if (argc == 3) {
556 open_flag |= EXT2_FLAG_RW;
557 L_flag = 1;
558 new_label = argv[2];
559 } else
560 print_label++;
561 }
562
563 static time_t parse_time(char *str)
564 {
565 struct tm ts;
566
567 if (strcmp(str, "now") == 0) {
568 return (time(0));
569 }
570 memset(&ts, 0, sizeof(ts));
571 #ifdef HAVE_STRPTIME
572 strptime(str, "%Y%m%d%H%M%S", &ts);
573 #else
574 sscanf(str, "%4d%2d%2d%2d%2d%2d", &ts.tm_year, &ts.tm_mon,
575 &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec);
576 ts.tm_year -= 1900;
577 ts.tm_mon -= 1;
578 if (ts.tm_year < 0 || ts.tm_mon < 0 || ts.tm_mon > 11 ||
579 ts.tm_mday < 0 || ts.tm_mday > 31 || ts.tm_hour > 23 ||
580 ts.tm_min > 59 || ts.tm_sec > 61)
581 ts.tm_mday = 0;
582 #endif
583 if (ts.tm_mday == 0) {
584 com_err(program_name, 0,
585 _("Couldn't parse date/time specifier: %s"),
586 str);
587 usage();
588 }
589 ts.tm_isdst = -1;
590 return (mktime(&ts));
591 }
592
593 static void parse_tune2fs_options(int argc, char **argv)
594 {
595 int c;
596 char *tmp;
597 struct group *gr;
598 struct passwd *pw;
599
600 open_flag = 0;
601
602 printf("tune2fs %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE);
603 while ((c = getopt(argc, argv, "c:e:fg:i:jlm:o:r:s:u:C:E:I:J:L:M:O:T:U:")) != EOF)
604 switch (c) {
605 case 'c':
606 max_mount_count = strtol(optarg, &tmp, 0);
607 if (*tmp || max_mount_count > 16000) {
608 com_err(program_name, 0,
609 _("bad mounts count - %s"),
610 optarg);
611 usage();
612 }
613 if (max_mount_count == 0)
614 max_mount_count = -1;
615 c_flag = 1;
616 open_flag = EXT2_FLAG_RW;
617 break;
618 case 'C':
619 mount_count = strtoul(optarg, &tmp, 0);
620 if (*tmp || mount_count > 16000) {
621 com_err(program_name, 0,
622 _("bad mounts count - %s"),
623 optarg);
624 usage();
625 }
626 C_flag = 1;
627 open_flag = EXT2_FLAG_RW;
628 break;
629 case 'e':
630 if (strcmp(optarg, "continue") == 0)
631 errors = EXT2_ERRORS_CONTINUE;
632 else if (strcmp(optarg, "remount-ro") == 0)
633 errors = EXT2_ERRORS_RO;
634 else if (strcmp(optarg, "panic") == 0)
635 errors = EXT2_ERRORS_PANIC;
636 else {
637 com_err(program_name, 0,
638 _("bad error behavior - %s"),
639 optarg);
640 usage();
641 }
642 e_flag = 1;
643 open_flag = EXT2_FLAG_RW;
644 break;
645 case 'E':
646 extended_cmd = optarg;
647 open_flag |= EXT2_FLAG_RW;
648 break;
649 case 'f': /* Force */
650 f_flag = 1;
651 break;
652 case 'g':
653 resgid = strtoul(optarg, &tmp, 0);
654 if (*tmp) {
655 gr = getgrnam(optarg);
656 if (gr == NULL)
657 tmp = optarg;
658 else {
659 resgid = gr->gr_gid;
660 *tmp = 0;
661 }
662 }
663 if (*tmp) {
664 com_err(program_name, 0,
665 _("bad gid/group name - %s"),
666 optarg);
667 usage();
668 }
669 g_flag = 1;
670 open_flag = EXT2_FLAG_RW;
671 break;
672 case 'i':
673 interval = strtoul(optarg, &tmp, 0);
674 switch (*tmp) {
675 case 's':
676 tmp++;
677 break;
678 case '\0':
679 case 'd':
680 case 'D': /* days */
681 interval *= 86400;
682 if (*tmp != '\0')
683 tmp++;
684 break;
685 case 'm':
686 case 'M': /* months! */
687 interval *= 86400 * 30;
688 tmp++;
689 break;
690 case 'w':
691 case 'W': /* weeks */
692 interval *= 86400 * 7;
693 tmp++;
694 break;
695 }
696 if (*tmp) {
697 com_err(program_name, 0,
698 _("bad interval - %s"), optarg);
699 usage();
700 }
701 i_flag = 1;
702 open_flag = EXT2_FLAG_RW;
703 break;
704 case 'j':
705 if (!journal_size)
706 journal_size = -1;
707 open_flag = EXT2_FLAG_RW;
708 break;
709 case 'J':
710 parse_journal_opts(optarg);
711 open_flag = EXT2_FLAG_RW;
712 break;
713 case 'l':
714 l_flag = 1;
715 break;
716 case 'L':
717 new_label = optarg;
718 L_flag = 1;
719 open_flag |= EXT2_FLAG_RW |
720 EXT2_FLAG_JOURNAL_DEV_OK;
721 break;
722 case 'm':
723 reserved_ratio = strtod(optarg, &tmp);
724 if (*tmp || reserved_ratio > 50 ||
725 reserved_ratio < 0) {
726 com_err(program_name, 0,
727 _("bad reserved block ratio - %s"),
728 optarg);
729 usage();
730 }
731 m_flag = 1;
732 open_flag = EXT2_FLAG_RW;
733 break;
734 case 'M':
735 new_last_mounted = optarg;
736 M_flag = 1;
737 open_flag = EXT2_FLAG_RW;
738 break;
739 case 'o':
740 if (mntopts_cmd) {
741 com_err(program_name, 0,
742 _("-o may only be specified once"));
743 usage();
744 }
745 mntopts_cmd = optarg;
746 open_flag = EXT2_FLAG_RW;
747 break;
748
749 case 'O':
750 if (features_cmd) {
751 com_err(program_name, 0,
752 _("-O may only be specified once"));
753 usage();
754 }
755 features_cmd = optarg;
756 open_flag = EXT2_FLAG_RW;
757 break;
758 case 'r':
759 reserved_blocks = strtoul(optarg, &tmp, 0);
760 if (*tmp) {
761 com_err(program_name, 0,
762 _("bad reserved blocks count - %s"),
763 optarg);
764 usage();
765 }
766 r_flag = 1;
767 open_flag = EXT2_FLAG_RW;
768 break;
769 case 's': /* Deprecated */
770 s_flag = atoi(optarg);
771 open_flag = EXT2_FLAG_RW;
772 break;
773 case 'T':
774 T_flag = 1;
775 last_check_time = parse_time(optarg);
776 open_flag = EXT2_FLAG_RW;
777 break;
778 case 'u':
779 resuid = strtoul(optarg, &tmp, 0);
780 if (*tmp) {
781 pw = getpwnam(optarg);
782 if (pw == NULL)
783 tmp = optarg;
784 else {
785 resuid = pw->pw_uid;
786 *tmp = 0;
787 }
788 }
789 if (*tmp) {
790 com_err(program_name, 0,
791 _("bad uid/user name - %s"),
792 optarg);
793 usage();
794 }
795 u_flag = 1;
796 open_flag = EXT2_FLAG_RW;
797 break;
798 case 'U':
799 new_UUID = optarg;
800 U_flag = 1;
801 open_flag = EXT2_FLAG_RW |
802 EXT2_FLAG_JOURNAL_DEV_OK;
803 break;
804 case 'I':
805 new_inode_size = strtoul(optarg, &tmp, 0);
806 if (*tmp) {
807 com_err(program_name, 0,
808 _("bad inode size - %s"),
809 optarg);
810 usage();
811 }
812 if (!((new_inode_size &
813 (new_inode_size - 1)) == 0)) {
814 com_err(program_name, 0,
815 _("Inode size must be a "
816 "power of two- %s"),
817 optarg);
818 usage();
819 }
820 open_flag = EXT2_FLAG_RW;
821 I_flag = 1;
822 break;
823 default:
824 usage();
825 }
826 if (optind < argc - 1 || optind == argc)
827 usage();
828 if (!open_flag && !l_flag)
829 usage();
830 io_options = strchr(argv[optind], '?');
831 if (io_options)
832 *io_options++ = 0;
833 device_name = blkid_get_devname(NULL, argv[optind], NULL);
834 if (!device_name) {
835 com_err("tune2fs", 0, _("Unable to resolve '%s'"),
836 argv[optind]);
837 exit(1);
838 }
839 }
840
841 #ifdef CONFIG_BUILD_FINDFS
842 void do_findfs(int argc, char **argv)
843 {
844 char *dev;
845
846 if ((argc != 2) ||
847 (strncmp(argv[1], "LABEL=", 6) && strncmp(argv[1], "UUID=", 5))) {
848 fprintf(stderr, "Usage: findfs LABEL=<label>|UUID=<uuid>\n");
849 exit(2);
850 }
851 dev = blkid_get_devname(NULL, argv[1], NULL);
852 if (!dev) {
853 com_err("findfs", 0, _("Unable to resolve '%s'"),
854 argv[1]);
855 exit(1);
856 }
857 puts(dev);
858 exit(0);
859 }
860 #endif
861
862 static void parse_extended_opts(ext2_filsys fs, const char *opts)
863 {
864 char *buf, *token, *next, *p, *arg;
865 int len, hash_alg;
866 int r_usage = 0;
867
868 len = strlen(opts);
869 buf = malloc(len+1);
870 if (!buf) {
871 fprintf(stderr,
872 _("Couldn't allocate memory to parse options!\n"));
873 exit(1);
874 }
875 strcpy(buf, opts);
876 for (token = buf; token && *token; token = next) {
877 p = strchr(token, ',');
878 next = 0;
879 if (p) {
880 *p = 0;
881 next = p+1;
882 }
883 arg = strchr(token, '=');
884 if (arg) {
885 *arg = 0;
886 arg++;
887 }
888 if (!strcmp(token, "test_fs")) {
889 fs->super->s_flags |= EXT2_FLAGS_TEST_FILESYS;
890 printf("Setting test filesystem flag\n");
891 ext2fs_mark_super_dirty(fs);
892 } else if (!strcmp(token, "^test_fs")) {
893 fs->super->s_flags &= ~EXT2_FLAGS_TEST_FILESYS;
894 printf("Clearing test filesystem flag\n");
895 ext2fs_mark_super_dirty(fs);
896 } else if (strcmp(token, "stride") == 0) {
897 if (!arg) {
898 r_usage++;
899 continue;
900 }
901 stride = strtoul(arg, &p, 0);
902 if (*p || (stride == 0)) {
903 fprintf(stderr,
904 _("Invalid RAID stride: %s\n"),
905 arg);
906 r_usage++;
907 continue;
908 }
909 stride_set = 1;
910 } else if (strcmp(token, "stripe-width") == 0 ||
911 strcmp(token, "stripe_width") == 0) {
912 if (!arg) {
913 r_usage++;
914 continue;
915 }
916 stripe_width = strtoul(arg, &p, 0);
917 if (*p || (stripe_width == 0)) {
918 fprintf(stderr,
919 _("Invalid RAID stripe-width: %s\n"),
920 arg);
921 r_usage++;
922 continue;
923 }
924 stripe_width_set = 1;
925 } else if (strcmp(token, "hash_alg") == 0 ||
926 strcmp(token, "hash-alg") == 0) {
927 if (!arg) {
928 r_usage++;
929 continue;
930 }
931 hash_alg = e2p_string2hash(arg);
932 if (hash_alg < 0) {
933 fprintf(stderr,
934 _("Invalid hash algorithm: %s\n"),
935 arg);
936 r_usage++;
937 continue;
938 }
939 fs->super->s_def_hash_version = hash_alg;
940 printf(_("Setting default hash algorithm "
941 "to %s (%d)\n"),
942 arg, hash_alg);
943 ext2fs_mark_super_dirty(fs);
944 } else
945 r_usage++;
946 }
947 if (r_usage) {
948 fprintf(stderr, _("\nBad options specified.\n\n"
949 "Extended options are separated by commas, "
950 "and may take an argument which\n"
951 "\tis set off by an equals ('=') sign.\n\n"
952 "Valid extended options are:\n"
953 "\tstride=<RAID per-disk chunk size in blocks>\n"
954 "\tstripe_width=<RAID stride*data disks in blocks>\n"
955 "\thash_alg=<hash algorithm>\n"
956 "\ttest_fs\n"
957 "\t^test_fs\n"));
958 free(buf);
959 exit(1);
960 }
961 free(buf);
962 }
963
964 /*
965 * Fill in two bitmaps that we need to to control the inode resizing
966 * process. The first is the set of blocks that must be moved, and
967 * the second is the set of blocks which are allocation bitmap blocks
968 * and must be treated specially.
969 */
970 static int get_move_bitmaps(ext2_filsys fs, int new_ino_blks_per_grp,
971 ext2fs_block_bitmap bmap,
972 ext2fs_block_bitmap metadata_bmap)
973 {
974 dgrp_t i;
975 blk_t j, needed_blocks = 0;
976 blk_t i_bmap, b_bmap;
977 blk_t start_blk, end_blk;
978 int num, k;
979
980 for (i = 0; i < fs->group_desc_count; i++) {
981 b_bmap = fs->group_desc[i].bg_block_bitmap;
982 ext2fs_mark_block_bitmap(metadata_bmap, b_bmap);
983 i_bmap = fs->group_desc[i].bg_inode_bitmap;
984 ext2fs_mark_block_bitmap(metadata_bmap, i_bmap);
985
986 start_blk = fs->group_desc[i].bg_inode_table +
987 fs->inode_blocks_per_group;
988
989 end_blk = fs->group_desc[i].bg_inode_table +
990 new_ino_blks_per_grp;
991
992 num=0;
993 for (j = start_blk; j < end_blk; j++) {
994 if (ext2fs_test_block_bitmap(fs->block_map, j)) {
995 /* FIXME!!
996 * What happens if the block is marked
997 * as a bad block
998 */
999 ext2fs_mark_block_bitmap(bmap, j);
1000 needed_blocks++;
1001 } else {
1002 /*
1003 * We are going to use this block for
1004 * inode table. So mark them used.
1005 */
1006 ext2fs_mark_block_bitmap(fs->block_map, j);
1007 }
1008 if ((j == i_bmap) || (j == b_bmap))
1009 num++;
1010 }
1011 if (num <= fs->group_desc[i].bg_free_blocks_count)
1012 continue;
1013 }
1014
1015 if (needed_blocks > fs->super->s_free_blocks_count)
1016 return ENOSPC;
1017
1018 return 0;
1019 }
1020
1021 static int move_block(ext2_filsys fs, ext2fs_block_bitmap bmap,
1022 ext2fs_block_bitmap metadata_bmap)
1023 {
1024 char *buf;
1025 errcode_t retval;
1026 blk_t blk, new_blk, goal;
1027 struct blk_move *bmv;
1028 dgrp_t group;
1029
1030 retval = ext2fs_get_mem(fs->blocksize, &buf);
1031 if (retval)
1032 return retval;
1033
1034 for (new_blk = blk = fs->super->s_first_data_block;
1035 blk < fs->super->s_blocks_count; blk++) {
1036 if (!ext2fs_test_block_bitmap(bmap, blk))
1037 continue;
1038
1039 /*
1040 * If the block is a bitmap block, find a new block in
1041 * the same block group.
1042 */
1043 if (ext2fs_test_block_bitmap(metadata_bmap, blk)) {
1044 group = ext2fs_group_of_blk(fs, blk);
1045 goal = ext2fs_group_first_block(fs, group);
1046 } else
1047 goal = new_blk;
1048
1049 retval = ext2fs_new_block(fs, goal, NULL, &new_blk);
1050 if (retval)
1051 goto err_out;
1052
1053 /* Mark this block as allocated */
1054 ext2fs_mark_block_bitmap(fs->block_map, new_blk);
1055
1056 /* Add it to block move list */
1057 retval = ext2fs_get_mem(sizeof(struct blk_move), &bmv);
1058 if (retval)
1059 goto err_out;
1060
1061 bmv->old_loc = blk;
1062 bmv->new_loc = new_blk;
1063
1064 list_add(&(bmv->list), &blk_move_list);
1065
1066 retval = io_channel_read_blk(fs->io, blk, 1, buf);
1067 if (retval)
1068 goto err_out;
1069
1070 retval = io_channel_write_blk(fs->io, new_blk, 1, buf);
1071 if (retval)
1072 goto err_out;
1073 }
1074
1075 err_out:
1076 ext2fs_free_mem(&buf);
1077 return retval;
1078 }
1079
1080 static blk_t translate_block(blk_t blk)
1081 {
1082 struct list_head *entry;
1083 struct blk_move *bmv;
1084
1085 list_for_each(entry, &blk_move_list) {
1086 bmv = list_entry(entry, struct blk_move, list);
1087 if (bmv->old_loc == blk)
1088 return bmv->new_loc;
1089 }
1090
1091 return 0;
1092 }
1093
1094 static int process_block(ext2_filsys fs EXT2FS_ATTR((unused)),
1095 blk_t *block_nr,
1096 e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)),
1097 blk_t ref_block EXT2FS_ATTR((unused)),
1098 int ref_offset EXT2FS_ATTR((unused)),
1099 void *priv_data)
1100 {
1101 int ret = 0;
1102 blk_t new_blk;
1103 ext2fs_block_bitmap bmap = (ext2fs_block_bitmap) priv_data;
1104
1105 if (!ext2fs_test_block_bitmap(bmap, *block_nr))
1106 return 0;
1107 new_blk = translate_block(*block_nr);
1108 if (new_blk) {
1109 *block_nr = new_blk;
1110 /*
1111 * This will force the ext2fs_write_inode in the iterator
1112 */
1113 ret |= BLOCK_CHANGED;
1114 }
1115
1116 return ret;
1117 }
1118
1119 static int inode_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
1120 {
1121 errcode_t retval = 0;
1122 ext2_ino_t ino;
1123 blk_t blk;
1124 char *block_buf = 0;
1125 struct ext2_inode inode;
1126 ext2_inode_scan scan = NULL;
1127
1128 retval = ext2fs_get_mem(fs->blocksize * 3, &block_buf);
1129 if (retval)
1130 return retval;
1131
1132 retval = ext2fs_open_inode_scan(fs, 0, &scan);
1133 if (retval)
1134 goto err_out;
1135
1136 while (1) {
1137 retval = ext2fs_get_next_inode(scan, &ino, &inode);
1138 if (retval)
1139 goto err_out;
1140
1141 if (!ino)
1142 break;
1143
1144 if (inode.i_links_count == 0)
1145 continue; /* inode not in use */
1146
1147 /* FIXME!!
1148 * If we end up modifying the journal inode
1149 * the sb->s_jnl_blocks will differ. But a
1150 * subsequent e2fsck fixes that.
1151 * Do we need to fix this ??
1152 */
1153
1154 if (inode.i_file_acl &&
1155 ext2fs_test_block_bitmap(bmap, inode.i_file_acl)) {
1156 blk = translate_block(inode.i_file_acl);
1157 if (!blk)
1158 continue;
1159
1160 inode.i_file_acl = blk;
1161
1162 /*
1163 * Write the inode to disk so that inode table
1164 * resizing can work
1165 */
1166 retval = ext2fs_write_inode(fs, ino, &inode);
1167 if (retval)
1168 goto err_out;
1169 }
1170
1171 if (!ext2fs_inode_has_valid_blocks(&inode))
1172 continue;
1173
1174 retval = ext2fs_block_iterate2(fs, ino, 0, block_buf,
1175 process_block, bmap);
1176 if (retval)
1177 goto err_out;
1178
1179 }
1180
1181 err_out:
1182 ext2fs_free_mem(&block_buf);
1183
1184 return retval;
1185 }
1186
1187 /*
1188 * We need to scan for inode and block bitmaps that may need to be
1189 * moved. This can take place if the filesystem was formatted for
1190 * RAID arrays using the mke2fs's extended option "stride".
1191 */
1192 static int group_desc_scan_and_fix(ext2_filsys fs, ext2fs_block_bitmap bmap)
1193 {
1194 dgrp_t i;
1195 blk_t blk, new_blk;
1196
1197 for (i = 0; i < fs->group_desc_count; i++) {
1198 blk = fs->group_desc[i].bg_block_bitmap;
1199 if (ext2fs_test_block_bitmap(bmap, blk)) {
1200 new_blk = translate_block(blk);
1201 if (!new_blk)
1202 continue;
1203 fs->group_desc[i].bg_block_bitmap = new_blk;
1204 }
1205
1206 blk = fs->group_desc[i].bg_inode_bitmap;
1207 if (ext2fs_test_block_bitmap(bmap, blk)) {
1208 new_blk = translate_block(blk);
1209 if (!new_blk)
1210 continue;
1211 fs->group_desc[i].bg_inode_bitmap = new_blk;
1212 }
1213 }
1214 return 0;
1215 }
1216
1217
1218 static int expand_inode_table(ext2_filsys fs, unsigned long new_ino_size)
1219 {
1220 dgrp_t i;
1221 blk_t blk;
1222 errcode_t retval;
1223 int new_ino_blks_per_grp;
1224 unsigned int j;
1225 char *old_itable = NULL, *new_itable = NULL;
1226 char *tmp_old_itable = NULL, *tmp_new_itable = NULL;
1227 unsigned long old_ino_size;
1228 int old_itable_size, new_itable_size;
1229
1230 old_itable_size = fs->inode_blocks_per_group * fs->blocksize;
1231 old_ino_size = EXT2_INODE_SIZE(fs->super);
1232
1233 new_ino_blks_per_grp = ext2fs_div_ceil(
1234 EXT2_INODES_PER_GROUP(fs->super) *
1235 new_ino_size,
1236 fs->blocksize);
1237
1238 new_itable_size = new_ino_blks_per_grp * fs->blocksize;
1239
1240 retval = ext2fs_get_mem(old_itable_size, &old_itable);
1241 if (retval)
1242 return retval;
1243
1244 retval = ext2fs_get_mem(new_itable_size, &new_itable);
1245 if (retval)
1246 goto err_out;
1247
1248 tmp_old_itable = old_itable;
1249 tmp_new_itable = new_itable;
1250
1251 for (i = 0; i < fs->group_desc_count; i++) {
1252 blk = fs->group_desc[i].bg_inode_table;
1253 retval = io_channel_read_blk(fs->io, blk,
1254 fs->inode_blocks_per_group, old_itable);
1255 if (retval)
1256 goto err_out;
1257
1258 for (j = 0; j < EXT2_INODES_PER_GROUP(fs->super); j++) {
1259 memcpy(new_itable, old_itable, old_ino_size);
1260
1261 memset(new_itable+old_ino_size, 0,
1262 new_ino_size - old_ino_size);
1263
1264 new_itable += new_ino_size;
1265 old_itable += old_ino_size;
1266 }
1267
1268 /* reset the pointer */
1269 old_itable = tmp_old_itable;
1270 new_itable = tmp_new_itable;
1271
1272 retval = io_channel_write_blk(fs->io, blk,
1273 new_ino_blks_per_grp, new_itable);
1274 if (retval)
1275 goto err_out;
1276 }
1277
1278 /* Update the meta data */
1279 fs->inode_blocks_per_group = new_ino_blks_per_grp;
1280 fs->super->s_inode_size = new_ino_size;
1281
1282 err_out:
1283 if (old_itable)
1284 ext2fs_free_mem(&old_itable);
1285
1286 if (new_itable)
1287 ext2fs_free_mem(&new_itable);
1288
1289 return retval;
1290 }
1291
1292 static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs)
1293 {
1294 blk_t blk;
1295 ext2_ino_t ino;
1296 unsigned int group = 0;
1297 unsigned int count = 0;
1298 int total_free = 0;
1299 int group_free = 0;
1300
1301 /*
1302 * First calculate the block statistics
1303 */
1304 for (blk = fs->super->s_first_data_block;
1305 blk < fs->super->s_blocks_count; blk++) {
1306 if (!ext2fs_fast_test_block_bitmap(fs->block_map, blk)) {
1307 group_free++;
1308 total_free++;
1309 }
1310 count++;
1311 if ((count == fs->super->s_blocks_per_group) ||
1312 (blk == fs->super->s_blocks_count-1)) {
1313 fs->group_desc[group++].bg_free_blocks_count =
1314 group_free;
1315 count = 0;
1316 group_free = 0;
1317 }
1318 }
1319 fs->super->s_free_blocks_count = total_free;
1320
1321 /*
1322 * Next, calculate the inode statistics
1323 */
1324 group_free = 0;
1325 total_free = 0;
1326 count = 0;
1327 group = 0;
1328
1329 /* Protect loop from wrap-around if s_inodes_count maxed */
1330 for (ino = 1; ino <= fs->super->s_inodes_count && ino > 0; ino++) {
1331 if (!ext2fs_fast_test_inode_bitmap(fs->inode_map, ino)) {
1332 group_free++;
1333 total_free++;
1334 }
1335 count++;
1336 if ((count == fs->super->s_inodes_per_group) ||
1337 (ino == fs->super->s_inodes_count)) {
1338 fs->group_desc[group++].bg_free_inodes_count =
1339 group_free;
1340 count = 0;
1341 group_free = 0;
1342 }
1343 }
1344 fs->super->s_free_inodes_count = total_free;
1345 ext2fs_mark_super_dirty(fs);
1346 return 0;
1347 }
1348
1349 #define list_for_each_safe(pos, pnext, head) \
1350 for (pos = (head)->next, pnext = pos->next; pos != (head); \
1351 pos = pnext, pnext = pos->next)
1352
1353 static void free_blk_move_list(void)
1354 {
1355 struct list_head *entry, *tmp;
1356 struct blk_move *bmv;
1357
1358 list_for_each_safe(entry, tmp, &blk_move_list) {
1359 bmv = list_entry(entry, struct blk_move, list);
1360 list_del(entry);
1361 ext2fs_free_mem(&bmv);
1362 }
1363 return;
1364 }
1365
1366 static int resize_inode(ext2_filsys fs, unsigned long new_size)
1367 {
1368 errcode_t retval;
1369 int new_ino_blks_per_grp;
1370 ext2fs_block_bitmap bmap, metadata_bmap;
1371
1372 ext2fs_read_inode_bitmap(fs);
1373 ext2fs_read_block_bitmap(fs);
1374 INIT_LIST_HEAD(&blk_move_list);
1375
1376
1377 new_ino_blks_per_grp = ext2fs_div_ceil(
1378 EXT2_INODES_PER_GROUP(fs->super)*
1379 new_size,
1380 fs->blocksize);
1381
1382 /* We may change the file system.
1383 * Mark the file system as invalid so that
1384 * the user is prompted to run fsck.
1385 */
1386 fs->super->s_state &= ~EXT2_VALID_FS;
1387
1388 retval = ext2fs_allocate_block_bitmap(fs, _("blocks to be moved"),
1389 &bmap);
1390 if (retval)
1391 return retval;
1392
1393 retval = ext2fs_allocate_block_bitmap(fs, _("blocks to be moved"),
1394 &metadata_bmap);
1395 if (retval)
1396 return retval;
1397
1398 retval = get_move_bitmaps(fs, new_ino_blks_per_grp, bmap,
1399 metadata_bmap);
1400 if (retval)
1401 goto err_out;
1402
1403 retval = move_block(fs, bmap, metadata_bmap);
1404 if (retval)
1405 goto err_out;
1406
1407 retval = inode_scan_and_fix(fs, bmap);
1408 if (retval)
1409 goto err_out;
1410
1411 retval = group_desc_scan_and_fix(fs, bmap);
1412 if (retval)
1413 goto err_out;
1414
1415 retval = expand_inode_table(fs, new_size);
1416 if (retval)
1417 goto err_out;
1418
1419 ext2fs_calculate_summary_stats(fs);
1420
1421 fs->super->s_state |= EXT2_VALID_FS;
1422 /* mark super block and block bitmap as dirty */
1423 ext2fs_mark_super_dirty(fs);
1424 ext2fs_mark_bb_dirty(fs);
1425
1426 err_out:
1427 free_blk_move_list();
1428 ext2fs_free_block_bitmap(bmap);
1429
1430 return retval;
1431 }
1432
1433 static int tune2fs_setup_tdb(const char *name, io_manager *io_ptr)
1434 {
1435 errcode_t retval = 0;
1436 const char *tdb_dir;
1437 char *tdb_file;
1438 char *dev_name, *tmp_name;
1439
1440 #if 0 /* FIXME!! */
1441 /*
1442 * Configuration via a conf file would be
1443 * nice
1444 */
1445 profile_get_string(profile, "scratch_files",
1446 "directory", 0, 0,
1447 &tdb_dir);
1448 #endif
1449 tmp_name = strdup(name);
1450 if (!tmp_name) {
1451 alloc_fn_fail:
1452 com_err(program_name, ENOMEM,
1453 _("Couldn't allocate memory for tdb filename\n"));
1454 return ENOMEM;
1455 }
1456 dev_name = basename(tmp_name);
1457
1458 tdb_dir = getenv("E2FSPROGS_UNDO_DIR");
1459 if (!tdb_dir)
1460 tdb_dir = "/var/lib/e2fsprogs";
1461
1462 if (!strcmp(tdb_dir, "none") || (tdb_dir[0] == 0) ||
1463 access(tdb_dir, W_OK))
1464 return 0;
1465
1466 tdb_file = malloc(strlen(tdb_dir) + 9 + strlen(dev_name) + 7 + 1);
1467 if (!tdb_file)
1468 goto alloc_fn_fail;
1469 sprintf(tdb_file, "%s/tune2fs-%s.e2undo", tdb_dir, dev_name);
1470
1471 if (!access(tdb_file, F_OK)) {
1472 if (unlink(tdb_file) < 0) {
1473 retval = errno;
1474 com_err(program_name, retval,
1475 _("while trying to delete %s"),
1476 tdb_file);
1477 free(tdb_file);
1478 return retval;
1479 }
1480 }
1481
1482 set_undo_io_backing_manager(*io_ptr);
1483 *io_ptr = undo_io_manager;
1484 set_undo_io_backup_file(tdb_file);
1485 printf(_("To undo the tune2fs operation please run "
1486 "the command\n e2undo %s %s\n\n"),
1487 tdb_file, name);
1488 free(tdb_file);
1489 free(tmp_name);
1490 return retval;
1491 }
1492
1493 int main(int argc, char **argv)
1494 {
1495 errcode_t retval;
1496 ext2_filsys fs;
1497 struct ext2_super_block *sb;
1498 io_manager io_ptr, io_ptr_orig = NULL;
1499
1500 #ifdef ENABLE_NLS
1501 setlocale(LC_MESSAGES, "");
1502 setlocale(LC_CTYPE, "");
1503 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
1504 textdomain(NLS_CAT_NAME);
1505 #endif
1506 if (argc && *argv)
1507 program_name = *argv;
1508 add_error_table(&et_ext2_error_table);
1509
1510 #ifdef CONFIG_BUILD_FINDFS
1511 if (strcmp(get_progname(argv[0]), "findfs") == 0)
1512 do_findfs(argc, argv);
1513 #endif
1514 if (strcmp(get_progname(argv[0]), "e2label") == 0)
1515 parse_e2label_options(argc, argv);
1516 else
1517 parse_tune2fs_options(argc, argv);
1518
1519 #ifdef CONFIG_TESTIO_DEBUG
1520 if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_DEBUG")) {
1521 io_ptr = test_io_manager;
1522 test_io_backing_manager = unix_io_manager;
1523 } else
1524 #endif
1525 io_ptr = unix_io_manager;
1526
1527 retry_open:
1528 retval = ext2fs_open2(device_name, io_options, open_flag,
1529 0, 0, io_ptr, &fs);
1530 if (retval) {
1531 com_err(program_name, retval,
1532 _("while trying to open %s"),
1533 device_name);
1534 fprintf(stderr,
1535 _("Couldn't find valid filesystem superblock.\n"));
1536 exit(1);
1537 }
1538
1539 if (I_flag && !io_ptr_orig) {
1540 /*
1541 * Check the inode size is right so we can issue an
1542 * error message and bail before setting up the tdb
1543 * file.
1544 */
1545 if (new_inode_size == EXT2_INODE_SIZE(fs->super)) {
1546 fprintf(stderr, _("The inode size is already %lu\n"),
1547 new_inode_size);
1548 exit(1);
1549 }
1550 if (new_inode_size < EXT2_INODE_SIZE(fs->super)) {
1551 fprintf(stderr, _("Shrinking the inode size is "
1552 "not supported\n"));
1553 exit(1);
1554 }
1555
1556 /*
1557 * If inode resize is requested use the
1558 * Undo I/O manager
1559 */
1560 io_ptr_orig = io_ptr;
1561 retval = tune2fs_setup_tdb(device_name, &io_ptr);
1562 if (retval)
1563 exit(1);
1564 if (io_ptr != io_ptr_orig) {
1565 ext2fs_close(fs);
1566 goto retry_open;
1567 }
1568 }
1569
1570 sb = fs->super;
1571 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
1572
1573 if (print_label) {
1574 /* For e2label emulation */
1575 printf("%.*s\n", (int) sizeof(sb->s_volume_name),
1576 sb->s_volume_name);
1577 remove_error_table(&et_ext2_error_table);
1578 exit(0);
1579 }
1580
1581 retval = ext2fs_check_if_mounted(device_name, &mount_flags);
1582 if (retval) {
1583 com_err("ext2fs_check_if_mount", retval,
1584 _("while determining whether %s is mounted."),
1585 device_name);
1586 exit(1);
1587 }
1588 /* Normally we only need to write out the superblock */
1589 fs->flags |= EXT2_FLAG_SUPER_ONLY;
1590
1591 if (c_flag) {
1592 sb->s_max_mnt_count = max_mount_count;
1593 ext2fs_mark_super_dirty(fs);
1594 printf(_("Setting maximal mount count to %d\n"),
1595 max_mount_count);
1596 }
1597 if (C_flag) {
1598 sb->s_mnt_count = mount_count;
1599 ext2fs_mark_super_dirty(fs);
1600 printf(_("Setting current mount count to %d\n"), mount_count);
1601 }
1602 if (e_flag) {
1603 sb->s_errors = errors;
1604 ext2fs_mark_super_dirty(fs);
1605 printf(_("Setting error behavior to %d\n"), errors);
1606 }
1607 if (g_flag) {
1608 sb->s_def_resgid = resgid;
1609 ext2fs_mark_super_dirty(fs);
1610 printf(_("Setting reserved blocks gid to %lu\n"), resgid);
1611 }
1612 if (i_flag) {
1613 sb->s_checkinterval = interval;
1614 ext2fs_mark_super_dirty(fs);
1615 printf(_("Setting interval between checks to %lu seconds\n"),
1616 interval);
1617 }
1618 if (m_flag) {
1619 sb->s_r_blocks_count = (unsigned int) (reserved_ratio *
1620 sb->s_blocks_count / 100.0);
1621 ext2fs_mark_super_dirty(fs);
1622 printf(_("Setting reserved blocks percentage to %g%% "
1623 "(%u blocks)\n"),
1624 reserved_ratio, sb->s_r_blocks_count);
1625 }
1626 if (r_flag) {
1627 if (reserved_blocks >= sb->s_blocks_count/2) {
1628 com_err(program_name, 0,
1629 _("reserved blocks count is too big (%lu)"),
1630 reserved_blocks);
1631 exit(1);
1632 }
1633 sb->s_r_blocks_count = reserved_blocks;
1634 ext2fs_mark_super_dirty(fs);
1635 printf(_("Setting reserved blocks count to %lu\n"),
1636 reserved_blocks);
1637 }
1638 if (s_flag == 1) {
1639 if (sb->s_feature_ro_compat &
1640 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)
1641 fputs(_("\nThe filesystem already has sparse "
1642 "superblocks.\n"), stderr);
1643 else {
1644 sb->s_feature_ro_compat |=
1645 EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
1646 sb->s_state &= ~EXT2_VALID_FS;
1647 ext2fs_mark_super_dirty(fs);
1648 printf(_("\nSparse superblock flag set. %s"),
1649 _(please_fsck));
1650 }
1651 }
1652 if (s_flag == 0) {
1653 fputs(_("\nClearing the sparse superflag not supported.\n"),
1654 stderr);
1655 exit(1);
1656 }
1657 if (T_flag) {
1658 sb->s_lastcheck = last_check_time;
1659 ext2fs_mark_super_dirty(fs);
1660 printf(_("Setting time filesystem last checked to %s\n"),
1661 ctime(&last_check_time));
1662 }
1663 if (u_flag) {
1664 sb->s_def_resuid = resuid;
1665 ext2fs_mark_super_dirty(fs);
1666 printf(_("Setting reserved blocks uid to %lu\n"), resuid);
1667 }
1668 if (L_flag) {
1669 if (strlen(new_label) > sizeof(sb->s_volume_name))
1670 fputs(_("Warning: label too long, truncating.\n"),
1671 stderr);
1672 memset(sb->s_volume_name, 0, sizeof(sb->s_volume_name));
1673 strncpy(sb->s_volume_name, new_label,
1674 sizeof(sb->s_volume_name));
1675 ext2fs_mark_super_dirty(fs);
1676 }
1677 if (M_flag) {
1678 memset(sb->s_last_mounted, 0, sizeof(sb->s_last_mounted));
1679 strncpy(sb->s_last_mounted, new_last_mounted,
1680 sizeof(sb->s_last_mounted));
1681 ext2fs_mark_super_dirty(fs);
1682 }
1683 if (mntopts_cmd)
1684 update_mntopts(fs, mntopts_cmd);
1685 if (features_cmd)
1686 update_feature_set(fs, features_cmd);
1687 if (extended_cmd)
1688 parse_extended_opts(fs, extended_cmd);
1689 if (journal_size || journal_device)
1690 add_journal(fs);
1691
1692 if (U_flag) {
1693 int set_csum = 0;
1694 dgrp_t i;
1695
1696 if (sb->s_feature_ro_compat &
1697 EXT4_FEATURE_RO_COMPAT_GDT_CSUM) {
1698 /*
1699 * Determine if the block group checksums are
1700 * correct so we know whether or not to set
1701 * them later on.
1702 */
1703 for (i = 0; i < fs->group_desc_count; i++)
1704 if (!ext2fs_group_desc_csum_verify(fs, i))
1705 break;
1706 if (i >= fs->group_desc_count)
1707 set_csum = 1;
1708 }
1709 if ((strcasecmp(new_UUID, "null") == 0) ||
1710 (strcasecmp(new_UUID, "clear") == 0)) {
1711 uuid_clear(sb->s_uuid);
1712 } else if (strcasecmp(new_UUID, "time") == 0) {
1713 uuid_generate_time(sb->s_uuid);
1714 } else if (strcasecmp(new_UUID, "random") == 0) {
1715 uuid_generate(sb->s_uuid);
1716 } else if (uuid_parse(new_UUID, sb->s_uuid)) {
1717 com_err(program_name, 0, _("Invalid UUID format\n"));
1718 exit(1);
1719 }
1720 if (set_csum) {
1721 for (i = 0; i < fs->group_desc_count; i++)
1722 ext2fs_group_desc_csum_set(fs, i);
1723 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
1724 }
1725 ext2fs_mark_super_dirty(fs);
1726 }
1727 if (I_flag) {
1728 if (mount_flags & EXT2_MF_MOUNTED) {
1729 fputs(_("The inode size may only be "
1730 "changed when the filesystem is "
1731 "unmounted.\n"), stderr);
1732 exit(1);
1733 }
1734 if (fs->super->s_feature_incompat &
1735 EXT4_FEATURE_INCOMPAT_FLEX_BG) {
1736 fputs(_("Changing the inode size not supported for "
1737 "filesystems with the flex_bg\n"
1738 "feature enabled.\n"),
1739 stderr);
1740 exit(1);
1741 }
1742 /*
1743 * We want to update group descriptor also
1744 * with the new free inode count
1745 */
1746 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
1747 if (resize_inode(fs, new_inode_size)) {
1748 fputs(_("Error in resizing the inode size.\n"
1749 "Run e2undo to undo the "
1750 "file system changes. \n"), stderr);
1751 } else {
1752 printf(_("Setting inode size %lu\n"),
1753 new_inode_size);
1754 }
1755 }
1756
1757 if (l_flag)
1758 list_super(sb);
1759 if (stride_set) {
1760 sb->s_raid_stride = stride;
1761 ext2fs_mark_super_dirty(fs);
1762 printf(_("Setting stride size to %d\n"), stride);
1763 }
1764 if (stripe_width_set) {
1765 sb->s_raid_stripe_width = stripe_width;
1766 ext2fs_mark_super_dirty(fs);
1767 printf(_("Setting stripe width to %d\n"), stripe_width);
1768 }
1769 remove_error_table(&et_ext2_error_table);
1770 return (ext2fs_close(fs) ? 1 : 0);
1771 }