123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- #include "libbb.h"
- #include <linux/fs.h>
- #include "bb_e2fs_defs.h"
- char BUG_wrong_field_size(void);
- #define STORE_LE(field, value) \
- do { \
- if (sizeof(field) == 4) \
- field = SWAP_LE32(value); \
- else if (sizeof(field) == 2) \
- field = SWAP_LE16(value); \
- else if (sizeof(field) == 1) \
- field = (value); \
- else \
- BUG_wrong_field_size(); \
- } while (0)
- #define FETCH_LE32(field) \
- (sizeof(field) == 4 ? SWAP_LE32(field) : BUG_wrong_field_size())
- enum {
- OPT_L = 1 << 0,
- OPT_c = 1 << 1,
- OPT_i = 1 << 2,
- OPT_C = 1 << 3,
- };
- int tune2fs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
- int tune2fs_main(int argc UNUSED_PARAM, char **argv)
- {
- unsigned opts;
- const char *label, *str_c, *str_i, *str_C;
- struct ext2_super_block *sb;
- int fd;
- opts = getopt32(argv, "^" "L:c:i:C:" "\0" "=1", &label, &str_c, &str_i, &str_C);
- if (!opts)
- bb_show_usage();
- argv += optind;
-
- fd = xopen(argv[0], O_RDWR);
- xlseek(fd, 1024, SEEK_SET);
- sb = xzalloc(1024);
- xread(fd, sb, 1024);
-
-
- if (opts & OPT_C) {
- int n = xatoi_range(str_C, 1, 0xfffe);
- STORE_LE(sb->s_mnt_count, (unsigned)n);
- }
-
- if (opts & OPT_L)
- safe_strncpy((char *)sb->s_volume_name, label, sizeof(sb->s_volume_name));
- 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);
- }
-
- xlseek(fd, 1024, SEEK_SET);
- xwrite(fd, sb, 1024);
- if (ENABLE_FEATURE_CLEAN_UP) {
- free(sb);
- }
- xclose(fd);
- return EXIT_SUCCESS;
- }
|