2006-05-19 18:42:21 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2003-07-28 13:10:39 +05:30
|
|
|
/*
|
2004-04-14 23:21:38 +05:30
|
|
|
* Rexec program for system have fork() as vfork() with foreground option
|
2003-12-16 03:27:44 +05:30
|
|
|
*
|
|
|
|
* Copyright (C) Vladimir N. Oleynik <dzo@simtreas.ru>
|
|
|
|
* Copyright (C) 2003 Russ Dill <Russ.Dill@asu.edu>
|
|
|
|
*
|
2004-04-14 23:21:38 +05:30
|
|
|
* daemon() portion taken from uClibc:
|
2003-12-16 03:27:44 +05:30
|
|
|
*
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Modified for uClibc by Erik Andersen <andersee@debian.org>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2003-07-28 13:10:39 +05:30
|
|
|
*/
|
2007-11-28 12:19:03 +05:30
|
|
|
#include "busybox.h" /* uses applet tables */
|
2017-07-04 01:01:16 +05:30
|
|
|
#include "NUM_APPLETS.h"
|
2003-07-28 13:10:39 +05:30
|
|
|
|
2017-08-08 17:39:23 +05:30
|
|
|
#define NOFORK_SUPPORT ((NUM_APPLETS > 1) && (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_NOFORK))
|
|
|
|
#define NOEXEC_SUPPORT ((NUM_APPLETS > 1) && (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_STANDALONE))
|
|
|
|
|
|
|
|
#if defined(__linux__) && (NUM_APPLETS > 1)
|
2018-03-05 03:45:59 +05:30
|
|
|
# include <sys/prctl.h>
|
|
|
|
# ifndef PR_SET_NAME
|
|
|
|
# define PR_SET_NAME 15
|
|
|
|
# endif
|
|
|
|
# ifndef PR_GET_NAME
|
|
|
|
# define PR_GET_NAME 16
|
|
|
|
# endif
|
2017-08-08 17:39:23 +05:30
|
|
|
void FAST_FUNC set_task_comm(const char *comm)
|
|
|
|
{
|
|
|
|
/* okay if too long (truncates) */
|
|
|
|
prctl(PR_SET_NAME, (long)comm, 0, 0, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-08-08 04:51:49 +05:30
|
|
|
/*
|
2017-08-08 17:39:23 +05:30
|
|
|
* NOFORK/NOEXEC support
|
2017-08-08 04:51:49 +05:30
|
|
|
*/
|
2017-08-08 17:39:23 +05:30
|
|
|
#if NOFORK_SUPPORT
|
2015-10-09 20:12:57 +05:30
|
|
|
static jmp_buf die_jmp;
|
|
|
|
static void jump(void)
|
|
|
|
{
|
|
|
|
/* Special case. We arrive here if NOFORK applet
|
|
|
|
* calls xfunc, which then decides to die.
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
* We don't die, but instead jump back to caller.
|
2015-10-09 20:12:57 +05:30
|
|
|
* NOFORK applets still cannot carelessly call xfuncs:
|
|
|
|
* p = xmalloc(10);
|
|
|
|
* q = xmalloc(10); // BUG! if this dies, we leak p!
|
|
|
|
*/
|
|
|
|
/* | 0x100 allows to pass zero exitcode (longjmp can't pass 0).
|
|
|
|
* This works because exitcodes are bytes,
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
* run_nofork_applet() ensures that by "& 0xff"
|
|
|
|
*/
|
2015-10-09 20:12:57 +05:30
|
|
|
longjmp(die_jmp, xfunc_error_retval | 0x100);
|
|
|
|
}
|
|
|
|
|
2011-02-02 23:35:25 +05:30
|
|
|
struct nofork_save_area {
|
|
|
|
jmp_buf die_jmp;
|
2015-10-09 20:12:57 +05:30
|
|
|
void (*die_func)(void);
|
2011-02-02 23:35:25 +05:30
|
|
|
const char *applet_name;
|
|
|
|
uint32_t option_mask32;
|
2017-08-03 22:30:01 +05:30
|
|
|
smallint logmode;
|
2011-02-02 23:35:25 +05:30
|
|
|
uint8_t xfunc_error_retval;
|
|
|
|
};
|
|
|
|
static void save_nofork_data(struct nofork_save_area *save)
|
2007-04-14 15:39:57 +05:30
|
|
|
{
|
2007-05-24 17:48:16 +05:30
|
|
|
memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp));
|
2015-10-09 20:12:57 +05:30
|
|
|
save->die_func = die_func;
|
2007-10-10 20:08:47 +05:30
|
|
|
save->applet_name = applet_name;
|
2007-04-28 22:13:18 +05:30
|
|
|
save->option_mask32 = option_mask32;
|
2017-08-03 22:30:01 +05:30
|
|
|
save->logmode = logmode;
|
2015-10-09 20:12:57 +05:30
|
|
|
save->xfunc_error_retval = xfunc_error_retval;
|
2007-04-28 22:13:18 +05:30
|
|
|
}
|
2011-02-02 23:35:25 +05:30
|
|
|
static void restore_nofork_data(struct nofork_save_area *save)
|
2007-04-28 22:13:18 +05:30
|
|
|
{
|
2007-05-24 17:48:16 +05:30
|
|
|
memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp));
|
2015-10-09 20:12:57 +05:30
|
|
|
die_func = save->die_func;
|
2007-10-10 20:08:47 +05:30
|
|
|
applet_name = save->applet_name;
|
2007-04-28 22:13:18 +05:30
|
|
|
option_mask32 = save->option_mask32;
|
2017-08-03 22:30:01 +05:30
|
|
|
logmode = save->logmode;
|
2015-10-09 20:12:57 +05:30
|
|
|
xfunc_error_retval = save->xfunc_error_retval;
|
2007-04-28 22:13:18 +05:30
|
|
|
}
|
|
|
|
|
2011-02-02 23:35:25 +05:30
|
|
|
int FAST_FUNC run_nofork_applet(int applet_no, char **argv)
|
2007-04-28 22:13:18 +05:30
|
|
|
{
|
|
|
|
int rc, argc;
|
2011-02-02 23:35:25 +05:30
|
|
|
struct nofork_save_area old;
|
|
|
|
|
|
|
|
save_nofork_data(&old);
|
2007-04-14 15:39:57 +05:30
|
|
|
|
2017-08-03 22:30:01 +05:30
|
|
|
logmode = LOGMODE_STDIO;
|
2007-04-14 15:39:57 +05:30
|
|
|
xfunc_error_retval = EXIT_FAILURE;
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
/* In case getopt() was already called:
|
2008-10-20 13:22:33 +05:30
|
|
|
* reset the libc getopt() function, which keeps internal state.
|
getopt32: remove applet_long_options
FEATURE_GETOPT_LONG made dependent on LONG_OPTS.
The folloving options are removed, now LONG_OPTS enables long options
for affected applets:
FEATURE_ENV_LONG_OPTIONS FEATURE_EXPAND_LONG_OPTIONS
FEATURE_UNEXPAND_LONG_OPTIONS FEATURE_MKDIR_LONG_OPTIONS
FEATURE_MV_LONG_OPTIONS FEATURE_RMDIR_LONG_OPTIONS
FEATURE_ADDGROUP_LONG_OPTIONS FEATURE_ADDUSER_LONG_OPTIONS
FEATURE_HWCLOCK_LONG_OPTIONS FEATURE_NSENTER_LONG_OPTS
FEATURE_CHCON_LONG_OPTIONS FEATURE_RUNCON_LONG_OPTIONS
They either had a small number of long options, or their long options are
essential.
Example: upstream addgroup and adduser have ONLY longopts,
we should probably go further and get rid
of non-standard short options.
To this end, make addgroup and adduser "select LONG_OPTS".
We had this breakage caused by us even in our own package!
#if ENABLE_LONG_OPTS || !ENABLE_ADDGROUP
/* We try to use --gid, not -g, because "standard" addgroup
* has no short option -g, it has only long --gid.
*/
argv[1] = (char*)"--gid";
#else
/* Breaks if system in fact does NOT use busybox addgroup */
argv[1] = (char*)"-g";
#endif
xargs: its lone longopt no longer depends on DESKTOP, only on LONG_OPTS.
hwclock TODO: get rid of incompatible -t, -l aliases to --systz, --localtime
Shorten help texts by omitting long option when short opt alternative exists.
Reduction of size comes from the fact that store of an immediate
(an address of longopts) to a fixed address (global variable)
is a longer insn than pushing that immediate or passing it in a register.
This effect is CPU-agnostic.
function old new delta
getopt32 1350 22 -1328
vgetopt32 - 1318 +1318
getopt32long - 24 +24
tftpd_main 562 567 +5
scan_recursive 376 380 +4
collect_cpu 545 546 +1
date_main 1096 1095 -1
hostname_main 262 259 -3
uname_main 259 255 -4
setpriv_main 362 358 -4
rmdir_main 191 187 -4
mv_main 562 558 -4
ipcalc_main 548 544 -4
ifenslave_main 641 637 -4
gzip_main 192 188 -4
gunzip_main 77 73 -4
fsfreeze_main 81 77 -4
flock_main 318 314 -4
deluser_main 337 333 -4
cp_main 374 370 -4
chown_main 175 171 -4
applet_long_options 4 - -4
xargs_main 894 889 -5
wget_main 2540 2535 -5
udhcpc_main 2767 2762 -5
touch_main 436 431 -5
tar_main 1014 1009 -5
start_stop_daemon_main 1033 1028 -5
sed_main 682 677 -5
script_main 1082 1077 -5
run_parts_main 330 325 -5
rtcwake_main 459 454 -5
od_main 2169 2164 -5
nl_main 201 196 -5
modprobe_main 773 768 -5
mkdir_main 160 155 -5
ls_main 568 563 -5
install_main 773 768 -5
hwclock_main 411 406 -5
getopt_main 622 617 -5
fstrim_main 256 251 -5
env_main 198 193 -5
dumpleases_main 635 630 -5
dpkg_main 3991 3986 -5
diff_main 1355 1350 -5
cryptpw_main 233 228 -5
cpio_main 593 588 -5
conspy_main 1135 1130 -5
chpasswd_main 313 308 -5
adduser_main 887 882 -5
addgroup_main 416 411 -5
ftpgetput_main 351 345 -6
get_terminal_width_height 242 234 -8
expand_main 690 680 -10
static.expand_longopts 18 - -18
static.unexpand_longopts 27 - -27
mkdir_longopts 28 - -28
env_longopts 30 - -30
static.ifenslave_longopts 34 - -34
mv_longopts 46 - -46
static.rmdir_longopts 48 - -48
packed_usage 31739 31687 -52
------------------------------------------------------------------------------
(add/remove: 2/8 grow/shrink: 3/49 up/down: 1352/-1840) Total: -488 bytes
text data bss dec hex filename
915681 485 6880 923046 e15a6 busybox_old
915428 485 6876 922789 e14a5 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2017-08-08 20:08:18 +05:30
|
|
|
* (getopt32() does it itself, but getopt() doesn't (and can't))
|
2008-10-20 13:22:33 +05:30
|
|
|
*/
|
2017-04-12 03:28:46 +05:30
|
|
|
GETOPT_RESET();
|
2008-01-28 04:09:55 +05:30
|
|
|
|
2017-08-08 04:51:49 +05:30
|
|
|
argc = string_array_len(argv);
|
2007-04-14 15:39:57 +05:30
|
|
|
|
2015-10-09 20:12:57 +05:30
|
|
|
/* If xfunc "dies" in NOFORK applet, die_func longjmp's here instead */
|
|
|
|
die_func = jump;
|
2007-04-14 15:39:57 +05:30
|
|
|
rc = setjmp(die_jmp);
|
|
|
|
if (!rc) {
|
|
|
|
/* Some callers (xargs)
|
|
|
|
* need argv untouched because they free argv[i]! */
|
|
|
|
char *tmp_argv[argc+1];
|
|
|
|
memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0]));
|
2016-03-30 04:12:05 +05:30
|
|
|
applet_name = tmp_argv[0];
|
2007-04-14 15:39:57 +05:30
|
|
|
/* Finally we can call NOFORK applet's main() */
|
2007-11-29 09:01:20 +05:30
|
|
|
rc = applet_main[applet_no](argc, tmp_argv);
|
2017-08-03 23:22:47 +05:30
|
|
|
/* Important for shells: `which CMD` was failing */
|
|
|
|
fflush_all();
|
2015-10-09 20:12:57 +05:30
|
|
|
} else {
|
|
|
|
/* xfunc died in NOFORK applet */
|
2007-04-14 15:39:57 +05:30
|
|
|
}
|
|
|
|
|
2008-10-20 13:22:33 +05:30
|
|
|
/* Restoring some globals */
|
2011-02-02 23:35:25 +05:30
|
|
|
restore_nofork_data(&old);
|
2008-10-20 13:22:33 +05:30
|
|
|
/* Other globals can be simply reset to defaults */
|
2017-04-12 03:28:46 +05:30
|
|
|
GETOPT_RESET();
|
2008-10-20 13:22:33 +05:30
|
|
|
|
2008-04-13 07:55:53 +05:30
|
|
|
return rc & 0xff; /* don't confuse people with "exitcodes" >255 */
|
2007-04-14 15:39:57 +05:30
|
|
|
}
|
2017-08-08 17:39:23 +05:30
|
|
|
#endif
|
2007-04-28 22:13:18 +05:30
|
|
|
|
2017-08-08 17:39:23 +05:30
|
|
|
#if NOEXEC_SUPPORT
|
2017-08-07 22:54:57 +05:30
|
|
|
void FAST_FUNC run_noexec_applet_and_exit(int a, const char *name, char **argv)
|
|
|
|
{
|
|
|
|
/* reset some state and run without execing */
|
|
|
|
/* msg_eol = "\n"; - no caller needs this reinited yet */
|
|
|
|
logmode = LOGMODE_STDIO;
|
|
|
|
xfunc_error_retval = EXIT_FAILURE;
|
|
|
|
die_func = NULL;
|
|
|
|
GETOPT_RESET();
|
|
|
|
|
|
|
|
//TODO: think pidof, pgrep, pkill!
|
|
|
|
//set_task_comm() makes our pidof find NOEXECs (e.g. "yes >/dev/null"),
|
|
|
|
//but one from procps-ng-3.3.10 needs more!
|
|
|
|
//Rewrite /proc/PID/cmdline? (need to save argv0 and length at init for this to work!)
|
|
|
|
set_task_comm(name);
|
2017-08-08 04:51:49 +05:30
|
|
|
/* applet_name is set by this function: */
|
2017-08-07 22:54:57 +05:30
|
|
|
run_applet_no_and_exit(a, name, argv);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-08-08 04:51:49 +05:30
|
|
|
/*
|
|
|
|
* Higher-level code, hiding optional NOFORK/NOEXEC trickery.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This does a fork/exec in one call, using vfork(). Returns PID of new child,
|
|
|
|
* -1 for failure. Runs argv[0], searching path if that has no / in it. */
|
|
|
|
pid_t FAST_FUNC spawn(char **argv)
|
|
|
|
{
|
|
|
|
/* Compiler should not optimize stores here */
|
|
|
|
volatile int failed;
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
fflush_all();
|
|
|
|
|
|
|
|
/* Be nice to nommu machines. */
|
|
|
|
failed = 0;
|
|
|
|
pid = vfork();
|
|
|
|
if (pid < 0) /* error */
|
|
|
|
return pid;
|
|
|
|
if (!pid) { /* child */
|
|
|
|
/* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */
|
|
|
|
BB_EXECVP(argv[0], argv);
|
|
|
|
|
|
|
|
/* We are (maybe) sharing a stack with blocked parent,
|
|
|
|
* let parent know we failed and then exit to unblock parent
|
|
|
|
* (but don't run atexit() stuff, which would screw up parent.)
|
|
|
|
*/
|
|
|
|
failed = errno;
|
|
|
|
/* mount, for example, does not want the message */
|
|
|
|
/*bb_perror_msg("can't execute '%s'", argv[0]);*/
|
|
|
|
_exit(111);
|
|
|
|
}
|
|
|
|
/* parent */
|
|
|
|
/* Unfortunately, this is not reliable: according to standards
|
|
|
|
* vfork() can be equivalent to fork() and we won't see value
|
|
|
|
* of 'failed'.
|
|
|
|
* Interested party can wait on pid and learn exit code.
|
|
|
|
* If 111 - then it (most probably) failed to exec */
|
|
|
|
if (failed) {
|
|
|
|
safe_waitpid(pid, NULL, 0); /* prevent zombie */
|
|
|
|
errno = failed;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Die with an error message if we can't spawn a child process. */
|
|
|
|
pid_t FAST_FUNC xspawn(char **argv)
|
|
|
|
{
|
|
|
|
pid_t pid = spawn(argv);
|
|
|
|
if (pid < 0)
|
|
|
|
bb_simple_perror_msg_and_die(*argv);
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC spawn_and_wait(char **argv)
|
2007-04-10 03:02:30 +05:30
|
|
|
{
|
|
|
|
int rc;
|
2017-07-04 01:01:16 +05:30
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS && (NUM_APPLETS > 1)
|
2007-11-28 12:19:03 +05:30
|
|
|
int a = find_applet_by_name(argv[0]);
|
2007-04-10 03:02:30 +05:30
|
|
|
|
2017-01-26 05:43:58 +05:30
|
|
|
if (a >= 0) {
|
2007-11-28 12:19:03 +05:30
|
|
|
if (APPLET_IS_NOFORK(a))
|
2007-04-14 15:39:57 +05:30
|
|
|
return run_nofork_applet(a, argv);
|
2017-01-26 05:43:58 +05:30
|
|
|
# if BB_MMU /* NOEXEC needs fork(), thus this is done only on MMU machines: */
|
|
|
|
if (APPLET_IS_NOEXEC(a)) {
|
|
|
|
fflush_all();
|
|
|
|
rc = fork();
|
|
|
|
if (rc) /* parent or error */
|
|
|
|
return wait4pid(rc);
|
|
|
|
|
|
|
|
/* child */
|
2017-08-07 22:54:57 +05:30
|
|
|
run_noexec_applet_and_exit(a, argv[0], argv);
|
2007-04-11 03:10:19 +05:30
|
|
|
}
|
2011-02-02 07:58:56 +05:30
|
|
|
# endif
|
2007-04-10 03:02:30 +05:30
|
|
|
}
|
2017-08-08 17:39:23 +05:30
|
|
|
#endif
|
2007-04-10 03:02:30 +05:30
|
|
|
rc = spawn(argv);
|
|
|
|
return wait4pid(rc);
|
2003-07-28 13:10:39 +05:30
|
|
|
}
|
2007-04-11 03:10:19 +05:30
|
|
|
|
2007-04-11 12:34:23 +05:30
|
|
|
#if !BB_MMU
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC re_exec(char **argv)
|
2007-08-18 19:50:21 +05:30
|
|
|
{
|
|
|
|
/* high-order bit of first char in argv[0] is a hidden
|
|
|
|
* "we have (already) re-execed, don't do it again" flag */
|
|
|
|
argv[0][0] |= 0x80;
|
|
|
|
execv(bb_busybox_exec_path, argv);
|
2010-06-25 05:16:53 +05:30
|
|
|
bb_perror_msg_and_die("can't execute '%s'", bb_busybox_exec_path);
|
2007-08-18 19:50:21 +05:30
|
|
|
}
|
|
|
|
|
2009-03-21 03:47:13 +05:30
|
|
|
pid_t FAST_FUNC fork_or_rexec(char **argv)
|
2007-03-26 18:50:04 +05:30
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
/* Maybe we are already re-execed and come here again? */
|
|
|
|
if (re_execed)
|
2009-06-07 19:32:00 +05:30
|
|
|
return 0;
|
2017-08-05 02:34:17 +05:30
|
|
|
|
|
|
|
/* fflush_all(); ? - so far all callers had no buffered output to flush */
|
|
|
|
|
2010-07-04 19:02:38 +05:30
|
|
|
pid = xvfork();
|
2007-03-26 18:50:04 +05:30
|
|
|
if (pid) /* parent */
|
2009-03-21 03:47:13 +05:30
|
|
|
return pid;
|
2007-03-26 18:50:04 +05:30
|
|
|
/* child - re-exec ourself */
|
2007-08-18 19:50:21 +05:30
|
|
|
re_exec(argv);
|
2007-03-26 18:50:04 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
|
|
|
|
* char **argv "vanishes" */
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC bb_daemonize_or_rexec(int flags, char **argv)
|
2007-03-26 18:50:04 +05:30
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
if (flags & DAEMON_CHDIR_ROOT)
|
|
|
|
xchdir("/");
|
|
|
|
|
|
|
|
if (flags & DAEMON_DEVNULL_STDIO) {
|
|
|
|
close(0);
|
|
|
|
close(1);
|
|
|
|
close(2);
|
|
|
|
}
|
|
|
|
|
2008-07-06 12:30:11 +05:30
|
|
|
fd = open(bb_dev_null, O_RDWR);
|
|
|
|
if (fd < 0) {
|
|
|
|
/* NB: we can be called as bb_sanitize_stdio() from init
|
|
|
|
* or mdev, and there /dev/null may legitimately not (yet) exist!
|
|
|
|
* Do not use xopen above, but obtain _ANY_ open descriptor,
|
|
|
|
* even bogus one as below. */
|
|
|
|
fd = xopen("/", O_RDONLY); /* don't believe this can fail */
|
|
|
|
}
|
2007-07-31 22:39:44 +05:30
|
|
|
|
2007-03-26 18:50:04 +05:30
|
|
|
while ((unsigned)fd < 2)
|
|
|
|
fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
|
|
|
|
|
|
|
|
if (!(flags & DAEMON_ONLY_SANITIZE)) {
|
2017-08-05 02:34:17 +05:30
|
|
|
|
|
|
|
/* fflush_all(); - add it in fork_or_rexec() if necessary */
|
|
|
|
|
2009-03-21 03:47:13 +05:30
|
|
|
if (fork_or_rexec(argv))
|
2017-08-05 02:34:17 +05:30
|
|
|
_exit(EXIT_SUCCESS); /* parent */
|
2011-11-10 00:14:37 +05:30
|
|
|
/* if daemonizing, detach from stdio & ctty */
|
2007-03-26 18:50:04 +05:30
|
|
|
setsid();
|
|
|
|
dup2(fd, 0);
|
|
|
|
dup2(fd, 1);
|
|
|
|
dup2(fd, 2);
|
2011-11-10 00:14:37 +05:30
|
|
|
if (flags & DAEMON_DOUBLE_FORK) {
|
|
|
|
/* On Linux, session leader can acquire ctty
|
|
|
|
* unknowingly, by opening a tty.
|
|
|
|
* Prevent this: stop being a session leader.
|
|
|
|
*/
|
|
|
|
if (fork_or_rexec(argv))
|
2017-08-05 02:34:17 +05:30
|
|
|
_exit(EXIT_SUCCESS); /* parent */
|
2011-11-10 00:14:37 +05:30
|
|
|
}
|
2007-03-26 18:50:04 +05:30
|
|
|
}
|
2007-06-14 13:23:06 +05:30
|
|
|
while (fd > 2) {
|
2007-03-26 18:50:04 +05:30
|
|
|
close(fd--);
|
2007-06-14 13:23:06 +05:30
|
|
|
if (!(flags & DAEMON_CLOSE_EXTRA_FDS))
|
|
|
|
return;
|
|
|
|
/* else close everything after fd#2 */
|
|
|
|
}
|
2007-03-26 18:50:04 +05:30
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
void FAST_FUNC bb_sanitize_stdio(void)
|
2007-03-26 18:50:04 +05:30
|
|
|
{
|
|
|
|
bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
|
|
|
|
}
|