2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-21 23:58:13 +05:30
|
|
|
/* nohup - invoke a utility immune to hangups.
|
2006-09-17 21:58:10 +05:30
|
|
|
*
|
2006-05-21 23:58:13 +05:30
|
|
|
* Busybox version based on nohup specification at
|
2006-05-24 23:28:00 +05:30
|
|
|
* http://www.opengroup.org/onlinepubs/007904975/utilities/nohup.html
|
2006-09-17 21:58:10 +05:30
|
|
|
*
|
2006-05-21 23:58:13 +05:30
|
|
|
* Copyright 2006 Rob Landley <rob@landley.net>
|
2008-09-25 17:43:34 +05:30
|
|
|
* Copyright 2006 Bernhard Reutner-Fischer
|
2006-09-17 21:58:10 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2005-09-21 23:55:05 +05:30
|
|
|
*/
|
|
|
|
|
2011-03-31 18:13:25 +05:30
|
|
|
//usage:#define nohup_trivial_usage
|
|
|
|
//usage: "PROG ARGS"
|
|
|
|
//usage:#define nohup_full_usage "\n\n"
|
|
|
|
//usage: "Run PROG immune to hangups, with output to a non-tty"
|
|
|
|
//usage:
|
|
|
|
//usage:#define nohup_example_usage
|
|
|
|
//usage: "$ nohup make &"
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-09-21 23:55:05 +05:30
|
|
|
|
2008-02-04 06:00:06 +05:30
|
|
|
/* 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 15:35:36 +05:30
|
|
|
int nohup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-11-28 19:48:53 +05:30
|
|
|
int nohup_main(int argc UNUSED_PARAM, char **argv)
|
2005-09-21 23:55:05 +05:30
|
|
|
{
|
2007-01-28 03:51:12 +05:30
|
|
|
const char *nohupout;
|
2008-02-04 06:00:06 +05:30
|
|
|
char *home;
|
2006-05-24 23:28:00 +05:30
|
|
|
|
2006-10-04 01:58:06 +05:30
|
|
|
xfunc_error_retval = 127;
|
2006-05-24 23:28:00 +05:30
|
|
|
|
2010-01-04 18:45:38 +05:30
|
|
|
if (!argv[1]) {
|
|
|
|
bb_show_usage();
|
|
|
|
}
|
2005-09-21 23:55:05 +05:30
|
|
|
|
2006-09-22 03:40:24 +05:30
|
|
|
/* If stdin is a tty, detach from it. */
|
2008-02-04 06:00:06 +05:30
|
|
|
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 23:55:05 +05:30
|
|
|
|
2006-09-22 03:40:24 +05:30
|
|
|
nohupout = "nohup.out";
|
|
|
|
/* Redirect stdout to nohup.out, either in "." or in "$HOME". */
|
|
|
|
if (isatty(STDOUT_FILENO)) {
|
|
|
|
close(STDOUT_FILENO);
|
2006-05-21 23:58:13 +05:30
|
|
|
if (open(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR) < 0) {
|
|
|
|
home = getenv("HOME");
|
|
|
|
if (home) {
|
2006-09-22 03:40:24 +05:30
|
|
|
nohupout = concat_path_file(home, nohupout);
|
2006-08-03 21:11:12 +05:30
|
|
|
xopen3(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR);
|
2008-02-04 06:00:06 +05:30
|
|
|
} else {
|
|
|
|
xopen(bb_dev_null, O_RDONLY); /* will be fd 1 */
|
2005-09-21 23:55:05 +05:30
|
|
|
}
|
|
|
|
}
|
2008-02-04 06:00:06 +05:30
|
|
|
bb_error_msg("appending output to %s", nohupout);
|
|
|
|
}
|
2006-09-22 03:40:24 +05:30
|
|
|
|
2008-02-04 06:00:06 +05:30
|
|
|
/* If we have a tty on stderr, redirect to stdout. */
|
2007-01-28 03:51:12 +05:30
|
|
|
if (isatty(STDERR_FILENO)) {
|
2008-02-04 06:00:06 +05:30
|
|
|
/* if (stdout_wasnt_a_tty)
|
|
|
|
bb_error_msg("redirecting stderr to stdout"); */
|
2007-01-28 03:51:12 +05:30
|
|
|
dup2(STDOUT_FILENO, STDERR_FILENO);
|
2008-02-04 06:00:06 +05:30
|
|
|
}
|
2007-01-28 03:51:12 +05:30
|
|
|
|
|
|
|
signal(SIGHUP, SIG_IGN);
|
|
|
|
|
2010-06-25 05:16:53 +05:30
|
|
|
argv++;
|
2010-07-04 04:27:03 +05:30
|
|
|
BB_EXECVP_or_die(argv);
|
2005-09-21 23:55:05 +05:30
|
|
|
}
|