Bernhard Reutner-Fischer | 0a8812b | 2006-05-19 13:12:21 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 3 | * Rexec program for system have fork() as vfork() with foreground option |
Russ Dill | a1fece2 | 2003-12-15 21:57:44 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) Vladimir N. Oleynik <dzo@simtreas.ru> |
| 6 | * Copyright (C) 2003 Russ Dill <Russ.Dill@asu.edu> |
| 7 | * |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 8 | * daemon() portion taken from uClibc: |
Russ Dill | a1fece2 | 2003-12-15 21:57:44 +0000 | [diff] [blame] | 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 | * |
Bernhard Reutner-Fischer | 0a8812b | 2006-05-19 13:12:21 +0000 | [diff] [blame] | 15 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
Russ Dill | a1fece2 | 2003-12-15 21:57:44 +0000 | [diff] [blame] | 18 | #include <paths.h> |
Denis Vlasenko | 335b63d | 2007-04-10 21:38:30 +0000 | [diff] [blame] | 19 | #include "busybox.h" /* for struct bb_applet */ |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 20 | |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 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 | |
Denis Vlasenko | 7e754f1 | 2007-04-09 13:04:50 +0000 | [diff] [blame] | 29 | // Ain't it a good place to fflush(NULL)? |
| 30 | |
| 31 | /* Be nice to nommu machines. */ |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 32 | failed = 0; |
| 33 | pid = vfork(); |
| 34 | if (pid < 0) /* error */ |
| 35 | return pid; |
| 36 | if (!pid) { /* child */ |
Denis Vlasenko | 7e754f1 | 2007-04-09 13:04:50 +0000 | [diff] [blame] | 37 | /* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */ |
| 38 | BB_EXECVP(argv[0], argv); |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 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; |
Denis Vlasenko | afa7023 | 2007-03-26 17:25:33 +0000 | [diff] [blame] | 45 | _exit(111); |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 46 | } |
| 47 | /* parent */ |
Denis Vlasenko | afa7023 | 2007-03-26 17:25:33 +0000 | [diff] [blame] | 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 */ |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 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); |
Denis Vlasenko | 53d445a | 2007-04-09 13:21:33 +0000 | [diff] [blame] | 64 | if (pid < 0) |
| 65 | bb_perror_msg_and_die("%s", *argv); |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 66 | return pid; |
| 67 | } |
| 68 | |
Denis Vlasenko | 53d445a | 2007-04-09 13:21:33 +0000 | [diff] [blame] | 69 | // Wait for the specified child PID to exit, returning child's error return. |
| 70 | int wait4pid(int pid) |
| 71 | { |
| 72 | int status; |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 73 | |
Denis Vlasenko | 53d445a | 2007-04-09 13:21:33 +0000 | [diff] [blame] | 74 | if (pid <= 0) { |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 75 | /*errno = ECHILD; -- wrong. */ |
| 76 | /* we expect errno to be already set from failed [v]fork/exec */ |
Denis Vlasenko | 53d445a | 2007-04-09 13:21:33 +0000 | [diff] [blame] | 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)) |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 84 | return WTERMSIG(status) + 1000; |
Denis Vlasenko | 53d445a | 2007-04-09 13:21:33 +0000 | [diff] [blame] | 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 | } |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 102 | |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 103 | #if ENABLE_FEATURE_PREFER_APPLETS |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 104 | void save_nofork_data(struct nofork_save_area *save) |
| 105 | { |
| 106 | save->current_applet = current_applet; |
| 107 | save->xfunc_error_retval = xfunc_error_retval; |
| 108 | save->option_mask32 = option_mask32; |
| 109 | save->die_sleep = die_sleep; |
| 110 | save->saved = 1; |
| 111 | } |
| 112 | |
| 113 | void restore_nofork_data(struct nofork_save_area *save) |
| 114 | { |
| 115 | current_applet = save->current_applet; |
| 116 | xfunc_error_retval = save->xfunc_error_retval; |
| 117 | option_mask32 = save->option_mask32; |
| 118 | die_sleep = save->die_sleep; |
| 119 | |
| 120 | applet_name = current_applet->name; |
| 121 | } |
| 122 | |
| 123 | int run_nofork_applet_prime(struct nofork_save_area *old, const struct bb_applet *a, char **argv) |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 124 | { |
| 125 | int rc, argc; |
| 126 | |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 127 | current_applet = a; |
| 128 | applet_name = a->name; |
| 129 | xfunc_error_retval = EXIT_FAILURE; |
| 130 | /*option_mask32 = 0; - not needed */ |
| 131 | /* special flag for xfunc_die(). If xfunc will "die" |
| 132 | * in NOFORK applet, xfunc_die() sees negative |
| 133 | * die_sleep and longjmp here instead. */ |
| 134 | die_sleep = -1; |
| 135 | |
| 136 | argc = 1; |
| 137 | while (argv[argc]) |
| 138 | argc++; |
| 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 = a->main(argc, tmp_argv); |
| 148 | } else { /* xfunc died in NOFORK applet */ |
| 149 | /* in case they meant to return 0... */ |
| 150 | if (rc == -111) |
| 151 | rc = 0; |
| 152 | } |
| 153 | |
| 154 | /* Restoring globals */ |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 155 | restore_nofork_data(old); |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 156 | return rc; |
| 157 | } |
| 158 | |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 159 | int run_nofork_applet(const struct bb_applet *a, char **argv) |
| 160 | { |
| 161 | struct nofork_save_area old; |
| 162 | /* Saving globals */ |
| 163 | save_nofork_data(&old); |
| 164 | return run_nofork_applet_prime(&old, a, argv); |
| 165 | } |
Denis Vlasenko | 96f67dc | 2007-05-17 13:02:41 +0000 | [diff] [blame] | 166 | #endif /* FEATURE_PREFER_APPLETS */ |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 167 | |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 168 | int spawn_and_wait(char **argv) |
| 169 | { |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 170 | int rc; |
Denis Vlasenko | d571c08 | 2007-04-11 07:26:56 +0000 | [diff] [blame] | 171 | #if ENABLE_FEATURE_PREFER_APPLETS |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 172 | const struct bb_applet *a = find_applet_by_name(argv[0]); |
Denis Vlasenko | 335b63d | 2007-04-10 21:38:30 +0000 | [diff] [blame] | 173 | |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 174 | if (a && (a->nofork |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 175 | #if BB_MMU |
| 176 | || a->noexec /* NOEXEC trick needs fork() */ |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 177 | #endif |
| 178 | )) { |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 179 | #if BB_MMU |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 180 | if (a->nofork) |
| 181 | #endif |
| 182 | { |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 183 | return run_nofork_applet(a, argv); |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 184 | } |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 185 | #if BB_MMU |
| 186 | /* MMU only */ |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 187 | /* a->noexec is true */ |
| 188 | rc = fork(); |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 189 | if (rc) /* parent or error */ |
| 190 | return wait4pid(rc); |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 191 | /* child */ |
Denis Vlasenko | f1a7141 | 2007-04-10 23:32:37 +0000 | [diff] [blame] | 192 | xfunc_error_retval = EXIT_FAILURE; |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 193 | current_applet = a; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 194 | run_current_applet_and_exit(argv); |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 195 | #endif |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 196 | } |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 197 | #endif /* FEATURE_PREFER_APPLETS */ |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 198 | rc = spawn(argv); |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 199 | return wait4pid(rc); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 200 | } |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 201 | |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 202 | |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 203 | #if !BB_MMU |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 204 | void forkexit_or_rexec(char **argv) |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 205 | { |
| 206 | pid_t pid; |
| 207 | /* Maybe we are already re-execed and come here again? */ |
| 208 | if (re_execed) |
| 209 | return; |
| 210 | |
| 211 | pid = vfork(); |
| 212 | if (pid < 0) /* wtf? */ |
| 213 | bb_perror_msg_and_die("vfork"); |
| 214 | if (pid) /* parent */ |
| 215 | exit(0); |
| 216 | /* child - re-exec ourself */ |
| 217 | /* high-order bit of first char in argv[0] is a hidden |
| 218 | * "we have (alrealy) re-execed, don't do it again" flag */ |
| 219 | argv[0][0] |= 0x80; |
| 220 | execv(CONFIG_BUSYBOX_EXEC_PATH, argv); |
| 221 | bb_perror_msg_and_die("exec %s", CONFIG_BUSYBOX_EXEC_PATH); |
| 222 | } |
| 223 | #else |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 224 | /* Dance around (void)...*/ |
| 225 | #undef forkexit_or_rexec |
| 226 | void forkexit_or_rexec(void) |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 227 | { |
| 228 | pid_t pid; |
| 229 | pid = fork(); |
| 230 | if (pid < 0) /* wtf? */ |
| 231 | bb_perror_msg_and_die("fork"); |
| 232 | if (pid) /* parent */ |
| 233 | exit(0); |
| 234 | /* child */ |
| 235 | } |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 236 | #define forkexit_or_rexec(argv) forkexit_or_rexec() |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 237 | #endif |
| 238 | |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 239 | /* Due to a #define in libbb.h on MMU systems we actually have 1 argument - |
| 240 | * char **argv "vanishes" */ |
| 241 | void bb_daemonize_or_rexec(int flags, char **argv) |
| 242 | { |
| 243 | int fd; |
| 244 | |
| 245 | fd = xopen(bb_dev_null, O_RDWR); |
| 246 | |
| 247 | if (flags & DAEMON_CHDIR_ROOT) |
| 248 | xchdir("/"); |
| 249 | |
| 250 | if (flags & DAEMON_DEVNULL_STDIO) { |
| 251 | close(0); |
| 252 | close(1); |
| 253 | close(2); |
| 254 | } |
| 255 | |
| 256 | while ((unsigned)fd < 2) |
| 257 | fd = dup(fd); /* have 0,1,2 open at least to /dev/null */ |
| 258 | |
| 259 | if (!(flags & DAEMON_ONLY_SANITIZE)) { |
Denis Vlasenko | 53091ec | 2007-03-26 13:35:09 +0000 | [diff] [blame] | 260 | forkexit_or_rexec(argv); |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 261 | /* if daemonizing, make sure we detach from stdio */ |
| 262 | setsid(); |
| 263 | dup2(fd, 0); |
| 264 | dup2(fd, 1); |
| 265 | dup2(fd, 2); |
| 266 | } |
| 267 | if (fd > 2) |
| 268 | close(fd--); |
| 269 | if (flags & DAEMON_CLOSE_EXTRA_FDS) |
| 270 | while (fd > 2) |
| 271 | close(fd--); /* close everything after fd#2 */ |
| 272 | } |
| 273 | |
| 274 | void bb_sanitize_stdio(void) |
| 275 | { |
| 276 | bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL); |
| 277 | } |