2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-21 18:28:13 +00:00
|
|
|
/* nohup - invoke a utility immune to hangups.
|
2006-09-17 16:28:10 +00:00
|
|
|
*
|
2006-05-21 18:28:13 +00:00
|
|
|
* Busybox version based on nohup specification at
|
2006-05-24 17:58:00 +00:00
|
|
|
* http://www.opengroup.org/onlinepubs/007904975/utilities/nohup.html
|
2006-09-17 16:28:10 +00:00
|
|
|
*
|
2006-05-21 18:28:13 +00:00
|
|
|
* Copyright 2006 Rob Landley <rob@landley.net>
|
2008-09-25 12:13:34 +00:00
|
|
|
* Copyright 2006 Bernhard Reutner-Fischer
|
2006-09-17 16:28:10 +00:00
|
|
|
*
|
2006-05-21 18:28:13 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2005-09-21 18:25:05 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2005-09-21 18:25:05 +00:00
|
|
|
|
2008-02-04 00:30:06 +00:00
|
|
|
/* Compat info: nohup (GNU coreutils 6.8) does this:
|
|
|
|
# nohup true
|
|
|
|
nohup: ignoring input and appending output to `nohup.out'
|
|
|
|
# nohup true 1>/dev/null
|
|
|
|
nohup: ignoring input and redirecting stderr to stdout
|
|
|
|
# nohup true 2>zz
|
|
|
|
# cat zz
|
|
|
|
nohup: ignoring input and appending output to `nohup.out'
|
|
|
|
# nohup true 2>zz 1>/dev/null
|
|
|
|
# cat zz
|
|
|
|
nohup: ignoring input
|
|
|
|
# nohup true </dev/null 1>/dev/null
|
|
|
|
nohup: redirecting stderr to stdout
|
|
|
|
# nohup true </dev/null 2>zz 1>/dev/null
|
|
|
|
# cat zz
|
|
|
|
(nothing)
|
|
|
|
#
|
|
|
|
*/
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int nohup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-09-21 22:10:24 +00:00
|
|
|
int nohup_main(int argc, char **argv)
|
2005-09-21 18:25:05 +00:00
|
|
|
{
|
2007-01-27 22:21:12 +00:00
|
|
|
const char *nohupout;
|
2008-02-04 00:30:06 +00:00
|
|
|
char *home;
|
2006-05-24 17:58:00 +00:00
|
|
|
|
2006-10-03 20:28:06 +00:00
|
|
|
xfunc_error_retval = 127;
|
2006-05-24 17:58:00 +00:00
|
|
|
|
2007-01-27 22:21:12 +00:00
|
|
|
if (argc < 2) bb_show_usage();
|
2005-09-21 18:25:05 +00:00
|
|
|
|
2006-09-21 22:10:24 +00:00
|
|
|
/* If stdin is a tty, detach from it. */
|
2008-02-04 00:30:06 +00:00
|
|
|
if (isatty(STDIN_FILENO)) {
|
|
|
|
/* bb_error_msg("ignoring input"); */
|
|
|
|
close(STDIN_FILENO);
|
|
|
|
xopen(bb_dev_null, O_RDONLY); /* will be fd 0 (STDIN_FILENO) */
|
|
|
|
}
|
2005-09-21 18:25:05 +00:00
|
|
|
|
2006-09-21 22:10:24 +00:00
|
|
|
nohupout = "nohup.out";
|
|
|
|
/* Redirect stdout to nohup.out, either in "." or in "$HOME". */
|
|
|
|
if (isatty(STDOUT_FILENO)) {
|
|
|
|
close(STDOUT_FILENO);
|
2006-05-21 18:28:13 +00:00
|
|
|
if (open(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR) < 0) {
|
|
|
|
home = getenv("HOME");
|
|
|
|
if (home) {
|
2006-09-21 22:10:24 +00:00
|
|
|
nohupout = concat_path_file(home, nohupout);
|
2006-08-03 15:41:12 +00:00
|
|
|
xopen3(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR);
|
2008-02-04 00:30:06 +00:00
|
|
|
} else {
|
|
|
|
xopen(bb_dev_null, O_RDONLY); /* will be fd 1 */
|
2005-09-21 18:25:05 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-04 00:30:06 +00:00
|
|
|
bb_error_msg("appending output to %s", nohupout);
|
|
|
|
}
|
2006-09-21 22:10:24 +00:00
|
|
|
|
2008-02-04 00:30:06 +00:00
|
|
|
/* If we have a tty on stderr, redirect to stdout. */
|
2007-01-27 22:21:12 +00:00
|
|
|
if (isatty(STDERR_FILENO)) {
|
2008-02-04 00:30:06 +00:00
|
|
|
/* if (stdout_wasnt_a_tty)
|
|
|
|
bb_error_msg("redirecting stderr to stdout"); */
|
2007-01-27 22:21:12 +00:00
|
|
|
dup2(STDOUT_FILENO, STDERR_FILENO);
|
2008-02-04 00:30:06 +00:00
|
|
|
}
|
2007-01-27 22:21:12 +00:00
|
|
|
|
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
|
2007-02-06 01:20:12 +00:00
|
|
|
BB_EXECVP(argv[1], argv+1);
|
2007-10-01 11:58:38 +00:00
|
|
|
bb_simple_perror_msg_and_die(argv[1]);
|
2005-09-21 18:25:05 +00:00
|
|
|
}
|