mirror of
https://github.com/sheumann/hush.git
synced 2025-01-14 12:30:40 +00:00
libbb: make BB_EXECVP/LP try to exec real binary if there's no /proc/self/exe
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
099e528919
commit
c71b469f5d
@ -867,11 +867,13 @@ int exists_execable(const char *filename) FAST_FUNC;
|
||||
* but it may exec busybox and call applet instead of searching PATH.
|
||||
*/
|
||||
#if ENABLE_FEATURE_PREFER_APPLETS
|
||||
int bb_execvp(const char *file, char *const argv[]) FAST_FUNC;
|
||||
#define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd)
|
||||
int BB_EXECVP(const char *file, char *const argv[]) FAST_FUNC;
|
||||
#define BB_EXECLP(prog,cmd,...) \
|
||||
execlp((find_applet_by_name(prog) >= 0) ? CONFIG_BUSYBOX_EXEC_PATH : prog, \
|
||||
cmd, __VA_ARGS__)
|
||||
do { \
|
||||
if (find_applet_by_name(prog) >= 0) \
|
||||
execlp(bb_busybox_exec_path, cmd, __VA_ARGS__); \
|
||||
execlp(prog, cmd, __VA_ARGS__); \
|
||||
} while (0)
|
||||
#else
|
||||
#define BB_EXECVP(prog,cmd) execvp(prog,cmd)
|
||||
#define BB_EXECLP(prog,cmd,...) execlp(prog,cmd,__VA_ARGS__)
|
||||
|
@ -68,12 +68,12 @@ int FAST_FUNC exists_execable(const char *filename)
|
||||
}
|
||||
|
||||
#if ENABLE_FEATURE_PREFER_APPLETS
|
||||
/* just like the real execvp, but try to launch an applet named 'file' first
|
||||
*/
|
||||
int FAST_FUNC bb_execvp(const char *file, char *const argv[])
|
||||
/* just like the real execvp, but try to launch an applet named 'file' first */
|
||||
int FAST_FUNC BB_EXECVP(const char *file, char *const argv[])
|
||||
{
|
||||
return execvp(find_applet_by_name(file) >= 0 ? bb_busybox_exec_path : file,
|
||||
argv);
|
||||
if (find_applet_by_name(file) >= 0)
|
||||
execvp(bb_busybox_exec_path, argv);
|
||||
return execvp(file, argv);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user