blob: 5e0fb0d737f0886b38a354c87eee86b4a69108c4 [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) {
55 errno = failed;
56 return -1;
57 }
58 return pid;
59}
60
61/* Die with an error message if we can't spawn a child process. */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000062pid_t FAST_FUNC xspawn(char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000063{
64 pid_t pid = spawn(argv);
Denis Vlasenko53d445a2007-04-09 13:21:33 +000065 if (pid < 0)
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +000066 bb_simple_perror_msg_and_die(*argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000067 return pid;
68}
69
Denis Vlasenko96f67dc2007-05-17 13:02:41 +000070#if ENABLE_FEATURE_PREFER_APPLETS
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000071void FAST_FUNC save_nofork_data(struct nofork_save_area *save)
Denis Vlasenko18e19f22007-04-28 16:43:18 +000072{
Denis Vlasenkob0550012007-05-24 12:18:16 +000073 memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp));
Denis Vlasenko82d38da2007-10-10 14:38:47 +000074 save->applet_name = applet_name;
Denis Vlasenko18e19f22007-04-28 16:43:18 +000075 save->xfunc_error_retval = xfunc_error_retval;
76 save->option_mask32 = option_mask32;
77 save->die_sleep = die_sleep;
78 save->saved = 1;
79}
80
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000081void FAST_FUNC restore_nofork_data(struct nofork_save_area *save)
Denis Vlasenko18e19f22007-04-28 16:43:18 +000082{
Denis Vlasenkob0550012007-05-24 12:18:16 +000083 memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp));
Denis Vlasenko82d38da2007-10-10 14:38:47 +000084 applet_name = save->applet_name;
Denis Vlasenko18e19f22007-04-28 16:43:18 +000085 xfunc_error_retval = save->xfunc_error_retval;
86 option_mask32 = save->option_mask32;
87 die_sleep = save->die_sleep;
Denis Vlasenko18e19f22007-04-28 16:43:18 +000088}
89
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000090int FAST_FUNC run_nofork_applet_prime(struct nofork_save_area *old, int applet_no, char **argv)
Denis Vlasenkof5294e12007-04-14 10:09:57 +000091{
92 int rc, argc;
93
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000094 applet_name = APPLET_NAME(applet_no);
Denis Vlasenkod1660cb2008-10-20 07:52:33 +000095
Denis Vlasenkof5294e12007-04-14 10:09:57 +000096 xfunc_error_retval = EXIT_FAILURE;
Denis Vlasenkoc4e4be92008-01-27 22:39:55 +000097
98 /* Special flag for xfunc_die(). If xfunc will "die"
Denis Vlasenkof5294e12007-04-14 10:09:57 +000099 * in NOFORK applet, xfunc_die() sees negative
100 * die_sleep and longjmp here instead. */
101 die_sleep = -1;
102
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000103 /* In case getopt() or getopt32() was already called:
104 * reset the libc getopt() function, which keeps internal state.
105 *
106 * BSD-derived getopt() functions require that optind be set to 1 in
107 * order to reset getopt() state. This used to be generally accepted
108 * way of resetting getopt(). However, glibc's getopt()
109 * has additional getopt() state beyond optind, and requires that
110 * optind be set to zero to reset its state. So the unfortunate state of
111 * affairs is that BSD-derived versions of getopt() misbehave if
112 * optind is set to 0 in order to reset getopt(), and glibc's getopt()
113 * will core dump if optind is set 1 in order to reset getopt().
114 *
115 * More modern versions of BSD require that optreset be set to 1 in
116 * order to reset getopt(). Sigh. Standards, anyone?
117 */
118#ifdef __GLIBC__
119 optind = 0;
120#else /* BSD style */
121 optind = 1;
122 /* optreset = 1; */
123#endif
124 /* optarg = NULL; opterr = 1; optopt = 63; - do we need this too? */
125 /* (values above are what they initialized to in glibc and uclibc) */
126 /* option_mask32 = 0; - not needed, no applet depends on it being 0 */
Denis Vlasenkoc4e4be92008-01-27 22:39:55 +0000127
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000128 argc = 1;
129 while (argv[argc])
130 argc++;
131
132 rc = setjmp(die_jmp);
133 if (!rc) {
134 /* Some callers (xargs)
135 * need argv untouched because they free argv[i]! */
136 char *tmp_argv[argc+1];
137 memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0]));
138 /* Finally we can call NOFORK applet's main() */
Denis Vlasenko745cd172007-11-29 03:31:20 +0000139 rc = applet_main[applet_no](argc, tmp_argv);
Denis Vlasenko7465dbc2008-04-13 02:25:53 +0000140
141 /* The whole reason behind nofork_save_area is that <applet>_main
Denis Vlasenko867bd372008-04-13 02:27:39 +0000142 * may exit non-locally! For example, in hush Ctrl-Z tries
143 * (modulo bugs) to dynamically create a child (backgrounded task)
144 * if it detects that Ctrl-Z was pressed when a NOFORK was running.
Denis Vlasenko7465dbc2008-04-13 02:25:53 +0000145 * Testcase: interactive "rm -i".
146 * Don't fool yourself into thinking "and <applet>_main() returns
147 * quickly here" and removing "useless" nofork_save_area code. */
148
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000149 } else { /* xfunc died in NOFORK applet */
150 /* in case they meant to return 0... */
Denis Vlasenkob0550012007-05-24 12:18:16 +0000151 if (rc == -2222)
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000152 rc = 0;
153 }
154
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000155 /* Restoring some globals */
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000156 restore_nofork_data(old);
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000157
158 /* Other globals can be simply reset to defaults */
159#ifdef __GLIBC__
160 optind = 0;
161#else /* BSD style */
162 optind = 1;
163#endif
164
Denis Vlasenko7465dbc2008-04-13 02:25:53 +0000165 return rc & 0xff; /* don't confuse people with "exitcodes" >255 */
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000166}
167
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000168int FAST_FUNC run_nofork_applet(int applet_no, char **argv)
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000169{
170 struct nofork_save_area old;
Denis Vlasenkob0550012007-05-24 12:18:16 +0000171
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000172 /* Saving globals */
173 save_nofork_data(&old);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000174 return run_nofork_applet_prime(&old, applet_no, argv);
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000175}
Denis Vlasenko96f67dc2007-05-17 13:02:41 +0000176#endif /* FEATURE_PREFER_APPLETS */
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000177
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000178int FAST_FUNC spawn_and_wait(char **argv)
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000179{
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000180 int rc;
Denis Vlasenkod571c082007-04-11 07:26:56 +0000181#if ENABLE_FEATURE_PREFER_APPLETS
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000182 int a = find_applet_by_name(argv[0]);
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000183
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000184 if (a >= 0 && (APPLET_IS_NOFORK(a)
Denis Vlasenko473dae02007-04-11 07:04:23 +0000185#if BB_MMU
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000186 || APPLET_IS_NOEXEC(a) /* NOEXEC trick needs fork() */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000187#endif
188 )) {
Denis Vlasenko473dae02007-04-11 07:04:23 +0000189#if BB_MMU
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000190 if (APPLET_IS_NOFORK(a))
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000191#endif
192 {
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000193 return run_nofork_applet(a, argv);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000194 }
Denis Vlasenko473dae02007-04-11 07:04:23 +0000195#if BB_MMU
196 /* MMU only */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000197 /* a->noexec is true */
198 rc = fork();
Denis Vlasenko473dae02007-04-11 07:04:23 +0000199 if (rc) /* parent or error */
200 return wait4pid(rc);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000201 /* child */
Denis Vlasenkof1a71412007-04-10 23:32:37 +0000202 xfunc_error_retval = EXIT_FAILURE;
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000203 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000204#endif
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000205 }
Denis Vlasenko473dae02007-04-11 07:04:23 +0000206#endif /* FEATURE_PREFER_APPLETS */
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000207 rc = spawn(argv);
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000208 return wait4pid(rc);
Eric Andersen35e643b2003-07-28 07:40:39 +0000209}
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000210
Denis Vlasenko473dae02007-04-11 07:04:23 +0000211#if !BB_MMU
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000212void FAST_FUNC re_exec(char **argv)
Denis Vlasenko367960b2007-08-18 14:20:21 +0000213{
214 /* high-order bit of first char in argv[0] is a hidden
215 * "we have (already) re-execed, don't do it again" flag */
216 argv[0][0] |= 0x80;
217 execv(bb_busybox_exec_path, argv);
Denys Vlasenko41ddd9f2010-06-25 01:46:53 +0200218 bb_perror_msg_and_die("can't execute '%s'", bb_busybox_exec_path);
Denis Vlasenko367960b2007-08-18 14:20:21 +0000219}
220
Denis Vlasenko83518d12009-03-20 22:17:13 +0000221pid_t FAST_FUNC fork_or_rexec(char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000222{
223 pid_t pid;
224 /* Maybe we are already re-execed and come here again? */
225 if (re_execed)
Denys Vlasenko8f24f982009-06-07 16:02:00 +0200226 return 0;
Pascal Bellard926031b2010-07-04 15:32:38 +0200227 pid = xvfork();
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000228 if (pid) /* parent */
Denis Vlasenko83518d12009-03-20 22:17:13 +0000229 return pid;
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000230 /* child - re-exec ourself */
Denis Vlasenko367960b2007-08-18 14:20:21 +0000231 re_exec(argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000232}
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000233#endif
234
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000235/* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
236 * char **argv "vanishes" */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000237void FAST_FUNC bb_daemonize_or_rexec(int flags, char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000238{
239 int fd;
240
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000241 if (flags & DAEMON_CHDIR_ROOT)
242 xchdir("/");
243
244 if (flags & DAEMON_DEVNULL_STDIO) {
245 close(0);
246 close(1);
247 close(2);
248 }
249
Denis Vlasenkod48e81f2008-07-06 07:00:11 +0000250 fd = open(bb_dev_null, O_RDWR);
251 if (fd < 0) {
252 /* NB: we can be called as bb_sanitize_stdio() from init
253 * or mdev, and there /dev/null may legitimately not (yet) exist!
254 * Do not use xopen above, but obtain _ANY_ open descriptor,
255 * even bogus one as below. */
256 fd = xopen("/", O_RDONLY); /* don't believe this can fail */
257 }
Denis Vlasenkoa1b16f42007-07-31 17:09:44 +0000258
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000259 while ((unsigned)fd < 2)
260 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
261
262 if (!(flags & DAEMON_ONLY_SANITIZE)) {
Denis Vlasenko83518d12009-03-20 22:17:13 +0000263 if (fork_or_rexec(argv))
264 exit(EXIT_SUCCESS); /* parent */
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000265 /* if daemonizing, make sure we detach from stdio & ctty */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000266 setsid();
267 dup2(fd, 0);
268 dup2(fd, 1);
269 dup2(fd, 2);
270 }
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000271 while (fd > 2) {
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000272 close(fd--);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000273 if (!(flags & DAEMON_CLOSE_EXTRA_FDS))
274 return;
275 /* else close everything after fd#2 */
276 }
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000277}
278
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000279void FAST_FUNC bb_sanitize_stdio(void)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000280{
281 bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
282}