aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-01-12 13:21:33 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-01-12 13:21:33 +0100
commitcca7c611f26d98415c0f986e5a5e731ab5e379ff (patch)
treea080a096774447299f7772bc5c5e6a47d2a9ef0f /libbb
parent3bb3e1d0a1eed01306e22e59db8de6c2d945165a (diff)
downloadbusybox-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>
Diffstat (limited to 'libbb')
-rw-r--r--libbb/executable.c18
-rw-r--r--libbb/messages.c8
2 files changed, 11 insertions, 15 deletions
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 */
30char* FAST_FUNC find_executable(const char *filename, char **PATHp) 31char* 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 */
65int FAST_FUNC executable_exists(const char *filename) 69int 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;
36const char bb_default_login_shell[] ALIGN1 = LIBBB_DEFAULT_LOGIN_SHELL; 31const 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! */
39const char bb_PATH_root_path[] ALIGN1 = 34const 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;