tar: support -T - and -X -
[oweals/busybox.git] / libbb / vfork_daemon_rexec.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Rexec program for system have fork() as vfork() with foreground option
4  *
5  * Copyright (C) Vladimir N. Oleynik <dzo@simtreas.ru>
6  * Copyright (C) 2003 Russ Dill <Russ.Dill@asu.edu>
7  *
8  * daemon() portion taken from uClibc:
9  *
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  *
15  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
16  */
17
18 #include "busybox.h" /* uses applet tables */
19
20 /* 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. */
22 pid_t FAST_FUNC spawn(char **argv)
23 {
24         /* Compiler should not optimize stores here */
25         volatile int failed;
26         pid_t pid;
27
28         fflush_all();
29
30         /* Be nice to nommu machines. */
31         failed = 0;
32         pid = vfork();
33         if (pid < 0) /* error */
34                 return pid;
35         if (!pid) { /* child */
36                 /* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */
37                 BB_EXECVP(argv[0], argv);
38
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;
44                 /* mount, for example, does not want the message */
45                 /*bb_perror_msg("can't execute '%s'", argv[0]);*/
46                 _exit(111);
47         }
48         /* parent */
49         /* 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 */
54         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. */
62 pid_t FAST_FUNC xspawn(char **argv)
63 {
64         pid_t pid = spawn(argv);
65         if (pid < 0)
66                 bb_simple_perror_msg_and_die(*argv);
67         return pid;
68 }
69
70 #if ENABLE_FEATURE_PREFER_APPLETS
71 struct nofork_save_area {
72         jmp_buf die_jmp;
73         const char *applet_name;
74         uint32_t option_mask32;
75         int die_sleep;
76         uint8_t xfunc_error_retval;
77 };
78 static void save_nofork_data(struct nofork_save_area *save)
79 {
80         memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp));
81         save->applet_name = applet_name;
82         save->xfunc_error_retval = xfunc_error_retval;
83         save->option_mask32 = option_mask32;
84         save->die_sleep = die_sleep;
85 }
86 static void restore_nofork_data(struct nofork_save_area *save)
87 {
88         memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp));
89         applet_name = save->applet_name;
90         xfunc_error_retval = save->xfunc_error_retval;
91         option_mask32 = save->option_mask32;
92         die_sleep = save->die_sleep;
93 }
94
95 int FAST_FUNC run_nofork_applet(int applet_no, char **argv)
96 {
97         int rc, argc;
98         struct nofork_save_area old;
99
100         save_nofork_data(&old);
101
102         applet_name = APPLET_NAME(applet_no);
103
104         xfunc_error_retval = EXIT_FAILURE;
105
106         /* In case getopt() or getopt32() was already called:
107          * reset the libc getopt() function, which keeps internal state.
108          *
109          * BSD-derived getopt() functions require that optind be set to 1 in
110          * order to reset getopt() state.  This used to be generally accepted
111          * way of resetting getopt().  However, glibc's getopt()
112          * has additional getopt() state beyond optind, and requires that
113          * optind be set to zero to reset its state.  So the unfortunate state of
114          * affairs is that BSD-derived versions of getopt() misbehave if
115          * optind is set to 0 in order to reset getopt(), and glibc's getopt()
116          * will core dump if optind is set 1 in order to reset getopt().
117          *
118          * More modern versions of BSD require that optreset be set to 1 in
119          * order to reset getopt().  Sigh.  Standards, anyone?
120          */
121 #ifdef __GLIBC__
122         optind = 0;
123 #else /* BSD style */
124         optind = 1;
125         /* optreset = 1; */
126 #endif
127         /* optarg = NULL; opterr = 1; optopt = 63; - do we need this too? */
128         /* (values above are what they initialized to in glibc and uclibc) */
129         /* option_mask32 = 0; - not needed, no applet depends on it being 0 */
130
131         argc = 1;
132         while (argv[argc])
133                 argc++;
134
135         /* Special flag for xfunc_die(). If xfunc will "die"
136          * in NOFORK applet, xfunc_die() sees negative
137          * die_sleep and longjmp here instead. */
138         die_sleep = -1;
139
140         rc = setjmp(die_jmp);
141         if (!rc) {
142                 /* Some callers (xargs)
143                  * need argv untouched because they free argv[i]! */
144                 char *tmp_argv[argc+1];
145                 memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0]));
146                 /* Finally we can call NOFORK applet's main() */
147                 rc = applet_main[applet_no](argc, tmp_argv);
148         } else { /* xfunc died in NOFORK applet */
149                 /* in case they meant to return 0... */
150                 if (rc == -2222)
151                         rc = 0;
152         }
153
154         /* Restoring some globals */
155         restore_nofork_data(&old);
156
157         /* Other globals can be simply reset to defaults */
158 #ifdef __GLIBC__
159         optind = 0;
160 #else /* BSD style */
161         optind = 1;
162 #endif
163
164         return rc & 0xff; /* don't confuse people with "exitcodes" >255 */
165 }
166 #endif /* FEATURE_PREFER_APPLETS */
167
168 int FAST_FUNC spawn_and_wait(char **argv)
169 {
170         int rc;
171 #if ENABLE_FEATURE_PREFER_APPLETS
172         int a = find_applet_by_name(argv[0]);
173
174         if (a >= 0 && (APPLET_IS_NOFORK(a)
175 # if BB_MMU
176                         || APPLET_IS_NOEXEC(a) /* NOEXEC trick needs fork() */
177 # endif
178         )) {
179 # if BB_MMU
180                 if (APPLET_IS_NOFORK(a))
181 # endif
182                 {
183                         return run_nofork_applet(a, argv);
184                 }
185 # if BB_MMU
186                 /* MMU only */
187                 /* a->noexec is true */
188                 rc = fork();
189                 if (rc) /* parent or error */
190                         return wait4pid(rc);
191                 /* child */
192                 xfunc_error_retval = EXIT_FAILURE;
193                 run_applet_no_and_exit(a, argv);
194 # endif
195         }
196 #endif /* FEATURE_PREFER_APPLETS */
197         rc = spawn(argv);
198         return wait4pid(rc);
199 }
200
201 #if !BB_MMU
202 void FAST_FUNC re_exec(char **argv)
203 {
204         /* high-order bit of first char in argv[0] is a hidden
205          * "we have (already) re-execed, don't do it again" flag */
206         argv[0][0] |= 0x80;
207         execv(bb_busybox_exec_path, argv);
208         bb_perror_msg_and_die("can't execute '%s'", bb_busybox_exec_path);
209 }
210
211 pid_t FAST_FUNC fork_or_rexec(char **argv)
212 {
213         pid_t pid;
214         /* Maybe we are already re-execed and come here again? */
215         if (re_execed)
216                 return 0;
217         pid = xvfork();
218         if (pid) /* parent */
219                 return pid;
220         /* child - re-exec ourself */
221         re_exec(argv);
222 }
223 #endif
224
225 /* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
226  * char **argv "vanishes" */
227 void FAST_FUNC bb_daemonize_or_rexec(int flags, char **argv)
228 {
229         int fd;
230
231         if (flags & DAEMON_CHDIR_ROOT)
232                 xchdir("/");
233
234         if (flags & DAEMON_DEVNULL_STDIO) {
235                 close(0);
236                 close(1);
237                 close(2);
238         }
239
240         fd = open(bb_dev_null, O_RDWR);
241         if (fd < 0) {
242                 /* NB: we can be called as bb_sanitize_stdio() from init
243                  * or mdev, and there /dev/null may legitimately not (yet) exist!
244                  * Do not use xopen above, but obtain _ANY_ open descriptor,
245                  * even bogus one as below. */
246                 fd = xopen("/", O_RDONLY); /* don't believe this can fail */
247         }
248
249         while ((unsigned)fd < 2)
250                 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
251
252         if (!(flags & DAEMON_ONLY_SANITIZE)) {
253                 if (fork_or_rexec(argv))
254                         exit(EXIT_SUCCESS); /* parent */
255                 /* if daemonizing, make sure we detach from stdio & ctty */
256                 setsid();
257                 dup2(fd, 0);
258                 dup2(fd, 1);
259                 dup2(fd, 2);
260         }
261         while (fd > 2) {
262                 close(fd--);
263                 if (!(flags & DAEMON_CLOSE_EXTRA_FDS))
264                         return;
265                 /* else close everything after fd#2 */
266         }
267 }
268
269 void FAST_FUNC bb_sanitize_stdio(void)
270 {
271         bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
272 }