diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-06 21:23:03 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-06 21:23:03 +0200 |
commit | b9be78070569e69960ba2b3c4098c3dc3316b9bd (patch) | |
tree | a74d7de183adcf7ef4b4584ff42c3443343271af | |
parent | 184c738582eb190489dd2e9d120b1e036df65401 (diff) | |
download | busybox-w32-b9be78070569e69960ba2b3c4098c3dc3316b9bd.tar.gz busybox-w32-b9be78070569e69960ba2b3c4098c3dc3316b9bd.tar.bz2 busybox-w32-b9be78070569e69960ba2b3c4098c3dc3316b9bd.zip |
sv,svc: fix NOEXEC fallout
function old new delta
svc_main 145 162 +17
sv 1280 1297 +17
status 139 133 -6
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 2/1 up/down: 34/-6) Total: 28 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | console-tools/dumpkmap.c | 19 | ||||
-rw-r--r-- | console-tools/resize.c | 2 | ||||
-rw-r--r-- | coreutils/cksum.c | 1 | ||||
-rw-r--r-- | coreutils/date.c | 1 | ||||
-rw-r--r-- | coreutils/stty.c | 1 | ||||
-rw-r--r-- | runit/sv.c | 10 | ||||
-rw-r--r-- | util-linux/umount.c | 2 |
7 files changed, 18 insertions, 18 deletions
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c index 5ffb0cddb..b803e579a 100644 --- a/console-tools/dumpkmap.c +++ b/console-tools/dumpkmap.c | |||
@@ -16,6 +16,7 @@ | |||
16 | //config: stdout, in binary format. You can then use loadkmap to load it. | 16 | //config: stdout, in binary format. You can then use loadkmap to load it. |
17 | 17 | ||
18 | //applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap)) | 18 | //applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap)) |
19 | /* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ | ||
19 | 20 | ||
20 | //kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o | 21 | //kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o |
21 | 22 | ||
@@ -47,8 +48,6 @@ int dumpkmap_main(int argc UNUSED_PARAM, char **argv) | |||
47 | { | 48 | { |
48 | struct kbentry ke; | 49 | struct kbentry ke; |
49 | int i, j, fd; | 50 | int i, j, fd; |
50 | #define flags bb_common_bufsiz1 | ||
51 | setup_common_bufsiz(); | ||
52 | 51 | ||
53 | /* When user accidentally runs "dumpkmap FILE" | 52 | /* When user accidentally runs "dumpkmap FILE" |
54 | * instead of "dumpkmap >FILE", we'd dump binary stuff to tty. | 53 | * instead of "dumpkmap >FILE", we'd dump binary stuff to tty. |
@@ -60,19 +59,8 @@ int dumpkmap_main(int argc UNUSED_PARAM, char **argv) | |||
60 | 59 | ||
61 | fd = get_console_fd_or_die(); | 60 | fd = get_console_fd_or_die(); |
62 | 61 | ||
63 | #if 0 | 62 | #define flags bb_common_bufsiz1 |
64 | write(STDOUT_FILENO, "bkeymap", 7); | 63 | setup_common_bufsiz(); |
65 | /* Here we want to set everything to 0 except for indexes: | ||
66 | * [0-2] [4-6] [8-10] [12] | ||
67 | */ | ||
68 | /*memset(flags, 0x00, MAX_NR_KEYMAPS); - already is */ | ||
69 | memset(flags, 0x01, 13); | ||
70 | flags[3] = flags[7] = flags[11] = 0; | ||
71 | /* dump flags */ | ||
72 | write(STDOUT_FILENO, flags, MAX_NR_KEYMAPS); | ||
73 | #define flags7 flags | ||
74 | #else | ||
75 | /* Same effect */ | ||
76 | /* 0 1 2 3 4 5 6 7 8 9 a b c=12 */ | 64 | /* 0 1 2 3 4 5 6 7 8 9 a b c=12 */ |
77 | memcpy(flags, "bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1", | 65 | memcpy(flags, "bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1", |
78 | /* Can use sizeof, or sizeof-1. sizeof is even, using that */ | 66 | /* Can use sizeof, or sizeof-1. sizeof is even, using that */ |
@@ -80,7 +68,6 @@ int dumpkmap_main(int argc UNUSED_PARAM, char **argv) | |||
80 | ); | 68 | ); |
81 | write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS); | 69 | write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS); |
82 | #define flags7 (flags + 7) | 70 | #define flags7 (flags + 7) |
83 | #endif | ||
84 | 71 | ||
85 | for (i = 0; i < 13; i++) { | 72 | for (i = 0; i < 13; i++) { |
86 | if (flags7[i]) { | 73 | if (flags7[i]) { |
diff --git a/console-tools/resize.c b/console-tools/resize.c index 97866673a..8aa487c41 100644 --- a/console-tools/resize.c +++ b/console-tools/resize.c | |||
@@ -24,6 +24,7 @@ | |||
24 | //config: COLUMNS=80;LINES=44;export COLUMNS LINES; | 24 | //config: COLUMNS=80;LINES=44;export COLUMNS LINES; |
25 | 25 | ||
26 | //applet:IF_RESIZE(APPLET_NOEXEC(resize, resize, BB_DIR_USR_BIN, BB_SUID_DROP, resize)) | 26 | //applet:IF_RESIZE(APPLET_NOEXEC(resize, resize, BB_DIR_USR_BIN, BB_SUID_DROP, resize)) |
27 | /* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ | ||
27 | 28 | ||
28 | //kbuild:lib-$(CONFIG_RESIZE) += resize.o | 29 | //kbuild:lib-$(CONFIG_RESIZE) += resize.o |
29 | 30 | ||
@@ -63,6 +64,7 @@ int resize_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
63 | */ | 64 | */ |
64 | 65 | ||
65 | tcgetattr(STDERR_FILENO, old_termios_p); /* fiddle echo */ | 66 | tcgetattr(STDERR_FILENO, old_termios_p); /* fiddle echo */ |
67 | //TODO: die if the above fails? | ||
66 | memcpy(&new, old_termios_p, sizeof(new)); | 68 | memcpy(&new, old_termios_p, sizeof(new)); |
67 | new.c_cflag |= (CLOCAL | CREAD); | 69 | new.c_cflag |= (CLOCAL | CREAD); |
68 | new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); | 70 | new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); |
diff --git a/coreutils/cksum.c b/coreutils/cksum.c index c0cf65d2a..059a33310 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c | |||
@@ -13,6 +13,7 @@ | |||
13 | //config: cksum is used to calculate the CRC32 checksum of a file. | 13 | //config: cksum is used to calculate the CRC32 checksum of a file. |
14 | 14 | ||
15 | //applet:IF_CKSUM(APPLET_NOEXEC(cksum, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum)) | 15 | //applet:IF_CKSUM(APPLET_NOEXEC(cksum, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum)) |
16 | /* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ | ||
16 | 17 | ||
17 | //kbuild:lib-$(CONFIG_CKSUM) += cksum.o | 18 | //kbuild:lib-$(CONFIG_CKSUM) += cksum.o |
18 | 19 | ||
diff --git a/coreutils/date.c b/coreutils/date.c index 89b281646..5a4ad5fe5 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -59,6 +59,7 @@ | |||
59 | //config: MMDDhhmm[[YY]YY][.ss] format. | 59 | //config: MMDDhhmm[[YY]YY][.ss] format. |
60 | 60 | ||
61 | //applet:IF_DATE(APPLET_NOEXEC(date, date, BB_DIR_BIN, BB_SUID_DROP, date)) | 61 | //applet:IF_DATE(APPLET_NOEXEC(date, date, BB_DIR_BIN, BB_SUID_DROP, date)) |
62 | /* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ | ||
62 | 63 | ||
63 | //kbuild:lib-$(CONFIG_DATE) += date.o | 64 | //kbuild:lib-$(CONFIG_DATE) += date.o |
64 | 65 | ||
diff --git a/coreutils/stty.c b/coreutils/stty.c index 2292fa5ee..57e2cc30d 100644 --- a/coreutils/stty.c +++ b/coreutils/stty.c | |||
@@ -785,6 +785,7 @@ struct globals { | |||
785 | } FIX_ALIASING; | 785 | } FIX_ALIASING; |
786 | #define G (*(struct globals*)bb_common_bufsiz1) | 786 | #define G (*(struct globals*)bb_common_bufsiz1) |
787 | #define INIT_G() do { \ | 787 | #define INIT_G() do { \ |
788 | setup_common_bufsiz(); \ | ||
788 | G.device_name = bb_msg_standard_input; \ | 789 | G.device_name = bb_msg_standard_input; \ |
789 | G.max_col = 80; \ | 790 | G.max_col = 80; \ |
790 | G.current_col = 0; /* we are noexec, must clear */ \ | 791 | G.current_col = 0; /* we are noexec, must clear */ \ |
diff --git a/runit/sv.c b/runit/sv.c index 0817ab472..630f1f37e 100644 --- a/runit/sv.c +++ b/runit/sv.c | |||
@@ -193,7 +193,7 @@ struct globals { | |||
193 | /* "Bernstein" time format: unix + 0x400000000000000aULL */ | 193 | /* "Bernstein" time format: unix + 0x400000000000000aULL */ |
194 | uint64_t tstart, tnow; | 194 | uint64_t tstart, tnow; |
195 | svstatus_t svstatus; | 195 | svstatus_t svstatus; |
196 | unsigned islog; | 196 | smallint islog; |
197 | } FIX_ALIASING; | 197 | } FIX_ALIASING; |
198 | #define G (*(struct globals*)bb_common_bufsiz1) | 198 | #define G (*(struct globals*)bb_common_bufsiz1) |
199 | #define acts (G.acts ) | 199 | #define acts (G.acts ) |
@@ -203,7 +203,13 @@ struct globals { | |||
203 | #define tnow (G.tnow ) | 203 | #define tnow (G.tnow ) |
204 | #define svstatus (G.svstatus ) | 204 | #define svstatus (G.svstatus ) |
205 | #define islog (G.islog ) | 205 | #define islog (G.islog ) |
206 | #define INIT_G() do { setup_common_bufsiz(); } while (0) | 206 | #define INIT_G() do { \ |
207 | setup_common_bufsiz(); \ | ||
208 | /* need to zero out, we are NOEXEC */ \ | ||
209 | rc = EXIT_SUCCESS; \ | ||
210 | islog = 0; \ | ||
211 | /* other fields need not be zero */ \ | ||
212 | } while (0) | ||
207 | 213 | ||
208 | 214 | ||
209 | #define str_equal(s,t) (strcmp((s), (t)) == 0) | 215 | #define str_equal(s,t) (strcmp((s), (t)) == 0) |
diff --git a/util-linux/umount.c b/util-linux/umount.c index 33667b13c..a6405dfcc 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
@@ -35,6 +35,8 @@ | |||
35 | * In this case, you might be actually happy if your standalone bbox shell | 35 | * In this case, you might be actually happy if your standalone bbox shell |
36 | * does not fork+exec, but only forks and calls umount_main() which it already has! | 36 | * does not fork+exec, but only forks and calls umount_main() which it already has! |
37 | * Let's go with NOEXEC. | 37 | * Let's go with NOEXEC. |
38 | * | ||
39 | * bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. | ||
38 | */ | 40 | */ |
39 | 41 | ||
40 | //kbuild:lib-$(CONFIG_UMOUNT) += umount.o | 42 | //kbuild:lib-$(CONFIG_UMOUNT) += umount.o |