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>
|
2006-09-21 22:10:24 +00:00
|
|
|
* Copyright 2006 Bernhard 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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "busybox.h"
|
|
|
|
|
2006-09-21 22:10:24 +00:00
|
|
|
int nohup_main(int argc, char **argv)
|
2005-09-21 18:25:05 +00:00
|
|
|
{
|
2006-05-21 18:28:13 +00:00
|
|
|
int temp, nullfd;
|
2006-09-21 22:10:24 +00:00
|
|
|
char *nohupout, *home = NULL;
|
2006-05-24 17:58:00 +00:00
|
|
|
|
|
|
|
bb_default_error_retval = 127;
|
|
|
|
|
2006-05-21 18:28:13 +00:00
|
|
|
if (argc<2) bb_show_usage();
|
2005-09-21 18:25:05 +00:00
|
|
|
|
2006-08-03 15:41:12 +00:00
|
|
|
nullfd = xopen(bb_dev_null, O_WRONLY|O_APPEND);
|
2006-09-21 22:10:24 +00:00
|
|
|
/* If stdin is a tty, detach from it. */
|
|
|
|
if (isatty(STDIN_FILENO)) dup2(nullfd, 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);
|
2005-09-21 18:25:05 +00:00
|
|
|
}
|
|
|
|
}
|
2006-09-21 22:10:24 +00:00
|
|
|
} else dup2(nullfd, STDOUT_FILENO);
|
|
|
|
|
|
|
|
/* If we have a tty on strderr, announce filename and redirect to stdout.
|
|
|
|
* Else redirect to /dev/null.
|
|
|
|
*/
|
|
|
|
temp = isatty(STDERR_FILENO);
|
|
|
|
if (temp) bb_error_msg("Appending to %s", nohupout);
|
|
|
|
dup2(temp ? STDOUT_FILENO : nullfd, STDERR_FILENO);
|
2006-05-21 18:28:13 +00:00
|
|
|
close(nullfd);
|
2006-09-21 22:10:24 +00:00
|
|
|
signal (SIGHUP, SIG_IGN);
|
2005-09-21 18:25:05 +00:00
|
|
|
|
2006-05-21 18:28:13 +00:00
|
|
|
execvp(argv[1],argv+1);
|
2006-09-21 22:10:24 +00:00
|
|
|
if (00 && ENABLE_FEATURE_CLEAN_UP && home) free(nohupout);
|
|
|
|
bb_perror_msg_and_die("%s",argv[1]);
|
2005-09-21 18:25:05 +00:00
|
|
|
}
|