ff2b0bcebc300aa1ec5421da6ca481216f119024
[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 "libbb.h"
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. we expect errno to be set from failed exec */
76                 return -1;
77         }
78         if (waitpid(pid, &status, 0) == -1)
79                 return -1;
80         if (WIFEXITED(status))
81                 return WEXITSTATUS(status);
82         if (WIFSIGNALED(status))
83                 return WTERMSIG(status) + 10000;
84         return 0;
85 }
86
87 int wait_nohang(int *wstat)
88 {
89         return waitpid(-1, wstat, WNOHANG);
90 }
91
92 int wait_pid(int *wstat, int pid)
93 {
94         int r;
95
96         do
97                 r = waitpid(pid, wstat, 0);
98         while ((r == -1) && (errno == EINTR));
99         return r;
100 }
101
102 #if 0 //ndef BB_NOMMU
103 // Die with an error message if we can't daemonize.
104 void xdaemon(int nochdir, int noclose)
105 {
106         if (daemon(nochdir, noclose))
107                 bb_perror_msg_and_die("daemon");
108 }
109 #endif
110
111 #if 0 // def BB_NOMMU
112 void vfork_daemon_rexec(int nochdir, int noclose, char **argv)
113 {
114         int fd;
115
116         /* Maybe we are already re-execed and come here again? */
117         if (re_execed)
118                 return;
119
120         setsid();
121
122         if (!nochdir)
123                 xchdir("/");
124
125         if (!noclose) {
126                 /* if "/dev/null" doesn't exist, bail out! */
127                 fd = xopen(bb_dev_null, O_RDWR);
128                 dup2(fd, STDIN_FILENO);
129                 dup2(fd, STDOUT_FILENO);
130                 dup2(fd, STDERR_FILENO);
131                 while (fd > 2)
132                         close(fd--);
133         }
134
135         switch (vfork()) {
136         case 0: /* child */
137                 /* Make certain we are not a session leader, or else we
138                  * might reacquire a controlling terminal */
139                 if (vfork())
140                         _exit(0);
141                 /* High-order bit of first char in argv[0] is a hidden
142                  * "we have (alrealy) re-execed, don't do it again" flag */
143                 argv[0][0] |= 0x80;
144                 execv(CONFIG_BUSYBOX_EXEC_PATH, argv);
145                 bb_perror_msg_and_die("exec %s", CONFIG_BUSYBOX_EXEC_PATH);
146         case -1: /* error */
147                 bb_perror_msg_and_die("vfork");
148         default: /* parent */
149                 exit(0);
150         }
151 }
152 #endif /* BB_NOMMU */
153
154 #ifdef BB_NOMMU
155 void forkexit_or_rexec(char **argv)
156 {
157         pid_t pid;
158         /* Maybe we are already re-execed and come here again? */
159         if (re_execed)
160                 return;
161
162         pid = vfork();
163         if (pid < 0) /* wtf? */
164                 bb_perror_msg_and_die("vfork");
165         if (pid) /* parent */
166                 exit(0);
167         /* child - re-exec ourself */
168         /* high-order bit of first char in argv[0] is a hidden
169          * "we have (alrealy) re-execed, don't do it again" flag */
170         argv[0][0] |= 0x80;
171         execv(CONFIG_BUSYBOX_EXEC_PATH, argv);
172         bb_perror_msg_and_die("exec %s", CONFIG_BUSYBOX_EXEC_PATH);
173 }
174 #else
175 /* Dance around (void)...*/
176 #undef forkexit_or_rexec
177 void forkexit_or_rexec(void)
178 {
179         pid_t pid;
180         pid = fork();
181         if (pid < 0) /* wtf? */
182                 bb_perror_msg_and_die("fork");
183         if (pid) /* parent */
184                 exit(0);
185         /* child */
186 }
187 #define forkexit_or_rexec(argv) forkexit_or_rexec()
188 #endif
189
190
191 /* Due to a #define in libbb.h on MMU systems we actually have 1 argument -
192  * char **argv "vanishes" */
193 void bb_daemonize_or_rexec(int flags, char **argv)
194 {
195         int fd;
196
197         fd = xopen(bb_dev_null, O_RDWR);
198
199         if (flags & DAEMON_CHDIR_ROOT)
200                 xchdir("/");
201
202         if (flags & DAEMON_DEVNULL_STDIO) {
203                 close(0);
204                 close(1);
205                 close(2);
206         }
207
208         while ((unsigned)fd < 2)
209                 fd = dup(fd); /* have 0,1,2 open at least to /dev/null */
210
211         if (!(flags & DAEMON_ONLY_SANITIZE)) {
212                 forkexit_or_rexec(argv);
213                 /* if daemonizing, make sure we detach from stdio */
214                 setsid();
215                 dup2(fd, 0);
216                 dup2(fd, 1);
217                 dup2(fd, 2);
218         }
219         if (fd > 2)
220                 close(fd--);
221         if (flags & DAEMON_CLOSE_EXTRA_FDS)
222                 while (fd > 2)
223                         close(fd--); /* close everything after fd#2 */
224 }
225
226 void bb_sanitize_stdio(void)
227 {
228         bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL);
229 }