diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-12 13:21:33 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-12 13:21:33 +0100 |
commit | cca7c611f26d98415c0f986e5a5e731ab5e379ff (patch) | |
tree | a080a096774447299f7772bc5c5e6a47d2a9ef0f | |
parent | 3bb3e1d0a1eed01306e22e59db8de6c2d945165a (diff) | |
download | busybox-w32-cca7c611f26d98415c0f986e5a5e731ab5e379ff.tar.gz busybox-w32-cca7c611f26d98415c0f986e5a5e731ab5e379ff.tar.bz2 busybox-w32-cca7c611f26d98415c0f986e5a5e731ab5e379ff.zip |
which: fix TODO with NOFORK+malloc_failure misbehaving
function old new delta
find_executable 86 104 +18
which_main 202 194 -8
executable_exists 66 51 -15
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/2 up/down: 18/-23) Total: -5 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | debianutils/which.c | 16 | ||||
-rw-r--r-- | include/libbb.h | 12 | ||||
-rw-r--r-- | libbb/executable.c | 18 | ||||
-rw-r--r-- | libbb/messages.c | 8 |
4 files changed, 28 insertions, 26 deletions
diff --git a/debianutils/which.c b/debianutils/which.c index 3bd54ac42..02f77a216 100644 --- a/debianutils/which.c +++ b/debianutils/which.c | |||
@@ -30,12 +30,15 @@ | |||
30 | int which_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 30 | int which_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
31 | int which_main(int argc UNUSED_PARAM, char **argv) | 31 | int which_main(int argc UNUSED_PARAM, char **argv) |
32 | { | 32 | { |
33 | const char *env_path; | 33 | char *env_path; |
34 | int status = 0; | 34 | int status = 0; |
35 | /* This sizeof(): bb_default_root_path is shorter than BB_PATH_ROOT_PATH */ | ||
36 | char buf[sizeof(BB_PATH_ROOT_PATH)]; | ||
35 | 37 | ||
36 | env_path = getenv("PATH"); | 38 | env_path = getenv("PATH"); |
37 | if (!env_path) | 39 | if (!env_path) |
38 | env_path = bb_default_root_path; | 40 | /* env_path must be writable, and must not alloc, so... */ |
41 | env_path = strcpy(buf, bb_default_root_path); | ||
39 | 42 | ||
40 | getopt32(argv, "^" "a" "\0" "-1"/*at least one arg*/); | 43 | getopt32(argv, "^" "a" "\0" "-1"/*at least one arg*/); |
41 | argv += optind; | 44 | argv += optind; |
@@ -51,20 +54,17 @@ int which_main(int argc UNUSED_PARAM, char **argv) | |||
51 | } | 54 | } |
52 | } else { | 55 | } else { |
53 | char *path; | 56 | char *path; |
54 | char *tmp; | ||
55 | char *p; | 57 | char *p; |
56 | 58 | ||
57 | path = tmp = xstrdup(env_path); | 59 | path = env_path; |
58 | //NOFORK FIXME: nested xmallocs (one is inside find_executable()) | 60 | /* NOFORK NB: xmalloc inside find_executable(), must have no allocs above! */ |
59 | //can leak memory on failure | 61 | while ((p = find_executable(*argv, &path)) != NULL) { |
60 | while ((p = find_executable(*argv, &tmp)) != NULL) { | ||
61 | missing = 0; | 62 | missing = 0; |
62 | puts(p); | 63 | puts(p); |
63 | free(p); | 64 | free(p); |
64 | if (!option_mask32) /* -a not set */ | 65 | if (!option_mask32) /* -a not set */ |
65 | break; | 66 | break; |
66 | } | 67 | } |
67 | free(path); | ||
68 | } | 68 | } |
69 | status |= missing; | 69 | status |= missing; |
70 | } while (*++argv); | 70 | } while (*++argv); |
diff --git a/include/libbb.h b/include/libbb.h index daccf154a..5f25b5dde 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -2005,10 +2005,16 @@ extern const char bb_path_wtmp_file[] ALIGN1; | |||
2005 | 2005 | ||
2006 | #define bb_dev_null "/dev/null" | 2006 | #define bb_dev_null "/dev/null" |
2007 | extern const char bb_busybox_exec_path[] ALIGN1; | 2007 | extern const char bb_busybox_exec_path[] ALIGN1; |
2008 | /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin, | 2008 | /* allow default system PATH to be extended via CFLAGS */ |
2009 | * but I want to save a few bytes here */ | 2009 | #ifndef BB_ADDITIONAL_PATH |
2010 | extern const char bb_PATH_root_path[] ALIGN1; /* "PATH=/sbin:/usr/sbin:/bin:/usr/bin" */ | 2010 | #define BB_ADDITIONAL_PATH "" |
2011 | #endif | ||
2012 | #define BB_PATH_ROOT_PATH "PATH=/sbin:/usr/sbin:/bin:/usr/bin" BB_ADDITIONAL_PATH | ||
2013 | extern const char bb_PATH_root_path[] ALIGN1; /* BB_PATH_ROOT_PATH */ | ||
2011 | #define bb_default_root_path (bb_PATH_root_path + sizeof("PATH")) | 2014 | #define bb_default_root_path (bb_PATH_root_path + sizeof("PATH")) |
2015 | /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin, | ||
2016 | * but I want to save a few bytes here: | ||
2017 | */ | ||
2012 | #define bb_default_path (bb_PATH_root_path + sizeof("PATH=/sbin:/usr/sbin")) | 2018 | #define bb_default_path (bb_PATH_root_path + sizeof("PATH=/sbin:/usr/sbin")) |
2013 | 2019 | ||
2014 | extern const int const_int_0; | 2020 | extern const int const_int_0; |
diff --git a/libbb/executable.c b/libbb/executable.c index 325dd0107..29d2a2c85 100644 --- a/libbb/executable.c +++ b/libbb/executable.c | |||
@@ -25,7 +25,8 @@ int FAST_FUNC file_is_executable(const char *name) | |||
25 | * you may call find_executable again with this PATHp to continue | 25 | * you may call find_executable again with this PATHp to continue |
26 | * (if it's not NULL). | 26 | * (if it's not NULL). |
27 | * return NULL otherwise; (PATHp is undefined) | 27 | * return NULL otherwise; (PATHp is undefined) |
28 | * in all cases (*PATHp) contents will be trashed (s/:/NUL/). | 28 | * in all cases (*PATHp) contents are temporarily modified |
29 | * but are restored on return (s/:/NUL/ and back). | ||
29 | */ | 30 | */ |
30 | char* FAST_FUNC find_executable(const char *filename, char **PATHp) | 31 | char* FAST_FUNC find_executable(const char *filename, char **PATHp) |
31 | { | 32 | { |
@@ -41,14 +42,17 @@ char* FAST_FUNC find_executable(const char *filename, char **PATHp) | |||
41 | 42 | ||
42 | p = *PATHp; | 43 | p = *PATHp; |
43 | while (p) { | 44 | while (p) { |
45 | int ex; | ||
46 | |||
44 | n = strchr(p, ':'); | 47 | n = strchr(p, ':'); |
45 | if (n) | 48 | if (n) *n = '\0'; |
46 | *n++ = '\0'; | ||
47 | p = concat_path_file( | 49 | p = concat_path_file( |
48 | p[0] ? p : ".", /* handle "::" case */ | 50 | p[0] ? p : ".", /* handle "::" case */ |
49 | filename | 51 | filename |
50 | ); | 52 | ); |
51 | if (file_is_executable(p)) { | 53 | ex = file_is_executable(p); |
54 | if (n) *n++ = ':'; | ||
55 | if (ex) { | ||
52 | *PATHp = n; | 56 | *PATHp = n; |
53 | return p; | 57 | return p; |
54 | } | 58 | } |
@@ -64,10 +68,8 @@ char* FAST_FUNC find_executable(const char *filename, char **PATHp) | |||
64 | */ | 68 | */ |
65 | int FAST_FUNC executable_exists(const char *filename) | 69 | int FAST_FUNC executable_exists(const char *filename) |
66 | { | 70 | { |
67 | char *path = xstrdup(getenv("PATH")); | 71 | char *path = getenv("PATH"); |
68 | char *tmp = path; | 72 | char *ret = find_executable(filename, &path); |
69 | char *ret = find_executable(filename, &tmp); | ||
70 | free(path); | ||
71 | free(ret); | 73 | free(ret); |
72 | return ret != NULL; | 74 | return ret != NULL; |
73 | } | 75 | } |
diff --git a/libbb/messages.c b/libbb/messages.c index 0a6cf3bf8..6914d5701 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -6,11 +6,6 @@ | |||
6 | */ | 6 | */ |
7 | #include "libbb.h" | 7 | #include "libbb.h" |
8 | 8 | ||
9 | /* allow default system PATH to be extended via CFLAGS */ | ||
10 | #ifndef BB_ADDITIONAL_PATH | ||
11 | #define BB_ADDITIONAL_PATH "" | ||
12 | #endif | ||
13 | |||
14 | /* allow version to be extended, via CFLAGS */ | 9 | /* allow version to be extended, via CFLAGS */ |
15 | #ifndef BB_EXTRA_VERSION | 10 | #ifndef BB_EXTRA_VERSION |
16 | #define BB_EXTRA_VERSION " ("AUTOCONF_TIMESTAMP")" | 11 | #define BB_EXTRA_VERSION " ("AUTOCONF_TIMESTAMP")" |
@@ -36,8 +31,7 @@ const char bb_busybox_exec_path[] ALIGN1 = CONFIG_BUSYBOX_EXEC_PATH; | |||
36 | const char bb_default_login_shell[] ALIGN1 = LIBBB_DEFAULT_LOGIN_SHELL; | 31 | const char bb_default_login_shell[] ALIGN1 = LIBBB_DEFAULT_LOGIN_SHELL; |
37 | /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin, | 32 | /* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin, |
38 | * but I want to save a few bytes here. Check libbb.h before changing! */ | 33 | * but I want to save a few bytes here. Check libbb.h before changing! */ |
39 | const char bb_PATH_root_path[] ALIGN1 = | 34 | const char bb_PATH_root_path[] ALIGN1 = BB_PATH_ROOT_PATH; |
40 | "PATH=/sbin:/usr/sbin:/bin:/usr/bin" BB_ADDITIONAL_PATH; | ||
41 | 35 | ||
42 | 36 | ||
43 | //const int const_int_1 = 1; | 37 | //const int const_int_1 = 1; |