blob: 64952225d7df3eb245015ab158cf7a6994a7c590 [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 *
Bernhard Reutner-Fischer0a8812b2006-05-19 13:12:21 +000015 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen35e643b2003-07-28 07:40:39 +000016 */
17
Russ Dilla1fece22003-12-15 21:57:44 +000018#include <paths.h>
Denis Vlasenko335b63d2007-04-10 21:38:30 +000019#include "busybox.h" /* for struct bb_applet */
Eric Andersen35e643b2003-07-28 07:40:39 +000020
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000021/* This does a fork/exec in one call, using vfork(). Returns PID of new child,
22 * -1 for failure. Runs argv[0], searching path if that has no / in it. */
23pid_t spawn(char **argv)
24{
25 /* Compiler should not optimize stores here */
26 volatile int failed;
27 pid_t pid;
28
Denis Vlasenko7e754f12007-04-09 13:04:50 +000029// Ain't it a good place to fflush(NULL)?
30
31 /* Be nice to nommu machines. */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000032 failed = 0;
33 pid = vfork();
34 if (pid < 0) /* error */
35 return pid;
36 if (!pid) { /* child */
Denis Vlasenko7e754f12007-04-09 13:04:50 +000037 /* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */
38 BB_EXECVP(argv[0], argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000039
40 /* We are (maybe) sharing a stack with blocked parent,
41 * let parent know we failed and then exit to unblock parent
42 * (but don't run atexit() stuff, which would screw up parent.)
43 */
44 failed = errno;
Denis Vlasenkoafa70232007-03-26 17:25:33 +000045 _exit(111);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000046 }
47 /* parent */
Denis Vlasenkoafa70232007-03-26 17:25:33 +000048 /* Unfortunately, this is not reliable: according to standards
49 * vfork() can be equivalent to fork() and we won't see value
50 * of 'failed'.
51 * Interested party can wait on pid and learn exit code.
52 * If 111 - then it (most probably) failed to exec */
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000053 if (failed) {
54 errno = failed;
55 return -1;
56 }
57 return pid;
58}
59
60/* Die with an error message if we can't spawn a child process. */
61pid_t xspawn(char **argv)
62{
63 pid_t pid = spawn(argv);
Denis Vlasenko53d445a2007-04-09 13:21:33 +000064 if (pid < 0)
65 bb_perror_msg_and_die("%s", *argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000066 return pid;
67}
68
Denis Vlasenko53d445a2007-04-09 13:21:33 +000069// Wait for the specified child PID to exit, returning child's error return.
70int wait4pid(int pid)
71{
72 int status;
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +000073
Denis Vlasenko53d445a2007-04-09 13:21:33 +000074 if (pid <= 0) {
Denis Vlasenkocd7001f2007-04-09 21:32:30 +000075 /*errno = ECHILD; -- wrong. */
76 /* we expect errno to be already set from failed [v]fork/exec */
Denis Vlasenko53d445a2007-04-09 13:21:33 +000077 return -1;
78 }
79 if (waitpid(pid, &status, 0) == -1)
80 return -1;
81 if (WIFEXITED(status))
82 return WEXITSTATUS(status);
83 if (WIFSIGNALED(status))
Denis Vlasenkocd7001f2007-04-09 21:32:30 +000084 return WTERMSIG(status) + 1000;
Denis Vlasenko53d445a2007-04-09 13:21:33 +000085 return 0;
86}
87
88int wait_nohang(int *wstat)
89{
90 return waitpid(-1, wstat, WNOHANG);
91}
92
93int wait_pid(int *wstat, int pid)
94{
95 int r;
96
97 do
98 r = waitpid(pid, wstat, 0);
99 while ((r == -1) && (errno == EINTR));
100 return r;
101}
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000102
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000103int spawn_and_wait(char **argv)
104{
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000105#if ENABLE_FEATURE_PREFER_APPLETS
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000106 int rc;
107 const struct bb_applet *a = find_applet_by_name(argv[0]);
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000108
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000109 if (a && (a->nofork
110#ifndef BB_NOMMU
111 || a->noexec /* NOEXEC cannot be used on NOMMU */
112#endif
113 )) {
114 int argc = 1;
115 char **pp = argv;
116 while (*++pp)
117 argc++;
118#ifndef BB_NOMMU
119 if (a->nofork)
120#endif
121 {
122 int old_sleep = die_sleep;
123 int old_x = xfunc_error_retval;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000124 uint32_t old_m = option_mask32;
125
126 xfunc_error_retval = EXIT_FAILURE;
127 /* special flag for xfunc_die(). If xfunc will "die"
128 * in NOFORK applet, xfunc_die() sees negative
129 * die_sleep and longjmp here instead. */
130 die_sleep = -1;
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000131
132 rc = setjmp(die_jmp);
133 if (!rc) {
134 const struct bb_applet *old_a = current_applet;
135 current_applet = a;
136 applet_name = a->name;
Denis Vlasenko3f3aa2a2007-04-09 21:35:07 +0000137// what else should we save/restore?
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000138// TODO: what if applet will mangle argv vector?
139// xargs needs argv untouched because it frees the vector!
140// shouldn't we pass a copy?
141 rc = a->main(argc, argv);
142 current_applet = old_a;
143 applet_name = old_a->name;
144 } else {
145 /* xfunc died in NOFORK applet */
146 if (rc == -111)
147 rc = 0;
Denis Vlasenko3f3aa2a2007-04-09 21:35:07 +0000148 }
Denis Vlasenko335b63d2007-04-10 21:38:30 +0000149
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000150 die_sleep = old_sleep;
151 xfunc_error_retval = old_x;
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000152 option_mask32 = old_m;
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000153 return rc;
154 }
155#ifndef BB_NOMMU /* MMU only */
156 /* a->noexec is true */
157 rc = fork();
158 if (rc)
159 goto w;
160 /* child */
Denis Vlasenkof1a71412007-04-10 23:32:37 +0000161 xfunc_error_retval = EXIT_FAILURE;
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000162 current_applet = a;
163 run_current_applet_and_exit(argc, argv);
164#endif
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000165 }
166 rc = spawn(argv);
Denis Vlasenkof1a71412007-04-10 23:32:37 +0000167#ifndef BB_NOMMU
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000168 w:
Denis Vlasenkof1a71412007-04-10 23:32:37 +0000169#endif
Denis Vlasenkocd7001f2007-04-09 21:32:30 +0000170 return wait4pid(rc);
Denis Vlasenko80d14be2007-04-10 23:03:30 +0000171#else /* !FEATURE_PREFER_APPLETS */
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000172 return wait4pid(spawn(argv));
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000173#endif
Eric Andersen35e643b2003-07-28 07:40:39 +0000174}
Denis Vlasenkoc6758a02007-04-10 21:40:19 +0000175
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000176
177#ifdef BB_NOMMU
Denis Vlasenko53091ec2007-03-26 13:35:09 +0000178void forkexit_or_rexec(char **argv)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000179{
180 pid_t pid;
181 /* Maybe we are already re-execed and come here again? */
182 if (re_execed)
183 return;
184
185 pid = vfork();
186 if (pid < 0) /* wtf? */
187 bb_perror_msg_and_die("vfork");
188 if (pid) /* parent */
189 exit(0);
190 /* child - re-exec ourself */
191 /* high-order bit of first char in argv[0] is a hidden
192 * "we have (alrealy) re-execed, don't do it again" flag */
193 argv[0][0] |= 0x80;
194 execv(CONFIG_BUSYBOX_EXEC_PATH, argv);
195 bb_perror_msg_and_die("exec %s", CONFIG_BUSYBOX_EXEC_PATH);
196}
197#else
Denis Vlasenko53091ec2007-03-26 13:35:09 +0000198/* Dance around (void)...*/
199#undef forkexit_or_rexec
200void forkexit_or_rexec(void)
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000201{
202 pid_t pid;
203 pid = fork();
204 if (pid < 0) /* wtf? */
205 bb_perror_msg_and_die("fork");
206 if (pid) /* parent */
207 exit(0);
208 /* child */
209}
Denis Vlasenko53091ec2007-03-26 13:35:09 +0000210#define forkexit_or_rexec(argv) forkexit_or_rexec()
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000211#endif
212
213
214/* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
215 * char **argv "vanishes" */
216void bb_daemonize_or_rexec(int flags, char **argv)
217{
218 int fd;
219
220 fd = xopen(bb_dev_null, O_RDWR);
221
222 if (flags & DAEMON_CHDIR_ROOT)
223 xchdir("/");
224
225 if (flags & DAEMON_DEVNULL_STDIO) {
226 close(0);
227 close(1);
228 close(2);
229 }
230
231 while ((unsigned)fd < 2)
232 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
233
234 if (!(flags & DAEMON_ONLY_SANITIZE)) {
Denis Vlasenko53091ec2007-03-26 13:35:09 +0000235 forkexit_or_rexec(argv);
Denis Vlasenkobb7fcb42007-03-26 13:20:04 +0000236 /* if daemonizing, make sure we detach from stdio */
237 setsid();
238 dup2(fd, 0);
239 dup2(fd, 1);
240 dup2(fd, 2);
241 }
242 if (fd > 2)
243 close(fd--);
244 if (flags & DAEMON_CLOSE_EXTRA_FDS)
245 while (fd > 2)
246 close(fd--); /* close everything after fd#2 */
247}
248
249void bb_sanitize_stdio(void)
250{
251 bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
252}