blob: 15c92a7cdcf267d5aab64ca125cf266ead15fac4 [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 */
Denys Vlasenkoddd1ee42017-08-08 14:09:23 +020017#include <sys/prctl.h>
18#ifndef PR_SET_NAME
19#define PR_SET_NAME 15
20#endif
21#ifndef PR_GET_NAME
22#define PR_GET_NAME 16
23#endif
24
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000025#include "busybox.h" /* uses applet tables */
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +020026#include "NUM_APPLETS.h"
Eric Andersen35e643b2003-07-28 07:40:39 +000027
Denys Vlasenkoddd1ee42017-08-08 14:09:23 +020028#define NOFORK_SUPPORT ((NUM_APPLETS > 1) && (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_NOFORK))
29#define NOEXEC_SUPPORT ((NUM_APPLETS > 1) && (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_STANDALONE))
30
31#if defined(__linux__) && (NUM_APPLETS > 1)
32void FAST_FUNC set_task_comm(const char *comm)
33{
34 /* okay if too long (truncates) */
35 prctl(PR_SET_NAME, (long)comm, 0, 0, 0);
36}
37#endif
38
Denys Vlasenko8858a982017-08-08 01:21:49 +020039/*
Denys Vlasenkoddd1ee42017-08-08 14:09:23 +020040 * NOFORK/NOEXEC support
Denys Vlasenko8858a982017-08-08 01:21:49 +020041 */
Denys Vlasenkoddd1ee42017-08-08 14:09:23 +020042#if NOFORK_SUPPORT
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020043static jmp_buf die_jmp;
44static void jump(void)
45{
46 /* Special case. We arrive here if NOFORK applet
47 * calls xfunc, which then decides to die.
Denys Vlasenko036585a2017-08-08 16:38:18 +020048 * We don't die, but instead jump back to caller.
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020049 * NOFORK applets still cannot carelessly call xfuncs:
50 * p = xmalloc(10);
51 * q = xmalloc(10); // BUG! if this dies, we leak p!
52 */
53 /* | 0x100 allows to pass zero exitcode (longjmp can't pass 0).
54 * This works because exitcodes are bytes,
Denys Vlasenko036585a2017-08-08 16:38:18 +020055 * run_nofork_applet() ensures that by "& 0xff"
56 */
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020057 longjmp(die_jmp, xfunc_error_retval | 0x100);
58}
59
Denys Vlasenko63073572011-02-02 19:05:25 +010060struct nofork_save_area {
61 jmp_buf die_jmp;
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020062 void (*die_func)(void);
Denys Vlasenko63073572011-02-02 19:05:25 +010063 const char *applet_name;
64 uint32_t option_mask32;
Denys Vlasenko39194f02017-08-03 19:00:01 +020065 smallint logmode;
Denys Vlasenko63073572011-02-02 19:05:25 +010066 uint8_t xfunc_error_retval;
67};
68static void save_nofork_data(struct nofork_save_area *save)
Denis Vlasenko18e19f22007-04-28 16:43:18 +000069{
Denis Vlasenkob0550012007-05-24 12:18:16 +000070 memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp));
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020071 save->die_func = die_func;
Denis Vlasenko82d38da2007-10-10 14:38:47 +000072 save->applet_name = applet_name;
Denis Vlasenko18e19f22007-04-28 16:43:18 +000073 save->option_mask32 = option_mask32;
Denys Vlasenko39194f02017-08-03 19:00:01 +020074 save->logmode = logmode;
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020075 save->xfunc_error_retval = xfunc_error_retval;
Denis Vlasenko18e19f22007-04-28 16:43:18 +000076}
Denys Vlasenko63073572011-02-02 19:05:25 +010077static void restore_nofork_data(struct nofork_save_area *save)
Denis Vlasenko18e19f22007-04-28 16:43:18 +000078{
Denis Vlasenkob0550012007-05-24 12:18:16 +000079 memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp));
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020080 die_func = save->die_func;
Denis Vlasenko82d38da2007-10-10 14:38:47 +000081 applet_name = save->applet_name;
Denis Vlasenko18e19f22007-04-28 16:43:18 +000082 option_mask32 = save->option_mask32;
Denys Vlasenko39194f02017-08-03 19:00:01 +020083 logmode = save->logmode;
Denys Vlasenko550bf5b2015-10-09 16:42:57 +020084 xfunc_error_retval = save->xfunc_error_retval;
Denis Vlasenko18e19f22007-04-28 16:43:18 +000085}
86
Denys Vlasenko63073572011-02-02 19:05:25 +010087int FAST_FUNC run_nofork_applet(int applet_no, char **argv)
Denis Vlasenkof5294e12007-04-14 10:09:57 +000088{
89 int rc, argc;
Denys Vlasenko63073572011-02-02 19:05:25 +010090 struct nofork_save_area old;
91
92 save_nofork_data(&old);
Denis Vlasenkof5294e12007-04-14 10:09:57 +000093
Denys Vlasenko39194f02017-08-03 19:00:01 +020094 logmode = LOGMODE_STDIO;
Denis Vlasenkof5294e12007-04-14 10:09:57 +000095 xfunc_error_retval = EXIT_FAILURE;
Denys Vlasenko036585a2017-08-08 16:38:18 +020096 /* In case getopt() was already called:
Denis Vlasenkod1660cb2008-10-20 07:52:33 +000097 * reset the libc getopt() function, which keeps internal state.
Denys Vlasenko036585a2017-08-08 16:38:18 +020098 * (getopt32() does it itself, but getopt() doesn't (and can't))
Denis Vlasenkod1660cb2008-10-20 07:52:33 +000099 */
Kaarle Ritvanen835ad3a2017-04-12 00:58:46 +0300100 GETOPT_RESET();
Denys Vlasenko036585a2017-08-08 16:38:18 +0200101 /* opt_complementary = NULL; - cleared by each getopt32() call anyway */
Denis Vlasenkoc4e4be92008-01-27 22:39:55 +0000102
Denys Vlasenko8858a982017-08-08 01:21:49 +0200103 argc = string_array_len(argv);
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000104
Denys Vlasenko550bf5b2015-10-09 16:42:57 +0200105 /* If xfunc "dies" in NOFORK applet, die_func longjmp's here instead */
106 die_func = jump;
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000107 rc = setjmp(die_jmp);
108 if (!rc) {
109 /* Some callers (xargs)
110 * need argv untouched because they free argv[i]! */
111 char *tmp_argv[argc+1];
112 memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0]));
Ron Yorston610c4c32016-03-30 00:42:05 +0200113 applet_name = tmp_argv[0];
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000114 /* Finally we can call NOFORK applet's main() */
Denis Vlasenko745cd172007-11-29 03:31:20 +0000115 rc = applet_main[applet_no](argc, tmp_argv);
Denys Vlasenko19c9f312017-08-03 19:52:47 +0200116 /* Important for shells: `which CMD` was failing */
117 fflush_all();
Denys Vlasenko550bf5b2015-10-09 16:42:57 +0200118 } else {
119 /* xfunc died in NOFORK applet */
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000120 }
121
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000122 /* Restoring some globals */
Denys Vlasenko63073572011-02-02 19:05:25 +0100123 restore_nofork_data(&old);
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000124 /* Other globals can be simply reset to defaults */
Kaarle Ritvanen835ad3a2017-04-12 00:58:46 +0300125 GETOPT_RESET();
Denys Vlasenko036585a2017-08-08 16:38:18 +0200126 /* opt_complementary = NULL; - cleared by each getopt32() call anyway */
Denis Vlasenkod1660cb2008-10-20 07:52:33 +0000127
Denis Vlasenko7465dbc2008-04-13 02:25:53 +0000128 return rc & 0xff; /* don't confuse people with "exitcodes" >255 */
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000129}
Denys Vlasenkoddd1ee42017-08-08 14:09:23 +0200130#endif
Denis Vlasenko18e19f22007-04-28 16:43:18 +0000131
Denys Vlasenkoddd1ee42017-08-08 14:09:23 +0200132#if NOEXEC_SUPPORT
Denys Vlasenko80e8e3c2017-08-07 19:24:57 +0200133void FAST_FUNC run_noexec_applet_and_exit(int a, const char *name, char **argv)
134{
135 /* reset some state and run without execing */
136 /* msg_eol = "\n"; - no caller needs this reinited yet */
137 logmode = LOGMODE_STDIO;
138 xfunc_error_retval = EXIT_FAILURE;
139 die_func = NULL;
140 GETOPT_RESET();
Denys Vlasenko036585a2017-08-08 16:38:18 +0200141 /* opt_complementary = NULL; - cleared by each getopt32() call anyway */
Denys Vlasenko80e8e3c2017-08-07 19:24:57 +0200142
143//TODO: think pidof, pgrep, pkill!
144//set_task_comm() makes our pidof find NOEXECs (e.g. "yes >/dev/null"),
145//but one from procps-ng-3.3.10 needs more!
146//Rewrite /proc/PID/cmdline? (need to save argv0 and length at init for this to work!)
147 set_task_comm(name);
Denys Vlasenko8858a982017-08-08 01:21:49 +0200148 /* applet_name is set by this function: */
Denys Vlasenko80e8e3c2017-08-07 19:24:57 +0200149 run_applet_no_and_exit(a, name, argv);
150}
151#endif
152
Denys Vlasenko8858a982017-08-08 01:21:49 +0200153/*
154 * Higher-level code, hiding optional NOFORK/NOEXEC trickery.
155 */
156
157/* This does a fork/exec in one call, using vfork(). Returns PID of new child,
158 * -1 for failure. Runs argv[0], searching path if that has no / in it. */
159pid_t FAST_FUNC spawn(char **argv)
160{
161 /* Compiler should not optimize stores here */
162 volatile int failed;
163 pid_t pid;
164
165 fflush_all();
166
167 /* Be nice to nommu machines. */
168 failed = 0;
169 pid = vfork();
170 if (pid < 0) /* error */
171 return pid;
172 if (!pid) { /* child */
173 /* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */
174 BB_EXECVP(argv[0], argv);
175
176 /* We are (maybe) sharing a stack with blocked parent,
177 * let parent know we failed and then exit to unblock parent
178 * (but don't run atexit() stuff, which would screw up parent.)
179 */
180 failed = errno;
181 /* mount, for example, does not want the message */
182 /*bb_perror_msg("can't execute '%s'", argv[0]);*/
183 _exit(111);
184 }
185 /* parent */
186 /* Unfortunately, this is not reliable: according to standards
187 * vfork() can be equivalent to fork() and we won't see value
188 * of 'failed'.
189 * Interested party can wait on pid and learn exit code.
190 * If 111 - then it (most probably) failed to exec */
191 if (failed) {
192 safe_waitpid(pid, NULL, 0); /* prevent zombie */
193 errno = failed;
194 return -1;
195 }
196 return pid;
197}
198
199/* Die with an error message if we can't spawn a child process. */
200pid_t FAST_FUNC xspawn(char **argv)
201{
202 pid_t pid = spawn(argv);
203 if (pid < 0)
204 bb_simple_perror_msg_and_die(*argv);
205 return pid;
206}
207
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000208int FAST_FUNC spawn_and_wait(char **argv)
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000209{
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000210 int rc;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +0200211#if ENABLE_FEATURE_PREFER_APPLETS && (NUM_APPLETS > 1)
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000212 int a = find_applet_by_name(argv[0]);
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000213
Denys Vlasenko9967c992017-01-26 01:13:58 +0100214 if (a >= 0) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +0000215 if (APPLET_IS_NOFORK(a))
Denis Vlasenkof5294e12007-04-14 10:09:57 +0000216 return run_nofork_applet(a, argv);
Denys Vlasenko9967c992017-01-26 01:13:58 +0100217# if BB_MMU /* NOEXEC needs fork(), thus this is done only on MMU machines: */
218 if (APPLET_IS_NOEXEC(a)) {
219 fflush_all();
220 rc = fork();
221 if (rc) /* parent or error */
222 return wait4pid(rc);
223
224 /* child */
Denys Vlasenko80e8e3c2017-08-07 19:24:57 +0200225 run_noexec_applet_and_exit(a, argv[0], argv);
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000226 }
Denys Vlasenkoc71b4692011-02-02 03:28:56 +0100227# endif
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000228 }
Denys Vlasenkoddd1ee42017-08-08 14:09:23 +0200229#endif
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000230 rc = spawn(argv);
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000231 return wait4pid(rc);
Eric Andersen35e643b2003-07-28 07:40:39 +0000232}
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000233
Denis Vlasenko473dae02007-04-11 07:04:23 +0000234#if !BB_MMU
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000235void FAST_FUNC re_exec(char **argv)
Denis Vlasenko367960b2007-08-18 14:20:21 +0000236{
237 /* high-order bit of first char in argv[0] is a hidden
238 * "we have (already) re-execed, don't do it again" flag */
239 argv[0][0] |= 0x80;
240 execv(bb_busybox_exec_path, argv);
Denys Vlasenko41ddd9f2010-06-25 01:46:53 +0200241 bb_perror_msg_and_die("can't execute '%s'", bb_busybox_exec_path);
Denis Vlasenko367960b2007-08-18 14:20:21 +0000242}
243
Denis Vlasenko83518d12009-03-20 22:17:13 +0000244pid_t FAST_FUNC fork_or_rexec(char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000245{
246 pid_t pid;
247 /* Maybe we are already re-execed and come here again? */
248 if (re_execed)
Denys Vlasenko8f24f982009-06-07 16:02:00 +0200249 return 0;
Denys Vlasenkob182e9a2017-08-04 23:04:17 +0200250
251 /* fflush_all(); ? - so far all callers had no buffered output to flush */
252
Pascal Bellard926031b2010-07-04 15:32:38 +0200253 pid = xvfork();
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000254 if (pid) /* parent */
Denis Vlasenko83518d12009-03-20 22:17:13 +0000255 return pid;
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000256 /* child - re-exec ourself */
Denis Vlasenko367960b2007-08-18 14:20:21 +0000257 re_exec(argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000258}
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000259#endif
260
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000261/* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
262 * char **argv "vanishes" */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000263void FAST_FUNC bb_daemonize_or_rexec(int flags, char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000264{
265 int fd;
266
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000267 if (flags & DAEMON_CHDIR_ROOT)
268 xchdir("/");
269
270 if (flags & DAEMON_DEVNULL_STDIO) {
271 close(0);
272 close(1);
273 close(2);
274 }
275
Denis Vlasenkod48e81f2008-07-06 07:00:11 +0000276 fd = open(bb_dev_null, O_RDWR);
277 if (fd < 0) {
278 /* NB: we can be called as bb_sanitize_stdio() from init
279 * or mdev, and there /dev/null may legitimately not (yet) exist!
280 * Do not use xopen above, but obtain _ANY_ open descriptor,
281 * even bogus one as below. */
282 fd = xopen("/", O_RDONLY); /* don't believe this can fail */
283 }
Denis Vlasenkoa1b16f42007-07-31 17:09:44 +0000284
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000285 while ((unsigned)fd < 2)
286 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
287
288 if (!(flags & DAEMON_ONLY_SANITIZE)) {
Denys Vlasenkob182e9a2017-08-04 23:04:17 +0200289
290 /* fflush_all(); - add it in fork_or_rexec() if necessary */
291
Denis Vlasenko83518d12009-03-20 22:17:13 +0000292 if (fork_or_rexec(argv))
Denys Vlasenkob182e9a2017-08-04 23:04:17 +0200293 _exit(EXIT_SUCCESS); /* parent */
Peter Korsgaard743edac2011-11-09 19:44:37 +0100294 /* if daemonizing, detach from stdio & ctty */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000295 setsid();
296 dup2(fd, 0);
297 dup2(fd, 1);
298 dup2(fd, 2);
Peter Korsgaard743edac2011-11-09 19:44:37 +0100299 if (flags & DAEMON_DOUBLE_FORK) {
300 /* On Linux, session leader can acquire ctty
301 * unknowingly, by opening a tty.
302 * Prevent this: stop being a session leader.
303 */
304 if (fork_or_rexec(argv))
Denys Vlasenkob182e9a2017-08-04 23:04:17 +0200305 _exit(EXIT_SUCCESS); /* parent */
Peter Korsgaard743edac2011-11-09 19:44:37 +0100306 }
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000307 }
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000308 while (fd > 2) {
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000309 close(fd--);
Denis Vlasenkod8540f72007-06-14 07:53:06 +0000310 if (!(flags & DAEMON_CLOSE_EXTRA_FDS))
311 return;
312 /* else close everything after fd#2 */
313 }
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000314}
315
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000316void FAST_FUNC bb_sanitize_stdio(void)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000317{
318 bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
319}