/* * tune2fs.c - Change the file system parameters on an ext2 file system * * Copyright (C) 1992, 1993, 1994 Remy Card * Laboratoire MASI, Institut Blaise Pascal * Universite Pierre et Marie Curie (Paris VI) * * Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o. * * %Begin-Header% * This file may be redistributed under the terms of the GNU Public * License. * %End-Header% */ /* * History: * 93/06/01 - Creation * 93/10/31 - Added the -c option to change the maximal mount counts * 93/12/14 - Added -l flag to list contents of superblock * M.J.E. Mol (marcel@duteca.et.tudelft.nl) * F.W. ten Wolde (franky@duteca.et.tudelft.nl) * 93/12/29 - Added the -e option to change errors behavior * 94/02/27 - Ported to use the ext2fs library * 94/03/06 - Added the checks interval from Uwe Ohse (uwe@tirka.gun.de) */ #define _XOPEN_SOURCE 600 /* for inclusion of strptime() */ #include #include #ifdef HAVE_GETOPT_H #include #else extern char *optarg; extern int optind; #endif #include #include #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_STRINGS_H #include /* for strcasecmp() */ #else #define _BSD_SOURCE /* for inclusion of strcasecmp() via */ #endif #include #include #include #include #include #include #include "ext2fs/ext2_fs.h" #include "ext2fs/ext2fs.h" #include "et/com_err.h" #include "uuid/uuid.h" #include "e2p/e2p.h" #include "jfs_user.h" #include "util.h" #include "blkid/blkid.h" #include "quota/mkquota.h" #include "../version.h" #include "nls-enable.h" #define QOPT_ENABLE (1) #define QOPT_DISABLE (-1) extern int ask_yn(const char *string, int def); const char *program_name = "tune2fs"; char *device_name; char *new_label, *new_last_mounted, *new_UUID; char *io_options; static int c_flag, C_flag, e_flag, f_flag, g_flag, i_flag, l_flag, L_flag; static int m_flag, M_flag, Q_flag, r_flag, s_flag = -1, u_flag, U_flag, T_flag; static int I_flag; static int clear_mmp; static time_t last_check_time; static int print_label; static int max_mount_count, mount_count, mount_flags; static unsigned long interval; static blk64_t reserved_blocks; static double reserved_ratio; static unsigned long resgid, resuid; static unsigned short errors; static int open_flag; static char *features_cmd; static char *mntopts_cmd; static int stride, stripe_width; static int stride_set, stripe_width_set; static char *extended_cmd; static unsigned long new_inode_size; static char *ext_mount_opts; static int usrquota, grpquota; int journal_size, journal_flags; char *journal_device; static struct list_head blk_move_list; struct blk_move { struct list_head list; blk64_t old_loc; blk64_t new_loc; }; static const char *please_fsck = N_("Please run e2fsck on the filesystem.\n"); #ifdef CONFIG_BUILD_FINDFS void do_findfs(int argc, char **argv); #endif static void usage(void) { fprintf(stderr, _("Usage: %s [-c max_mounts_count] [-e errors_behavior] " "[-g group]\n" "\t[-i interval[d|m|w]] [-j] [-J journal_options] [-l]\n" "\t[-m reserved_blocks_percent] " "[-o [^]mount_options[,...]] [-p mmp_update_interval]\n" "\t[-r reserved_blocks_count] [-u user] [-C mount_count] " "[-L volume_label]\n" "\t[-M last_mounted_dir] [-O [^]feature[,...]]\n" #ifdef CONFIG_QUOTA "\t[-Q quota_options]\n" #endif "\t[-E extended-option[,...]] [-T last_check_time] " "[-U UUID]\n\t[ -I new_inode_size ] device\n"), program_name); exit(1); } static __u32 ok_features[3] = { /* Compat */ EXT3_FEATURE_COMPAT_HAS_JOURNAL | EXT2_FEATURE_COMPAT_DIR_INDEX, /* Incompat */ EXT2_FEATURE_INCOMPAT_FILETYPE | EXT3_FEATURE_INCOMPAT_EXTENTS | EXT4_FEATURE_INCOMPAT_FLEX_BG | EXT4_FEATURE_INCOMPAT_MMP, /* R/O compat */ EXT2_FEATURE_RO_COMPAT_LARGE_FILE | EXT4_FEATURE_RO_COMPAT_HUGE_FILE| EXT4_FEATURE_RO_COMPAT_DIR_NLINK| EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE| EXT4_FEATURE_RO_COMPAT_GDT_CSUM | #ifdef CONFIG_QUOTA EXT4_FEATURE_RO_COMPAT_QUOTA | #endif EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER }; static __u32 clear_ok_features[3] = { /* Compat */ EXT3_FEATURE_COMPAT_HAS_JOURNAL | EXT2_FEATURE_COMPAT_RESIZE_INODE | EXT2_FEATURE_COMPAT_DIR_INDEX, /* Incompat */ EXT2_FEATURE_INCOMPAT_FILETYPE | EXT4_FEATURE_INCOMPAT_FLEX_BG | EXT4_FEATURE_INCOMPAT_MMP, /* R/O compat */ EXT2_FEATURE_RO_COMPAT_LARGE_FILE | EXT4_FEATURE_RO_COMPAT_HUGE_FILE| EXT4_FEATURE_RO_COMPAT_DIR_NLINK| EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE| #ifdef CONFIG_QUOTA EXT4_FEATURE_RO_COMPAT_QUOTA | #endif EXT4_FEATURE_RO_COMPAT_GDT_CSUM }; /* * Remove an external journal from the filesystem */ static int remove_journal_device(ext2_filsys fs) { char *journal_path; ext2_filsys jfs; char buf[1024]; journal_superblock_t *jsb; int i, nr_users; errcode_t retval; int commit_remove_journal = 0; io_manager io_ptr; if (f_flag) commit_remove_journal = 1; /* force removal even if error */ uuid_unparse(fs->super->s_journal_uuid, buf); journal_path = blkid_get_devname(NULL, "UUID", buf); if (!journal_path) { journal_path = ext2fs_find_block_device(fs->super->s_journal_dev); if (!journal_path) goto no_valid_journal; } #ifdef CONFIG_TESTIO_DEBUG if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) { io_ptr = test_io_manager; test_io_backing_manager = unix_io_manager; } else #endif io_ptr = unix_io_manager; retval = ext2fs_open(journal_path, EXT2_FLAG_RW| EXT2_FLAG_JOURNAL_DEV_OK, 0, fs->blocksize, io_ptr, &jfs); if (retval) { com_err(program_name, retval, "%s", _("while trying to open external journal")); goto no_valid_journal; } if (!(jfs->super->s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) { fprintf(stderr, _("%s is not a journal device.\n"), journal_path); goto no_valid_journal; } /* Get the journal superblock */ if ((retval = io_channel_read_blk64(jfs->io, 1, -1024, buf))) { com_err(program_name, retval, "%s", _("while reading journal superblock")); goto no_valid_journal; } jsb = (journal_superblock_t *) buf; if ((jsb->s_header.h_magic != (unsigned)ntohl(JFS_MAGIC_NUMBER)) || (jsb->s_header.h_blocktype != (unsigned)ntohl(JFS_SUPERBLOCK_V2))) { fputs(_("Journal superblock not found!\n"), stderr); goto no_valid_journal; } /* Find the filesystem UUID */ nr_users = ntohl(jsb->s_nr_users); for (i = 0; i < nr_users; i++) { if (memcmp(fs->super->s_uuid, &jsb->s_users[i * 16], 16) == 0) break; } if (i >= nr_users) { fputs(_("Filesystem's UUID not found on journal device.\n"), stderr); commit_remove_journal = 1; goto no_valid_journal; } nr_users--; for (i = 0; i < nr_users; i++) memcpy(&jsb->s_users[i * 16], &jsb->s_users[(i + 1) * 16], 16); jsb->s_nr_users = htonl(nr_users); /* Write back the journal superblock */ if ((retval = io_channel_write_blk64(jfs->io, 1, -1024, buf))) { com_err(program_name, retval, "while writing journal superblock."); goto no_valid_journal; } commit_remove_journal = 1; no_valid_journal: if (commit_remove_journal == 0) { fputs(_("Cannot locate journal device. It was NOT removed\n" "Use -f option to remove missing journal device.\n"), stderr); return 1; } fs->super->s_journal_dev = 0; uuid_clear(fs->super->s_journal_uuid); ext2fs_mark_super_dirty(fs); fputs(_("Journal removed\n"), stdout); free(journal_path); return 0; } /* Helper function for remove_journal_inode */ static int release_blocks_proc(ext2_filsys fs, blk64_t *blocknr, e2_blkcnt_t blockcnt EXT2FS_ATTR((unused)), blk64_t ref_block EXT2FS_ATTR((unused)), int ref_offset EXT2FS_ATTR((unused)), void *private EXT2FS_ATTR((unused))) { blk64_t block; int group; block = *blocknr; ext2fs_unmark_block_bitmap2(fs->block_map, block); group = ext2fs_group_of_blk2(fs, block); ext2fs_bg_free_blocks_count_set(fs, group, ext2fs_bg_free_blocks_count(fs, group) + 1); ext2fs_group_desc_csum_set(fs, group); ext2fs_free_blocks_count_add(fs->super, EXT2FS_CLUSTER_RATIO(fs)); return 0; } /* * Remove the journal inode from the filesystem */ static errcode_t remove_journal_inode(ext2_filsys fs) { struct ext2_inode inode; errcode_t retval; ino_t ino = fs->super->s_journal_inum; retval = ext2fs_read_inode(fs, ino, &inode); if (retval) { com_err(program_name, retval, "%s", _("while reading journal inode")); return retval; } if (ino == EXT2_JOURNAL_INO) { retval = ext2fs_read_bitmaps(fs); if (retval) { com_err(program_name, retval, "%s", _("while reading bitmaps")); return retval; } retval = ext2fs_block_iterate3(fs, ino, BLOCK_FLAG_READ_ONLY, NULL, release_blocks_proc, NULL); if (retval) { com_err(program_name, retval, "%s", _("while clearing journal inode")); return retval; } memset(&inode, 0, sizeof(inode)); ext2fs_mark_bb_dirty(fs); fs->flags &= ~EXT2_FLAG_SUPER_ONLY; } else inode.i_flags &= ~EXT2_IMMUTABLE_FL; retval = ext2fs_write_inode(fs, ino, &inode); if (retval) { com_err(program_name, retval, "%s", _("while writing journal inode")); return retval; } fs->super->s_journal_inum = 0; ext2fs_mark_super_dirty(fs); return 0; } /* * Update the default mount options */ static int update_mntopts(ext2_filsys fs, char *mntopts) { struct ext2_super_block *sb = fs->super; if (e2p_edit_mntopts(mntopts, &sb->s_default_mount_opts, ~0)) { fprintf(stderr, _("Invalid mount option set: %s\n"), mntopts); return 1; } ext2fs_mark_super_dirty(fs); return 0; } static int check_fsck_needed(ext2_filsys fs) { if (fs->super->s_state & EXT2_VALID_FS) return 0; printf("\n%s\n", _(please_fsck)); if (mount_flags & EXT2_MF_READONLY) printf(_("(and reboot afterwards!)\n")); return 1; } static void request_fsck_afterwards(ext2_filsys fs) { static int requested = 0; if (requested++) return; fs->super->s_state &= ~EXT2_VALID_FS; printf("\n%s\n", _(please_fsck)); if (mount_flags & EXT2_MF_READONLY) printf("%s", _("(and reboot afterwards!)\n")); } /* * Update the feature set as provided by the user. */ static int update_feature_set(ext2_filsys fs, char *features) { struct ext2_super_block *sb = fs->super; struct ext2_group_desc *gd; __u32 old_features[3]; dgrp_t i; int type_err; unsigned int mask_err; #define FEATURE_ON(type, mask) (!(old_features[(type)] & (mask)) && \ ((&sb->s_feature_compat)[(type)] & (mask))) #define FEATURE_OFF(type, mask) ((old_features[(type)] & (mask)) && \ !((&sb->s_feature_compat)[(type)] & (mask))) #define FEATURE_CHANGED(type, mask) ((mask) & \ (old_features[(type)] ^ (&sb->s_feature_compat)[(type)])) old_features[E2P_FEATURE_COMPAT] = sb->s_feature_compat; old_features[E2P_FEATURE_INCOMPAT] = sb->s_feature_incompat; old_features[E2P_FEATURE_RO_INCOMPAT] = sb->s_feature_ro_compat; if (e2p_edit_feature2(features, &sb->s_feature_compat, ok_features, clear_ok_features, &type_err, &mask_err)) { if (!mask_err) fprintf(stderr, _("Invalid filesystem option set: %s\n"), features); else if (type_err & E2P_FEATURE_NEGATE_FLAG) fprintf(stderr, _("Clearing filesystem feature '%s' " "not supported.\n"), e2p_feature2string(type_err & E2P_FEATURE_TYPE_MASK, mask_err)); else fprintf(stderr, _("Setting filesystem feature '%s' " "not supported.\n"), e2p_feature2string(type_err, mask_err)); return 1; } if (FEATURE_OFF(E2P_FEATURE_COMPAT, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) { if ((mount_flags & EXT2_MF_MOUNTED) && !(mount_flags & EXT2_MF_READONLY)) { fputs(_("The has_journal feature may only be " "cleared when the filesystem is\n" "unmounted or mounted " "read-only.\n"), stderr); return 1; } if (sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER) { fputs(_("The needs_recovery flag is set. " "Please run e2fsck before clearing\n" "the has_journal flag.\n"), stderr); return 1; } if (sb->s_journal_inum) { if (remove_journal_inode(fs)) return 1; } if (sb->s_journal_dev) { if (remove_journal_device(fs)) return 1; } } if (FEATURE_ON(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_MMP)) { int error; if ((mount_flags & EXT2_MF_MOUNTED) || (mount_flags & EXT2_MF_READONLY)) { fputs(_("The multiple mount protection feature can't\n" "be set if the filesystem is mounted or\n" "read-only.\n"), stderr); return 1; } error = ext2fs_mmp_init(fs); if (error) { fputs(_("\nError while enabling multiple mount " "protection feature."), stderr); return 1; } /* * We want to update group desc with the new free blocks count */ fs->flags &= ~EXT2_FLAG_SUPER_ONLY; printf(_("Multiple mount protection has been enabled " "with update interval %ds.\n"), sb->s_mmp_update_interval); } if (FEATURE_OFF(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_MMP)) { int error; if (mount_flags & EXT2_MF_READONLY) { fputs(_("The multiple mount protection feature cannot\n" "be disabled if the filesystem is readonly.\n"), stderr); return 1; } error = ext2fs_read_bitmaps(fs); if (error) { fputs(_("Error while reading bitmaps\n"), stderr); return 1; } error = ext2fs_mmp_read(fs, sb->s_mmp_block, NULL); if (error) { struct mmp_struct *mmp_cmp = fs->mmp_cmp; if (error == EXT2_ET_MMP_MAGIC_INVALID) printf(_("Magic number in MMP block does not " "match. expected: %x, actual: %x\n"), EXT4_MMP_MAGIC, mmp_cmp->mmp_magic); else com_err(program_name, error, "%s", _("while reading MMP block.")); goto mmp_error; } /* We need to force out the group descriptors as well */ fs->flags &= ~EXT2_FLAG_SUPER_ONLY; ext2fs_block_alloc_stats2(fs, sb->s_mmp_block, -1); mmp_error: sb->s_mmp_block = 0; sb->s_mmp_update_interval = 0; } if (FEATURE_ON(E2P_FEATURE_COMPAT, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) { /* * If adding a journal flag, let the create journal * code below handle setting the flag and creating the * journal. We supply a default size if necessary. */ if (!journal_size) journal_size = -1; sb->s_feature_compat &= ~EXT3_FEATURE_COMPAT_HAS_JOURNAL; } if (FEATURE_ON(E2P_FEATURE_COMPAT, EXT2_FEATURE_COMPAT_DIR_INDEX)) { if (!sb->s_def_hash_version) sb->s_def_hash_version = EXT2_HASH_HALF_MD4; if (uuid_is_null((unsigned char *) sb->s_hash_seed)) uuid_generate((unsigned char *) sb->s_hash_seed); } if (FEATURE_OFF(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_FLEX_BG)) { if (ext2fs_check_desc(fs)) { fputs(_("Clearing the flex_bg flag would " "cause the the filesystem to be\n" "inconsistent.\n"), stderr); return 1; } } if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { if ((mount_flags & EXT2_MF_MOUNTED) && !(mount_flags & EXT2_MF_READONLY)) { fputs(_("The huge_file feature may only be " "cleared when the filesystem is\n" "unmounted or mounted " "read-only.\n"), stderr); return 1; } } if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) { for (i = 0; i < fs->group_desc_count; i++) { gd = ext2fs_group_desc(fs, fs->group_desc, i); gd->bg_itable_unused = 0; gd->bg_flags = EXT2_BG_INODE_ZEROED; ext2fs_group_desc_csum_set(fs, i); } fs->flags &= ~EXT2_FLAG_SUPER_ONLY; } if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) { for (i = 0; i < fs->group_desc_count; i++) { gd = ext2fs_group_desc(fs, fs->group_desc, i); if ((gd->bg_flags & EXT2_BG_INODE_ZEROED) == 0) { /* * XXX what we really should do is zap * uninitialized inode tables instead. */ request_fsck_afterwards(fs); break; } gd->bg_itable_unused = 0; gd->bg_flags = 0; gd->bg_checksum = 0; } fs->flags &= ~EXT2_FLAG_SUPER_ONLY; } if (FEATURE_ON(E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_QUOTA)) { /* * Set the Q_flag here and handle the quota options in the code * below. */ if (!Q_flag) { Q_flag = 1; /* Enable both user quota and group quota by default */ usrquota = QOPT_ENABLE; grpquota = QOPT_ENABLE; } sb->s_feature_ro_compat &= ~EXT4_FEATURE_RO_COMPAT_QUOTA; } if (FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_QUOTA)) { /* * Set the Q_flag here and handle the quota options in the code * below. */ if (Q_flag) fputs(_("\nWarning: '^quota' option overrides '-Q'" "arguments.\n"), stderr); Q_flag = 1; /* Disable both user quota and group quota by default */ usrquota = QOPT_DISABLE; grpquota = QOPT_DISABLE; } if (sb->s_rev_level == EXT2_GOOD_OLD_REV && (sb->s_feature_compat || sb->s_feature_ro_compat || sb->s_feature_incompat)) ext2fs_update_dynamic_rev(fs); if (FEATURE_CHANGED(E2P_FEATURE_RO_INCOMPAT, EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER) || FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_HUGE_FILE) || FEATURE_CHANGED(E2P_FEATURE_INCOMPAT, EXT2_FEATURE_INCOMPAT_FILETYPE) || FEATURE_CHANGED(E2P_FEATURE_COMPAT, EXT2_FEATURE_COMPAT_RESIZE_INODE) || FEATURE_OFF(E2P_FEATURE_RO_INCOMPAT, EXT2_FEATURE_RO_COMPAT_LARGE_FILE)) request_fsck_afterwards(fs); if ((old_features[E2P_FEATURE_COMPAT] != sb->s_feature_compat) || (old_features[E2P_FEATURE_INCOMPAT] != sb->s_feature_incompat) || (old_features[E2P_FEATURE_RO_INCOMPAT] != sb->s_feature_ro_compat)) ext2fs_mark_super_dirty(fs); return 0; } /* * Add a journal to the filesystem. */ static int add_journal(ext2_filsys fs) { unsigned long journal_blocks; errcode_t retval; ext2_filsys jfs; io_manager io_ptr; if (fs->super->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL) { fputs(_("The filesystem already has a journal.\n"), stderr); goto err; } if (journal_device) { check_plausibility(journal_device); check_mount(journal_device, 0, _("journal")); #ifdef CONFIG_TESTIO_DEBUG if (getenv("TEST_IO_FLAGS") || getenv("TEST_IO_BLOCK")) { io_ptr = test_io_manager; test_io_backing_manager = unix_io_manager; } else #endif io_ptr = unix_io_manager; retval = ext2fs_open(journal_device, EXT2_FLAG_RW| EXT2_FLAG_JOURNAL_DEV_OK, 0, fs->blocksize, io_ptr, &jfs); if (retval) { com_err(program_name, retval, _("\n\twhile trying to open journal on %s\n"), journal_device); goto err; } printf(_("Creating journal on device %s: "), journal_device); fflush(stdout); retval = ext2fs_add_journal_device(fs, jfs); ext2fs_close(jfs); if (retval) { com_err(program_name, retval, _("while adding filesystem to journal on %s"), journal_device); goto err; } fputs(_("done\n"), stdout); } else if (journal_size) { fputs(_("Creating journal inode: "), stdout); fflush(stdout); journal_blocks = figure_journal_size(journal_size, fs); retval = ext2fs_add_journal_inode(fs, journal_blocks, journal_flags); if (retval) { fprintf(stderr, "\n"); com_err(program_name, retval, "%s", _("\n\twhile trying to create journal file")); return retval; } else fputs(_("done\n"), stdout); /* * If the filesystem wasn't mounted, we need to force * the block group descriptors out. */ if ((mount_flags & EXT2_MF_MOUNTED) == 0) fs->flags &= ~EXT2_FLAG_SUPER_ONLY; } print_check_message(fs->super->s_max_mnt_count, fs->super->s_checkinterval); return 0; err: free(journal_device); return 1; } static void handle_quota_options(ext2_filsys fs) { quota_ctx_t qctx; ext2_ino_t qf_ino; if (!usrquota && !grpquota) /* Nothing to do. */ return; quota_init_context(&qctx, fs, -1); if (usrquota == QOPT_ENABLE || grpquota == QOPT_ENABLE) quota_compute_usage(qctx); if (usrquota == QOPT_ENABLE && !fs->super->s_usr_quota_inum) { if ((qf_ino = quota_file_exists(fs, USRQUOTA, QFMT_VFS_V1)) > 0) quota_update_limits(qctx, qf_ino, USRQUOTA); quota_write_inode(qctx, USRQUOTA); } else if (usrquota == QOPT_DISABLE) { quota_remove_inode(fs, USRQUOTA); } if (grpquota == QOPT_ENABLE && !fs->super->s_grp_quota_inum) { if ((qf_ino = quota_file_exists(fs, GRPQUOTA, QFMT_VFS_V1)) > 0) quota_update_limits(qctx, qf_ino, GRPQUOTA); quota_write_inode(qctx, GRPQUOTA); } else if (grpquota == QOPT_DISABLE) { quota_remove_inode(fs, GRPQUOTA); } quota_release_context(&qctx); if ((usrquota == QOPT_ENABLE) || (grpquota == QOPT_ENABLE)) { fprintf(stderr, "%s", _("\nWarning: the quota feature is still " "under development\n" "See https://ext4.wiki.kernel.org/" "index.php/Quota for more information\n\n")); fs->super->s_feature_ro_compat |= EXT4_FEATURE_RO_COMPAT_QUOTA; ext2fs_mark_super_dirty(fs); } else if (!fs->super->s_usr_quota_inum && !fs->super->s_grp_quota_inum) { fs->super->s_feature_ro_compat &= ~EXT4_FEATURE_RO_COMPAT_QUOTA; ext2fs_mark_super_dirty(fs); } return; } #ifdef CONFIG_QUOTA static void parse_quota_opts(const char *opts) { char *buf, *token, *next, *p; int len; len = strlen(opts); buf = malloc(len+1); if (!buf) { fputs(_("Couldn't allocate memory to parse quota " "options!\n"), stderr); exit(1); } strcpy(buf, opts); for (token = buf; token && *token; token = next) { p = strchr(token, ','); next = 0; if (p) { *p = 0; next = p+1; } if (strcmp(token, "usrquota") == 0) { usrquota = QOPT_ENABLE; } else if (strcmp(token, "^usrquota") == 0) { usrquota = QOPT_DISABLE; } else if (strcmp(token, "grpquota") == 0) { grpquota = QOPT_ENABLE; } else if (strcmp(token, "^grpquota") == 0) { grpquota = QOPT_DISABLE; } else { fputs(_("\nBad quota options specified.\n\n" "Following valid quota options are available " "(pass by separating with comma):\n" "\t[^]usrquota\n" "\t[^]grpquota\n" "\n\n"), stderr); free(buf); exit(1); } } free(buf); } #endif static void parse_e2label_options(int argc, char ** argv) { if ((argc < 2) || (argc > 3)) { fputs(_("Usage: e2label device [newlabel]\n"), stderr); exit(1); } io_options = strchr(argv[1], '?'); if (io_options) *io_options++ = 0; device_name = blkid_get_devname(NULL, argv[1], NULL); if (!device_name) { com_err("e2label", 0, _("Unable to resolve '%s'"), argv[1]); exit(1); } open_flag = EXT2_FLAG_JOURNAL_DEV_OK; if (argc == 3) { open_flag |= EXT2_FLAG_RW; L_flag = 1; new_label = argv[2]; } else print_label++; } static time_t parse_time(char *str) { struct tm ts; if (strcmp(str, "now") == 0) { return (time(0)); } memset(&ts, 0, sizeof(ts)); #ifdef HAVE_STRPTIME strptime(str, "%Y%m%d%H%M%S", &ts); #else sscanf(str, "%4d%2d%2d%2d%2d%2d", &ts.tm_year, &ts.tm_mon, &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec); ts.tm_year -= 1900; ts.tm_mon -= 1; if (ts.tm_year < 0 || ts.tm_mon < 0 || ts.tm_mon > 11 || ts.tm_mday < 0 || ts.tm_mday > 31 || ts.tm_hour > 23 || ts.tm_min > 59 || ts.tm_sec > 61) ts.tm_mday = 0; #endif if (ts.tm_mday == 0) { com_err(program_name, 0, _("Couldn't parse date/time specifier: %s"), str); usage(); } ts.tm_isdst = -1; return (mktime(&ts)); } static void parse_tune2fs_options(int argc, char **argv) { int c; char *tmp; struct group *gr; struct passwd *pw; char optstring[100] = "c:e:fg:i:jlm:o:r:s:u:C:E:I:J:L:M:O:T:U:"; #ifdef CONFIG_QUOTA strcat(optstring, "Q:"); #endif open_flag = 0; printf("tune2fs %s (%s)\n", E2FSPROGS_VERSION, E2FSPROGS_DATE); while ((c = getopt(argc, argv, optstring)) != EOF) switch (c) { case 'c': max_mount_count = strtol(optarg, &tmp, 0); if (*tmp || max_mount_count > 16000) { com_err(program_name, 0, _("bad mounts count - %s"), optarg); usage(); } if (max_mount_count == 0) max_mount_count = -1; c_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'C': mount_count = strtoul(optarg, &tmp, 0); if (*tmp || mount_count > 16000) { com_err(program_name, 0, _("bad mounts count - %s"), optarg); usage(); } C_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'e': if (strcmp(optarg, "continue") == 0) errors = EXT2_ERRORS_CONTINUE; else if (strcmp(optarg, "remount-ro") == 0) errors = EXT2_ERRORS_RO; else if (strcmp(optarg, "panic") == 0) errors = EXT2_ERRORS_PANIC; else { com_err(program_name, 0, _("bad error behavior - %s"), optarg); usage(); } e_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'E': extended_cmd = optarg; open_flag |= EXT2_FLAG_RW; break; case 'f': /* Force */ f_flag = 1; break; case 'g': resgid = strtoul(optarg, &tmp, 0); if (*tmp) { gr = getgrnam(optarg); if (gr == NULL) tmp = optarg; else { resgid = gr->gr_gid; *tmp = 0; } } if (*tmp) { com_err(program_name, 0, _("bad gid/group name - %s"), optarg); usage(); } g_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'i': interval = strtoul(optarg, &tmp, 0); switch (*tmp) { case 's': tmp++; break; case '\0': case 'd': case 'D': /* days */ interval *= 86400; if (*tmp != '\0') tmp++; break; case 'm': case 'M': /* months! */ interval *= 86400 * 30; tmp++; break; case 'w': case 'W': /* weeks */ interval *= 86400 * 7; tmp++; break; } if (*tmp) { com_err(program_name, 0, _("bad interval - %s"), optarg); usage(); } i_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'j': if (!journal_size) journal_size = -1; open_flag = EXT2_FLAG_RW; break; case 'J': parse_journal_opts(optarg); open_flag = EXT2_FLAG_RW; break; case 'l': l_flag = 1; break; case 'L': new_label = optarg; L_flag = 1; open_flag |= EXT2_FLAG_RW | EXT2_FLAG_JOURNAL_DEV_OK; break; case 'm': reserved_ratio = strtod(optarg, &tmp); if (*tmp || reserved_ratio > 50 || reserved_ratio < 0) { com_err(program_name, 0, _("bad reserved block ratio - %s"), optarg); usage(); } m_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'M': new_last_mounted = optarg; M_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'o': if (mntopts_cmd) { com_err(program_name, 0, "%s", _("-o may only be specified once")); usage(); } mntopts_cmd = optarg; open_flag = EXT2_FLAG_RW; break; case 'O': if (features_cmd) { com_err(program_name, 0, "%s", _("-O may only be specified once")); usage(); } features_cmd = optarg; open_flag = EXT2_FLAG_RW; break; #ifdef CONFIG_QUOTA case 'Q': Q_flag = 1; parse_quota_opts(optarg); open_flag = EXT2_FLAG_RW; break; #endif case 'r': reserved_blocks = strtoul(optarg, &tmp, 0); if (*tmp) { com_err(program_name, 0, _("bad reserved blocks count - %s"), optarg); usage(); } r_flag = 1; open_flag = EXT2_FLAG_RW; break; case 's': /* Deprecated */ s_flag = atoi(optarg); open_flag = EXT2_FLAG_RW; break; case 'T': T_flag = 1; last_check_time = parse_time(optarg); open_flag = EXT2_FLAG_RW; break; case 'u': resuid = strtoul(optarg, &tmp, 0); if (*tmp) { pw = getpwnam(optarg); if (pw == NULL) tmp = optarg; else { resuid = pw->pw_uid; *tmp = 0; } } if (*tmp) { com_err(program_name, 0, _("bad uid/user name - %s"), optarg); usage(); } u_flag = 1; open_flag = EXT2_FLAG_RW; break; case 'U': new_UUID = optarg; U_flag = 1; open_flag = EXT2_FLAG_RW | EXT2_FLAG_JOURNAL_DEV_OK; break; case 'I': new_inode_size = strtoul(optarg, &tmp, 0); if (*tmp) { com_err(program_name, 0, _("bad inode size - %s"), optarg); usage(); } if (!((new_inode_size & (new_inode_size - 1)) == 0)) { com_err(program_name, 0, _("Inode size must be a " "power of two- %s"), optarg); usage(); } open_flag = EXT2_FLAG_RW; I_flag = 1; break; default: usage(); } if (optind < argc - 1 || optind == argc) usage(); if (!open_flag && !l_flag) usage(); io_options = strchr(argv[optind], '?'); if (io_options) *io_options++ = 0; device_name = blkid_get_devname(NULL, argv[optind], NULL); if (!device_name) { com_err(program_name, 0, _("Unable to resolve '%s'"), argv[optind]); exit(1); } } #ifdef CONFIG_BUILD_FINDFS void do_findfs(int argc, char **argv) { char *dev; if ((argc != 2) || (strncmp(argv[1], "LABEL=", 6) && strncmp(argv[1], "UUID=", 5))) { fprintf(stderr, "Usage: findfs LABEL=