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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 15 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 16 | */ |
Denys Vlasenko | ddd1ee4 | 2017-08-08 14:09:23 +0200 | [diff] [blame] | 17 | #include <sys/prctl.h> |
| 18 | #ifndef PR_SET_NAME |
| 19 | #define PR_SET_NAME 15 |
| 20 | #endif |
| 21 | #ifndef PR_GET_NAME |
| 22 | #define PR_GET_NAME 16 |
| 23 | #endif |
| 24 | |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 25 | #include "busybox.h" /* uses applet tables */ |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 26 | #include "NUM_APPLETS.h" |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 27 | |
Denys Vlasenko | ddd1ee4 | 2017-08-08 14:09:23 +0200 | [diff] [blame] | 28 | #define NOFORK_SUPPORT ((NUM_APPLETS > 1) && (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_NOFORK)) |
| 29 | #define NOEXEC_SUPPORT ((NUM_APPLETS > 1) && (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_STANDALONE)) |
| 30 | |
| 31 | #if defined(__linux__) && (NUM_APPLETS > 1) |
| 32 | void FAST_FUNC set_task_comm(const char *comm) |
| 33 | { |
| 34 | /* okay if too long (truncates) */ |
| 35 | prctl(PR_SET_NAME, (long)comm, 0, 0, 0); |
| 36 | } |
| 37 | #endif |
| 38 | |
Denys Vlasenko | 8858a98 | 2017-08-08 01:21:49 +0200 | [diff] [blame] | 39 | /* |
Denys Vlasenko | ddd1ee4 | 2017-08-08 14:09:23 +0200 | [diff] [blame] | 40 | * NOFORK/NOEXEC support |
Denys Vlasenko | 8858a98 | 2017-08-08 01:21:49 +0200 | [diff] [blame] | 41 | */ |
Denys Vlasenko | ddd1ee4 | 2017-08-08 14:09:23 +0200 | [diff] [blame] | 42 | #if NOFORK_SUPPORT |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 43 | static jmp_buf die_jmp; |
| 44 | static void jump(void) |
| 45 | { |
| 46 | /* Special case. We arrive here if NOFORK applet |
| 47 | * calls xfunc, which then decides to die. |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame^] | 48 | * We don't die, but instead jump back to caller. |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 49 | * NOFORK applets still cannot carelessly call xfuncs: |
| 50 | * p = xmalloc(10); |
| 51 | * q = xmalloc(10); // BUG! if this dies, we leak p! |
| 52 | */ |
| 53 | /* | 0x100 allows to pass zero exitcode (longjmp can't pass 0). |
| 54 | * This works because exitcodes are bytes, |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame^] | 55 | * run_nofork_applet() ensures that by "& 0xff" |
| 56 | */ |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 57 | longjmp(die_jmp, xfunc_error_retval | 0x100); |
| 58 | } |
| 59 | |
Denys Vlasenko | 6307357 | 2011-02-02 19:05:25 +0100 | [diff] [blame] | 60 | struct nofork_save_area { |
| 61 | jmp_buf die_jmp; |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 62 | void (*die_func)(void); |
Denys Vlasenko | 6307357 | 2011-02-02 19:05:25 +0100 | [diff] [blame] | 63 | const char *applet_name; |
| 64 | uint32_t option_mask32; |
Denys Vlasenko | 39194f0 | 2017-08-03 19:00:01 +0200 | [diff] [blame] | 65 | smallint logmode; |
Denys Vlasenko | 6307357 | 2011-02-02 19:05:25 +0100 | [diff] [blame] | 66 | uint8_t xfunc_error_retval; |
| 67 | }; |
| 68 | static void save_nofork_data(struct nofork_save_area *save) |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 69 | { |
Denis Vlasenko | b055001 | 2007-05-24 12:18:16 +0000 | [diff] [blame] | 70 | memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp)); |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 71 | save->die_func = die_func; |
Denis Vlasenko | 82d38da | 2007-10-10 14:38:47 +0000 | [diff] [blame] | 72 | save->applet_name = applet_name; |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 73 | save->option_mask32 = option_mask32; |
Denys Vlasenko | 39194f0 | 2017-08-03 19:00:01 +0200 | [diff] [blame] | 74 | save->logmode = logmode; |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 75 | save->xfunc_error_retval = xfunc_error_retval; |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 76 | } |
Denys Vlasenko | 6307357 | 2011-02-02 19:05:25 +0100 | [diff] [blame] | 77 | static void restore_nofork_data(struct nofork_save_area *save) |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 78 | { |
Denis Vlasenko | b055001 | 2007-05-24 12:18:16 +0000 | [diff] [blame] | 79 | memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp)); |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 80 | die_func = save->die_func; |
Denis Vlasenko | 82d38da | 2007-10-10 14:38:47 +0000 | [diff] [blame] | 81 | applet_name = save->applet_name; |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 82 | option_mask32 = save->option_mask32; |
Denys Vlasenko | 39194f0 | 2017-08-03 19:00:01 +0200 | [diff] [blame] | 83 | logmode = save->logmode; |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 84 | xfunc_error_retval = save->xfunc_error_retval; |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Denys Vlasenko | 6307357 | 2011-02-02 19:05:25 +0100 | [diff] [blame] | 87 | int FAST_FUNC run_nofork_applet(int applet_no, char **argv) |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 88 | { |
| 89 | int rc, argc; |
Denys Vlasenko | 6307357 | 2011-02-02 19:05:25 +0100 | [diff] [blame] | 90 | struct nofork_save_area old; |
| 91 | |
| 92 | save_nofork_data(&old); |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 93 | |
Denys Vlasenko | 39194f0 | 2017-08-03 19:00:01 +0200 | [diff] [blame] | 94 | logmode = LOGMODE_STDIO; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 95 | xfunc_error_retval = EXIT_FAILURE; |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame^] | 96 | /* In case getopt() was already called: |
Denis Vlasenko | d1660cb | 2008-10-20 07:52:33 +0000 | [diff] [blame] | 97 | * reset the libc getopt() function, which keeps internal state. |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame^] | 98 | * (getopt32() does it itself, but getopt() doesn't (and can't)) |
Denis Vlasenko | d1660cb | 2008-10-20 07:52:33 +0000 | [diff] [blame] | 99 | */ |
Kaarle Ritvanen | 835ad3a | 2017-04-12 00:58:46 +0300 | [diff] [blame] | 100 | GETOPT_RESET(); |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame^] | 101 | /* opt_complementary = NULL; - cleared by each getopt32() call anyway */ |
Denis Vlasenko | c4e4be9 | 2008-01-27 22:39:55 +0000 | [diff] [blame] | 102 | |
Denys Vlasenko | 8858a98 | 2017-08-08 01:21:49 +0200 | [diff] [blame] | 103 | argc = string_array_len(argv); |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 104 | |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 105 | /* If xfunc "dies" in NOFORK applet, die_func longjmp's here instead */ |
| 106 | die_func = jump; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 107 | rc = setjmp(die_jmp); |
| 108 | if (!rc) { |
| 109 | /* Some callers (xargs) |
| 110 | * need argv untouched because they free argv[i]! */ |
| 111 | char *tmp_argv[argc+1]; |
| 112 | memcpy(tmp_argv, argv, (argc+1) * sizeof(tmp_argv[0])); |
Ron Yorston | 610c4c3 | 2016-03-30 00:42:05 +0200 | [diff] [blame] | 113 | applet_name = tmp_argv[0]; |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 114 | /* Finally we can call NOFORK applet's main() */ |
Denis Vlasenko | 745cd17 | 2007-11-29 03:31:20 +0000 | [diff] [blame] | 115 | rc = applet_main[applet_no](argc, tmp_argv); |
Denys Vlasenko | 19c9f31 | 2017-08-03 19:52:47 +0200 | [diff] [blame] | 116 | /* Important for shells: `which CMD` was failing */ |
| 117 | fflush_all(); |
Denys Vlasenko | 550bf5b | 2015-10-09 16:42:57 +0200 | [diff] [blame] | 118 | } else { |
| 119 | /* xfunc died in NOFORK applet */ |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Denis Vlasenko | d1660cb | 2008-10-20 07:52:33 +0000 | [diff] [blame] | 122 | /* Restoring some globals */ |
Denys Vlasenko | 6307357 | 2011-02-02 19:05:25 +0100 | [diff] [blame] | 123 | restore_nofork_data(&old); |
Denis Vlasenko | d1660cb | 2008-10-20 07:52:33 +0000 | [diff] [blame] | 124 | /* Other globals can be simply reset to defaults */ |
Kaarle Ritvanen | 835ad3a | 2017-04-12 00:58:46 +0300 | [diff] [blame] | 125 | GETOPT_RESET(); |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame^] | 126 | /* opt_complementary = NULL; - cleared by each getopt32() call anyway */ |
Denis Vlasenko | d1660cb | 2008-10-20 07:52:33 +0000 | [diff] [blame] | 127 | |
Denis Vlasenko | 7465dbc | 2008-04-13 02:25:53 +0000 | [diff] [blame] | 128 | return rc & 0xff; /* don't confuse people with "exitcodes" >255 */ |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 129 | } |
Denys Vlasenko | ddd1ee4 | 2017-08-08 14:09:23 +0200 | [diff] [blame] | 130 | #endif |
Denis Vlasenko | 18e19f2 | 2007-04-28 16:43:18 +0000 | [diff] [blame] | 131 | |
Denys Vlasenko | ddd1ee4 | 2017-08-08 14:09:23 +0200 | [diff] [blame] | 132 | #if NOEXEC_SUPPORT |
Denys Vlasenko | 80e8e3c | 2017-08-07 19:24:57 +0200 | [diff] [blame] | 133 | void FAST_FUNC run_noexec_applet_and_exit(int a, const char *name, char **argv) |
| 134 | { |
| 135 | /* reset some state and run without execing */ |
| 136 | /* msg_eol = "\n"; - no caller needs this reinited yet */ |
| 137 | logmode = LOGMODE_STDIO; |
| 138 | xfunc_error_retval = EXIT_FAILURE; |
| 139 | die_func = NULL; |
| 140 | GETOPT_RESET(); |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame^] | 141 | /* opt_complementary = NULL; - cleared by each getopt32() call anyway */ |
Denys Vlasenko | 80e8e3c | 2017-08-07 19:24:57 +0200 | [diff] [blame] | 142 | |
| 143 | //TODO: think pidof, pgrep, pkill! |
| 144 | //set_task_comm() makes our pidof find NOEXECs (e.g. "yes >/dev/null"), |
| 145 | //but one from procps-ng-3.3.10 needs more! |
| 146 | //Rewrite /proc/PID/cmdline? (need to save argv0 and length at init for this to work!) |
| 147 | set_task_comm(name); |
Denys Vlasenko | 8858a98 | 2017-08-08 01:21:49 +0200 | [diff] [blame] | 148 | /* applet_name is set by this function: */ |
Denys Vlasenko | 80e8e3c | 2017-08-07 19:24:57 +0200 | [diff] [blame] | 149 | run_applet_no_and_exit(a, name, argv); |
| 150 | } |
| 151 | #endif |
| 152 | |
Denys Vlasenko | 8858a98 | 2017-08-08 01:21:49 +0200 | [diff] [blame] | 153 | /* |
| 154 | * Higher-level code, hiding optional NOFORK/NOEXEC trickery. |
| 155 | */ |
| 156 | |
| 157 | /* This does a fork/exec in one call, using vfork(). Returns PID of new child, |
| 158 | * -1 for failure. Runs argv[0], searching path if that has no / in it. */ |
| 159 | pid_t FAST_FUNC spawn(char **argv) |
| 160 | { |
| 161 | /* Compiler should not optimize stores here */ |
| 162 | volatile int failed; |
| 163 | pid_t pid; |
| 164 | |
| 165 | fflush_all(); |
| 166 | |
| 167 | /* Be nice to nommu machines. */ |
| 168 | failed = 0; |
| 169 | pid = vfork(); |
| 170 | if (pid < 0) /* error */ |
| 171 | return pid; |
| 172 | if (!pid) { /* child */ |
| 173 | /* This macro is ok - it doesn't do NOEXEC/NOFORK tricks */ |
| 174 | BB_EXECVP(argv[0], argv); |
| 175 | |
| 176 | /* We are (maybe) sharing a stack with blocked parent, |
| 177 | * let parent know we failed and then exit to unblock parent |
| 178 | * (but don't run atexit() stuff, which would screw up parent.) |
| 179 | */ |
| 180 | failed = errno; |
| 181 | /* mount, for example, does not want the message */ |
| 182 | /*bb_perror_msg("can't execute '%s'", argv[0]);*/ |
| 183 | _exit(111); |
| 184 | } |
| 185 | /* parent */ |
| 186 | /* Unfortunately, this is not reliable: according to standards |
| 187 | * vfork() can be equivalent to fork() and we won't see value |
| 188 | * of 'failed'. |
| 189 | * Interested party can wait on pid and learn exit code. |
| 190 | * If 111 - then it (most probably) failed to exec */ |
| 191 | if (failed) { |
| 192 | safe_waitpid(pid, NULL, 0); /* prevent zombie */ |
| 193 | errno = failed; |
| 194 | return -1; |
| 195 | } |
| 196 | return pid; |
| 197 | } |
| 198 | |
| 199 | /* Die with an error message if we can't spawn a child process. */ |
| 200 | pid_t FAST_FUNC xspawn(char **argv) |
| 201 | { |
| 202 | pid_t pid = spawn(argv); |
| 203 | if (pid < 0) |
| 204 | bb_simple_perror_msg_and_die(*argv); |
| 205 | return pid; |
| 206 | } |
| 207 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 208 | int FAST_FUNC spawn_and_wait(char **argv) |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 209 | { |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 210 | int rc; |
Denys Vlasenko | d4e4fdb | 2017-07-03 21:31:16 +0200 | [diff] [blame] | 211 | #if ENABLE_FEATURE_PREFER_APPLETS && (NUM_APPLETS > 1) |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 212 | int a = find_applet_by_name(argv[0]); |
Denis Vlasenko | 335b63d | 2007-04-10 21:38:30 +0000 | [diff] [blame] | 213 | |
Denys Vlasenko | 9967c99 | 2017-01-26 01:13:58 +0100 | [diff] [blame] | 214 | if (a >= 0) { |
Denis Vlasenko | 1aa7e47 | 2007-11-28 06:49:03 +0000 | [diff] [blame] | 215 | if (APPLET_IS_NOFORK(a)) |
Denis Vlasenko | f5294e1 | 2007-04-14 10:09:57 +0000 | [diff] [blame] | 216 | return run_nofork_applet(a, argv); |
Denys Vlasenko | 9967c99 | 2017-01-26 01:13:58 +0100 | [diff] [blame] | 217 | # if BB_MMU /* NOEXEC needs fork(), thus this is done only on MMU machines: */ |
| 218 | if (APPLET_IS_NOEXEC(a)) { |
| 219 | fflush_all(); |
| 220 | rc = fork(); |
| 221 | if (rc) /* parent or error */ |
| 222 | return wait4pid(rc); |
| 223 | |
| 224 | /* child */ |
Denys Vlasenko | 80e8e3c | 2017-08-07 19:24:57 +0200 | [diff] [blame] | 225 | run_noexec_applet_and_exit(a, argv[0], argv); |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 226 | } |
Denys Vlasenko | c71b469 | 2011-02-02 03:28:56 +0100 | [diff] [blame] | 227 | # endif |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 228 | } |
Denys Vlasenko | ddd1ee4 | 2017-08-08 14:09:23 +0200 | [diff] [blame] | 229 | #endif |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 230 | rc = spawn(argv); |
Denis Vlasenko | cd7001f | 2007-04-09 21:32:30 +0000 | [diff] [blame] | 231 | return wait4pid(rc); |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 232 | } |
Denis Vlasenko | c6758a0 | 2007-04-10 21:40:19 +0000 | [diff] [blame] | 233 | |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 234 | #if !BB_MMU |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 235 | void FAST_FUNC re_exec(char **argv) |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 236 | { |
| 237 | /* high-order bit of first char in argv[0] is a hidden |
| 238 | * "we have (already) re-execed, don't do it again" flag */ |
| 239 | argv[0][0] |= 0x80; |
| 240 | execv(bb_busybox_exec_path, argv); |
Denys Vlasenko | 41ddd9f | 2010-06-25 01:46:53 +0200 | [diff] [blame] | 241 | bb_perror_msg_and_die("can't execute '%s'", bb_busybox_exec_path); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 244 | pid_t FAST_FUNC fork_or_rexec(char **argv) |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 245 | { |
| 246 | pid_t pid; |
| 247 | /* Maybe we are already re-execed and come here again? */ |
| 248 | if (re_execed) |
Denys Vlasenko | 8f24f98 | 2009-06-07 16:02:00 +0200 | [diff] [blame] | 249 | return 0; |
Denys Vlasenko | b182e9a | 2017-08-04 23:04:17 +0200 | [diff] [blame] | 250 | |
| 251 | /* fflush_all(); ? - so far all callers had no buffered output to flush */ |
| 252 | |
Pascal Bellard | 926031b | 2010-07-04 15:32:38 +0200 | [diff] [blame] | 253 | pid = xvfork(); |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 254 | if (pid) /* parent */ |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 255 | return pid; |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 256 | /* child - re-exec ourself */ |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 257 | re_exec(argv); |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 258 | } |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 259 | #endif |
| 260 | |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 261 | /* Due to a #define in libbb.h on MMU systems we actually have 1 argument - |
| 262 | * char **argv "vanishes" */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 263 | void FAST_FUNC bb_daemonize_or_rexec(int flags, char **argv) |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 264 | { |
| 265 | int fd; |
| 266 | |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 267 | if (flags & DAEMON_CHDIR_ROOT) |
| 268 | xchdir("/"); |
| 269 | |
| 270 | if (flags & DAEMON_DEVNULL_STDIO) { |
| 271 | close(0); |
| 272 | close(1); |
| 273 | close(2); |
| 274 | } |
| 275 | |
Denis Vlasenko | d48e81f | 2008-07-06 07:00:11 +0000 | [diff] [blame] | 276 | fd = open(bb_dev_null, O_RDWR); |
| 277 | if (fd < 0) { |
| 278 | /* NB: we can be called as bb_sanitize_stdio() from init |
| 279 | * or mdev, and there /dev/null may legitimately not (yet) exist! |
| 280 | * Do not use xopen above, but obtain _ANY_ open descriptor, |
| 281 | * even bogus one as below. */ |
| 282 | fd = xopen("/", O_RDONLY); /* don't believe this can fail */ |
| 283 | } |
Denis Vlasenko | a1b16f4 | 2007-07-31 17:09:44 +0000 | [diff] [blame] | 284 | |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 285 | while ((unsigned)fd < 2) |
| 286 | fd = dup(fd); /* have 0,1,2 open at least to /dev/null */ |
| 287 | |
| 288 | if (!(flags & DAEMON_ONLY_SANITIZE)) { |
Denys Vlasenko | b182e9a | 2017-08-04 23:04:17 +0200 | [diff] [blame] | 289 | |
| 290 | /* fflush_all(); - add it in fork_or_rexec() if necessary */ |
| 291 | |
Denis Vlasenko | 83518d1 | 2009-03-20 22:17:13 +0000 | [diff] [blame] | 292 | if (fork_or_rexec(argv)) |
Denys Vlasenko | b182e9a | 2017-08-04 23:04:17 +0200 | [diff] [blame] | 293 | _exit(EXIT_SUCCESS); /* parent */ |
Peter Korsgaard | 743edac | 2011-11-09 19:44:37 +0100 | [diff] [blame] | 294 | /* if daemonizing, detach from stdio & ctty */ |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 295 | setsid(); |
| 296 | dup2(fd, 0); |
| 297 | dup2(fd, 1); |
| 298 | dup2(fd, 2); |
Peter Korsgaard | 743edac | 2011-11-09 19:44:37 +0100 | [diff] [blame] | 299 | if (flags & DAEMON_DOUBLE_FORK) { |
| 300 | /* On Linux, session leader can acquire ctty |
| 301 | * unknowingly, by opening a tty. |
| 302 | * Prevent this: stop being a session leader. |
| 303 | */ |
| 304 | if (fork_or_rexec(argv)) |
Denys Vlasenko | b182e9a | 2017-08-04 23:04:17 +0200 | [diff] [blame] | 305 | _exit(EXIT_SUCCESS); /* parent */ |
Peter Korsgaard | 743edac | 2011-11-09 19:44:37 +0100 | [diff] [blame] | 306 | } |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 307 | } |
Denis Vlasenko | d8540f7 | 2007-06-14 07:53:06 +0000 | [diff] [blame] | 308 | while (fd > 2) { |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 309 | close(fd--); |
Denis Vlasenko | d8540f7 | 2007-06-14 07:53:06 +0000 | [diff] [blame] | 310 | if (!(flags & DAEMON_CLOSE_EXTRA_FDS)) |
| 311 | return; |
| 312 | /* else close everything after fd#2 */ |
| 313 | } |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 314 | } |
| 315 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 316 | void FAST_FUNC bb_sanitize_stdio(void) |
Denis Vlasenko | bb7fcb4 | 2007-03-26 13:20:04 +0000 | [diff] [blame] | 317 | { |
| 318 | bb_daemonize_or_rexec(DAEMON_ONLY_SANITIZE, NULL); |
| 319 | } |