2009-10-21 22:55:55 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* tune2fs: utility to modify EXT2 filesystem
|
|
|
|
*
|
|
|
|
* Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com>
|
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2009-10-21 22:55:55 +00:00
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
#include <linux/fs.h>
|
2012-04-17 13:06:55 +00:00
|
|
|
#include "bb_e2fs_defs.h"
|
2009-10-21 22:55:55 +00:00
|
|
|
|
|
|
|
// storage helpers
|
|
|
|
char BUG_wrong_field_size(void);
|
|
|
|
#define STORE_LE(field, value) \
|
|
|
|
do { \
|
|
|
|
if (sizeof(field) == 4) \
|
2010-05-08 22:13:40 +00:00
|
|
|
field = SWAP_LE32(value); \
|
2009-10-21 22:55:55 +00:00
|
|
|
else if (sizeof(field) == 2) \
|
2010-05-08 22:13:40 +00:00
|
|
|
field = SWAP_LE16(value); \
|
2009-10-21 22:55:55 +00:00
|
|
|
else if (sizeof(field) == 1) \
|
|
|
|
field = (value); \
|
|
|
|
else \
|
|
|
|
BUG_wrong_field_size(); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define FETCH_LE32(field) \
|
2010-05-08 22:13:40 +00:00
|
|
|
(sizeof(field) == 4 ? SWAP_LE32(field) : BUG_wrong_field_size())
|
2009-10-21 22:55:55 +00:00
|
|
|
|
2010-10-04 22:39:46 +00:00
|
|
|
//usage:#define tune2fs_trivial_usage
|
2011-09-11 18:08:12 +00:00
|
|
|
//usage: "[-c MAX_MOUNT_COUNT] "
|
2010-10-04 22:39:46 +00:00
|
|
|
////usage: "[-e errors-behavior] [-g group] "
|
|
|
|
//usage: "[-i DAYS] "
|
|
|
|
////usage: "[-j] [-J journal-options] [-l] [-s sparse-flag] "
|
|
|
|
////usage: "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] "
|
2011-09-11 18:08:12 +00:00
|
|
|
////usage: "[-r reserved-blocks-count] [-u user] "
|
|
|
|
//usage: "[-C MOUNT_COUNT] "
|
2010-10-04 22:39:46 +00:00
|
|
|
//usage: "[-L LABEL] "
|
|
|
|
////usage: "[-M last-mounted-dir] [-O [^]feature[,...]] "
|
|
|
|
////usage: "[-T last-check-time] [-U UUID] "
|
|
|
|
//usage: "BLOCKDEV"
|
|
|
|
//usage:
|
|
|
|
//usage:#define tune2fs_full_usage "\n\n"
|
|
|
|
//usage: "Adjust filesystem options on ext[23] filesystems"
|
|
|
|
|
2009-10-21 22:55:55 +00:00
|
|
|
enum {
|
2010-10-28 16:57:19 +00:00
|
|
|
OPT_L = 1 << 0, // label
|
2010-10-04 22:39:46 +00:00
|
|
|
OPT_c = 1 << 1, // max mount count
|
|
|
|
OPT_i = 1 << 2, // check interval
|
2011-09-11 18:08:12 +00:00
|
|
|
OPT_C = 1 << 3, // current mount count
|
2009-10-21 22:55:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int tune2fs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
|
|
int tune2fs_main(int argc UNUSED_PARAM, char **argv)
|
|
|
|
{
|
|
|
|
unsigned opts;
|
2011-09-11 18:08:12 +00:00
|
|
|
const char *label, *str_c, *str_i, *str_C;
|
2009-10-21 22:55:55 +00:00
|
|
|
struct ext2_super_block *sb;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
opt_complementary = "=1";
|
2011-09-11 18:08:12 +00:00
|
|
|
opts = getopt32(argv, "L:c:i:C:", &label, &str_c, &str_i, &str_C);
|
2009-10-21 22:55:55 +00:00
|
|
|
if (!opts)
|
|
|
|
bb_show_usage();
|
2010-10-04 22:39:46 +00:00
|
|
|
argv += optind; // argv[0] -- device
|
2009-10-21 22:55:55 +00:00
|
|
|
|
|
|
|
// read superblock
|
|
|
|
fd = xopen(argv[0], O_RDWR);
|
|
|
|
xlseek(fd, 1024, SEEK_SET);
|
|
|
|
sb = xzalloc(1024);
|
|
|
|
xread(fd, sb, 1024);
|
|
|
|
|
|
|
|
// mangle superblock
|
|
|
|
//STORE_LE(sb->s_wtime, time(NULL)); - why bother?
|
2010-10-04 22:39:46 +00:00
|
|
|
|
2011-09-11 18:08:12 +00:00
|
|
|
if (opts & OPT_C) {
|
|
|
|
int n = xatoi_range(str_C, 1, 0xfffe);
|
|
|
|
STORE_LE(sb->s_mnt_count, (unsigned)n);
|
|
|
|
}
|
|
|
|
|
2009-10-21 22:55:55 +00:00
|
|
|
// set the label
|
2010-10-04 22:39:46 +00:00
|
|
|
if (opts & OPT_L)
|
2009-10-21 22:55:55 +00:00
|
|
|
safe_strncpy((char *)sb->s_volume_name, label, sizeof(sb->s_volume_name));
|
2010-10-04 22:39:46 +00:00
|
|
|
|
|
|
|
if (opts & OPT_c) {
|
|
|
|
int n = xatoi_range(str_c, -1, 0xfffe);
|
|
|
|
if (n == 0)
|
|
|
|
n = -1;
|
|
|
|
STORE_LE(sb->s_max_mnt_count, (unsigned)n);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts & OPT_i) {
|
|
|
|
unsigned n = xatou_range(str_i, 0, (unsigned)0xffffffff / (24*60*60)) * 24*60*60;
|
|
|
|
STORE_LE(sb->s_checkinterval, n);
|
|
|
|
}
|
|
|
|
|
2009-10-21 22:55:55 +00:00
|
|
|
// write superblock
|
|
|
|
xlseek(fd, 1024, SEEK_SET);
|
|
|
|
xwrite(fd, sb, 1024);
|
|
|
|
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
free(sb);
|
|
|
|
}
|
|
|
|
|
|
|
|
xclose(fd);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|