make a few struct bb_applet members conditional
[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 tarball for details.
16  */
17
18 #include <paths.h>
19 #include "busybox.h" /* for struct bb_applet */
20
21 /* 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. */
23 pid_t spawn(char **argv)
24 {
25         /* Compiler should not optimize stores here */
26         volatile int failed;
27         pid_t pid;
28
29 // Ain't it a good place to fflush(NULL)?
30
31         /* Be nice to nommu machines. */
32         failed = 0;
33         pid = vfork();
34         if (pid < 0) /* error */
35                 return pid;
36         if (!pid) { /* child */
37                 /* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */
38                 BB_EXECVP(argv[0], argv);
39
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;
45                 _exit(111);
46         }
47         /* parent */
48         /* 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 */
53         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. */
61 pid_t xspawn(char **argv)
62 {
63         pid_t pid = spawn(argv);
64         if (pid < 0)
65                 bb_perror_msg_and_die("%s", *argv);
66         return pid;
67 }
68
69 // Wait for the specified child PID to exit, returning child's error return.
70 int wait4pid(int pid)
71 {
72         int status;
73
74         if (pid <= 0) {
75                 /*errno = ECHILD; -- wrong. */
76                 /* we expect errno to be already set from failed [v]fork/exec */
77                 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))
84                 return WTERMSIG(status) + 1000;
85         return 0;
86 }
87
88 int wait_nohang(int *wstat)
89 {
90         return waitpid(-1, wstat, WNOHANG);
91 }
92
93 int 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 }
102
103 int spawn_and_wait(char **argv)
104 {
105         int rc;
106
107 #if ENABLE_FEATURE_EXEC_PREFER_APPLETS
108         {
109                 const struct bb_applet *a = find_applet_by_name(argv[0]);
110                 if (a && (a->nofork
111 #ifndef BB_NOMMU
112                          || a->noexec /* NOEXEC cannot be used on NOMMU */
113 #endif
114                 )) {
115                         int argc = 1;
116                         char **pp = argv;
117                         while (*++pp)
118                                 argc++;
119 #ifndef BB_NOMMU
120                         if (a->nofork)
121 #endif
122                         {
123                                 int old_sleep = die_sleep;
124                                 int old_x = xfunc_error_retval;
125                                 die_sleep = -1; /* special flag */
126                                 /* xfunc_die() checks for it */
127
128                                 rc = setjmp(die_jmp);
129                                 if (!rc) {
130                                         const struct bb_applet *old_a = current_applet;
131                                         current_applet = a;
132                                         applet_name = a->name;
133 // what else should we save/restore?
134                                         rc = a->main(argc, argv);
135                                         current_applet = old_a;
136                                         applet_name = old_a->name;                                      
137                                 } else {
138                                         /* xfunc died in NOFORK applet */
139                                         if (rc == -111)
140                                                 rc = 0;
141                                 }
142
143                                 die_sleep = old_sleep;
144                                 xfunc_error_retval = old_x;
145                                 return rc;
146                         }
147 #ifndef BB_NOMMU        /* MMU only */
148                         /* a->noexec is true */
149                         rc = fork();
150                         if (rc)
151                                 goto w;
152                         /* child */
153                         current_applet = a;
154                         run_current_applet_and_exit(argc, argv);
155 #endif
156                 }
157
158         }
159         rc = spawn(argv);
160  w:
161 #else /* !FEATURE_EXEC_PREFER_APPLETS */
162         rc = spawn(argv);
163 #endif /* FEATURE_EXEC_PREFER_APPLETS */
164         return wait4pid(rc);
165 }
166
167
168 #if 0 //ndef BB_NOMMU
169 // Die with an error message if we can't daemonize.
170 void xdaemon(int nochdir, int noclose)
171 {
172         if (daemon(nochdir, noclose))
173                 bb_perror_msg_and_die("daemon");
174 }
175 #endif
176
177 #if 0 // def BB_NOMMU
178 void vfork_daemon_rexec(int nochdir, int noclose, char **argv)
179 {
180         int fd;
181
182         /* Maybe we are already re-execed and come here again? */
183         if (re_execed)
184                 return;
185
186         setsid();
187
188         if (!nochdir)
189                 xchdir("/");
190
191         if (!noclose) {
192                 /* if "/dev/null" doesn't exist, bail out! */
193                 fd = xopen(bb_dev_null, O_RDWR);
194                 dup2(fd, STDIN_FILENO);
195                 dup2(fd, STDOUT_FILENO);
196                 dup2(fd, STDERR_FILENO);
197                 while (fd > 2)
198                         close(fd--);
199         }
200
201         switch (vfork()) {
202         case 0: /* child */
203                 /* Make certain we are not a session leader, or else we
204                  * might reacquire a controlling terminal */
205                 if (vfork())
206                         _exit(0);
207                 /* High-order bit of first char in argv[0] is a hidden
208                  * "we have (alrealy) re-execed, don't do it again" flag */
209                 argv[0][0] |= 0x80;
210                 execv(CONFIG_BUSYBOX_EXEC_PATH, argv);
211                 bb_perror_msg_and_die("exec %s", CONFIG_BUSYBOX_EXEC_PATH);
212         case -1: /* error */
213                 bb_perror_msg_and_die("vfork");
214         default: /* parent */
215                 exit(0);
216         }
217 }
218 #endif /* BB_NOMMU */
219
220 #ifdef BB_NOMMU
221 void forkexit_or_rexec(char **argv)
222 {
223         pid_t pid;
224         /* Maybe we are already re-execed and come here again? */
225         if (re_execed)
226                 return;
227
228         pid = vfork();
229         if (pid < 0) /* wtf? */
230                 bb_perror_msg_and_die("vfork");
231         if (pid) /* parent */
232                 exit(0);
233         /* child - re-exec ourself */
234         /* high-order bit of first char in argv[0] is a hidden
235          * "we have (alrealy) re-execed, don't do it again" flag */
236         argv[0][0] |= 0x80;
237         execv(CONFIG_BUSYBOX_EXEC_PATH, argv);
238         bb_perror_msg_and_die("exec %s", CONFIG_BUSYBOX_EXEC_PATH);
239 }
240 #else
241 /* Dance around (void)...*/
242 #undef forkexit_or_rexec
243 void forkexit_or_rexec(void)
244 {
245         pid_t pid;
246         pid = fork();
247         if (pid < 0) /* wtf? */
248                 bb_perror_msg_and_die("fork");
249         if (pid) /* parent */
250                 exit(0);
251         /* child */
252 }
253 #define forkexit_or_rexec(argv) forkexit_or_rexec()
254 #endif
255
256
257 /* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
258  * char **argv "vanishes" */
259 void bb_daemonize_or_rexec(int flags, char **argv)
260 {
261         int fd;
262
263         fd = xopen(bb_dev_null, O_RDWR);
264
265         if (flags & DAEMON_CHDIR_ROOT)
266                 xchdir("/");
267
268         if (flags & DAEMON_DEVNULL_STDIO) {
269                 close(0);
270                 close(1);
271                 close(2);
272         }
273
274         while ((unsigned)fd < 2)
275                 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
276
277         if (!(flags & DAEMON_ONLY_SANITIZE)) {
278                 forkexit_or_rexec(argv);
279                 /* if daemonizing, make sure we detach from stdio */
280                 setsid();
281                 dup2(fd, 0);
282                 dup2(fd, 1);
283                 dup2(fd, 2);
284         }
285         if (fd > 2)
286                 close(fd--);
287         if (flags & DAEMON_CLOSE_EXTRA_FDS)
288                 while (fd > 2)
289                         close(fd--); /* close everything after fd#2 */
290 }
291
292 void bb_sanitize_stdio(void)
293 {
294         bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
295 }