diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-22 00:55:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-22 00:55:55 +0200 |
commit | 3945bc15340dc9cfa8aae0164f3baf94db6d40c3 (patch) | |
tree | 0899d64dba6f6331df7c321db763c80a5dc40306 | |
parent | 481ca9604d1d367c02b9f0799a8c4328232900b5 (diff) | |
download | busybox-w32-3945bc15340dc9cfa8aae0164f3baf94db6d40c3.tar.gz busybox-w32-3945bc15340dc9cfa8aae0164f3baf94db6d40c3.tar.bz2 busybox-w32-3945bc15340dc9cfa8aae0164f3baf94db6d40c3.zip |
tune2fs: new applet by Vladimir. Only supports -L LABEL
function old new delta
tune2fs_main - 165 +165
packed_usage 26692 26702 +10
applet_names 2148 2156 +8
applet_main 1264 1268 +4
applet_nameofs 632 634 +2
applet_install_loc 158 159 +1
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 5/0 up/down: 190/0) Total: 190 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | include/applets.h | 2 | ||||
-rw-r--r-- | include/usage.h | 18 | ||||
-rw-r--r-- | util-linux/Kbuild | 1 | ||||
-rw-r--r-- | util-linux/tune2fs.c | 71 |
4 files changed, 83 insertions, 9 deletions
diff --git a/include/applets.h b/include/applets.h index 9ca84623b..134f21e2f 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -396,7 +396,7 @@ IF_TRUE(APPLET_NOFORK(true, true, _BB_DIR_BIN, _BB_SUID_DROP, true)) | |||
396 | IF_TTY(APPLET(tty, _BB_DIR_USR_BIN, _BB_SUID_DROP)) | 396 | IF_TTY(APPLET(tty, _BB_DIR_USR_BIN, _BB_SUID_DROP)) |
397 | IF_TTYSIZE(APPLET(ttysize, _BB_DIR_USR_BIN, _BB_SUID_DROP)) | 397 | IF_TTYSIZE(APPLET(ttysize, _BB_DIR_USR_BIN, _BB_SUID_DROP)) |
398 | IF_TUNCTL(APPLET(tunctl, _BB_DIR_SBIN, _BB_SUID_DROP)) | 398 | IF_TUNCTL(APPLET(tunctl, _BB_DIR_SBIN, _BB_SUID_DROP)) |
399 | //IF_TUNE2FS(APPLET(tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP)) | 399 | IF_MKFS_EXT2(APPLET(tune2fs, _BB_DIR_SBIN, _BB_SUID_DROP)) |
400 | IF_APP_UDHCPC(APPLET(udhcpc, _BB_DIR_SBIN, _BB_SUID_DROP)) | 400 | IF_APP_UDHCPC(APPLET(udhcpc, _BB_DIR_SBIN, _BB_SUID_DROP)) |
401 | IF_APP_UDHCPD(APPLET(udhcpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP)) | 401 | IF_APP_UDHCPD(APPLET(udhcpd, _BB_DIR_USR_SBIN, _BB_SUID_DROP)) |
402 | IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, udpsvd)) | 402 | IF_UDPSVD(APPLET_ODDNAME(udpsvd, tcpudpsvd, _BB_DIR_USR_BIN, _BB_SUID_DROP, udpsvd)) |
diff --git a/include/usage.h b/include/usage.h index 80111e5ef..9c0d29d94 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -4666,22 +4666,24 @@ | |||
4666 | "\n -f name tun device (/dev/net/tun)" \ | 4666 | "\n -f name tun device (/dev/net/tun)" \ |
4667 | "\n -t name Create iface 'name'" \ | 4667 | "\n -t name Create iface 'name'" \ |
4668 | "\n -d name Delete iface 'name'" \ | 4668 | "\n -d name Delete iface 'name'" \ |
4669 | IF_FEATURE_TUNCTL_UG( \ | 4669 | IF_FEATURE_TUNCTL_UG( \ |
4670 | "\n -u owner Set iface owner" \ | 4670 | "\n -u owner Set iface owner" \ |
4671 | "\n -g group Set iface group" \ | 4671 | "\n -g group Set iface group" \ |
4672 | "\n -b Brief output" \ | 4672 | "\n -b Brief output" \ |
4673 | ) | 4673 | ) |
4674 | #define tunctl_example_usage \ | 4674 | #define tunctl_example_usage \ |
4675 | "# tunctl\n" \ | 4675 | "# tunctl\n" \ |
4676 | "# tunctl -d tun0\n" | 4676 | "# tunctl -d tun0\n" |
4677 | 4677 | ||
4678 | #define tune2fs_trivial_usage \ | 4678 | #define tune2fs_trivial_usage \ |
4679 | "[-c max-mounts-count] [-e errors-behavior] [-g group] " \ | 4679 | /* "[-c max-mounts-count] [-e errors-behavior] [-g group] " */ \ |
4680 | "[-i interval[d|m|w]] [-j] [-J journal-options] [-l] [-s sparse-flag] " \ | 4680 | /* "[-i interval[d|m|w]] [-j] [-J journal-options] [-l] [-s sparse-flag] " */ \ |
4681 | "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] " \ | 4681 | /* "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] " */ \ |
4682 | "[-r reserved-blocks-count] [-u user] [-C mount-count] " \ | 4682 | /* "[-r reserved-blocks-count] [-u user] [-C mount-count] " */ \ |
4683 | "[-L volume-label] [-M last-mounted-dir] [-O [^]feature[,...]] " \ | 4683 | "[-L LABEL] " \ |
4684 | "[-T last-check-time] [-U UUID] device" | 4684 | /* "[-M last-mounted-dir] [-O [^]feature[,...]] " */ \ |
4685 | /* "[-T last-check-time] [-U UUID] " */ \ | ||
4686 | "BLOCKDEV" | ||
4685 | #define tune2fs_full_usage "\n\n" \ | 4687 | #define tune2fs_full_usage "\n\n" \ |
4686 | "Adjust filesystem options on ext[23] filesystems" | 4688 | "Adjust filesystem options on ext[23] filesystems" |
4687 | 4689 | ||
diff --git a/util-linux/Kbuild b/util-linux/Kbuild index 7befe0678..dc1d1f21d 100644 --- a/util-linux/Kbuild +++ b/util-linux/Kbuild | |||
@@ -38,4 +38,5 @@ lib-$(CONFIG_SCRIPTREPLAY) += scriptreplay.o | |||
38 | lib-$(CONFIG_SETARCH) += setarch.o | 38 | lib-$(CONFIG_SETARCH) += setarch.o |
39 | lib-$(CONFIG_SWAPONOFF) += swaponoff.o | 39 | lib-$(CONFIG_SWAPONOFF) += swaponoff.o |
40 | lib-$(CONFIG_SWITCH_ROOT) += switch_root.o | 40 | lib-$(CONFIG_SWITCH_ROOT) += switch_root.o |
41 | lib-$(CONFIG_MKFS_EXT2) += tune2fs.o | ||
41 | lib-$(CONFIG_UMOUNT) += umount.o | 42 | lib-$(CONFIG_UMOUNT) += umount.o |
diff --git a/util-linux/tune2fs.c b/util-linux/tune2fs.c new file mode 100644 index 000000000..3b8f3d8ef --- /dev/null +++ b/util-linux/tune2fs.c | |||
@@ -0,0 +1,71 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * tune2fs: utility to modify EXT2 filesystem | ||
4 | * | ||
5 | * Busybox'ed (2009) by Vladimir Dronnikov <dronnikov@gmail.com> | ||
6 | * | ||
7 | * Licensed under GPLv2, see file LICENSE in this tarball for details. | ||
8 | */ | ||
9 | #include "libbb.h" | ||
10 | #include <linux/fs.h> | ||
11 | #include <linux/ext2_fs.h> | ||
12 | #include "volume_id/volume_id_internal.h" | ||
13 | |||
14 | // storage helpers | ||
15 | char BUG_wrong_field_size(void); | ||
16 | #define STORE_LE(field, value) \ | ||
17 | do { \ | ||
18 | if (sizeof(field) == 4) \ | ||
19 | field = cpu_to_le32(value); \ | ||
20 | else if (sizeof(field) == 2) \ | ||
21 | field = cpu_to_le16(value); \ | ||
22 | else if (sizeof(field) == 1) \ | ||
23 | field = (value); \ | ||
24 | else \ | ||
25 | BUG_wrong_field_size(); \ | ||
26 | } while (0) | ||
27 | |||
28 | #define FETCH_LE32(field) \ | ||
29 | (sizeof(field) == 4 ? cpu_to_le32(field) : BUG_wrong_field_size()) | ||
30 | |||
31 | enum { | ||
32 | OPT_L = 1 << 0, // label | ||
33 | }; | ||
34 | |||
35 | int tune2fs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | ||
36 | int tune2fs_main(int argc UNUSED_PARAM, char **argv) | ||
37 | { | ||
38 | unsigned opts; | ||
39 | const char *label; | ||
40 | struct ext2_super_block *sb; | ||
41 | int fd; | ||
42 | |||
43 | opt_complementary = "=1"; | ||
44 | opts = getopt32(argv, "L:", &label); | ||
45 | argv += optind; // argv[0] -- device | ||
46 | |||
47 | if (!opts) | ||
48 | bb_show_usage(); | ||
49 | |||
50 | // read superblock | ||
51 | fd = xopen(argv[0], O_RDWR); | ||
52 | xlseek(fd, 1024, SEEK_SET); | ||
53 | sb = xzalloc(1024); | ||
54 | xread(fd, sb, 1024); | ||
55 | |||
56 | // mangle superblock | ||
57 | //STORE_LE(sb->s_wtime, time(NULL)); - why bother? | ||
58 | // set the label | ||
59 | if (1 /*opts & OPT_L*/) | ||
60 | safe_strncpy((char *)sb->s_volume_name, label, sizeof(sb->s_volume_name)); | ||
61 | // write superblock | ||
62 | xlseek(fd, 1024, SEEK_SET); | ||
63 | xwrite(fd, sb, 1024); | ||
64 | |||
65 | if (ENABLE_FEATURE_CLEAN_UP) { | ||
66 | free(sb); | ||
67 | } | ||
68 | |||
69 | xclose(fd); | ||
70 | return EXIT_SUCCESS; | ||
71 | } | ||