blob: 2e7dc2d9b1293848e224146e1f07b856e7e2ba02 [file] [log] [blame]
Bernhard Reutner-Fischer0a8812b2006-05-19 13:12:21 +00001/* vi: set sw=4 ts=4: */
Eric Andersen35e643b2003-07-28 07:40:39 +00002/*
Eric Andersenaff114c2004-04-14 17:51:38 +00003 * Rexec program for system have fork() as vfork() with foreground option
Russ Dilla1fece22003-12-15 21:57:44 +00004 *
5 * Copyright (C) Vladimir N. Oleynik <dzo@simtreas.ru>
6 * Copyright (C) 2003 Russ Dill <Russ.Dill@asu.edu>
7 *
Eric Andersenaff114c2004-04-14 17:51:38 +00008 * daemon() portion taken from uClibc:
Russ Dilla1fece22003-12-15 21:57:44 +00009 *
10 * Copyright (c) 1991, 1993
11 * The Regents of the University of California. All rights reserved.
12 *
13 * Modified for uClibc by Erik Andersen <andersee@debian.org>
14 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020015 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen35e643b2003-07-28 07:40:39 +000016 */
17
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000018#include "busybox.h" /* uses applet tables */
Eric Andersen35e643b2003-07-28 07:40:39 +000019
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000020/* This does a fork/exec in one call, using vfork(). Returns PID of new child,
21 * -1 for failure. Runs argv[0], searching path if that has no / in it. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000022pid_t FAST_FUNC spawn(char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000023{
24 /* Compiler should not optimize stores here */
25 volatile int failed;
26 pid_t pid;
27
Denys Vlasenko8131eea2009-11-02 14:19:51 +010028 fflush_all();
Denis Vlasenko7e754f12007-04-09 13:04:50 +000029
30 /* Be nice to nommu machines. */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000031 failed = 0;
32 pid = vfork();
33 if (pid < 0) /* error */
34 return pid;
35 if (!pid) { /* child */
Denis Vlasenko7e754f12007-04-09 13:04:50 +000036 /* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */
37 BB_EXECVP(argv[0], argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000038
39 /* We are (maybe) sharing a stack with blocked parent,
40 * let parent know we failed and then exit to unblock parent
41 * (but don't run atexit() stuff, which would screw up parent.)
42 */
43 failed = errno;
Denys Vlasenko4db34d62009-10-11 04:09:37 +020044 /* mount, for example, does not want the message */
45 /*bb_perror_msg("can't execute '%s'", argv[0]);*/
Denis Vlasenkoafa70232007-03-26 17:25:33 +000046 _exit(111);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000047 }
48 /* parent */
Denis Vlasenkoafa70232007-03-26 17:25:33 +000049 /* Unfortunately, this is not reliable: according to standards
50 * vfork() can be equivalent to fork() and we won't see value
51 * of 'failed'.
52 * Interested party can wait on pid and learn exit code.
53 * If 111 - then it (most probably) failed to exec */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000054 if (failed) {
Denys Vlasenkoc5d0f152011-02-03 14:14:09 +010055 safe_waitpid(pid, NULL, 0); /* prevent zombie */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000056 errno = failed;
57 return -1;
58 }
59 return pid;
60}
61
62/* Die with an error message if we can't spawn a child process. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000063pid_t FAST_FUNC xspawn(char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000064{
65 pid_t pid = spawn(argv);
Denis Vlasenko53d445a2007-04-09 13:21:33 +000066 if (pid < 0)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +000067 bb_simple_perror_msg_and_die(*argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000068 return pid;
69}
70
Denys Vlasenko0fb00452016-07-22 18:48:38 +020071#if ENABLE_FEATURE_PREFER_APPLETS \
72 || ENABLE_FEATURE_SH_NOFORK
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020073static jmp_buf die_jmp;
74static void jump(void)
75{
76 /* Special case. We arrive here if NOFORK applet
77 * calls xfunc, which then decides to die.
78 * We don't die, but jump instead back to caller.
79 * NOFORK applets still cannot carelessly call xfuncs:
80 * p = xmalloc(10);
81 * q = xmalloc(10); // BUG! if this dies, we leak p!
82 */
83 /* | 0x100 allows to pass zero exitcode (longjmp can't pass 0).
84 * This works because exitcodes are bytes,
85 * run_nofork_applet() ensures that by "& 0xff" */
86 longjmp(die_jmp, xfunc_error_retval | 0x100);
87}
88
Denys Vlasenko63073572011-02-02 19:05:25 +010089struct nofork_save_area {
90 jmp_buf die_jmp;
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020091 void (*die_func)(void);
Denys Vlasenko63073572011-02-02 19:05:25 +010092 const char *applet_name;
93 uint32_t option_mask32;
Denys Vlasenko63073572011-02-02 19:05:25 +010094 uint8_t xfunc_error_retval;
95};
96static void save_nofork_data(struct nofork_save_area *save)
Denis Vlasenko18e19f22007-04-28 16:43:18 +000097{
Denis Vlasenkob0550012007-05-24 12:18:16 +000098 memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp));
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020099 save->die_func = die_func;
Denis Vlasenko82d38da2007-10-10 14:38:47 +0000100 save->applet_name = applet_name;
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000101 save->option_mask32 = option_mask32;
Denys Vlasenko550bf5b2015-10-09 16:42:57 +0200102 save->xfunc_error_retval = xfunc_error_retval;
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000103}
Denys Vlasenko63073572011-02-02 19:05:25 +0100104static void restore_nofork_data(struct nofork_save_area *save)
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000105{
Denis Vlasenkob0550012007-05-24 12:18:16 +0000106 memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp));
Denys Vlasenko550bf5b2015-10-09 16:42:57 +0200107 die_func = save->die_func;
Denis Vlasenko82d38da2007-10-10 14:38:47 +0000108 applet_name = save->applet_name;
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000109 option_mask32 = save->option_mask32;
Denys Vlasenko550bf5b2015-10-09 16:42:57 +0200110 xfunc_error_retval = save->xfunc_error_retval;
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000111}
112
Denys Vlasenko63073572011-02-02 19:05:25 +0100113int FAST_FUNC run_nofork_applet(int applet_no, char **argv)
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000114{
115 int rc, argc;
Denys Vlasenko63073572011-02-02 19:05:25 +0100116 struct nofork_save_area old;
117
118 save_nofork_data(&old);
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000119
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000120 xfunc_error_retval = EXIT_FAILURE;
Denis Vlasenkoc4e4be92008-01-27 22:39:55 +0000121
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000122 /* In case getopt() or getopt32() was already called:
123 * reset the libc getopt() function, which keeps internal state.
124 *
125 * BSD-derived getopt() functions require that optind be set to 1 in
126 * order to reset getopt() state. This used to be generally accepted
127 * way of resetting getopt(). However, glibc's getopt()
128 * has additional getopt() state beyond optind, and requires that
129 * optind be set to zero to reset its state. So the unfortunate state of
130 * affairs is that BSD-derived versions of getopt() misbehave if
131 * optind is set to 0 in order to reset getopt(), and glibc's getopt()
132 * will core dump if optind is set 1 in order to reset getopt().
133 *
134 * More modern versions of BSD require that optreset be set to 1 in
135 * order to reset getopt(). Sigh. Standards, anyone?
136 */
137#ifdef __GLIBC__
138 optind = 0;
139#else /* BSD style */
140 optind = 1;
141 /* optreset = 1; */
142#endif
143 /* optarg = NULL; opterr = 1; optopt = 63; - do we need this too? */
144 /* (values above are what they initialized to in glibc and uclibc) */
145 /* option_mask32 = 0; - not needed, no applet depends on it being 0 */
Denis Vlasenkoc4e4be92008-01-27 22:39:55 +0000146
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000147 argc = 1;
148 while (argv[argc])
149 argc++;
150
Denys Vlasenko550bf5b2015-10-09 16:42:57 +0200151 /* If xfunc "dies" in NOFORK applet, die_func longjmp's here instead */
152 die_func = jump;
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000153 rc = setjmp(die_jmp);
154 if (!rc) {
155 /* Some callers (xargs)
156 * need argv untouched because they free argv[i]! */
157 char *tmp_argv[argc+1];
158 memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0]));
Ron Yorston610c4c32016-03-30 00:42:05 +0200159 applet_name = tmp_argv[0];
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000160 /* Finally we can call NOFORK applet's main() */
Denis Vlasenko745cd172007-11-29 03:31:20 +0000161 rc = applet_main[applet_no](argc, tmp_argv);
Denys Vlasenko550bf5b2015-10-09 16:42:57 +0200162 } else {
163 /* xfunc died in NOFORK applet */
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000164 }
165
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000166 /* Restoring some globals */
Denys Vlasenko63073572011-02-02 19:05:25 +0100167 restore_nofork_data(&old);
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000168
169 /* Other globals can be simply reset to defaults */
170#ifdef __GLIBC__
171 optind = 0;
172#else /* BSD style */
173 optind = 1;
174#endif
175
Denis Vlasenko7465dbc2008-04-13 02:25:53 +0000176 return rc & 0xff; /* don't confuse people with "exitcodes" >255 */
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000177}
Denys Vlasenko0fb00452016-07-22 18:48:38 +0200178#endif /* FEATURE_PREFER_APPLETS || FEATURE_SH_NOFORK */
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000179
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000180int FAST_FUNC spawn_and_wait(char **argv)
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000181{
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000182 int rc;
Denis Vlasenkod571c082007-04-11 07:26:56 +0000183#if ENABLE_FEATURE_PREFER_APPLETS
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000184 int a = find_applet_by_name(argv[0]);
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000185
Denys Vlasenko9967c992017-01-26 01:13:58 +0100186 if (a >= 0) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000187 if (APPLET_IS_NOFORK(a))
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000188 return run_nofork_applet(a, argv);
Denys Vlasenko9967c992017-01-26 01:13:58 +0100189# if BB_MMU /* NOEXEC needs fork(), thus this is done only on MMU machines: */
190 if (APPLET_IS_NOEXEC(a)) {
191 fflush_all();
192 rc = fork();
193 if (rc) /* parent or error */
194 return wait4pid(rc);
195
196 /* child */
197 /* reset some state and run without execing */
198
199 /* msg_eol = "\n"; - no caller needs this reinited yet */
200 logmode = LOGMODE_STDIO;
201 /* die_func = NULL; - needed if the caller is a shell,
202 * init, or a NOFORK applet. But none of those call us
203 * as of yet (and that should probably always stay true).
204 */
205 /* xfunc_error_retval and applet_name are init by: */
206 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000207 }
Denys Vlasenkoc71b4692011-02-02 03:28:56 +0100208# endif
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000209 }
Denis Vlasenko473dae02007-04-11 07:04:23 +0000210#endif /* FEATURE_PREFER_APPLETS */
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000211 rc = spawn(argv);
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000212 return wait4pid(rc);
Eric Andersen35e643b2003-07-28 07:40:39 +0000213}
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000214
Denis Vlasenko473dae02007-04-11 07:04:23 +0000215#if !BB_MMU
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000216void FAST_FUNC re_exec(char **argv)
Denis Vlasenko367960b2007-08-18 14:20:21 +0000217{
218 /* high-order bit of first char in argv[0] is a hidden
219 * "we have (already) re-execed, don't do it again" flag */
220 argv[0][0] |= 0x80;
221 execv(bb_busybox_exec_path, argv);
Denys Vlasenko41ddd9f2010-06-25 01:46:53 +0200222 bb_perror_msg_and_die("can't execute '%s'", bb_busybox_exec_path);
Denis Vlasenko367960b2007-08-18 14:20:21 +0000223}
224
Denis Vlasenko83518d12009-03-20 22:17:13 +0000225pid_t FAST_FUNC fork_or_rexec(char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000226{
227 pid_t pid;
228 /* Maybe we are already re-execed and come here again? */
229 if (re_execed)
Denys Vlasenko8f24f982009-06-07 16:02:00 +0200230 return 0;
Pascal Bellard926031b2010-07-04 15:32:38 +0200231 pid = xvfork();
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000232 if (pid) /* parent */
Denis Vlasenko83518d12009-03-20 22:17:13 +0000233 return pid;
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000234 /* child - re-exec ourself */
Denis Vlasenko367960b2007-08-18 14:20:21 +0000235 re_exec(argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000236}
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000237#endif
238
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000239/* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
240 * char **argv "vanishes" */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000241void FAST_FUNC bb_daemonize_or_rexec(int flags, char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000242{
243 int fd;
244
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000245 if (flags & DAEMON_CHDIR_ROOT)
246 xchdir("/");
247
248 if (flags & DAEMON_DEVNULL_STDIO) {
249 close(0);
250 close(1);
251 close(2);
252 }
253
Denis Vlasenkod48e81f2008-07-06 07:00:11 +0000254 fd = open(bb_dev_null, O_RDWR);
255 if (fd < 0) {
256 /* NB: we can be called as bb_sanitize_stdio() from init
257 * or mdev, and there /dev/null may legitimately not (yet) exist!
258 * Do not use xopen above, but obtain _ANY_ open descriptor,
259 * even bogus one as below. */
260 fd = xopen("/", O_RDONLY); /* don't believe this can fail */
261 }
Denis Vlasenkoa1b16f42007-07-31 17:09:44 +0000262
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000263 while ((unsigned)fd < 2)
264 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
265
266 if (!(flags & DAEMON_ONLY_SANITIZE)) {
Denis Vlasenko83518d12009-03-20 22:17:13 +0000267 if (fork_or_rexec(argv))
268 exit(EXIT_SUCCESS); /* parent */
Peter Korsgaard743edac2011-11-09 19:44:37 +0100269 /* if daemonizing, detach from stdio & ctty */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000270 setsid();
271 dup2(fd, 0);
272 dup2(fd, 1);
273 dup2(fd, 2);
Peter Korsgaard743edac2011-11-09 19:44:37 +0100274 if (flags & DAEMON_DOUBLE_FORK) {
275 /* On Linux, session leader can acquire ctty
276 * unknowingly, by opening a tty.
277 * Prevent this: stop being a session leader.
278 */
279 if (fork_or_rexec(argv))
280 exit(EXIT_SUCCESS); /* parent */
281 }
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000282 }
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000283 while (fd > 2) {
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000284 close(fd--);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000285 if (!(flags & DAEMON_CLOSE_EXTRA_FDS))
286 return;
287 /* else close everything after fd#2 */
288 }
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000289}
290
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000291void FAST_FUNC bb_sanitize_stdio(void)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000292{
293 bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
294}